Log on
Find the syntax, use, parameters, return values, and an example for the Log on macro command in Connexion client.
Syntax | BOOL= CS.Logon (sAuthorization, sPassword, sLevel) |
---|---|
Use to | Log on to OCLC Connexion. Same as using the File > Logon menu command, except that the Welcome window is not displayed after logon is completed. |
Parameters |
|
Return values | TRUE if logon is successful, or FALSE if not. |
Example | Sub Main() Dim CS As Object Set CS = GetObject(“Connex.Client”) If CS.Logon(““, ““, ““) = True Then MsgBox “Logon successful” End If End Sub |
What this example does |
|