Sep 9, 2005 #1 Carrion Technical User Jul 26, 2002 27 US I am changing a record with the following code: DoCmd.RunSQL "UPDATE tblContact SET fax='" & Me!Fax & "' WHERE ContactID=" & Me!ContactInfo A confirmatin message box pops up every time, is there a way in VB to prevent this message box?
I am changing a record with the following code: DoCmd.RunSQL "UPDATE tblContact SET fax='" & Me!Fax & "' WHERE ContactID=" & Me!ContactInfo A confirmatin message box pops up every time, is there a way in VB to prevent this message box?
Sep 9, 2005 #2 PHV MIS Nov 8, 2002 53,708 FR Have a look at the DoCmd.SetWarnings method. Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886 Upvote 0 Downvote
Have a look at the DoCmd.SetWarnings method. Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
Sep 9, 2005 Thread starter #3 Carrion Technical User Jul 26, 2002 27 US Awesome Awesome Awesome. That is exactly what i needed Thanks Upvote 0 Downvote