Question: In SalesLogix I have created a mainview detail form with access granted
depending on Account ownership. I’m trying to apply the same access
security to a data grid on a form that is a tab for this record. Can I
do this? How?
Answer: You can grab a reference to the form via the forms collection. Something like this:
Dim frm
Set frm = Application.Forms("System:Form Name")
frm.TextBox1.Text = "Hello"
frm.DataGrid1.Refresh
' even access script on the form
frm.Script.SomeSubroutine "My Value"
Set frm = Nothing



