Hi,
I have to send a network name and segment to an external application. Its important that this string is sent or none of our advertisements will work properly.
I have a control text field for network name that is populated by attributes in MCP which will be filled in automatically from our database.
I've tried it on my script which is compiling. Has anyone ever done this? Thanks.
I have to send a network name and segment to an external application. Its important that this string is sent or none of our advertisements will work properly.
I have a control text field for network name that is populated by attributes in MCP which will be filled in automatically from our database.
I've tried it on my script which is compiling. Has anyone ever done this? Thanks.
Code:
dim NetworkC as Container = FindSubContainer("NETWORK") dim SegmentNoS as String sub SendTrigger() SegmentNoS = System.Map[NetworkC.Geometry.Text & "_Segment"] System.StartApplication("......" & Network.Geometry.Text & "........." & SegmentNoS & ".......") end sub
Comment