To be able to use two full screen forms I guess I have to use the following code
Code:
Sub App_StartForm1.Show
flb.New1("Form1",B4PObject(1))
flb.FullScreen(CPPC)
flb.New1("Form2",B4PObject(1))
flb.FullScreen(CPPC)
drawer.New1("Form1",false)
End Sub
drawer.New1("Form2",false) 'After a button is pressed
'...Draw the information on Form2
'And finaly
Form2.Close 'after a new button is pressed
Is this the best way to work with two forms?
Sincerely,
Max Tillberg