I have a an Access Form - which using VBA creates a task entry in outlook. Is there anywat I can inform access when this entry is complete..? set objJedi[skyWalker].Aniken = FatherOf(useThe.Force(objJedi[skyWalker].luke))
One standard way is to check for errors. If none were produced by your set command then it was successful.
On Error Resume Next
Set Command
If Err.Number <> 0 Then
MsgBox "Error"
Else
MsgBox "Success"
End If ----------------------
scking@arinc.com
Life is filled with lessons.
We are responsible for the
results of the quizzes.
-----------------------
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.