GExport

Program/파스칼 | 델파이 2008. 1. 16. 09:28

간단한 사용법과 홈페이지
http://www.gexperts.org

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls {$IFDEF DEBUG}, dBugIntf{$ENDIF};

type
TForm1 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
var
nI : Integer;
begin

for nI := 0 to 1000 do
begin
{$IFDEF DEBUG}
SendDebugEx(intToStr(nI), mtInformation);
SendDebugEx(intToStr(nI), mtError);
SendDebugEx(intToStr(nI), mtWarning);
{$ENDIF}
end;

end;

: