Re: [Gambas-user] Form does not get focus

2008-12-01 Thread moon_walker
Thanks Benoit! br Attila Bugzilla from [EMAIL PROTECTED] wrote: > > On samedi 29 novembre 2008, moon_walker wrote: >> Hi Gurus, >> >> i have a problem again:-): >> >> PUBLIC SUB TableView3_Menu() >> DIM lform AS Form >> >> lform = NEW dataentry(did.Value, "fertilizer", tableview3.X, >> tablevi

Re: [Gambas-user] Form does not get focus

2008-11-30 Thread Benoit Minisini
On samedi 29 novembre 2008, moon_walker wrote: > Hi Gurus, > > i have a problem again:-): > > PUBLIC SUB TableView3_Menu() > DIM lform AS Form > > lform = NEW dataentry(did.Value, "fertilizer", tableview3.X, tableview3.Y) > lform.showmodal > > END > > The resulting form do not get the focus upon th

[Gambas-user] Form does not get focus

2008-11-28 Thread moon_walker
Hi Gurus, i have a problem again:-): PUBLIC SUB TableView3_Menu() DIM lform AS Form lform = NEW dataentry(did.Value, "fertilizer", tableview3.X, tableview3.Y) lform.showmodal END The resulting form do not get the focus upon the opening IF dataentry.skiptaskbar = TRUE. :-) Is this correct? Cou