Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Jump to hex address

23 views
Skip to first unread message

Brian

unread,
Nov 16, 2012, 5:37:49 PM11/16/12
to
So, I have a user that gets an error. I don't have access to the same
conditions for which the user ran the program.

Access violation at address 00503D57 in module "SuchandSuch.exe". Read
of address 0x00000004

Can I jump to this location in the source code in the debugger?
0x00503D57

brian

Peter Fast

unread,
Nov 17, 2012, 5:41:38 AM11/17/12
to
Brian wrote:
>
> Access violation at address 00503D57 in module "SuchandSuch.exe". Read
> of address 0x00000004
>
> Can I jump to this location in the source code in the debugger?
> 0x00503D57

That "SuchandSuch.exe" probably is the name of your own application?

If the address lies within your own code, or within your components
there you also have source code, then you can use Search -> Find error
and you can easily jump to that address in your source code.

If the address lies within Windows DLL files, you are out of luck.

Most often when I face errors that are ourside my scope are in some way
related to Windows Printer Driver problems. The error may even pop up
sometime after using some erroneous or non-compatible Printer driver.

The second most common error lies within my own code. That error address
does not reveal the exact place what causes the error. But debugging
line by line, I can trace the problematic line that makes Windows DLL
error to appear, and I can fix it or go around it.

Occasional errors, errors that appear only about once a week or two and
only at the customer's site, they are the most difficult to locate.
-PF
0 new messages