Hi Paul,
Your IMC parameters seem to work fine when the PARENT is another SGSV grid but what if the first SGSV grid on your current page is actually the CHILD?
In other words I want to pass parameters from a module (on the same page) other than one based on SGSV.
Can you provide some examples on how I might set up ModuleCommunicatuionEventArgs?
From my PARENT I would code something like:
Dim mcArgs As ModuleCommunicationEventArgs _
= New ModuleCommunicationEventArgs()
mcArgs.Sender = "ProjectSearch"
mcArgs.Target = "SGSV"
mcArgs.Text = "ProjectID"
mcArgs.Type = "ProjectID"
mcArgs.Value = ProjectID
RaiseEvent ModuleCommunication(Me, mcArgs)
So the SGSV grid could accept
[Parent_PARM:ProjectID]
However I cannot get this to work
ExecuteSQL: Invalid column name 'Parent_Parm:ProjectID'.
Also can I download the IMC code examples from:
http://www.tressleworks.ca/Modules/SQ...
and
http://www.tressleworks.ca/samples/SQ...
Thanks,
Ashley