Browse Subversion Repository
Annotation of /Unit14.pas
Parent Directory
| Revision Log
Revision 19 -
( hide annotations)
( download)
( as text)
Sat Aug 27 13:22:00 2016 UTC
(7 years, 7 months ago)
by yamat0jp
File MIME type: text/x-pascal
File size: 680 byte(s)
暫く制作から離れたいのでコミット
データベースに追加したフィールドがありますメンテナンスフォームも一応表示できます
| 1 |
yamat0jp |
18 |
unit Unit14; |
| 2 |
|
|
|
| 3 |
|
|
interface |
| 4 |
|
|
|
| 5 |
|
|
uses |
| 6 |
yamat0jp |
19 |
Classes, SysUtils, IWAppForm, IWApplication, IWColor, IWTypes, IWVCLComponent, |
| 7 |
|
|
IWBaseLayoutComponent, IWBaseContainerLayout, IWContainerLayout, |
| 8 |
|
|
IWTemplateProcessorHTML, Vcl.Controls, IWVCLBaseControl, IWBaseControl, |
| 9 |
|
|
IWBaseHTMLControl, IWControl, IWCompLabel, IWHTMLControls; |
| 10 |
yamat0jp |
18 |
|
| 11 |
|
|
type |
| 12 |
yamat0jp |
19 |
TMentenance = class(TIWAppForm) |
| 13 |
|
|
IWTemplateProcessorHTML1: TIWTemplateProcessorHTML; |
| 14 |
|
|
IWLink1: TIWLink; |
| 15 |
|
|
procedure IWLink1Click(Sender: TObject); |
| 16 |
yamat0jp |
18 |
public |
| 17 |
|
|
end; |
| 18 |
|
|
|
| 19 |
|
|
implementation |
| 20 |
|
|
|
| 21 |
|
|
{$R *.dfm} |
| 22 |
|
|
|
| 23 |
yamat0jp |
19 |
uses Unit13; |
| 24 |
yamat0jp |
18 |
|
| 25 |
yamat0jp |
19 |
|
| 26 |
|
|
procedure TMentenance.IWLink1Click(Sender: TObject); |
| 27 |
|
|
begin |
| 28 |
|
|
TMasterForm.Create(WebApplication).Show; |
| 29 |
|
|
end; |
| 30 |
|
|
|
| 31 |
yamat0jp |
18 |
end. |
| |