Código:
"Button_1"
"Button_2"
"Button_3"
Tengo una serie de variables llamadas:
Código:
Dim Button_1_Location_Y As Integer = 3
Dim Button_2_Location_Y As Integer = 32
Dim Button_3_Location_Y As Integer = 61
Y ahora necesito usar las variables en este FOR:
Código
For Each Control In Panela.Controls If Control.GetType.ToString.Contains("Button") Then Dim Botoncito As Button = CType(Control, Button) If Not Botoncito.Name = "Button_" & Selected_TAB Then ' Aquí el problema que no sé resolver: Botoncito.Location = New Point(Botoncito.Location.X, (Botoncito.name & "_Location_Y")) ' String: Button_1_Location_Y End If End If Next
Lo que necesito es convertir este string para usar la variable que se llama exáctamente igual:
Código:
(Botoncito.Name & "_Location_Y") ' String: Button_1_Location_Y
¿Alguna ayuda?
Saludos!