Hello, got another brain buster (well it is to me :/)
I have 20 buttons on my form:
And I need a simple for look that removes them for my form (the opposite of: Me.Controls.Add(buttonname) )
thanks for any pointers!
Lee
I have 20 buttons on my form:
Code:
Dim button0 As New Button
Dim button1 As New Button
Dim button2 As New Button
Dim button3 As New Button
Dim button4 As New Button
Dim button5 As New Button
Dim button6 As New Button
Dim button7 As New Button
Dim button8 As New Button
Dim button9 As New Button
Dim button10 As New Button
Dim button11 As New Button
Dim button12 As New Button
Dim button13 As New Button
Dim button14 As New Button
Dim button15 As New Button
Dim button16 As New Button
Dim button17 As New Button
Dim button18 As New Button
Dim button19 As New Button
And I need a simple for look that removes them for my form (the opposite of: Me.Controls.Add(buttonname) )
thanks for any pointers!
Lee