Any idea why upgrading from Windows 7 pro to Windows 10 would break a passworded textbox? Yes, they checked the caps lock key.
Every machine they upgraded now gets "The password was wrong, try again." Yes/No
All machines (Win7 and Win10) are using MS Office Professional Plus 2016 32 bit
Thanks!!
BTW.... I have Win 10 on my home computer and it works fine.
Every machine they upgraded now gets "The password was wrong, try again." Yes/No
All machines (Win7 and Win10) are using MS Office Professional Plus 2016 32 bit
Thanks!!
BTW.... I have Win 10 on my home computer and it works fine.
Code:
Private Sub UserForm_Activate() With UserForm13
.Top = Application.Top + 275
.Left = Application.Left + 200
End With
End Sub
Private Sub CommandButton1_Click()
Dim strPass As String
strPass = "nakosi"
If TextBox1.Value = strPass Then
Call UnprotectAllSheets
Unload Me
Else
If MsgBox("The password was wrong, try again", vbYesNo) = vbNo Then
Unload Me
Else
TextBox1.Value = ""
TextBox1.SetFocus
End If
End If
End Sub
Last edited: