Re: On Error GoTo is not working
- From: "OfficeDev18 via AccessMonster.com" <u14095@uwe>
- Date: Fri, 03 Mar 2006 17:20:36 GMT
Hello, Justine,
That's because On Error only looks for VBA errors, and the error you describe
is a procedural,data, or logic error. This type of error cannot be trapped
with On Error.
What you need to do is to assign a user-defined message to the user if a
certain condition exists, such as no data, etc. You can do this with the
MsgBox statement.
Hope this helps,
Sam
JNariss@xxxxxxxxx wrote:
Hello,
I have a form with the following code that is not working properly.
This form is created from one simple table called tblRequestPassword
with all fields being required. Fields are RequestID, Name, Reason, and
Date.
I was hoping someone could take a look and perhaps see what errors are
in my code. What I want it to do is to check that all fields have a
value and if so then execute the SendObject command. However, it is not
executing an error if any of the fields are left blank it just runs the
SendObject.
Private Sub Command9_Click()
On Error GoTo Err_Command9_Click
Dim strTo As String
Dim strRequestID As String
Dim strMessage As String
Dim strYourName As String
Dim strReason As String
strTo = "jusss@xxxxxxxxxxxxx;jusss@xxxxxxxxx"
strRequestID = Me.RequestID
strYourName = Me.YourName
strReason = Me.Reason
strMessage = "A request for a password is needed to make the following
change. Please view the details below and contact this person with
further instructions." & Chr$(13) & Chr$(13) & _
"Request ID: " & strRequestID & Chr$(13) & Chr$(13) & _
"Name: " & strYourName & Chr$(13) & Chr$(13) & _
"Reason: " & strReason & Chr$(13) & Chr$(13) & _
"Please do not reply to this automated email."
DoCmd.SendObject acSendNoObject, , , strTo, , , "Password needed to
Edit a Request", strMessage, No, False
DoCmd.Close acForm, "frmRequestPassword"
MsgBox "Your request for a password has been sent. You will be
contacted with further instructions.", vbOKOnly, "Password Request
Sent"
Exit_Command9_Click:
Exit Sub
Err_Command9_Click:
MsgBox Err.Description & Chr$(13) & Chr$(13) & _
"Required fields for this form are: Request ID, Date, Name, and
Reason. If all the required fields are not filled in, your form will
not be submitted.", vbOKOnly
Resume Exit_Command9_Click
End Sub
Thank You,
Justine
--
Sam
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/Forums.aspx/access-formscoding/200603/1
.
- References:
- On Error GoTo is not working
- From: JNariss@xxxxxxxxx
- On Error GoTo is not working
- Prev by Date: Re: How to fax/e-mail
- Next by Date: On Not In List
- Previous by thread: Re: On Error GoTo is not working
- Next by thread: Re: String Manipulation
- Index(es):
Relevant Pages
|
Loading