createPrintForm(): InstanceType updating;
The createPrintForm method of the GUIClass class creates a print form at run time, as shown in the following example.
vars pform : PrintForm; begin pform := PrintForm.createPrintForm; ... // do some processing here end;
When you use this method to create a form:
No actual windows are created, except for
The entire GUI process is simulated (as it is with JADE Web forms)
The form and controls therefore have no window handle (that is, no value for the
Use the
Using the createPrintForm method compared with using the
Use the createPrintForm method to create a form that will not create an actual GUI form and will not apply a skin (which may change the size of the client area).