Ciao a tutti, sto cercando di inserire in una singola cella dei dati, del tipo cliente e su una cella richiamando l'useform mi scrive il nome e cognome del cliente e cosi via,sono alle primissime armi con vba,ho creato l'useform ma non riesco ad utilizzarla:
Private Sub Workbook_Open()
If Sheets("PREV.VELOCE").[B1] = 0 Or Sheets("PREV.VELOCE").[B1] = "" Then
Application.WindowState = xlMinimized
CLIENTE.Show DoEvents
End If
End Sub
Private Sub CommandButton1_Click()
With Sheets("PREV.VELOCE")
.Unprotect
.[B1].Value = TextBox1.Value
.[B1].Locked = True
.Protect
End With
Unload Me
Application.WindowState = xlNormal
End Sub
Private Sub CommandButton2_Click()
CmdEsci
End Sub
Private Sub UserForm_Click()
End Sub
sicuramente tutta sbagliata,anche perche non mi interessa proteggere i dati inseriti, per favore aiutatemi