Browse Subversion Repository
Diff of /Unit14.pas
Parent Directory
| Revision Log
| Patch
| 3 |
interface |
interface |
| 4 |
|
|
| 5 |
uses |
uses |
| 6 |
Classes, SysUtils, IWAppForm, IWApplication, IWColor, IWTypes; |
Classes, SysUtils, IWAppForm, IWApplication, IWColor, IWTypes, IWVCLComponent, |
| 7 |
|
IWBaseLayoutComponent, IWBaseContainerLayout, IWContainerLayout, |
| 8 |
|
IWTemplateProcessorHTML, Vcl.Controls, IWVCLBaseControl, IWBaseControl, |
| 9 |
|
IWBaseHTMLControl, IWControl, IWCompLabel, IWHTMLControls; |
| 10 |
|
|
| 11 |
type |
type |
| 12 |
TIWForm14 = class(TIWAppForm) |
TMentenance = class(TIWAppForm) |
| 13 |
|
IWTemplateProcessorHTML1: TIWTemplateProcessorHTML; |
| 14 |
|
IWLink1: TIWLink; |
| 15 |
|
procedure IWLink1Click(Sender: TObject); |
| 16 |
public |
public |
| 17 |
end; |
end; |
| 18 |
|
|
| 20 |
|
|
| 21 |
{$R *.dfm} |
{$R *.dfm} |
| 22 |
|
|
| 23 |
|
uses Unit13; |
| 24 |
|
|
| 25 |
|
|
| 26 |
|
procedure TMentenance.IWLink1Click(Sender: TObject); |
| 27 |
|
begin |
| 28 |
|
TMasterForm.Create(WebApplication).Show; |
| 29 |
|
end; |
| 30 |
|
|
| 31 |
end. |
end. |
|
|
Legend:
| Removed from v.18 |
|
| changed lines |
| |
Added in v.19 |
|
|
| |