Browse Subversion Repository
Contents of /Unit3.pas
Parent Directory
| Revision Log
Revision 1 -
( show annotations)
( download)
( as text)
Sun Nov 22 11:18:44 2015 UTC
(8 years, 4 months ago)
by yamat0jp
File MIME type: text/x-pascal
File size: 528 byte(s)
方向性はあってますが技術的に行き詰っています.IntraWebの情報・経験が不足しています.
ボタンでフォームを切り替えることさえうまくいきませんがセッションの問題でしょうか?
| 1 |
unit Unit3; |
| 2 |
|
| 3 |
interface |
| 4 |
|
| 5 |
uses |
| 6 |
SysUtils, Classes, Controls, Forms, |
| 7 |
IWVCLBaseContainer, IWColor, IWContainer, IWRegion, IWHTMLContainer, |
| 8 |
IWHTML40Container, IWVCLBaseControl, IWBaseControl, IWBaseHTMLControl, |
| 9 |
IWControl, IWCompExtCtrls; |
| 10 |
|
| 11 |
type |
| 12 |
TIWFrame1 = class(TFrame) |
| 13 |
IWFrameRegion: TIWRegion; |
| 14 |
IWImageFile1: TIWImageFile; |
| 15 |
private |
| 16 |
{ Private declarations } |
| 17 |
public |
| 18 |
{ Public declarations } |
| 19 |
end; |
| 20 |
|
| 21 |
implementation |
| 22 |
|
| 23 |
{$R *.dfm} |
| 24 |
|
| 25 |
uses ServerController, UserSessionUnit, Unit1; |
| 26 |
|
| 27 |
end. |
| |