Registriert seit: 8. Feb 2006
Ort: Slovenia
90 Beiträge
Delphi 7 Personal
|
Virus In DELPHI ??"!
13. Mai 2006, 23:01
thats the whole program, i just wanted only try the inputbox
Delphi-Quellcode:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Memo1: TMemo;
Button1: TButton;
Button2: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
var i:integer;
begin
i:=0;
repeat
inputbox(' Enter Number', ' Enter field values '+IntToStr(i),' ');
i:=i+1;
until i=3;
end;
end.
[edit=alcaeus]Added the image as an attachment. Please think about people with 56k-Internet connections and use attachments Mfg, alcaeus[/edit]
|
|
Zitat
|