Question How do i see my errors?

krazieddi

Registered User.
Local time
Today, 11:35
Joined
Dec 3, 2013
Messages
18
I'm trying to build a form that does multiple things.

Whenever i test it and it doesn't work (example: synchronized combo boxes), i would like to receive a message (or at least be able to find or generate a message) that tells me the error that is occurring.

My hope is that this will allow me to ask specific questions for help.

PLEASE HELP!

Thanks all!

-ed
 
It sounds like the errors you are looking for are not errors, it is just Access isn't doing what you expect - so you need to write your own error traps such as

Code:
if ctrl1<>ctrl2 then msgbox "Ctr1<>Ctrl2"
However better to use the immediate window and debug.print e.g.
Code:
debug.print ctrl1; ctrl2
so you can see the values as the program runs
 

Users who are viewing this thread

Back
Top Bottom