1 |
tony |
143 |
(* |
2 |
|
|
* IBX For Lazarus (Firebird Express) |
3 |
|
|
* |
4 |
|
|
* The contents of this file are subject to the Initial Developer's |
5 |
|
|
* Public License Version 1.0 (the "License"); you may not use this |
6 |
|
|
* file except in compliance with the License. You may obtain a copy |
7 |
|
|
* of the License here: |
8 |
|
|
* |
9 |
|
|
* http://www.firebirdsql.org/index.php?op=doc&id=idpl |
10 |
|
|
* |
11 |
|
|
* Software distributed under the License is distributed on an "AS |
12 |
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or |
13 |
|
|
* implied. See the License for the specific language governing rights |
14 |
|
|
* and limitations under the License. |
15 |
|
|
* |
16 |
|
|
* The Initial Developer of the Original Code is Tony Whyman. |
17 |
|
|
* |
18 |
|
|
* The Original Code is (C) 2015 Tony Whyman, MWA Software |
19 |
|
|
* (http://www.mwasoftware.co.uk). |
20 |
|
|
* |
21 |
|
|
* All Rights Reserved. |
22 |
|
|
* |
23 |
|
|
* Contributor(s): ______________________________________. |
24 |
|
|
* |
25 |
|
|
*) |
26 |
|
|
|
27 |
|
|
unit SelectDBDlgUnit; |
28 |
|
|
|
29 |
|
|
{$mode objfpc}{$H+} |
30 |
|
|
|
31 |
|
|
interface |
32 |
|
|
|
33 |
|
|
uses |
34 |
|
|
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls, |
35 |
|
|
StdCtrls; |
36 |
|
|
|
37 |
|
|
type |
38 |
|
|
|
39 |
|
|
{ TSelectDBDlg } |
40 |
|
|
|
41 |
|
|
TSelectDBDlg = class(TForm) |
42 |
|
|
Bevel1: TBevel; |
43 |
|
|
Button1: TButton; |
44 |
|
|
Button2: TButton; |
45 |
|
|
Edit1: TEdit; |
46 |
|
|
Label1: TLabel; |
47 |
tony |
209 |
procedure FormShow(Sender: TObject); |
48 |
tony |
143 |
private |
49 |
|
|
|
50 |
|
|
public |
51 |
|
|
function ShowModal(var DatabaseName: string): TModalResult; |
52 |
|
|
|
53 |
|
|
end; |
54 |
|
|
|
55 |
|
|
var |
56 |
|
|
SelectDBDlg: TSelectDBDlg; |
57 |
|
|
|
58 |
|
|
implementation |
59 |
|
|
|
60 |
|
|
{$R *.lfm} |
61 |
|
|
|
62 |
|
|
{ TSelectDBDlg } |
63 |
|
|
|
64 |
tony |
209 |
procedure TSelectDBDlg.FormShow(Sender: TObject); |
65 |
|
|
begin |
66 |
|
|
Edit1.SetFocus; |
67 |
|
|
end; |
68 |
|
|
|
69 |
tony |
143 |
function TSelectDBDlg.ShowModal(var DatabaseName: string): TModalResult; |
70 |
|
|
begin |
71 |
|
|
Edit1.Text := DatabaseName; |
72 |
|
|
Result := inherited ShowModal; |
73 |
|
|
if Result = mrOK then |
74 |
|
|
begin |
75 |
|
|
DatabaseName := Edit1.Text; |
76 |
|
|
end; |
77 |
|
|
|
78 |
|
|
end; |
79 |
|
|
|
80 |
|
|
end. |
81 |
|
|
|