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
|
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
Type Location = record
Ville : string[255];
Annee : string[4];
Latitude : real;
Longitude : real;
end;
Type Releve = record
Heure : string[2];
Minute : string[2];
Tps : integer;
Tpr_Min : real;
Tpr_Max : real;
Press_Min : real;
Press_Max : real;
Precip : integer;
Humidite : integer;
Neige : integer;
Dir_Vent : integer;
Force_Vent: integer;
Comments : string[255];
end;
Type Fichier = record
Locdata : Location;
NumReleve : array[1..365] of integer;
Donnees : array[1..365,1..24] of Releve;
end;
type
TForm1 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
procedure CreateSheet(Struct: Fichier);
private
{ Déclarations privées }
public
{ Déclarations publiques }
end;
var
Form1: TForm1;
Classeur: Fichier;
implementation
{$R *.dfm}
Procedure TForm1.CreateSheet(Struct: Fichier);
begin
Struct.Locdata.Ville:='test';
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
createSheet(Classeur);
end;
end. |
Partager