hello!
> i used to do something similar, and i would move the tab control off the top
> of the form,
I hadn't though of that .. I just tried in the designer, it wouldn't
allow me to do so, so you must have coded it to do that right?
> or else hide it behind another control, so the tab selectors
> would not be visible, but the actual content pane for each tab page are
> visible.
tried that just now too, and that works ... I'll have to remember that
technique.
> then you control the current tab programatically as you have
> suggested. i was using this to make a kind of wizard control, but there are
> great free wizard controls out there if this is what you are using it for.
what are wizard controls? I think at this point I have the "one form,
several panels" approach working, but still curious.
Thanks,
Esmail
Tim_Mac - 29 Dec 2005 09:54 GMT
hi Esmail,
the best wizard control i know of is on codeproject, written by Al Gardner:
http://www.codeproject.com/cs/miscctrl/DesignTimeWizard.asp
a wizard control is used when you have a sequence of steps to perform, and
you want to display some user interface components at each step. i use one
when i am loading up my windows forms content management system, first
page/tab is for login, then another for checking passwords, downloading
data, running integrity check etc.
it has built-in Next/Previous buttons and you can control it all
programatically if you want to. it's very good.
i think it is a valuable control to have available to you if you write
windows forms applications.
tim
--------------------------
blog: http://tim.mackey.ie
> hello!
>
[quoted text clipped - 19 lines]
> Thanks,
> Esmail