|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Visual Studio 2003 Menu on form.vbhi can anyone please help me?
Im new to visual studio 2003 and im trying to create a program in visual basic. The problem is i have put a menu bar onto the first form, and have created some other forms but cannot find any options to point from the menu to any of the other forms i have created. can anyone help me, as i would be very greatful Thanks Phill "Phill Emery" <phill81_em***@hotmail.com> schrieb Handle the menu's click event. In the event handler, open one of the Forms.> hi can anyone please help me? > > Im new to visual studio 2003 and im trying to create a program in > visual basic. > The problem is i have put a menu bar onto the first form, and have > created some other forms but cannot find any options to point from > the menu to any of the other forms i have created. > > can anyone help me, as i would be very greatful See also: http://msdn.microsoft.com/library/en-us/vbcon/html/vbconEventHandling.asp http://msdn.microsoft.com/library/en-us/vbcon/html/vbtskDisplayingModelessForm.asp http://msdn.microsoft.com/library/en-us/vbcn7/html/vaconEventsDelegatesInheritance.asp Armin Phill Emery wrote:
> hi can anyone please help me? What do you mean, "point from the menu to any other forms"> > Im new to visual studio 2003 and im trying to create a program in visual > basic. > The problem is i have put a menu bar onto the first form, and have created > some other forms but cannot find any options to point from the menu to any > of the other forms i have created. > > can anyone help me, as i would be very greatful > > Thanks Phill > > Are you asking how you open a new form from a menu item? The menu item calls a function. In that function you can do whatever you want, including opening a new form. Dim NewForm as new FormType NewForm.ShowDialog When I create my menu I do something like (this if for a context menu) //// RightClick.MenuItems.Add("&Edit", New EventHandler(AddressOf EditRecord)) RightClick.MenuItems.Add("&New", New EventHandler(AddressOf NewRecord)) RightClick.MenuItems.Add("&Delete", New EventHandler(AddressOf DeleteRecord)) RightClick.MenuItems.Add("Re&conciled", New EventHandler(AddressOf MarkasReconciled)) RightClick.MenuItems.Add("&Refresh", New EventHandler(AddressOf RefreshData)) RightClick.MenuItems.Add("&Highlight", New EventHandler(AddressOf Highlight)) \\\\ You see that I add an EventHandler that points to a function Chris yes i want to know how to open a new form from a menu item.
i have got this so far Private Sub MenuItem6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem6.Click Dim FilmsToGet As New Form FilmsToGet.ShowDialog() and want to link menu item 6 to a form called FilmsToGet.vb, but this isnt working and i get this error at the top of the page. D:\My Documents\Visual Studio Projects\Film Database\Form1.vb(1): 'Class' statement must end with a matching 'End Class'. can you point me in the right direction please. Phill Show quoteHide quote "Chris" <no@spam.com> wrote in message news:OmjJXZ5RGHA.5780@TK2MSFTNGP10.phx.gbl... > Phill Emery wrote: > > hi can anyone please help me? > > > > Im new to visual studio 2003 and im trying to create a program in visual > > basic. > > The problem is i have put a menu bar onto the first form, and have created > > some other forms but cannot find any options to point from the menu to any > > of the other forms i have created. > > > > can anyone help me, as i would be very greatful > > > > Thanks Phill > > > > > > What do you mean, "point from the menu to any other forms" > > Are you asking how you open a new form from a menu item? > > The menu item calls a function. In that function you can do whatever > you want, including opening a new form. > > Dim NewForm as new FormType > NewForm.ShowDialog > > > When I create my menu I do something like (this if for a context menu) > > //// > RightClick.MenuItems.Add("&Edit", New EventHandler(AddressOf > EditRecord)) > RightClick.MenuItems.Add("&New", New EventHandler(AddressOf > NewRecord)) > RightClick.MenuItems.Add("&Delete", New EventHandler(AddressOf > DeleteRecord)) > RightClick.MenuItems.Add("Re&conciled", New > EventHandler(AddressOf MarkasReconciled)) > RightClick.MenuItems.Add("&Refresh", New EventHandler(AddressOf > RefreshData)) > RightClick.MenuItems.Add("&Highlight", New > EventHandler(AddressOf Highlight)) > \\\\ > > You see that I add an EventHandler that points to a function > > Chris
Show quote
Hide quote
"Phill Emery" <phill81_em***@hotmail.com> schrieb Maybe you only forgot the "End Sub" to close the Sub you've shown us above?> yes i want to know how to open a new form from a menu item. > > i have got this so far > > Private Sub MenuItem6_Click(ByVal sender As System.Object, ByVal e > As System.EventArgs) Handles MenuItem6.Click > > Dim FilmsToGet As New Form > > FilmsToGet.ShowDialog() > > and want to link menu item 6 to a form called FilmsToGet.vb, but > this isnt working > > and i get this error at the top of the page. > > D:\My Documents\Visual Studio Projects\Film Database\Form1.vb(1): > 'Class' statement must end with a matching 'End Class'. > > > can you point me in the right direction please. Armin no i have the end sub at the end, i just forgot to put that on the message
board Show quoteHide quote "Armin Zingler" <az.nospam@freenet.de> wrote in message news:ONeuQKCSGHA.5656@TK2MSFTNGP11.phx.gbl... > "Phill Emery" <phill81_em***@hotmail.com> schrieb > > yes i want to know how to open a new form from a menu item. > > > > i have got this so far > > > > Private Sub MenuItem6_Click(ByVal sender As System.Object, ByVal e > > As System.EventArgs) Handles MenuItem6.Click > > > > Dim FilmsToGet As New Form > > > > FilmsToGet.ShowDialog() > > > > and want to link menu item 6 to a form called FilmsToGet.vb, but > > this isnt working > > > > and i get this error at the top of the page. > > > > D:\My Documents\Visual Studio Projects\Film Database\Form1.vb(1): > > 'Class' statement must end with a matching 'End Class'. > > > > > > can you point me in the right direction please. > > > Maybe you only forgot the "End Sub" to close the Sub you've shown us above? > > > Armin Phill Emery wrote:
Show quoteHide quote > yes i want to know how to open a new form from a menu item. your logic for opening a form is fine, you have another problem in your > > i have got this so far > > Private Sub MenuItem6_Click(ByVal sender As System.Object, ByVal e As > System.EventArgs) Handles MenuItem6.Click > > Dim FilmsToGet As New Form > > FilmsToGet.ShowDialog() > > and want to link menu item 6 to a form called FilmsToGet.vb, but this isnt > working > > and i get this error at the top of the page. > > D:\My Documents\Visual Studio Projects\Film Database\Form1.vb(1): 'Class' > statement must end with a matching 'End Class'. > > > can you point me in the right direction please. > > Phill > > > "Chris" <no@spam.com> wrote in message > news:OmjJXZ5RGHA.5780@TK2MSFTNGP10.phx.gbl... > >>Phill Emery wrote: >> >>>hi can anyone please help me? >>> >>>Im new to visual studio 2003 and im trying to create a program in visual >>>basic. >>>The problem is i have put a menu bar onto the first form, and have > > created > >>>some other forms but cannot find any options to point from the menu to > > any > >>>of the other forms i have created. >>> >>>can anyone help me, as i would be very greatful >>> >>>Thanks Phill >>> >>> >> >>What do you mean, "point from the menu to any other forms" >> >>Are you asking how you open a new form from a menu item? >> >>The menu item calls a function. In that function you can do whatever >>you want, including opening a new form. >> >>Dim NewForm as new FormType >>NewForm.ShowDialog >> >> >>When I create my menu I do something like (this if for a context menu) >> >>//// >> RightClick.MenuItems.Add("&Edit", New EventHandler(AddressOf >>EditRecord)) >> RightClick.MenuItems.Add("&New", New EventHandler(AddressOf >>NewRecord)) >> RightClick.MenuItems.Add("&Delete", New EventHandler(AddressOf >>DeleteRecord)) >> RightClick.MenuItems.Add("Re&conciled", New >>EventHandler(AddressOf MarkasReconciled)) >> RightClick.MenuItems.Add("&Refresh", New EventHandler(AddressOf >>RefreshData)) >> RightClick.MenuItems.Add("&Highlight", New >>EventHandler(AddressOf Highlight)) >>\\\\ >> >>You see that I add an EventHandler that points to a function >> >>Chris > > > code. The error message is telling you that you don't have an End Class at the bottom for your Form1 Class. If you can't figure it out, post the code for Form1 in here so we can look at it. Chris its ok now i have redone the entire thing after you said the code i did was
fine, and it works now Thanks for the help Phill Show quoteHide quote "Chris" <no@spam.com> wrote in message news:%23BKoa0DSGHA.5900@tk2msftngp13.phx.gbl... > Phill Emery wrote: > > yes i want to know how to open a new form from a menu item. > > > > i have got this so far > > > > Private Sub MenuItem6_Click(ByVal sender As System.Object, ByVal e As > > System.EventArgs) Handles MenuItem6.Click > > > > Dim FilmsToGet As New Form > > > > FilmsToGet.ShowDialog() > > > > and want to link menu item 6 to a form called FilmsToGet.vb, but this isnt > > working > > > > and i get this error at the top of the page. > > > > D:\My Documents\Visual Studio Projects\Film Database\Form1.vb(1): 'Class' > > statement must end with a matching 'End Class'. > > > > > > can you point me in the right direction please. > > > > Phill > > > > > > "Chris" <no@spam.com> wrote in message > > news:OmjJXZ5RGHA.5780@TK2MSFTNGP10.phx.gbl... > > > >>Phill Emery wrote: > >> > >>>hi can anyone please help me? > >>> > >>>Im new to visual studio 2003 and im trying to create a program in visual > >>>basic. > >>>The problem is i have put a menu bar onto the first form, and have > > > > created > > > >>>some other forms but cannot find any options to point from the menu to > > > > any > > > >>>of the other forms i have created. > >>> > >>>can anyone help me, as i would be very greatful > >>> > >>>Thanks Phill > >>> > >>> > >> > >>What do you mean, "point from the menu to any other forms" > >> > >>Are you asking how you open a new form from a menu item? > >> > >>The menu item calls a function. In that function you can do whatever > >>you want, including opening a new form. > >> > >>Dim NewForm as new FormType > >>NewForm.ShowDialog > >> > >> > >>When I create my menu I do something like (this if for a context menu) > >> > >>//// > >> RightClick.MenuItems.Add("&Edit", New EventHandler(AddressOf > >>EditRecord)) > >> RightClick.MenuItems.Add("&New", New EventHandler(AddressOf > >>NewRecord)) > >> RightClick.MenuItems.Add("&Delete", New EventHandler(AddressOf > >>DeleteRecord)) > >> RightClick.MenuItems.Add("Re&conciled", New > >>EventHandler(AddressOf MarkasReconciled)) > >> RightClick.MenuItems.Add("&Refresh", New EventHandler(AddressOf > >>RefreshData)) > >> RightClick.MenuItems.Add("&Highlight", New > >>EventHandler(AddressOf Highlight)) > >>\\\\ > >> > >>You see that I add an EventHandler that points to a function > >> > >>Chris > > > > > > > > your logic for opening a form is fine, you have another problem in your > code. The error message is telling you that you don't have an End Class > at the bottom for your Form1 Class. If you can't figure it out, post > the code for Form1 in here so we can look at it. > > Chris
Adding Button Programatically - have an answer???
XML to ODBC DataView Multiple Change String builder (Parsing vertically presented records) Sub Main is not waiting!!!?? Adding data to database including resource files Sending web email Enabling / Disabling Tab Pages XmlDocument object to string - plase help with unusual character! |
|||||||||||||||||||||||