[Gambas-user] working with many formulares

2009-04-08 Thread juelin
hi, I'm new at Gambas. I'm writting an application with many windows (formulares). I create two formulares at my application. the first formular work's. 1. When I push a button in formular1 I want change to formular 2. What must I do? 2. when the work is done in formular2 I want go back to

Re: [Gambas-user] working with many formulares

2009-04-08 Thread Jorge CarriĆ³n
In the click event of button in form 1: PUBLIC SUB button1_Click() DIM frForm2 AS NEW formu2 frForm2.ShowModal END 2009/4/8 juelin juergen.lin...@gmx.de hi, I'm new at Gambas. I'm writting an application with many windows (formulares). I create two formulares at my application.