vb@rchiv
VB Classic
VB.NET
ADO.NET
VBA
C#
NEU! sevCoolbar 3.0 - Professionelle Toolbars im modernen Design!  
 vb@rchiv Quick-Search: Suche startenErweiterte Suche starten   Impressum  | Datenschutz  | vb@rchiv CD Vol.6  | Shop Copyright ©2000-2025
 
zurück

 Sie sind aktuell nicht angemeldet.Funktionen: Einloggen  |  Neu registrieren  |  Suchen

VB.NET - Ein- und Umsteiger
Re: Wie erstelle ich am besten ein sehr umfangreiches Menü 
Autor: cgiesen
Datum: 13.12.09 10:26

Fortsetzung...

            Dim itemGoto As New ToolStripMenuItem
            itemGoto.Text = "Goto"
            Dim item0to9 As New ToolStripMenuItem
            item0to9.Text = "0 to 9"
            item0to9.DropDownItems.Add("0", Nothing, New System.EventHandler( _
              AddressOf mnuNavigation_Goto))
            item0to9.DropDownItems.Add("1", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            item0to9.DropDownItems.Add("2", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            item0to9.DropDownItems.Add("3", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            item0to9.DropDownItems.Add("4", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            item0to9.DropDownItems.Add("5", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            item0to9.DropDownItems.Add("6", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            item0to9.DropDownItems.Add("7", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            item0to9.DropDownItems.Add("8", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            item0to9.DropDownItems.Add("9", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemGoto.DropDownItems.Add(item0to9)
            Dim itemAtoG As New ToolStripMenuItem
            itemAtoG.Text = "A to G"
            itemAtoG.DropDownItems.Add("A", Nothing, New System.EventHandler( _
              AddressOf mnuNavigation_Goto))
            itemAtoG.DropDownItems.Add("B", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemAtoG.DropDownItems.Add("C", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemAtoG.DropDownItems.Add("D", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemAtoG.DropDownItems.Add("E", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemAtoG.DropDownItems.Add("F", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemAtoG.DropDownItems.Add("G", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemGoto.DropDownItems.Add(itemAtoG)
            Dim itemHtoN As New ToolStripMenuItem
            itemHtoN.Text = "H to N"
            itemHtoN.DropDownItems.Add("H", Nothing, New System.EventHandler( _
              AddressOf mnuNavigation_Goto))
            itemHtoN.DropDownItems.Add("I", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemHtoN.DropDownItems.Add("J", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemHtoN.DropDownItems.Add("K", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemHtoN.DropDownItems.Add("L", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemHtoN.DropDownItems.Add("M", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemHtoN.DropDownItems.Add("N", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemGoto.DropDownItems.Add(itemHtoN)
            Dim itemOtoT As New ToolStripMenuItem
            itemOtoT.Text = "O to T"
            itemOtoT.DropDownItems.Add("O", Nothing, New System.EventHandler( _
              AddressOf mnuNavigation_Goto))
            itemOtoT.DropDownItems.Add("P", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemOtoT.DropDownItems.Add("Q", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemOtoT.DropDownItems.Add("R", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemOtoT.DropDownItems.Add("S", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemOtoT.DropDownItems.Add("T", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemGoto.DropDownItems.Add(itemOtoT)
            Dim itemUtoZ As New ToolStripMenuItem
            itemUtoZ.Text = "V to Z"
            itemUtoZ.DropDownItems.Add("U", Nothing, New System.EventHandler( _
              AddressOf mnuNavigation_Goto))
            itemUtoZ.DropDownItems.Add("V", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemUtoZ.DropDownItems.Add("W", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemUtoZ.DropDownItems.Add("X", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemUtoZ.DropDownItems.Add("Y", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemUtoZ.DropDownItems.Add("Z", Nothing, New System.EventHandler( _
            AddressOf mnuNavigation_Goto))
            itemGoto.DropDownItems.Add(itemUtoZ)
            itemNavigation.DropDownItems.Add(itemGoto)
            itemNavigation.DropDownItems.Add("-")
Fortsetzung folgt...
alle Nachrichten anzeigenGesamtübersicht  |  Zum Thema  |  Suchen

 ThemaViews  AutorDatum
Wie erstelle ich am besten ein sehr umfangreiches Menü1.213cgiesen11.12.09 20:11
Re: Wie erstelle ich am besten ein sehr umfangreiches Menü814DerMicha12.12.09 07:33
Re: Wie erstelle ich am besten ein sehr umfangreiches Menü780DerMicha12.12.09 07:35
Re: Wie erstelle ich am besten ein sehr umfangreiches Menü731Christoph197212.12.09 09:01
Re: Wie erstelle ich am besten ein sehr umfangreiches Menü695cgiesen12.12.09 09:53
Re: Wie erstelle ich am besten ein sehr umfangreiches Menü853keco12.12.09 10:12
Re: Wie erstelle ich am besten ein sehr umfangreiches Menü702viperbone12.12.09 10:28
Re: Wie erstelle ich am besten ein sehr umfangreiches Menü669jan6198313.12.09 04:23
Re: Wie erstelle ich am besten ein sehr umfangreiches Menü659Christoph197213.12.09 08:59
Re: Wie erstelle ich am besten ein sehr umfangreiches Menü677cgiesen13.12.09 10:24
Re: Wie erstelle ich am besten ein sehr umfangreiches Menü690cgiesen13.12.09 10:28
Re: Wie erstelle ich am besten ein sehr umfangreiches Menü762cgiesen13.12.09 10:26
Re: Wie erstelle ich am besten ein sehr umfangreiches Menü712TobiasS16.12.09 15:04
Re: Wie erstelle ich am besten ein sehr umfangreiches Menü650cgiesen16.12.09 15:06
Re: Wie erstelle ich am besten ein sehr umfangreiches Menü679cgiesen13.12.09 10:27

Sie sind nicht angemeldet!
Um auf diesen Beitrag zu antworten oder neue Beiträge schreiben zu können, müssen Sie sich zunächst anmelden.

Einloggen  |  Neu registrieren

Funktionen:  Zum Thema  |  GesamtübersichtSuchen 

nach obenzurück
 
   

Copyright ©2000-2025 vb@rchiv Dieter Otter
Alle Rechte vorbehalten.
Microsoft, Windows und Visual Basic sind entweder eingetragene Marken oder Marken der Microsoft Corporation in den USA und/oder anderen Ländern. Weitere auf dieser Homepage aufgeführten Produkt- und Firmennamen können geschützte Marken ihrer jeweiligen Inhaber sein.

Diese Seiten wurden optimiert für eine Bildschirmauflösung von mind. 1280x1024 Pixel