Re: [Gambas-user] Displaying the same form n times

2010-12-21 Thread vikram
n Mon, 12/20/10, vikram wrote: > > From: vikram > Subject: [Gambas-user] Displaying the same form n times > To: austin...@yahoo.com > Date: Monday, December 20, 2010, 6:52 AM > > PUBLIC SUB Button1_Click() > >  DIM count AS Integer >  dim hForm as IPinput >  asc

Re: [Gambas-user] Displaying the same form n times

2010-12-20 Thread Fabien Bodard
#x27;s > Open event to another's Close event, or maybe there is some other way to do > this. > > Thanks again, > Vikram > > --- On Mon, 12/20/10, vikram wrote: > > From: vikram > Subject: [Gambas-user] Displaying the same form n times > To: austin...@yahoo.

Re: [Gambas-user] Displaying the same form n times

2010-12-20 Thread vikram
s. Thanks again, Vikram --- On Mon, 12/20/10, vikram wrote: From: vikram Subject: [Gambas-user] Displaying the same form n times To: austin...@yahoo.com Date: Monday, December 20, 2010, 6:52 AM PUBLIC SUB Button1_Click() DIM count AS Integer dim hForm as IPinput ascount = txtAS

Re: [Gambas-user] Displaying the same form n times

2010-12-20 Thread Fabien Bodard
PUBLIC SUB Button1_Click() DIM count AS Integer dim hForm as IPinput ascount = txtAScount.Text'Point 1 '''never use underscore in names and str to int is automatic FOR count = 1 TO ascount hForm = New IPinput hForm.show NEXT END in IP Input form add : STATIC PUBLIC