Discussion:
D2007 UpGrd3 Beguger
(too old to reply)
SoftEcole
2007-09-16 14:15:58 UTC
Permalink
1-Create a new Win32 Application, this creates a blank TForm1
2-Run (F9), this loads the App in debug Mode
3- Debugger loads main Unit and stops on then first BEGIN
4- Continue (F9, F8 or F7)
5- You got a notification from the Debugger: Access violation at adress
....'
...
10-Post an alert on this newsgroup
11- Wait Until Nick Answers...
12- Be happy
CPU Infos
Project2.dpr.9: begin
0045771C push ebp
0045771D mov ebp,esp
0045771F add esp,-$10
00457722 mov eax,$00456410
00457727 call @InitExe <------ Bug occurs here
SoftEcole
2007-09-16 14:17:34 UTC
Permalink
Post by SoftEcole
1-Create a new Win32 Application, this creates a blank TForm1
2-Run (F9), this loads the App in debug Mode
3- Debugger loads main Unit and stops on then first BEGIN
4- Continue (F9, F8 or F7)
5- You got a notification from the Debugger: Access violation at adress
....'
...
10-Post an alert on this newsgroup
11- Wait Until Nick Answers...
12- Be happy
CPU Infos
Project2.dpr.9: begin
0045771C push ebp
0045771D mov ebp,esp
0045771F add esp,-$10
00457722 mov eax,$00456410
OPcode
program Project2;

uses
Forms,
Unit3 in 'Unit3.pas' {Form1};

{$R *.res}

begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.

Loading...