To meet your needs, we constantly work to improve Querix products.
This means that Lycia documentation is developing as well.
In case you have found a certain dissonance between the provided information and the actual behavior of Lycia 3 and/or your applications, please, let us know about this via documentation@querix.com so that we can introduce the necessary changes to our documentation.
Thank you for your attention and cooperation.
The method is used to create an empty form. This form is then displayed in the associated window. If the window had a form before that, the old form is replaced with the new empty one. The methods accepts a single parameter of a character data type that is the name of the created form. It returns a variable of the ui.Form type. If the form name set as a parameter is already used for another form in this application, the method returns NULL and does not create anything.
DEFINE wo ui.Window,
DEFINE fo ui.Form
OPEN WINDOW w1 AT 2,2 WITH 10 ROWS, 50 COLUMNS
LET wo = ui.Window.ForName("w1")
LET fo = wo.createForm("newform")