Re: [Gambas-user] Wizard: Skipping pages & Going Back Pages

2010-06-30 Thread richard terry
On Thursday 01 July 2010 02:02:41 Benoît Minisini wrote: > > Hi List, > > > > I've a wizard, with several options on the first page, depending on which > > radiobutton is set I want to 'skip over' some pages. This is ok, as it > > seems if i use the Wizard1_BeforeChange() event, I can just set whi

Re: [Gambas-user] Wizard: Skipping pages & Going Back Pages

2010-06-30 Thread Benoît Minisini
> Hi List, > > I've a wizard, with several options on the first page, depending on which > radiobutton is set I want to 'skip over' some pages. This is ok, as it > seems if i use the Wizard1_BeforeChange() event, I can just set which page > I want it to go to (forward direction) that is. > > How

Re: [Gambas-user] Wizard: Skipping pages & Going Back Pages

2010-06-30 Thread Fabien Bodard
andif you make you own wizard ? just make an object array... witch contain structre elements with these varables : form as form, skipped as boolean, readed as boolean now with that you can walk on the wizard histroy and interact with it 2010/6/30 richard terry : > Hi List, > > I've a wizard, wit

[Gambas-user] Wizard: Skipping pages & Going Back Pages

2010-06-29 Thread richard terry
Hi List, I've a wizard, with several options on the first page, depending on which radiobutton is set I want to 'skip over' some pages. This is ok, as it seems if i use the Wizard1_BeforeChange() event, I can just set which page I want it to go to (forward direction) that is. However, as user