Question: I’m using an Edit control in my form in SalesLogix. I would
like to double-click the Edit control and call another form. How can I
do this?
Answer: Setup the double-click event of the control and call DoInvoke if
it’s a managed form or the ShowViewForRecord if it is a bound form.
Sub dgOppProdSitesDblClick(Sender)
DIM opppid
opppid = dgOppProdSites.getCurrentField()
IF opppID > “” THEN
If
Application.BasicFunctions.ShowViewForRecord(“OPPORTUNITY_PRODUCT”,
dgOppProdSites.EditView.Name, opppid ) = mrOK
Then
End If
END IF
End Sub



