9.0
137
Example
Sub Main
ChanNum = DDEInitiate
("PROGMAN","PROGMAN")
DDEExecute
ChanNum,"[CreateGroup(XXX)]"
DDETerminate ChanNum
End
Sub
DDETerminateAll Instruction
Syntax
DDETerminateAll
Group
DDE
Description
Terminate all open DDE channels.
Example
Sub Main
ChanNum = DDEInitiate
("PROGMAN","PROGMAN")
DDEExecute
ChanNum,"[CreateGroup(XXX)]"
DDETerminateAll
End
Sub
Debug Object
Syntax
Debug.Clear
-or-
Debug.Print
[expr[; ...][;]]
Group
Miscellaneous
Description
Form 1: Clear the output window.
Form 2: Print the expr
(s) to the output window. Use semi-colons (;) to separate expressions. A num is
automatically converted to a string before printing (just like Str$( )
). If the instruction does not end with a
semicolon, then a new line is printed at the end.
Example










