Meinthecorner
Registered User.
- Local time
- Today, 09:47
- Joined
- Nov 29, 2008
- Messages
- 25
I'm using the basic Password Challenge from this MS Bulletin
http://support.microsoft.com/kb/209871
I have a FE \ BE based database but I'm Getting the error "3219" after the user has pressed submit.
The Password form code is
The error is not present if I load the form and submit on the backend table. I've never had it before as the database has just been split due to requests from other users to access the database.
Now I'm slowly learning VBA so does anybody have a Solution and a basic explanation as to why it happens?
http://support.microsoft.com/kb/209871
I have a FE \ BE based database but I'm Getting the error "3219" after the user has pressed submit.
The Password form code is
Code:
If IsNull(Forms!frmPassword!Text0.Value) Then
MsgBox "You cannot enter a blank Password. Try again."
Me!Text0.SetFocus
Else
MyPassword = Me!Text0.Value
DoCmd.Close acForm, "frmPassword"
End If
The error is not present if I load the form and submit on the backend table. I've never had it before as the database has just been split due to requests from other users to access the database.
Now I'm slowly learning VBA so does anybody have a Solution and a basic explanation as to why it happens?