Develop and Download Open Source Software

Browse Subversion Repository

Diff of /Unit3.pas

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1 by yamat0jp, Sun Nov 22 11:18:44 2015 UTC revision 2 by yamat0jp, Sat Dec 19 14:35:42 2015 UTC
# Line 3  unit Unit3; Line 3  unit Unit3;
3  interface  interface
4    
5  uses  uses
6    SysUtils, Classes, Controls, Forms,    System.SysUtils, System.Classes, FireDAC.Stan.Intf, FireDAC.Stan.Option,
7    IWVCLBaseContainer, IWColor, IWContainer, IWRegion, IWHTMLContainer,    FireDAC.Stan.Param, FireDAC.Stan.Error, FireDAC.DatS, FireDAC.Phys.Intf,
8    IWHTML40Container, IWVCLBaseControl, IWBaseControl, IWBaseHTMLControl,    FireDAC.DApt.Intf, FireDAC.Stan.Async, FireDAC.DApt, FireDAC.UI.Intf,
9    IWControl, IWCompExtCtrls;    FireDAC.Stan.Def, FireDAC.Stan.Pool, FireDAC.Phys, FireDAC.Phys.IB,
10      FireDAC.Phys.IBDef, Data.DB, FireDAC.Comp.Client, FireDAC.Comp.DataSet;
11    
12  type  type
13    TIWFrame1 = class(TFrame)    TDataModule3 = class(TDataModule)
14      IWFrameRegion: TIWRegion;      FDQuery1: TFDQuery;
15      IWImageFile1: TIWImageFile;      FDTable1: TFDTable;
16        FDTable2: TFDTable;
17        item: TDataSource;
18        user: TDataSource;
19        FDConnection1: TFDConnection;
20        FDTable1NAME: TWideStringField;
21        FDTable1EMAIL: TWideStringField;
22        FDTable1BIRTH: TDateField;
23        FDTable1ADDRESS: TWideStringField;
24        FDTable1PASSWORD: TWideStringField;
25        FDTable1NUMBER: TIntegerField;
26        FDTable2NAME: TWideStringField;
27        FDTable2MAKER: TWideStringField;
28        FDTable2STOCK: TIntegerField;
29        FDTable2WEIGHT: TIntegerField;
30        FDTable2DATE: TDateField;
31        FDTable2COMMENT: TMemoField;
32        FDTable2CATEGORY: TWideStringField;
33        FDTable2IMAGE: TBlobField;
34        FDTable2PRICE: TIntegerField;
35        FDTable2THUMBNAIL: TBlobField;
36        FDTable2SERIAL: TIntegerField;
37        FDTable2MASTER: TIntegerField;
38        FDTable3: TFDTable;
39        form: TDataSource;
40        FDTable3NAME: TWideStringField;
41        FDTable3BGCOLOR: TIntegerField;
42        DataSource1: TDataSource;
43    private    private
44      { Private declarations }      { Private 宣言 }
45    public    public
46      { Public declarations }      { Public 宣言 }
47    end;    end;
48    
49    function DM: TDataModule3;
50    
51  implementation  implementation
52    
53    {%CLASSGROUP 'Vcl.Controls.TControl'}
54    
55    uses ServerController;
56    
57  {$R *.dfm}  {$R *.dfm}
58    
59  uses ServerController, UserSessionUnit, Unit1;  function DM: TDataModule3;
60    begin
61      result:=UserSession.DM;
62    end;
63    
64  end.  end.

Legend:
Removed from v.1  
changed lines
  Added in v.2

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26