Log on / log off server

You can use the Logon and Logoff macros to assist with logging users in and out of Q&A automatically.

The Logon macro

You can use the Logon macro to open the logon window for the user:

Sub Logon()
QAAMacro.Logon
End Sub

The Logoff macro

You can use the Logoff macro to automatically end the current Q&A session and to log the user out of Q&A. The user is then free to log into Q&A client from another machine.

Sub Logoff()
QAAMacro.Logoff
End Sub