File: unit13.pas

package info (click to toggle)
dozzaqueux 3.21-4
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 5,140 kB
  • sloc: pascal: 33,352; xml: 961; makefile: 38; sh: 17
file content (68 lines) | stat: -rwxr-xr-x 1,319 bytes parent folder | download
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
unit Unit13; 

{$mode objfpc}{$H+}

interface

uses
  Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
  StdCtrls, Buttons,UChaines,UnitScaleFont;

type

  { Tsaisieunites }

  Tsaisieunites = class(TForm)
    BitBtn1: TBitBtn;
    Editlabely2: TEdit;
    Editunitey2: TEdit;
    Editlabely1: TEdit;
    Editunitey1: TEdit;
    Editlabelx: TEdit;
    Editunitex: TEdit;
    Label1: TLabel;
    Label2: TLabel;
    Label3: TLabel;
    Label4: TLabel;
    Label5: TLabel;
    Label6: TLabel;
    procedure FormCreate(Sender: TObject);
    procedure FormShow(Sender: TObject);
  private
    { private declarations }
    encreation:boolean;
  public
    { public declarations }
  end; 

var
  saisieunites: Tsaisieunites;

implementation

{ Tsaisieunites }

procedure Tsaisieunites.FormCreate(Sender: TObject);
begin

   encreation:=true;
  Caption := rsUnitSEtLabel ;
  Label1.Caption := rsUnitAfficher;
  Label2.Caption := rsLabelAffiche;
  Label3.Caption := rsUnitAfficher2;
  Label4.Caption := rsLabelAffiche2;
  Label5.Caption := rsUnitAfficher3;
  Label6.Caption := rsLabelAffiche3;
  BitBtn1.Caption := rsOK;
end;

procedure Tsaisieunites.FormShow(Sender: TObject);
begin
    if encreation then begin scalefont(self); encreation:=false; end;
end;

initialization
  {$I unit13.lrs}

end.