Browse Subversion Repository
Annotation of /Unit2.pas
Parent Directory
| Revision Log
Revision 2 -
( hide annotations)
( download)
( as text)
Sat Dec 19 14:35:42 2015 UTC
(8 years, 3 months ago)
by yamat0jp
File MIME type: text/x-pascal
File size: 476 byte(s)
IntraWebをバージョンアップしてから、コンパイルが可能になりました。お見苦しいところをお見せしていました。
まだまだ未完成です。
| 1 |
yamat0jp |
1 |
unit Unit2; |
| 2 |
|
|
|
| 3 |
|
|
interface |
| 4 |
|
|
|
| 5 |
|
|
uses |
| 6 |
yamat0jp |
2 |
SysUtils, Classes, Controls, Forms, |
| 7 |
|
|
IWVCLBaseContainer, IWColor, IWContainer, IWRegion, IWHTMLContainer, |
| 8 |
|
|
IWHTML40Container, IWVCLBaseControl, IWBaseControl, IWBaseHTMLControl, |
| 9 |
|
|
IWControl, IWCompExtCtrls; |
| 10 |
yamat0jp |
1 |
|
| 11 |
|
|
type |
| 12 |
yamat0jp |
2 |
TIWFrame1 = class(TFrame) |
| 13 |
|
|
IWFrameRegion: TIWRegion; |
| 14 |
|
|
IWImageFile1: TIWImageFile; |
| 15 |
|
|
private |
| 16 |
|
|
{ Private declarations } |
| 17 |
yamat0jp |
1 |
public |
| 18 |
yamat0jp |
2 |
{ Public declarations } |
| 19 |
yamat0jp |
1 |
end; |
| 20 |
|
|
|
| 21 |
|
|
implementation |
| 22 |
|
|
|
| 23 |
|
|
{$R *.dfm} |
| 24 |
|
|
|
| 25 |
yamat0jp |
2 |
end. |
| |