| 67 |
procedure LoadImage; |
procedure LoadImage; |
| 68 |
procedure ClearImage; |
procedure ClearImage; |
| 69 |
function GetThumbnail: Boolean; |
function GetThumbnail: Boolean; |
| 70 |
|
procedure CallBack(EventParams: TStringList); |
| 71 |
procedure SetThumbnail(const Value: Boolean); |
procedure SetThumbnail(const Value: Boolean); |
| 72 |
property Thumbnail: Boolean read GetThumbnail write SetThumbnail; |
property Thumbnail: Boolean read GetThumbnail write SetThumbnail; |
| 73 |
public |
public |
| 83 |
|
|
| 84 |
uses Unit3, ServerController, Unit6, Unit4, Unit9, Unit10; |
uses Unit3, ServerController, Unit6, Unit4, Unit9, Unit10; |
| 85 |
|
|
| 86 |
|
procedure TIWForm1.CallBack(EventParams: TStringList); |
| 87 |
|
begin |
| 88 |
|
if SameText(EventParams.Values['RetValue'], 'true') = true then |
| 89 |
|
TCartForm.Create(WebApplication).Show; |
| 90 |
|
end; |
| 91 |
|
|
| 92 |
procedure TIWForm1.ClearImage; |
procedure TIWForm1.ClearImage; |
| 93 |
var |
var |
| 94 |
i: Integer; |
i: Integer; |
| 131 |
IWRegion5.Width := i; |
IWRegion5.Width := i; |
| 132 |
IWRegion6.Width := i; |
IWRegion6.Width := i; |
| 133 |
IWRegion7.Width := i; |
IWRegion7.Width := i; |
| 134 |
|
WebApplication.RegisterCallBack('callback', CallBack); |
| 135 |
end; |
end; |
| 136 |
|
|
| 137 |
procedure TIWForm1.IWAppFormRender(Sender: TObject); |
procedure TIWForm1.IWAppFormRender(Sender: TObject); |
| 286 |
AppendRecord([nil, i, UserSession.user_number, UserSession.Serial]); |
AppendRecord([nil, i, UserSession.user_number, UserSession.Serial]); |
| 287 |
end; |
end; |
| 288 |
IWFrame8.IWEdit1.Text := '0'; |
IWFrame8.IWEdit1.Text := '0'; |
| 289 |
if MessageDlg('カートに移動しますか', mtConfirmation, [mbYes, mbNo], 0) = mrYes then |
WebApplication.ShowConfirm('カートに移動しますか', 'callback', '移動', 'はい', 'いいえ'); |
|
TCartForm.Create(WebApplication).Show; |
|
| 290 |
end; |
end; |
| 291 |
|
|
| 292 |
procedure TIWForm1.IWFrame8IWLink1Click(Sender: TObject); |
procedure TIWForm1.IWFrame8IWLink1Click(Sender: TObject); |