| |
General programming tasks
Log on
This will log on to the server named lemur with an
account name and password of guest. The beginning of all
your programs should create the object and login.
' create the FaxSession object
Set objFaxSession = CreateObject("facsys.faxsession")
' log on to FACSys server
objFaxSession.logon "lemur", "guest", "guest"
back to categories list
Log off
This will log off the server. Before your program exists,
you should also dispose of the FaxSession object.
' log off FACSys server
objFaxSession.logoff
' clean up
Set objFaxSession = Nothing
back to categories list
|