I am looking to see if there is a way to open up a specific event on the iMIS Events tab through Xtender. Anyone done this before or have any idea if it can be done?
Thanks,
Mac
I am looking to see if there is a way to open up a specific event on the iMIS Events tab through Xtender. Anyone done this before or have any idea if it can be done?
Thanks,
Mac
Thank you. This helps a lot!
What about switching tabs. Any idea how I can be on the event tab and have the extender move to the customer tab?
Mac M.
Technology Services Company (TSC Inc.)
www.tscinc.com
i.e. you can't issue a command to switch to the Attendee tab in Events Portfolio. Sorry about that...
You have been a ton of help. Thank you!
Mac M.
Technology Services Company (TSC Inc.)
www.tscinc.com
the nNewMeeting Notify event will set the value
You can set the current meeting ID with code like this. The define event list window and event detail window will both respond to this event.
Private Sub setNewMeeting() Dim str1Text As String Dim str2Text As String Dim str3Text As String Dim str4Text As String Dim str5Text As String str1Text = "nNewMeeting" str2Text = "1" str3Text = NewMeetingIDValue str4Text = "" str5Text = "" RaiseEvent Notify(str1Text, str2Text, str3Text, str4Text, str5Text) End Sub