Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/tools/CedmaDatabaseMerger/MergerForm.Designer.cs @ 2277

Last change on this file since 2277 was 2277, checked in by gkronber, 15 years ago

Worked on merger tool to combine to CEDMA result sets. #719.

File size: 3.4 KB
Line 
1namespace CedmaDatabaseMerger {
2  partial class MergerForm {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Windows Form Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.setOutputButton = new System.Windows.Forms.Button();
27      this.importButton = new System.Windows.Forms.Button();
28      this.outputTextBox = new System.Windows.Forms.TextBox();
29      this.importProgressBar = new System.Windows.Forms.ProgressBar();
30      this.SuspendLayout();
31      //
32      // setOutputButton
33      //
34      this.setOutputButton.Location = new System.Drawing.Point(12, 12);
35      this.setOutputButton.Name = "setOutputButton";
36      this.setOutputButton.Size = new System.Drawing.Size(75, 23);
37      this.setOutputButton.TabIndex = 0;
38      this.setOutputButton.Text = "Set output...";
39      this.setOutputButton.UseVisualStyleBackColor = true;
40      this.setOutputButton.Click += new System.EventHandler(this.setOutputButton_Click);
41      //
42      // importButton
43      //
44      this.importButton.Location = new System.Drawing.Point(12, 41);
45      this.importButton.Name = "importButton";
46      this.importButton.Size = new System.Drawing.Size(75, 23);
47      this.importButton.TabIndex = 1;
48      this.importButton.Text = "Import...";
49      this.importButton.UseVisualStyleBackColor = true;
50      this.importButton.Click += new System.EventHandler(this.importButton_Click);
51      //
52      // outputTextBox
53      //
54      this.outputTextBox.Location = new System.Drawing.Point(93, 14);
55      this.outputTextBox.Name = "outputTextBox";
56      this.outputTextBox.Size = new System.Drawing.Size(157, 20);
57      this.outputTextBox.TabIndex = 2;
58      //
59      // progressBar1
60      //
61      this.importProgressBar.Location = new System.Drawing.Point(94, 40);
62      this.importProgressBar.Name = "progressBar1";
63      this.importProgressBar.Size = new System.Drawing.Size(156, 23);
64      this.importProgressBar.TabIndex = 3;
65      //
66      // MergerForm
67      //
68      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
69      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
70      this.ClientSize = new System.Drawing.Size(270, 82);
71      this.Controls.Add(this.importProgressBar);
72      this.Controls.Add(this.outputTextBox);
73      this.Controls.Add(this.importButton);
74      this.Controls.Add(this.setOutputButton);
75      this.Name = "MergerForm";
76      this.Text = "MergerForm";
77      this.ResumeLayout(false);
78      this.PerformLayout();
79
80    }
81
82    #endregion
83
84    private System.Windows.Forms.Button setOutputButton;
85    private System.Windows.Forms.Button importButton;
86    private System.Windows.Forms.TextBox outputTextBox;
87    private System.Windows.Forms.ProgressBar importProgressBar;
88  }
89}
Note: See TracBrowser for help on using the repository browser.