9.0
109
VB_VarUserMemID - Declares Public varname as the default property for a class module or object module.
VB_VarHelpID - Declares the variable's help context displayed by the object browser.
VB_VarDescription - Declares the variable's help text displayed by the object browser.
Form 3: User defined procedure attribute
[Sub | Function | Property [Get|Let|Set] procname ...
Attribute procname.VB_UserMemId = 0
Attribute procname.VB_HelpID = int
Attribute procname.VB_Description = "text"
...
End
[Sub | Function | Property]
VB_UserMemID - Declares Property
procname as the default property for a class module or object module.
VB_HelpID - Declares the procedure's help context displayed by the object browser.
VB_Description - Declares the procedure's help text displayed by the object browser.
HelpFile:
Each macro/module can define the HelpFile for the object browser:
'#HelpFile "helpfile"
where "helpfile" is a full path to the help file associated with the help text and help context.
Beep Instruction
Syntax
Beep
Group
Miscellaneous
Description
Sound the bell.
Example
Sub Main
Beep ' beep the bell
End
Sub
Begin Dialog Definition
Syntax
Begin Dialog UserDialog [X, Y,] DX, DY[, Title$] _
[, .dialogfunc
]
User Dialog
Item










