Openbare Klasse Form1
Privé LastTextBox als TextBox = niets
Privé Sub (ByVal afzender als System.Object, ByVal e als System.EventArgs) Handvatten Form1_Load MyBase.Load
Schemerige tb als TextBox
Schemerige ctls () als Controle
Voor I als Geheel = 0 tot 71
ctls = Me.Controls.Find („TextBox“ & Ware I,)
Als ctls. De lengte > 0 AndAlso TypeOf ctls (0) is dan TextBox
tb = C (ctls (0), TextBox)
AddHandler tb.GotFocus, tb_GotFocus AddressOf
Eind als
Daarna
Sub van het eind
Privé Subtb_GotFocus (ByVal afzender als Voorwerp, ByVal e als System.EventArgs)
Schemerige tb als TextBox = C (afzender, TextBox)
LastTextBox = tb
Sub van het eind
Privé SubbtnRight_Click (ByVal afzender als System.Object, ByVal e als System.EventArgs) behandelt btnRight.Click
Als niet IsNothing (LastTextBox) toen
Schemerige I als Geheel
Schemerige strInt als Koord = LastTextBox.Name.Remove (0, „TextBox“. Lengte)
Als Integer.TryParse (strInt, I) Dan
Als ((I + 1) Mod. 9) <> 0 toen
i = I + 1
Schemerige ctls () als Controle = Me.Controls.Find („TextBox“ & Ware I,)
Als ctls. De lengte > 0 AndAlso TypeOf ctls (0) is dan TextBox
Schemerige tb als TextBox = C (ctls (0), TextBox)
tb. Nadruk ()
Eind als
Anders
LastTextBox.Focus ()
Eind als
Eind als
Eind als
Sub van het eind
Privé SubbtnLeft_Click (ByVal afzender als System.Object, ByVal e als System.EventArgs) behandelt btnLeft.Click
Als niet IsNothing (LastTextBox) toen
Schemerige I als Geheel
Schemerige strInt als Koord = LastTextBox.Name.Remove (0, „TextBox“. Lengte)
Als Integer.TryParse (strInt, I) Dan
Als (Mod. 9 van I) <> 0 toen
i = I - 1
Schemerige ctls () als Controle = Me.Controls.Find („TextBox“ & Ware I,)
Als ctls. De lengte > 0 AndAlso TypeOf ctls (0) is dan TextBox
Schemerige tb als TextBox = C (ctls (0), TextBox)
tb. Nadruk ()
Eind als
Anders
LastTextBox.Focus ()
Eind als
Eind als
Eind als
Sub van het eind
Privé SubbtnUp_Click (ByVal afzender als System.Object, ByVal e als System.EventArgs) behandelt btnUp.Click
Als niet IsNothing (LastTextBox) toen
Schemerige I als Geheel
Schemerige strInt als Koord = LastTextBox.Name.Remove (0, „TextBox“. Lengte)
Als Integer.TryParse (strInt, I) Dan
Als I > 8 toen
i = I - 9
Schemerige ctls () als Controle = Me.Controls.Find („TextBox“ & Ware I,)
Als ctls. De lengte > 0 AndAlso TypeOf ctls (0) is dan TextBox
Schemerige tb als TextBox = C (ctls (0), TextBox)
tb. Nadruk ()
Eind als
Anders
LastTextBox.Focus ()
Eind als
Eind als
Eind als
Sub van het eind
Privé SubbtnDown_Click (ByVal afzender als System.Object, ByVal e als System.EventArgs) behandelt btnDown.Click
Als niet IsNothing (LastTextBox) toen
Schemerige I als Geheel
Schemerige strInt als Koord = LastTextBox.Name.Remove (0, „TextBox“. Lengte)
Als Integer.TryParse (strInt, I) Dan
Als I < 63="" Then="" i="i"> 0 AndAlso TypeOf ctls (0) dan TextBox is
Schemerige tb als TextBox = C (ctls (0), TextBox)
tb. Nadruk ()
Eind als
Anders
LastTextBox.Focus ()
Eind als
Eind als
Eind als
Sub van het eind
De Klasse van het eind
|