Previous Topic

Next Topic

Inhoudsopgave

Book Index

Debug Form

Although the IsahForms object still functions as before, it is recommended that you start using the new TForm Object as the basis for creating custom forms in Isah. The TForm object offers improved possibilities for customizing all types of Isah forms. In a future release of Isah, the IsahForms object will become unavailable.

Function Function DebugForm: DebugForm_Object

Description

The DebugForm Object is an object that enables a simplified form of Debugging.

Properties, Procedures and Functions

Property Property Caption: String (R/W)

Function Procedure Show

Property Property Debug: String

Example

Dim Debug

Sub Main()

Call InitDebug

AddToDebugWindow( "This is a debug line" )

End Sub

Sub InitDebug()

Set Debug = Application.IsahForms.DebugForm

Debug.Show

Debug.Caption = "Debug test script"

End Sub

Sub AddToDebugWindow( Text )

Debug.Debug = Text

MsgBox "OK"

End Sub