Newsgroups : Borland : borland.public.delphi.nativeapi.win32 : 2006 Dec : wrong application example..
| Subject: | wrong application example.. |
| Posted by: | "mustafa korkmaz" (hkod..@hotmail.com) |
| Date: | 21 Dec 2006 23:54:25 |
TForm1 = class(TForm)
.........
public
myarray: array[ 1..10 ] of integer;
end;
procedure TForm1.Button1Click(Sender: TObject);
var i: integer;
begin
for i := 1 to 10000 do myarray[ i ] := i;
end;
When I press to button1 this program is being closed by windows 2003 server.
Can you give me so program code example that closed by windows 2003 server when you run it?
I want to learn when does win.2003 server closes the program? I want to run and see so programs.
Give me example codes.
if there is Buffer overflow win 2003 server closes program.
In which situations 2003 server closes the program? I want to learn this with example codes.
I have created big project with delphi 5.
But some times it is being closed by win 2003 server.I can not found the wrong lines.
Because it is very big project and it is multi threaded application.
So I decide to learn In which situations 2003 server closes the program?
I need I lot of wrong example codes.Tested examples(closed by win 2003).