code that opens up another form in vb.net

  • Thread starter Thread starter gustavo martinez via .NET 247
  • Start date Start date
G

gustavo martinez via .NET 247

i need a code that opens up another form in vb.net...ive starttedin a program so farr that is for copy machines and its acontract and i want to input all the information and have a nextbutton where it can reset the information in the box and at thesame time save that information and put it on a list box. soevery time i input info. i click next machine button it resetsthe previous input and i could put the next machine and i couldsee the last input on a screen next to it so i could c thelisting . please can u get back to me as soon as possible and iwould appreciate it alot. thank u and god bless
 
you would create an instance of the form class you want to 'open' and then
use show to show it

dim oForm as new MyCustomOtherForm
oForm.Show()


i need a code that opens up another form in vb.net...ive startted in a
program so farr that is for copy machines and its a contract and i want to
input all the information and have a next button where it can reset the
information in the box and at the same time save that information and put it
on a list box. so every time i input info. i click next machine button it
resets the previous input and i could put the next machine and i could see
the last input on a screen next to it so i could c the listing . please can
u get back to me as soon as possible and i would appreciate it alot. thank u
and god bless
 
Back
Top