dialog Overview


This object wraps the Windows dialog window. It does not have methods or properties of its own, but it inherits the common window functionality from the wnd object.

Example

// Access controls on the dialog
var Dialog = wnd.dialog;
var PushBtn = Dialog.dlgItem(1013);// control ID of button "Push"
PushBtn.push();
		

Common Used Properties (inherited)

value Gets/sets the title of the dialog.
dlgItem Returns a child window identified by the control ID.

 


© 2003 Lightweight Technologies. All rights reserved.