TextBox
Hola buenos días a todos. Tengo un TextBox2 que cuando yo doy clic en el me reflega los datos que tengo el la ceda b2 pero lo que quiero hacer es que lo habrá sin necesidad de dar clic en el, wue al momento de abrir la ventana lo coloque en automático. Mi instrccion es:
Private Sub CommandButton1_Click()
Range("A1") = TextBox1
Unload Me
End Sub
Private Sub TextBox1_Change()
End Sub
Private Sub TextBox2_Enter()
If Range("A1") <> "" Then
TextBox2.Value = Range("A1")
TextBox2.Locked = True
End If
End Sub
Desde ahora muchas gracias.
Private Sub CommandButton1_Click()
Range("A1") = TextBox1
Unload Me
End Sub
Private Sub TextBox1_Change()
End Sub
Private Sub TextBox2_Enter()
If Range("A1") <> "" Then
TextBox2.Value = Range("A1")
TextBox2.Locked = True
End If
End Sub
Desde ahora muchas gracias.
1 Respuesta
Respuesta de Elsa Matilde
1