-
Notifications
You must be signed in to change notification settings - Fork 1
/
ExportHelpDlgFrm.pas
54 lines (44 loc) · 1.51 KB
/
ExportHelpDlgFrm.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{ ------------------------------------------------------------------- }
{ Unit: ExportHelpDlgFrm.pas }
{ Project: WERF Framework - SWMM Converter }
{ Version: 2.0 }
{ Date: 2/28/2014 }
{ Author: Gesoyntec (D. Pankani) }
{ }
{ Delphi Pascal unit that for the ExportHelpDlgFrm dialog }
{ ------------------------------------------------------------------- }
unit ExportHelpDlgFrm;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;
type
TExportHelpDialogFrm = class(TForm)
lblOperatingMode: TLabel;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
Label5: TLabel;
Button1: TButton;
/// <summary>
/// Handler for button that dismisses this dialog
/// </summary>
/// <param name="Sender">
/// Owner
/// </param>
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
ExportHelpDialogFrm: TExportHelpDialogFrm;
implementation
{$R *.dfm}
procedure TExportHelpDialogFrm.Button1Click(Sender: TObject);
begin
Self.Close;
end;
end.