I have several forms in my application. If the user has a device with larger or smaller screen or changes orientation the forms should redraw accordingly. How do I code that?
Sub App_Start
Form1.show
flb.New1("Form1",B4PObject(1))
The example above shows the coding for 1 form. Do I need to do that for every form?
For example
Sub App_Start
Main.show
flb.New1("Main",B4PObject(1))
I have other forms that show up later in the application. Do I add this line each time I have Form.Show line like;
Rform.Show
flb.New1("Rform",BB4PObject(1))
or Is it written differently?
Sub App_Start
Form1.show
flb.New1("Form1",B4PObject(1))
The example above shows the coding for 1 form. Do I need to do that for every form?
For example
Sub App_Start
Main.show
flb.New1("Main",B4PObject(1))
I have other forms that show up later in the application. Do I add this line each time I have Form.Show line like;
Rform.Show
flb.New1("Rform",BB4PObject(1))
or Is it written differently?