Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I need to loop all my sessions
Public Sessions As Object
Public System As Object
Public Sess0 As Object
Public oSess as Object
'Extra Objects
Set System = CreateObject("EXTRA.System") ' Gets the system object
If (System Is Nothing) Then MsgBox "Could not create the EXTRA System object. Stopping macro playback.": Stop
Set Sessions = System.Sessions
If (Sessions Is Nothing) Then: MsgBox "Could not create the Sessions collection object. Stopping macro playback.": Stop
Set Sess0 = System.ActiveSession
If (Sess0 Is Nothing) Then MsgBox "Could not create the Session object. Stopping macro playback.": Stop
'[b][highlight]I need to loop all my sessions
for each oSess in Sessions
next
'[/highlight][/b]
Set Sessions = Nothing
Set System = Nothing
Set Sess0 = Nothing