Browse Subversion Repository
Contents of /Unit7.pas
Parent Directory
| Revision Log
Revision 5 -
( show annotations)
( download)
( as text)
Tue Dec 29 08:41:54 2015 UTC
(8 years, 3 months ago)
by yamat0jp
File MIME type: text/x-pascal
File size: 624 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; |
| 11 |
|
| 12 |
type |
| 13 |
TPayForm = class(TIWAppForm) |
| 14 |
IWButton1: TIWButton; |
| 15 |
IWButton2: TIWButton; |
| 16 |
IWTemplateProcessorHTML1: TIWTemplateProcessorHTML; |
| 17 |
public |
| 18 |
end; |
| 19 |
|
| 20 |
implementation |
| 21 |
|
| 22 |
{$R *.dfm} |
| 23 |
|
| 24 |
uses Unit3, Unit1, ServerController, Unit4; |
| 25 |
|
| 26 |
end. |
| |