V9.3
This commit is contained in:
36
UnitIntro.pas
Normal file
36
UnitIntro.pas
Normal file
@@ -0,0 +1,36 @@
|
||||
unit UnitIntro;
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
||||
Dialogs, StdCtrls, ExtCtrls;
|
||||
|
||||
type
|
||||
TFormIntro = class(TForm)
|
||||
LabeledEditDetAig: TLabeledEdit;
|
||||
ButtonTrouver: TButton;
|
||||
procedure ButtonTrouverClick(Sender: TObject);
|
||||
private
|
||||
{ Déclarations privées }
|
||||
public
|
||||
{ Déclarations publiques }
|
||||
end;
|
||||
|
||||
var
|
||||
FormIntro: TFormIntro;
|
||||
Achercher : integer;
|
||||
|
||||
implementation
|
||||
|
||||
{$R *.dfm}
|
||||
|
||||
procedure TFormIntro.ButtonTrouverClick(Sender: TObject);
|
||||
var i,erreur : integer;
|
||||
begin
|
||||
val(LabeledEditDetAig.text,i,erreur);
|
||||
Achercher:=i;
|
||||
close;
|
||||
end;
|
||||
|
||||
end.
|
||||
Reference in New Issue
Block a user