(Contents)(Previous)(Next)

Trace (property)

Description: Setting this property to True will cause the API to pop up debug message boxes when errors are encountered. This can be useful when methods don't return what you think they are supposed to. The message which pops up will aid your understanding of the problem involved.
Type: Boolean
Default: False
Example:
Dim session As Object

Dim user As Object

Dim appts As Object

Set session = CreateObject("OfficeTalk.Session")

session.Trace = True

Set user = session.Logon("fred", "wrongPassword")

……..message box will appear describing the problem


Next