1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
unit Unit25;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
StdCtrls, Buttons,UChaines,UnitScaleFont,Unit_commune;
type
{ Tsaisie_conductivite }
Tsaisie_conductivite = class(TForm)
BitBtn1: TBitBtn;
Edit1: TEdit;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
Label5: TLabel;
Label6: TLabel;
procedure BitBtn1Click(Sender: TObject);
procedure Edit1KeyPress(Sender: TObject; var Key: char);
procedure FormCreate(Sender: TObject);
procedure FormShow(Sender: TObject);
private
{ private declarations }
encreation:boolean;
public
{ public declarations }
end;
var
saisie_conductivite: Tsaisie_conductivite;
implementation
{ Tsaisie_conductivite }
procedure Tsaisie_conductivite.BitBtn1Click(Sender: TObject);
begin
try
mystrtofloat(edit1.Text);
except
modalresult:=mrcancel;
end;
end;
procedure Tsaisie_conductivite.Edit1KeyPress(Sender: TObject; var Key: char);
begin
if key=',' then key:='.';
end;
procedure Tsaisie_conductivite.FormCreate(Sender: TObject);
begin
encreation:=true;
Caption := rsSaisieConduc;
Label1.Caption := rsLaConductivi ;
Label3.Caption := rsNeFigurePasD ;
Label4.Caption := rs01MSMMol;
Label5.Caption := rsRemarqueCett;
Label6.Caption := rsSiVousVoulez ;
BitBtn1.Caption := rsOK;
end;
procedure Tsaisie_conductivite.FormShow(Sender: TObject);
begin
// if encreation then begin scalefont(self); encreation:=false; end;
end;
initialization
{$I unit25.lrs}
end.
|