Develop and Download Open Source Software

Browse Subversion Repository

Contents of /Unit7.pas

Parent Directory Parent Directory | Revision Log Revision Log


Revision 7 - (show annotations) (download) (as text)
Wed Dec 30 09:56:24 2015 UTC (8 years, 3 months ago) by yamat0jp
File MIME type: text/x-pascal
File size: 1436 byte(s)
退会できるようにしました
1 unit Unit7;
2
3 interface
4
5 uses
6 Classes, SysUtils, IWAppForm, IWApplication, IWColor, IWTypes, Vcl.Controls,
7 IWVCLBaseControl, IWBaseControl, IWBaseHTMLControl, IWControl, IWCompGrids,
8 IWDBGrids, IWCompButton, IWCompExtCtrls, IWVCLComponent,
9 IWBaseLayoutComponent, IWBaseContainerLayout, IWContainerLayout,
10 IWTemplateProcessorHTML, PngImage, Data.DB, IWCompLabel, IWDBStdCtrls,
11 FireDAC.Comp.Client;
12
13 type
14 TPayForm = class(TIWAppForm)
15 IWButton1: TIWButton;
16 IWButton2: TIWButton;
17 IWTemplateProcessorHTML1: TIWTemplateProcessorHTML;
18 IWDBLabel1: TIWDBLabel;
19 procedure IWButton2Click(Sender: TObject);
20 procedure IWButton1Click(Sender: TObject);
21 public
22 end;
23
24 implementation
25
26 {$R *.dfm}
27
28 uses Unit3;
29
30 procedure TPayForm.IWButton1Click(Sender: TObject);
31 var
32 s: TFDQuery;
33 begin
34 with DM.FDQuery1 do
35 begin
36 Open('select number,serial from cart_data;');
37 s := TFDQuery.Create(nil);
38 try
39 s.Connection := DM.FDConnection1;
40 s.Open('select * from recent_data;');
41 while Eof = false do
42 begin
43 s.AppendRecord([Fields.Fields[0].AsInteger,
44 Fields.Fields[1].AsInteger]);
45 Delete;
46 end;
47 finally
48 s.Free;
49 end;
50 end;
51 WebApplication.ShowMessage('��������������������������������');
52 Release;
53 end;
54
55 procedure TPayForm.IWButton2Click(Sender: TObject);
56 begin
57 Release;
58 end;
59
60 end.

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