Subversion Repositories Code-Repo

Rev

Rev 53 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 Kevin 1
namespace SWAT_Office_App
2
{
3
    partial class Settings_Form
4
    {
5
        /// <summary>
6
        /// Required designer variable.
7
        /// </summary>
8
        private System.ComponentModel.IContainer components = null;
9
 
10
        /// <summary>
11
        /// Clean up any resources being used.
12
        /// </summary>
13
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14
        protected override void Dispose(bool disposing)
15
        {
16
            if (disposing && (components != null))
17
            {
18
                components.Dispose();
19
            }
20
            base.Dispose(disposing);
21
        }
22
 
23
        #region Windows Form Designer generated code
24
 
25
        /// <summary>
26
        /// Required method for Designer support - do not modify
27
        /// the contents of this method with the code editor.
28
        /// </summary>
29
        private void InitializeComponent()
30
        {
31
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Settings_Form));
32
            this.btn_Ok = new System.Windows.Forms.Button();
33
            this.btn_Cancel = new System.Windows.Forms.Button();
34
            this.listBox_SystemAccounts = new System.Windows.Forms.ListBox();
35
            this.btn_SystemAdd = new System.Windows.Forms.Button();
36
            this.btn_SystemRemove = new System.Windows.Forms.Button();
37
            this.groupBox_SystemAccounts = new System.Windows.Forms.GroupBox();
38
            this.txt_ShareLocation = new System.Windows.Forms.TextBox();
39
            this.lbl_ShareLocation = new System.Windows.Forms.Label();
40
            this.btn_ShareLocationChange = new System.Windows.Forms.Button();
41
            this.folderBrowserDialog = new System.Windows.Forms.FolderBrowserDialog();
42
            this.btn_USBLocationx32Change = new System.Windows.Forms.Button();
43
            this.txt_USBMasterCopyLocation_x32 = new System.Windows.Forms.TextBox();
44
            this.lbl_USBCopyLocation_x32 = new System.Windows.Forms.Label();
45
            this.btn_USBLocationx64Change = new System.Windows.Forms.Button();
46
            this.txt_USBMasterCopyLocation_x64 = new System.Windows.Forms.TextBox();
47
            this.lbl_USBCopyLocation_x64 = new System.Windows.Forms.Label();
48
            this.groupBox_HiddenAccounts = new System.Windows.Forms.GroupBox();
49
            this.listBox_HiddenAccounts = new System.Windows.Forms.ListBox();
50
            this.btn_HiddenRemove = new System.Windows.Forms.Button();
51
            this.btn_HiddenAdd = new System.Windows.Forms.Button();
52
            this.btn_Default = new System.Windows.Forms.Button();
53
            this.groupBox_SystemAccounts.SuspendLayout();
54
            this.groupBox_HiddenAccounts.SuspendLayout();
55
            this.SuspendLayout();
56
            // 
57
            // btn_Ok
58
            // 
53 Kevin 59
            this.btn_Ok.Location = new System.Drawing.Point(72, 305);
9 Kevin 60
            this.btn_Ok.Name = "btn_Ok";
61
            this.btn_Ok.Size = new System.Drawing.Size(52, 23);
62
            this.btn_Ok.TabIndex = 11;
63
            this.btn_Ok.Text = "Save";
64
            this.btn_Ok.UseVisualStyleBackColor = true;
65
            this.btn_Ok.Click += new System.EventHandler(this.btn_Ok_Click);
66
            // 
67
            // btn_Cancel
68
            // 
69
            this.btn_Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
53 Kevin 70
            this.btn_Cancel.Location = new System.Drawing.Point(130, 305);
9 Kevin 71
            this.btn_Cancel.Name = "btn_Cancel";
72
            this.btn_Cancel.Size = new System.Drawing.Size(52, 23);
73
            this.btn_Cancel.TabIndex = 12;
74
            this.btn_Cancel.Text = "Cancel";
75
            this.btn_Cancel.UseVisualStyleBackColor = true;
76
            this.btn_Cancel.Click += new System.EventHandler(this.btn_Cancel_Click);
77
            // 
78
            // listBox_SystemAccounts
79
            // 
80
            this.listBox_SystemAccounts.FormattingEnabled = true;
81
            this.listBox_SystemAccounts.Location = new System.Drawing.Point(6, 19);
82
            this.listBox_SystemAccounts.Name = "listBox_SystemAccounts";
83
            this.listBox_SystemAccounts.Size = new System.Drawing.Size(86, 56);
84
            this.listBox_SystemAccounts.TabIndex = 1;
85
            // 
86
            // btn_SystemAdd
87
            // 
88
            this.btn_SystemAdd.Location = new System.Drawing.Point(100, 23);
89
            this.btn_SystemAdd.Name = "btn_SystemAdd";
90
            this.btn_SystemAdd.Size = new System.Drawing.Size(60, 22);
91
            this.btn_SystemAdd.TabIndex = 2;
92
            this.btn_SystemAdd.Text = "Add";
93
            this.btn_SystemAdd.UseVisualStyleBackColor = true;
94
            this.btn_SystemAdd.Click += new System.EventHandler(this.btn_SystemAdd_Click);
95
            // 
96
            // btn_SystemRemove
97
            // 
98
            this.btn_SystemRemove.Location = new System.Drawing.Point(100, 49);
99
            this.btn_SystemRemove.Name = "btn_SystemRemove";
100
            this.btn_SystemRemove.Size = new System.Drawing.Size(60, 22);
101
            this.btn_SystemRemove.TabIndex = 3;
102
            this.btn_SystemRemove.Text = "Remove";
103
            this.btn_SystemRemove.UseVisualStyleBackColor = true;
104
            this.btn_SystemRemove.Click += new System.EventHandler(this.btn_SystemRemove_Click);
105
            // 
106
            // groupBox_SystemAccounts
107
            // 
108
            this.groupBox_SystemAccounts.Controls.Add(this.listBox_SystemAccounts);
109
            this.groupBox_SystemAccounts.Controls.Add(this.btn_SystemRemove);
110
            this.groupBox_SystemAccounts.Controls.Add(this.btn_SystemAdd);
53 Kevin 111
            this.groupBox_SystemAccounts.Location = new System.Drawing.Point(12, 12);
9 Kevin 112
            this.groupBox_SystemAccounts.Name = "groupBox_SystemAccounts";
113
            this.groupBox_SystemAccounts.Size = new System.Drawing.Size(170, 82);
114
            this.groupBox_SystemAccounts.TabIndex = 4;
115
            this.groupBox_SystemAccounts.TabStop = false;
116
            this.groupBox_SystemAccounts.Text = "System Accounts";
117
            // 
118
            // txt_ShareLocation
119
            // 
53 Kevin 120
            this.txt_ShareLocation.Location = new System.Drawing.Point(12, 201);
9 Kevin 121
            this.txt_ShareLocation.Name = "txt_ShareLocation";
122
            this.txt_ShareLocation.Size = new System.Drawing.Size(112, 20);
123
            this.txt_ShareLocation.TabIndex = 5;
124
            // 
125
            // lbl_ShareLocation
126
            // 
127
            this.lbl_ShareLocation.AutoSize = true;
53 Kevin 128
            this.lbl_ShareLocation.Location = new System.Drawing.Point(12, 185);
9 Kevin 129
            this.lbl_ShareLocation.Name = "lbl_ShareLocation";
130
            this.lbl_ShareLocation.Size = new System.Drawing.Size(117, 13);
131
            this.lbl_ShareLocation.TabIndex = 10;
132
            this.lbl_ShareLocation.Text = "Shared Folder Location";
133
            // 
134
            // btn_ShareLocationChange
135
            // 
53 Kevin 136
            this.btn_ShareLocationChange.Location = new System.Drawing.Point(130, 200);
9 Kevin 137
            this.btn_ShareLocationChange.Name = "btn_ShareLocationChange";
138
            this.btn_ShareLocationChange.Size = new System.Drawing.Size(52, 22);
139
            this.btn_ShareLocationChange.TabIndex = 6;
140
            this.btn_ShareLocationChange.Text = "Change";
141
            this.btn_ShareLocationChange.UseVisualStyleBackColor = true;
142
            this.btn_ShareLocationChange.Click += new System.EventHandler(this.btn_ShareLocationChange_Click);
143
            // 
144
            // folderBrowserDialog
145
            // 
146
            this.folderBrowserDialog.Description = "Choose a new location for storing networked folders";
147
            // 
148
            // btn_USBLocationx32Change
149
            // 
53 Kevin 150
            this.btn_USBLocationx32Change.Location = new System.Drawing.Point(130, 239);
9 Kevin 151
            this.btn_USBLocationx32Change.Name = "btn_USBLocationx32Change";
152
            this.btn_USBLocationx32Change.Size = new System.Drawing.Size(52, 22);
153
            this.btn_USBLocationx32Change.TabIndex = 8;
154
            this.btn_USBLocationx32Change.Text = "Change";
155
            this.btn_USBLocationx32Change.UseVisualStyleBackColor = true;
156
            this.btn_USBLocationx32Change.Click += new System.EventHandler(this.btn_USBLocationx32Change_Click);
157
            // 
158
            // txt_USBMasterCopyLocation_x32
159
            // 
53 Kevin 160
            this.txt_USBMasterCopyLocation_x32.Location = new System.Drawing.Point(12, 240);
9 Kevin 161
            this.txt_USBMasterCopyLocation_x32.Name = "txt_USBMasterCopyLocation_x32";
162
            this.txt_USBMasterCopyLocation_x32.Size = new System.Drawing.Size(112, 20);
163
            this.txt_USBMasterCopyLocation_x32.TabIndex = 7;
164
            // 
165
            // lbl_USBCopyLocation_x32
166
            // 
167
            this.lbl_USBCopyLocation_x32.AutoSize = true;
53 Kevin 168
            this.lbl_USBCopyLocation_x32.Location = new System.Drawing.Point(12, 224);
9 Kevin 169
            this.lbl_USBCopyLocation_x32.Name = "lbl_USBCopyLocation_x32";
170
            this.lbl_USBCopyLocation_x32.Size = new System.Drawing.Size(155, 13);
171
            this.lbl_USBCopyLocation_x32.TabIndex = 15;
172
            this.lbl_USBCopyLocation_x32.Text = "USB Master Copy x32 Location";
173
            // 
174
            // btn_USBLocationx64Change
175
            // 
53 Kevin 176
            this.btn_USBLocationx64Change.Location = new System.Drawing.Point(130, 277);
9 Kevin 177
            this.btn_USBLocationx64Change.Name = "btn_USBLocationx64Change";
178
            this.btn_USBLocationx64Change.Size = new System.Drawing.Size(52, 22);
179
            this.btn_USBLocationx64Change.TabIndex = 10;
180
            this.btn_USBLocationx64Change.Text = "Change";
181
            this.btn_USBLocationx64Change.UseVisualStyleBackColor = true;
182
            this.btn_USBLocationx64Change.Click += new System.EventHandler(this.btn_USBLocationx64Change_Click);
183
            // 
184
            // txt_USBMasterCopyLocation_x64
185
            // 
53 Kevin 186
            this.txt_USBMasterCopyLocation_x64.Location = new System.Drawing.Point(12, 279);
9 Kevin 187
            this.txt_USBMasterCopyLocation_x64.Name = "txt_USBMasterCopyLocation_x64";
188
            this.txt_USBMasterCopyLocation_x64.Size = new System.Drawing.Size(112, 20);
189
            this.txt_USBMasterCopyLocation_x64.TabIndex = 9;
190
            // 
191
            // lbl_USBCopyLocation_x64
192
            // 
193
            this.lbl_USBCopyLocation_x64.AutoSize = true;
53 Kevin 194
            this.lbl_USBCopyLocation_x64.Location = new System.Drawing.Point(12, 263);
9 Kevin 195
            this.lbl_USBCopyLocation_x64.Name = "lbl_USBCopyLocation_x64";
196
            this.lbl_USBCopyLocation_x64.Size = new System.Drawing.Size(155, 13);
197
            this.lbl_USBCopyLocation_x64.TabIndex = 18;
198
            this.lbl_USBCopyLocation_x64.Text = "USB Master Copy x64 Location";
199
            // 
200
            // groupBox_HiddenAccounts
201
            // 
202
            this.groupBox_HiddenAccounts.Controls.Add(this.listBox_HiddenAccounts);
203
            this.groupBox_HiddenAccounts.Controls.Add(this.btn_HiddenRemove);
204
            this.groupBox_HiddenAccounts.Controls.Add(this.btn_HiddenAdd);
53 Kevin 205
            this.groupBox_HiddenAccounts.Location = new System.Drawing.Point(12, 100);
9 Kevin 206
            this.groupBox_HiddenAccounts.Name = "groupBox_HiddenAccounts";
207
            this.groupBox_HiddenAccounts.Size = new System.Drawing.Size(170, 82);
208
            this.groupBox_HiddenAccounts.TabIndex = 19;
209
            this.groupBox_HiddenAccounts.TabStop = false;
210
            this.groupBox_HiddenAccounts.Text = "Hidden Accounts";
211
            // 
212
            // listBox_HiddenAccounts
213
            // 
214
            this.listBox_HiddenAccounts.FormattingEnabled = true;
215
            this.listBox_HiddenAccounts.Location = new System.Drawing.Point(6, 19);
216
            this.listBox_HiddenAccounts.Name = "listBox_HiddenAccounts";
217
            this.listBox_HiddenAccounts.Size = new System.Drawing.Size(86, 56);
218
            this.listBox_HiddenAccounts.TabIndex = 1;
219
            // 
220
            // btn_HiddenRemove
221
            // 
222
            this.btn_HiddenRemove.Location = new System.Drawing.Point(100, 49);
223
            this.btn_HiddenRemove.Name = "btn_HiddenRemove";
224
            this.btn_HiddenRemove.Size = new System.Drawing.Size(60, 22);
225
            this.btn_HiddenRemove.TabIndex = 3;
226
            this.btn_HiddenRemove.Text = "Remove";
227
            this.btn_HiddenRemove.UseVisualStyleBackColor = true;
228
            this.btn_HiddenRemove.Click += new System.EventHandler(this.btn_HiddenRemove_Click);
229
            // 
230
            // btn_HiddenAdd
231
            // 
232
            this.btn_HiddenAdd.Location = new System.Drawing.Point(100, 23);
233
            this.btn_HiddenAdd.Name = "btn_HiddenAdd";
234
            this.btn_HiddenAdd.Size = new System.Drawing.Size(60, 22);
235
            this.btn_HiddenAdd.TabIndex = 2;
236
            this.btn_HiddenAdd.Text = "Add";
237
            this.btn_HiddenAdd.UseVisualStyleBackColor = true;
238
            this.btn_HiddenAdd.Click += new System.EventHandler(this.btn_HiddenAdd_Click);
239
            // 
240
            // btn_Default
241
            // 
242
            this.btn_Default.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
53 Kevin 243
            this.btn_Default.Location = new System.Drawing.Point(12, 308);
9 Kevin 244
            this.btn_Default.Name = "btn_Default";
245
            this.btn_Default.Size = new System.Drawing.Size(45, 20);
246
            this.btn_Default.TabIndex = 20;
247
            this.btn_Default.Text = "Defaults";
248
            this.btn_Default.UseVisualStyleBackColor = true;
249
            this.btn_Default.Click += new System.EventHandler(this.btn_Default_Click);
250
            // 
251
            // Settings_Form
252
            // 
253
            this.AcceptButton = this.btn_Ok;
254
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
255
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
256
            this.BackColor = System.Drawing.SystemColors.Control;
257
            this.CancelButton = this.btn_Cancel;
53 Kevin 258
            this.ClientSize = new System.Drawing.Size(194, 339);
9 Kevin 259
            this.Controls.Add(this.btn_Default);
260
            this.Controls.Add(this.groupBox_HiddenAccounts);
261
            this.Controls.Add(this.lbl_USBCopyLocation_x64);
262
            this.Controls.Add(this.btn_USBLocationx64Change);
263
            this.Controls.Add(this.txt_USBMasterCopyLocation_x64);
264
            this.Controls.Add(this.lbl_USBCopyLocation_x32);
265
            this.Controls.Add(this.btn_USBLocationx32Change);
266
            this.Controls.Add(this.txt_USBMasterCopyLocation_x32);
267
            this.Controls.Add(this.btn_ShareLocationChange);
268
            this.Controls.Add(this.lbl_ShareLocation);
269
            this.Controls.Add(this.txt_ShareLocation);
270
            this.Controls.Add(this.btn_Cancel);
271
            this.Controls.Add(this.btn_Ok);
272
            this.Controls.Add(this.groupBox_SystemAccounts);
273
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
274
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
275
            this.MaximizeBox = false;
276
            this.Name = "Settings_Form";
277
            this.ShowInTaskbar = false;
278
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
279
            this.Text = "Settings";
280
            this.groupBox_SystemAccounts.ResumeLayout(false);
281
            this.groupBox_HiddenAccounts.ResumeLayout(false);
282
            this.ResumeLayout(false);
283
            this.PerformLayout();
284
 
285
        }
286
 
287
        #endregion
288
 
289
        private System.Windows.Forms.Button btn_Ok;
290
        private System.Windows.Forms.Button btn_Cancel;
291
        private System.Windows.Forms.ListBox listBox_SystemAccounts;
292
        private System.Windows.Forms.Button btn_SystemAdd;
293
        private System.Windows.Forms.Button btn_SystemRemove;
294
        private System.Windows.Forms.GroupBox groupBox_SystemAccounts;
295
        private System.Windows.Forms.TextBox txt_ShareLocation;
296
        private System.Windows.Forms.Label lbl_ShareLocation;
297
        private System.Windows.Forms.Button btn_ShareLocationChange;
298
        private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog;
299
        private System.Windows.Forms.Button btn_USBLocationx32Change;
300
        private System.Windows.Forms.TextBox txt_USBMasterCopyLocation_x32;
301
        private System.Windows.Forms.Button btn_USBLocationx64Change;
302
        private System.Windows.Forms.TextBox txt_USBMasterCopyLocation_x64;
303
        private System.Windows.Forms.Label lbl_USBCopyLocation_x32;
304
        private System.Windows.Forms.Label lbl_USBCopyLocation_x64;
305
        private System.Windows.Forms.GroupBox groupBox_HiddenAccounts;
306
        private System.Windows.Forms.ListBox listBox_HiddenAccounts;
307
        private System.Windows.Forms.Button btn_HiddenRemove;
308
        private System.Windows.Forms.Button btn_HiddenAdd;
309
        private System.Windows.Forms.Button btn_Default;
310
    }
311
}