Hi all,

I recently moved from developing windows apps with Borland Builder to
Visual studio.net, With the Borland product I used to create wizards
using a tabcontrol, I would then add the pages i required and make the
tab for each page invisible, then when the user pressed next or back i
would move to the next or previous tab respectively. Since the tabs were
invisible they could not see them to click on them and it worked really
well.

Now I need to create a wizard in a .net app using c#, I put a tabcontrol
on my form and added a few pages to it but I can't seem to hide the
tabs, I've googled and found that you could remove the pages and only
add the one you wanted to view but this would still leave a tab at the
top of the form that they could see.

Is there a way round this or is there a better way to create a wizard
than this using .net and c#?

TIA

Joe

Re: Creaing a wizard form by Herfried

Herfried
Fri May 20 06:50:03 CDT 2005

"Joe_Black" <JoeBlack@newsgroups.nospam> schrieb:
> Now I need to create a wizard in a .net app using c#, I put a tabcontrol
> on my form and added a few pages to it but I can't seem to hide the tabs,
> I've googled and found that you could remove the pages and only add the
> one you wanted to view but this would still leave a tab at the top of the
> form that they could see.

Removing a tabcontrol's tabpage headers
<URL:http://dotnet.mvps.org/dotnet/faqs/?id=tabcontrolremoveheaders&lang=en>

<URL:http://www.codeproject.com/cs/miscctrl/tswizard.asp>
<URL:http://www.codeproject.com/cs/miscctrl/ak_wizard.asp>
<URL:http://www.codeproject.com/cs/miscctrl/magicwizard.asp>
<URL:http://www.sellsbrothers.com/tools/genghis/>

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>


Re: Creaing a wizard form by PaulLaudeman

PaulLaudeman
Fri May 20 07:09:16 CDT 2005


You might also want to take a look at the Genghis[1] project. They have a
wizard model that you can use, too, which works well.

http://www.sellsbrothers.com/tools/genghis/


--

Paul Laudeman
http://www.codebetter.com/blogs/paul.laudeman

-- Helping You to Make "Smart Clients" Smarter!


"Herfried K. Wagner [MVP]" wrote:

> "Joe_Black" <JoeBlack@newsgroups.nospam> schrieb:
> > Now I need to create a wizard in a .net app using c#, I put a tabcontrol
> > on my form and added a few pages to it but I can't seem to hide the tabs,
> > I've googled and found that you could remove the pages and only add the
> > one you wanted to view but this would still leave a tab at the top of the
> > form that they could see.
>
> Removing a tabcontrol's tabpage headers
> <URL:http://dotnet.mvps.org/dotnet/faqs/?id=tabcontrolremoveheaders&lang=en>
>
> <URL:http://www.codeproject.com/cs/miscctrl/tswizard.asp>
> <URL:http://www.codeproject.com/cs/miscctrl/ak_wizard.asp>
> <URL:http://www.codeproject.com/cs/miscctrl/magicwizard.asp>
> <URL:http://www.sellsbrothers.com/tools/genghis/>
>
> --
> M S Herfried K. Wagner
> M V P <URL:http://dotnet.mvps.org/>
> V B <URL:http://classicvb.org/petition/>
>
>

Re: Creaing a wizard form by Joe_Black

Joe_Black
Mon May 23 05:08:42 CDT 2005

Paul Laudeman wrote:
> You might also want to take a look at the Genghis[1] project. They have a
> wizard model that you can use, too, which works well.
>
> http://www.sellsbrothers.com/tools/genghis/
>
>
> --
>
> Paul Laudeman
> http://www.codebetter.com/blogs/paul.laudeman
>
> -- Helping You to Make "Smart Clients" Smarter!
>
>
> "Herfried K. Wagner [MVP]" wrote:
>
>
>>"Joe_Black" <JoeBlack@newsgroups.nospam> schrieb:
>>
>>>Now I need to create a wizard in a .net app using c#, I put a tabcontrol
>>>on my form and added a few pages to it but I can't seem to hide the tabs,
>>>I've googled and found that you could remove the pages and only add the
>>>one you wanted to view but this would still leave a tab at the top of the
>>>form that they could see.
>>
>>Removing a tabcontrol's tabpage headers
>><URL:http://dotnet.mvps.org/dotnet/faqs/?id=tabcontrolremoveheaders&lang=en>
>>
>><URL:http://www.codeproject.com/cs/miscctrl/tswizard.asp>
>><URL:http://www.codeproject.com/cs/miscctrl/ak_wizard.asp>
>><URL:http://www.codeproject.com/cs/miscctrl/magicwizard.asp>
>><URL:http://www.sellsbrothers.com/tools/genghis/>
>>
>>--
>> M S Herfried K. Wagner
>>M V P <URL:http://dotnet.mvps.org/>
>> V B <URL:http://classicvb.org/petition/>
>>
>>

Many thanks to both of you for your responses

Joe