File: unit24.pas

package info (click to toggle)
dozzaqueux 3.35-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,620 kB
  • ctags: 1,791
  • sloc: pascal: 34,605; xml: 961; makefile: 50; sh: 32
file content (63 lines) | stat: -rwxr-xr-x 1,364 bytes parent folder | download | duplicates (2)
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
unit Unit24;

{$mode objfpc}{$H+}

interface

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

type

  { Tsaisiechiffressignificatifs }

  Tsaisiechiffressignificatifs = class(TForm)
    BitBtn1: TBitBtn;
    Label1: TLabel;
    Label2: TLabel;
    SpinEdit1: TSpinEdit;
    SpinEdit2: TSpinEdit;
    procedure BitBtn1Click(Sender: TObject);
    procedure FormCreate(Sender: TObject);
    procedure FormShow(Sender: TObject);
  private
    { private declarations }
    encreation:boolean;
  public
    { public declarations }
  end; 

var
  saisiechiffressignificatifs: Tsaisiechiffressignificatifs;

implementation
      uses Unit1;
{ Tsaisiechiffressignificatifs }

procedure Tsaisiechiffressignificatifs.BitBtn1Click(Sender: TObject);
begin
  nombre_chiffres_constantes:=spinedit1.Value;
 nombre_chiffres_resultats:=spinedit2.Value;
end;

procedure Tsaisiechiffressignificatifs.FormCreate(Sender: TObject);
begin
   encreation:=true;

  Caption := rsChiffresSign;
    Label1.Caption := rsNombreDeChif ;
       Label2.Caption := rsNombreDeChif2 ;
       BitBtn1.Caption := rsOK ;
end;

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

initialization
  {$I unit24.lrs}

end.