Xtender - Open up Event Tab / Define Event of a specific event by code.

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

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

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 

Thank you - How about switching Tabs?

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

there aren't any Xtender hooks into tab navigation

i.e. you can't issue a command to switch to the Attendee tab in Events Portfolio. Sorry about that...

ok, I had a feeling

You have been a ton of help. Thank you!

Mac M.
Technology Services Company (TSC Inc.)
www.tscinc.com