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 79 80 81
|
unit FTest;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, DB, DBClient, ExtCtrls;
type
TParam = Packed record
aValue : Pointer;
aTypeInt : Integer;
end;
TFrmTest = class(TForm)
CdsBase: TClientDataSet;
CdsBaseName: TStringField;
BtSaveRecord: TButton;
BtShowValue: TButton;
RgTest: TRadioGroup; // ItemIndex --> 0 : TclientDataset / 1 : string / 2 : integer
procedure BtSaveRecordClick(Sender: TObject);
procedure BtShowValueClick(Sender: TObject);
private
{ Private declarations }
FParam : TParam;
FPointer : pointer;
FChaine : string;
FEntier : integer;
public
{ Public declarations }
function Valorise(aType : Integer; Valparam : Pointer): TParam;
end;
var
FrmTest: TFrmTest;
implementation
{$R *.dfm}
procedure TFrmTest.BtSaveRecordClick(Sender: TObject);
begin
FChaine := 'Test pointeur';
FEntier := 42;
case RgTest.ItemIndex of
0 : FParam := Valorise(1, CdsBase);
1 : FParam := Valorise(2, Addr(FChaine));
2 : FParam := Valorise(3, Addr(FEntier));
end;
end;
function TFrmTest.Valorise(aType : Integer; Valparam : Pointer): TParam;
begin
Result.aValue := ValParam;
Result.aTypeint := aType;
end;
procedure TFrmTest.BtShowValueClick(Sender: TObject);
var
CdsTest : TClientDataSet;
begin
case FParam.aTypeInt of
1 : begin
CdsTest := FParam.aValue;
ShowMessage(CdsTest.Fields[0].FieldName);
FParam.aValue := nil;
end;
2 : begin
ShowMessage(string(FParam.aValue^));
string(FParam.aValue^) := '';
end;
3 : begin
ShowMessage(IntToStr(Integer(FParam.aValue^)));
FParam.aValue := nil;
end;
end;
end;
end. |
Partager