Re: Access Violation - Help!!!!!!!!!!!!!!!!

From: Andreas Schmidt (a_j_schmidt_at_rocketmail.com)
Date: 11/27/03

  • Next message: PM: "Re: Two possible bugs (err... undocumented features) in Delphi 7."
    Date: Thu, 27 Nov 2003 19:32:26 +0100
    
    

    "Karen" <kwillard@goldencorral.net> schrieb im Newsbeitrag
    news:3fc369fd$1@newsgroups.borland.com...
    >
    > I am getting Access violation at address 00403A34 in module
    "GC_Backoffice.exe: Read of address 435C3A41
    >
    > where GC_Backoffice.exe is the name of my program.
    >
    > Any suggetions on pin pointing the problem or special exception handling
    that would give me more information.
    >
    > I am running Delphi 5 /Interbase/ Windows 2000

    Prepare your project file with OutputDebugString statements:

    begin
      OuputDebugString('before Application.Initialize');
      Application.Initialize;
      OuputDebugString('after Application.Initialize');
      Application.CreateForm(TxxxForm, xxxForm);
      OuputDebugString('xxxForm created');
      ....

    Use the tool DebugView to capture OutputDebugString:
    http://www.sysinternals.com/ntw2k/freeware/debugview.shtml

    Make shure that you have no active Queries, Tables, Database or Session
    components on any form or datamodule at design time.

    Andreas


  • Next message: PM: "Re: Two possible bugs (err... undocumented features) in Delphi 7."