Log on / log off server
You can use the Logon and Logoff macros to assist with logging users in and out of Q&A Cloud 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 Cloud session and to log the user out of Q&A Cloud. The user is then free to log into Q&A Cloud client from another machine.
Sub Logoff()
QAAMacro.Logoff
End Sub