MerlinKnight
Computer
- May 1, 2003
- 23
Hello,
I am looking at some codes stepping through them trying to learn more about VB and how it works. I am following this code which i have learned alot from but i don't understand this part.
Here is part of it:
For C = 1 To d: DA$(C) = "": Next
bypass2:
TK3PicType.List2.AddItem tempA$ <<<This is the problem
GoTo getit2 <Back Here
End If
Close 1
The first time it runs this it jumps to TK3PicType form and goes to this:
Private Sub Form_Load()
List1.Clear
RefreshList.Visible = False
List1.AddItem "Select memory size"
List1.AddItem "to speed disassembly"
List1.AddItem "when required data is"
List1.AddItem "known to be less than"
List1.AddItem "the PIC's capacity"
List1.AddItem ""
B = 100: List1.AddItem (Str$(B) & Chr(9) & "commands")
B = 250
For A = 1 To 32
List1.AddItem (Str$(B) & Chr(9) & "commands")
B = B + 250: Next
Label5.Caption = "Device currently selected " & PICdevice
End Sub
Then it goes back to GoTo getit2. It works but i don't understand why the first time through it goes to the sub form folder of TK3PicType form. But it does not go to the form the next time it is run. It does execute TK3PicType.List2.AddItem tempA$ then goes straight to GoTo getit2. This happens when i step through it.
Also the code it executes are for List1. Why is it even going to Private Sub Form_Load()?
TK3PicType.List2.AddItem
i figured it means
Go to TK3PicType, then to list2 of that form and additems to the list for list2.?
I am looking at some codes stepping through them trying to learn more about VB and how it works. I am following this code which i have learned alot from but i don't understand this part.
Here is part of it:
For C = 1 To d: DA$(C) = "": Next
bypass2:
TK3PicType.List2.AddItem tempA$ <<<This is the problem
GoTo getit2 <Back Here
End If
Close 1
The first time it runs this it jumps to TK3PicType form and goes to this:
Private Sub Form_Load()
List1.Clear
RefreshList.Visible = False
List1.AddItem "Select memory size"
List1.AddItem "to speed disassembly"
List1.AddItem "when required data is"
List1.AddItem "known to be less than"
List1.AddItem "the PIC's capacity"
List1.AddItem ""
B = 100: List1.AddItem (Str$(B) & Chr(9) & "commands")
B = 250
For A = 1 To 32
List1.AddItem (Str$(B) & Chr(9) & "commands")
B = B + 250: Next
Label5.Caption = "Device currently selected " & PICdevice
End Sub
Then it goes back to GoTo getit2. It works but i don't understand why the first time through it goes to the sub form folder of TK3PicType form. But it does not go to the form the next time it is run. It does execute TK3PicType.List2.AddItem tempA$ then goes straight to GoTo getit2. This happens when i step through it.
Also the code it executes are for List1. Why is it even going to Private Sub Form_Load()?
TK3PicType.List2.AddItem
i figured it means
Go to TK3PicType, then to list2 of that form and additems to the list for list2.?