Hi Guys,
How to make an input dialog as system modal? i.e, without getting the input from the user the dialog box should not go to any other control including the parent form.
The following is the code i'm using. (this code makes the dialog box stand at the top but the user can still access other forms)
d = new Dialog("Enter On Hand");
fld = d.addField(TypeId(Qty),"Enter Stock");
d.dialogForm().form().design().left(_x,4);
d.dialogForm().form().design().top(_y,3);
d.formBuildDesign().windowType(FormWindowType::PopUp);
d.run(false);
Any inputs will be greatly appreciated.
Thanks
Andrews