PC Review


Reply
Thread Tools Rate Thread

creating a wizard like app in VB.NET

 
 
LIN
Guest
Posts: n/a
 
      20th Feb 2004
I am trying to create a wizard like application in VB .NET. When i click
NEXT button FORM1 it should open FORM2 and CLOSE that FORM1. How do I
achieve this? I have done this in VB6 but not .NET. A tutorial or a code
same?

Please advice.

Thanks!

LIN


 
Reply With Quote
 
 
 
 
Cor
Guest
Posts: n/a
 
      20th Feb 2004
Hi Lin,

> I am trying to create a wizard like application in VB .NET. When i click
> NEXT button FORM1 it should open FORM2 and CLOSE that FORM1. How do I
> achieve this? I have done this in VB6 but not .NET. A tutorial or a code
> same?
>
> Please advice.
>

The only advice can be to learn first the basic things and then start making
a wizard. To make a wizard in needs at least a wizard.

Just my thought,

Cor


 
Reply With Quote
 
Steve
Guest
Posts: n/a
 
      20th Feb 2004
Hi Lin

I liked the Wizard add-in in VB6. It allowed me to create wizard-like
modules quite easily. I don't know if it's available in .NET somewhere, I
haven't looked. The wizards I am going to create are only going to be about
4 or 5 screens long, I would think it'll be better to have all the 'screens'
contained in a GroupBox control, then when the user clicks next, simply hide
the GroupBox for that 'screen' and move the next GroupBox into view.

In my opinion, this would be more preferable than closing and opening forms,
as that would take longer and you will probably want to share data amongst
the stages of the wizard, which would be a lot easier if the stages are on
the same form.

Just an idea to consider.

Kind Regards,
Steve.

"LIN" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> I am trying to create a wizard like application in VB .NET. When i click
> NEXT button FORM1 it should open FORM2 and CLOSE that FORM1. How do I
> achieve this? I have done this in VB6 but not .NET. A tutorial or a code
> same?
>
> Please advice.
>
> Thanks!
>
> LIN
>
>



 
Reply With Quote
 
Herfried K. Wagner [MVP]
Guest
Posts: n/a
 
      20th Feb 2004
* "LIN" <(E-Mail Removed)> scripsit:
> I am trying to create a wizard like application in VB .NET. When i click
> NEXT button FORM1 it should open FORM2 and CLOSE that FORM1. How do I
> achieve this? I have done this in VB6 but not .NET. A tutorial or a code
> same?


I remember the magic library includes a wizard framework:

<http://www.dotnetmagic.com> (commercial solution)

Other samples (in C#):

<http://www.codeproject.com/cs/miscctrl/tswizard.asp>
<http://www.codeproject.com/cs/miscctrl/ak_wizard.asp?print=true>

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
 
Reply With Quote
 
Cor
Guest
Posts: n/a
 
      20th Feb 2004
Hi Herfried,
> > When i click
> > NEXT button FORM1 it should open FORM2 and CLOSE that FORM1. How do I
> > achieve this? I have done this in VB6 but not .NET. A tutorial or a code
> > same?

>
> I remember the magic library includes a wizard framework:
>
> <http://www.dotnetmagic.com> (commercial solution)
>

To open a form2 from form1?

:-) Is that real a good tool for that?

Or can I maybe sell a tool for that to you?

Cor


 
Reply With Quote
 
Herfried K. Wagner [MVP]
Guest
Posts: n/a
 
      20th Feb 2004
Cor,

* "Cor" <(E-Mail Removed)> scripsit:
>>> When i click
>>> NEXT button FORM1 it should open FORM2 and CLOSE that FORM1. How do I
>>> achieve this? I have done this in VB6 but not .NET. A tutorial or a code
>>> same?

>>
>> I remember the magic library includes a wizard framework:
>>
>> <http://www.dotnetmagic.com> (commercial solution)

>
> To open a form2 from form1?


I have rarely seen a wizard which switched between forms. That's more
confusing than useful. The links I posted do /not/ switch between
forms.

> :-) Is that real a good tool for that?


I played around with the free version some months ago and it worked
well.

> Or can I maybe sell a tool for that to you?


:->

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
 
Reply With Quote
 
CJ Taylor
Guest
Posts: n/a
 
      20th Feb 2004

"Herfried K. Wagner [MVP]" <hirf-spam-me-(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> Cor,
>
> * "Cor" <(E-Mail Removed)> scripsit:
> >>> When i click
> >>> NEXT button FORM1 it should open FORM2 and CLOSE that FORM1. How do I
> >>> achieve this? I have done this in VB6 but not .NET. A tutorial or a

code
> >>> same?
> >>
> >> I remember the magic library includes a wizard framework:
> >>
> >> <http://www.dotnetmagic.com> (commercial solution)

> >
> > To open a form2 from form1?

>
> I have rarely seen a wizard which switched between forms. That's more
> confusing than useful. The links I posted do /not/ switch between
> forms.
>


I have... wow... slow...


> > :-) Is that real a good tool for that?

>
> I played around with the free version some months ago and it worked
> well.
>
> > Or can I maybe sell a tool for that to you?

>
> :->
>
> --
> Herfried K. Wagner [MVP]
> <http://www.mvps.org/dotnet>



 
Reply With Quote
 
Herfried K. Wagner [MVP]
Guest
Posts: n/a
 
      20th Feb 2004
* "CJ Taylor" <(E-Mail Removed)> scripsit:
>>>> I remember the magic library includes a wizard framework:
>>>>
>>>> <http://www.dotnetmagic.com> (commercial solution)
>>>
>>> To open a form2 from form1?

>>
>> I have rarely seen a wizard which switched between forms. That's more
>> confusing than useful. The links I posted do /not/ switch between
>> forms.
>>

>
> I have... wow... slow...


Mhm... What do you want to tell me?

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Creating wizard John Microsoft VB .NET 1 15th Dec 2007 07:42 PM
Re: Creating a Wizard with VBA?? Susan Microsoft Excel Programming 1 23rd May 2007 05:25 PM
Creating my own wizard =?Utf-8?B?dGVjaG5vZ2VuaWk=?= Microsoft Word Document Management 1 12th Oct 2005 08:43 PM
Creating own wizard =?Utf-8?B?bWlja2V5bW91c2VhcnM=?= Microsoft Word Document Management 2 7th Jan 2004 12:43 AM
Wizard for creating a new user control is DIFFERENT on code generation than Forms, inconsistend by a lazy wizard dev news.microsoft.com Microsoft Dot NET Framework Forms 4 2nd Nov 2003 07:02 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:53 PM.