MySQL realated stuff documented.
[mediadatabase.git] / gui-Win32 / SRC / DbPreferencesDialog.dfm
blob2537a72f2c069371a4419d4b84434232df65cb57
1 object DatabasePreferences: TDatabasePreferences
2   Left = 278
3   Top = 182
4   Width = 384
5   Height = 335
6   Caption = 'Database Preferences'
7   Color = clBtnFace
8   Font.Charset = DEFAULT_CHARSET
9   Font.Color = clWindowText
10   Font.Height = -11
11   Font.Name = 'MS Sans Serif'
12   Font.Style = []
13   OldCreateOrder = False
14   PixelsPerInch = 96
15   TextHeight = 13
16   object GroupBox1: TGroupBox
17     Left = 0
18     Top = 0
19     Width = 313
20     Height = 177
21     Caption = 'Database'
22     TabOrder = 0
23     object RemoteHostLabel: TLabel
24       Left = 8
25       Top = 16
26       Width = 71
27       Height = 13
28       Caption = 'Database Host'
29     end
30     object UsernameLabel: TLabel
31       Left = 8
32       Top = 128
33       Width = 48
34       Height = 13
35       Caption = 'Username'
36     end
37     object PasswordLabel: TLabel
38       Left = 120
39       Top = 128
40       Width = 46
41       Height = 13
42       Caption = 'Password'
43     end
44     object ebRemoteHost: TEdit
45       Left = 8
46       Top = 32
47       Width = 225
48       Height = 21
49       TabOrder = 0
50       Text = 'localhost'
51     end
52     object ebUsername: TEdit
53       Left = 8
54       Top = 144
55       Width = 105
56       Height = 21
57       Enabled = False
58       TabOrder = 1
59       Text = 'mediabase'
60     end
61     object ebPassword: TEdit
62       Left = 120
63       Top = 144
64       Width = 105
65       Height = 21
66       Enabled = False
67       PasswordChar = '*'
68       TabOrder = 2
69       Text = 'mediabase'
70     end
71     object cbDefaultPort: TCheckBox
72       Left = 8
73       Top = 72
74       Width = 89
75       Height = 17
76       Caption = 'Default Port'
77       Checked = True
78       State = cbChecked
79       TabOrder = 3
80       OnClick = cbDefaultPortClick
81     end
82     object ebPort: TEdit
83       Left = 96
84       Top = 68
85       Width = 57
86       Height = 21
87       Enabled = False
88       TabOrder = 4
89       Text = '3306'
90     end
91     object cbDefaultUser: TCheckBox
92       Left = 8
93       Top = 104
94       Width = 105
95       Height = 17
96       Caption = 'Default Username'
97       Checked = True
98       State = cbChecked
99       TabOrder = 5
100       OnClick = cbDefaultUserClick
101     end
102   end
103   object Button1: TButton
104     Left = 104
105     Top = 184
106     Width = 75
107     Height = 25
108     Caption = 'Save'
109     TabOrder = 1
110   end
111   object Button2: TButton
112     Left = 190
113     Top = 184
114     Width = 75
115     Height = 25
116     Caption = 'Cancel'
117     TabOrder = 2
118     OnClick = Button2Click
119   end
120   object TestConnection: TButton
121     Left = 32
122     Top = 240
123     Width = 75
124     Height = 25
125     Caption = 'Test'
126     TabOrder = 3
127     OnClick = TestConnectionClick
128   end
129   object MySQLTest: TMyConnection
130     Database = 'mediadb'
131     Username = 'mediabase'
132     Password = 'mediabase'
133     Server = '10.0.0.5'
134     Connected = True
135     Left = 8
136     Top = 184
137   end