Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-16 Thread M0E Lnx
Bump? On Tue, Dec 16, 2008 at 7:59 AM, M0E Lnx wrote: > Attn: Fabien, > Your sample works for me, but I need a way to execute the code in each > form's _Open() or _Show() event... Or any sub for that matter. > > I noticed that the code is only ran once (the very first time the form > is loaded).

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-16 Thread M0E Lnx
Attn: Fabien, Your sample works for me, but I need a way to execute the code in each form's _Open() or _Show() event... Or any sub for that matter. I noticed that the code is only ran once (the very first time the form is loaded). Can you suggest a way of doing this? On Mon, Dec 15, 2008 at 12:0

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-15 Thread M0E Lnx
I've tried the Show event, but I get the same results. The forms.Show or Open events are not getting called. They're just getting Raised So, How do I run code in the forms Show or Open event? On Mon, Dec 15, 2008 at 10:56 AM, Steven Lobbezoo wrote: > I think you need to use the form's show even

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-15 Thread Steven Lobbezoo
I think you need to use the form's show event, not the open event. Steven Le lundi 15 décembre 2008 à 09:36 -0600, M0E Lnx a écrit : > BTW, the functions that populate my content are called in each form's > _Open() event > > > On Mon, Dec 15, 2008 at 9:34 AM, M0E Lnx wrote: > > After testing

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-15 Thread M0E Lnx
BTW, the functions that populate my content are called in each form's _Open() event On Mon, Dec 15, 2008 at 9:34 AM, M0E Lnx wrote: > After testing this, I do have a question though. > > My forms have objects like treeviews, listboxes, etc which get > populated by running external functions. > S

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-15 Thread M0E Lnx
After testing this, I do have a question though. My forms have objects like treeviews, listboxes, etc which get populated by running external functions. So, when I implement your example into my project, the navigation works perfectly, My forms however do not. My content shows up only when I'm go

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-15 Thread M0E Lnx
Yes!... this is exactly how I need it to work. Thank you On Sat, Dec 13, 2008 at 2:23 AM, Fabien Bodard wrote: > it better to have a demo ... and it work fine ... > > take it and tell me if that is what you want. > > -- >

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-13 Thread Fabien Bodard
it better to have a demo ... and it work fine ... take it and tell me if that is what you want. demowizard-0.0.2.tar.gz Description: GNU Zip compressed data -- SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-12 Thread Fabien Bodard
from 2. If Form5 needs to >> go BACK, it will use it's local copy of FROM to know to set DEST, then >> run the back code (to Form4, then Form3, then Form2). >> Everything works sequencially forwards and backwards and each form has >> similar >> tests and methods to

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-12 Thread M0E Lnx
Form4, then Form3, then Form2). > Everything works sequencially forwards and backwards and each form has similar > tests and methods to perform doing it. > > > > -- Original Message --- > From: Dominique SIMONART > To: mailing list for gambas users > Sent:

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-12 Thread nando
lly forwards and backwards and each form has similar tests and methods to perform doing it. -- Original Message --- From: Dominique SIMONART To: mailing list for gambas users Sent: Fri, 12 Dec 2008 04:11:24 +0100 Subject: Re: [Gambas-user] Emulating wizard Back/Next navigation &

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-11 Thread Dominique SIMONART
form, the activate 'next' form) >>>>>> when BACK is clicked, the backwards code runs, which is whatever to >>>>>> undo this step (if needed), hide form, activate 'back' form. >>>>>> Each form knows how to go back one step, and g

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-11 Thread M0E Lnx
K is clicked, the backwards code runs, which is whatever to >>>>> undo this step (if needed), hide form, activate 'back' form. >>>>> Each form knows how to go back one step, and go forward one step. >>>>> You would have to tell the Next and

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-11 Thread Simonart Dominique
buttons which forwards and >>>> backwards >>>> sub to run...you could place in NEXT.tag and BACK.tag the form or info >>>> required >>>> to properly run the correct code. This would be modular so each form takes >>>> care of things. &

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-11 Thread M0E Lnx
called UNDO > unhide form (the current form pointed to is now Form5) > Endif > > > -- Original Message --- > From: "M0E Lnx" > To: "mailing list for gambas users" > Sent: Thu, 11 Dec 2008 14:50:38 -0600 > Subject: Re: [Gambas-user] Emulatin

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-11 Thread nando
uot;M0E Lnx" To: "mailing list for gambas users" Sent: Thu, 11 Dec 2008 14:50:38 -0600 Subject: Re: [Gambas-user] Emulating wizard Back/Next navigation > Exactly. > > The forward navigation depends on the user input, so it could jump > from Form1 to Form3 and then to F

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-11 Thread M0E Lnx
t;> care of things. >>> Or, the list of wizard steps could be in a global string array with the name >>> of the form and simply step through the index. >>> -Fernando >>> >>> >>> -- Original Message --- >>> From: "

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-11 Thread Simonart Dominique
run the correct code. This would be modular so each form takes >> care of things. >> Or, the list of wizard steps could be in a global string array with the name >> of the form and simply step through the index. >> -Fernando >> >> >> -- Original M

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-11 Thread M0E Lnx
y step through the index. > -Fernando > > > -- Original Message --- > From: "M0E Lnx" > To: "mailing list for gambas users" > Sent: Wed, 10 Dec 2008 20:39:45 + > Subject: [Gambas-user] Emulating wizard Back/Next navigation >

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-11 Thread nando
he name of the form and simply step through the index. -Fernando -- Original Message --- From: "M0E Lnx" To: "mailing list for gambas users" Sent: Wed, 10 Dec 2008 20:39:45 + Subject: [Gambas-user] Emulating wizard Back/Next navigation > So I set mys

[Gambas-user] Emulating wizard Back/Next navigation

2008-12-10 Thread M0E Lnx
So I set myself to create a program that acts like a wizard, but chose not to use the wizard object because well, there is just too many variables here, and there is more than one way to get to the end, Depending on user input. So what I did was create a navigation tool bar at the bottom of FMain