avenger619
Registered User.
- Local time
- Today, 15:31
- Joined
- Jan 2, 2013
- Messages
- 49
Hi Guys,
Currently I have this bottom code on a check mark, but I want my Else code to reflect no change. So if password is not accepted then no change, can anyone help with proper code? Very much appreciated. Thank you
Private Sub Sold_Click()
If InputBox("Enter Password", "Approved") = "12345" Then
Me!Sold = True
Me!Sold.Visible = True
Else
Me!Sold = "if password is not accepted then no change"
End If
End Sub
Currently I have this bottom code on a check mark, but I want my Else code to reflect no change. So if password is not accepted then no change, can anyone help with proper code? Very much appreciated. Thank you
Private Sub Sold_Click()
If InputBox("Enter Password", "Approved") = "12345" Then
Me!Sold = True
Me!Sold.Visible = True
Else
Me!Sold = "if password is not accepted then no change"
End If
End Sub