Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how can I suppress access message run-time error 3044 1

Status
Not open for further replies.

punky

Programmer
Mar 21, 2001
29
US
My access drive is mapped to another site. The access application transfers a table to another database when the application closes. It works fine from my home-side, but the when the user closes the application at a remote site,
run-time error 3044 messages appears on their screen.
How can i suppress this message?
 
Sorry, clicked submit before I finished typing

Use the standard error trapping.

Private Sub Subname()
On Error GoTo Err_Subname
<do stuff>

Exit_Subname:
Exit Sub

Err_Subname:
If err.number <> &quot;3044&quot; then
MsgBox Err.Description
end if
Resume Exit_Subname
End Sub Maq B-)
<insert witty signature here>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top