-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMainForm.Designer.cs
More file actions
200 lines (196 loc) · 9.21 KB
/
MainForm.Designer.cs
File metadata and controls
200 lines (196 loc) · 9.21 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
namespace PstMerger
{
partial class MainForm
{
private System.ComponentModel.IContainer components = null;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.txtSourceFolder = new System.Windows.Forms.TextBox();
this.btnBrowseSource = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.txtDestPst = new System.Windows.Forms.TextBox();
this.btnBrowseDest = new System.Windows.Forms.Button();
this.btnFixRegistry = new System.Windows.Forms.Button();
this.btnStartMerge = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.btnAbout = new System.Windows.Forms.Button();
this.progressBar = new System.Windows.Forms.ProgressBar();
this.txtLog = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 15);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(124, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Source Folder (PST files):";
//
// txtSourceFolder
//
this.txtSourceFolder.Location = new System.Drawing.Point(15, 31);
this.txtSourceFolder.Name = "txtSourceFolder";
this.txtSourceFolder.Size = new System.Drawing.Size(465, 20);
this.txtSourceFolder.TabIndex = 1;
//
// btnBrowseSource
//
this.btnBrowseSource.Location = new System.Drawing.Point(486, 29);
this.btnBrowseSource.Name = "btnBrowseSource";
this.btnBrowseSource.Size = new System.Drawing.Size(75, 23);
this.btnBrowseSource.TabIndex = 2;
this.btnBrowseSource.Text = "Browse...";
this.btnBrowseSource.UseVisualStyleBackColor = true;
this.btnBrowseSource.Click += new System.EventHandler(this.btnBrowseSource_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 65);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(117, 13);
this.label2.TabIndex = 3;
this.label2.Text = "Destination Master PST:";
//
// txtDestPst
//
this.txtDestPst.Location = new System.Drawing.Point(15, 81);
this.txtDestPst.Name = "txtDestPst";
this.txtDestPst.Size = new System.Drawing.Size(465, 20);
this.txtDestPst.TabIndex = 4;
//
// btnBrowseDest
//
this.btnBrowseDest.Location = new System.Drawing.Point(486, 79);
this.btnBrowseDest.Name = "btnBrowseDest";
this.btnBrowseDest.Size = new System.Drawing.Size(75, 23);
this.btnBrowseDest.TabIndex = 5;
this.btnBrowseDest.Text = "Browse...";
this.btnBrowseDest.UseVisualStyleBackColor = true;
this.btnBrowseDest.Click += new System.EventHandler(this.btnBrowseDest_Click);
//
// btnFixRegistry
//
this.btnFixRegistry.BackColor = System.Drawing.Color.LightGoldenrodYellow;
this.btnFixRegistry.Location = new System.Drawing.Point(15, 115);
this.btnFixRegistry.Name = "btnFixRegistry";
this.btnFixRegistry.Size = new System.Drawing.Size(150, 30);
this.btnFixRegistry.TabIndex = 6;
this.btnFixRegistry.Text = "Fix PST Size Limits";
this.btnFixRegistry.UseVisualStyleBackColor = false;
this.btnFixRegistry.Click += new System.EventHandler(this.btnFixRegistry_Click);
//
// btnStartMerge
//
this.btnStartMerge.BackColor = System.Drawing.Color.LightGreen;
this.btnStartMerge.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnStartMerge.Location = new System.Drawing.Point(310, 115);
this.btnStartMerge.Name = "btnStartMerge";
this.btnStartMerge.Size = new System.Drawing.Size(100, 30);
this.btnStartMerge.TabIndex = 7;
this.btnStartMerge.Text = "Start Merge";
this.btnStartMerge.UseVisualStyleBackColor = false;
this.btnStartMerge.Click += new System.EventHandler(this.btnStartMerge_Click);
//
// btnCancel
//
this.btnCancel.BackColor = System.Drawing.Color.LightCoral;
this.btnCancel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnCancel.Location = new System.Drawing.Point(190, 115);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(100, 30);
this.btnCancel.TabIndex = 11;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = false;
this.btnCancel.Visible = false;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// btnAbout
//
this.btnAbout.Location = new System.Drawing.Point(430, 115);
this.btnAbout.Name = "btnAbout";
this.btnAbout.Size = new System.Drawing.Size(75, 30);
this.btnAbout.TabIndex = 12;
this.btnAbout.Text = "About";
this.btnAbout.UseVisualStyleBackColor = true;
this.btnAbout.Click += new System.EventHandler(this.btnAbout_Click);
//
// progressBar
//
this.progressBar.Location = new System.Drawing.Point(15, 151);
this.progressBar.Name = "progressBar";
this.progressBar.Size = new System.Drawing.Size(546, 23);
this.progressBar.TabIndex = 8;
//
// txtLog
//
this.txtLog.BackColor = System.Drawing.Color.Black;
this.txtLog.ForeColor = System.Drawing.Color.Lime;
this.txtLog.Location = new System.Drawing.Point(15, 193);
this.txtLog.Multiline = true;
this.txtLog.Name = "txtLog";
this.txtLog.ReadOnly = true;
this.txtLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtLog.Size = new System.Drawing.Size(546, 250);
this.txtLog.TabIndex = 9;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(12, 177);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(28, 13);
this.label3.TabIndex = 10;
this.label3.Text = "Log:";
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(584, 461);
this.Controls.Add(this.btnAbout);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.label3);
this.Controls.Add(this.txtLog);
this.Controls.Add(this.progressBar);
this.Controls.Add(this.btnStartMerge);
this.Controls.Add(this.btnFixRegistry);
this.Controls.Add(this.btnBrowseDest);
this.Controls.Add(this.txtDestPst);
this.Controls.Add(this.label2);
this.Controls.Add(this.btnBrowseSource);
this.Controls.Add(this.txtSourceFolder);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "MainForm";
this.Text = "PST Merge Tool";
this.ResumeLayout(false);
this.PerformLayout();
}
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtSourceFolder;
private System.Windows.Forms.Button btnBrowseSource;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtDestPst;
private System.Windows.Forms.Button btnBrowseDest;
private System.Windows.Forms.Button btnFixRegistry;
private System.Windows.Forms.Button btnStartMerge;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnAbout;
private System.Windows.Forms.ProgressBar progressBar;
private System.Windows.Forms.TextBox txtLog;
private System.Windows.Forms.Label label3;
}
}