Hi,
I was wondering... is it possible to create a "next" button control in vb express 2008 like they do in setup programs.
Thank you,
Geekboy124
Printable View
Hi,
I was wondering... is it possible to create a "next" button control in vb express 2008 like they do in setup programs.
Thank you,
Geekboy124
If you want to create a wizard interface then there are various ways to do it. The one I'd choose would be to use a single form with a single set of common Buttons on it (Back, Next, Cancel) and then a UserControl for each page. The UserControls would be dynamically created and destroyed as each page was viewed, but the Buttons would be constant.
thank you! i'll try it!
um im more of a visual learner, could you give me a tutorial or a link to a tutorial? Thanks
Go to the codebank. There is a wizard control there. Learn the code as its pretty easy. I think it uses a array of panel controls to display and hide information.
ok
thanks!
what's the codebank?
It's just another forum in this website. Go here: http://www.vbforums.com/, then scroll down until you see "CodeBank - Visual Basic.Net"Quote:
Originally Posted by geekboy124
thank you!!