Ejemplo n.º 1
0
        }                                                                                                           // 1.0.001

        /// <summary>
        /// Adds the specified the tab page.
        /// </summary>
        /// <param name="theTabPage">The tab page.</param>
        public new void Add(System.Windows.Forms.TabPage theTabPage)                                                                            // 1.0.010
        {                                                                                                                                       // 1.0.010
            // Any special processing may be done here														// 1.0.010
            //																								// 1.0.010
            _owner.cmnuTabRect_Built = false;                                                                       // 1.0.010
            base.Add(theTabPage);                                                                                   // 1.0.010
        }                                                                                                           // 1.0.010
 /// <summary>
 /// Initializes a new instance of the <see cref="TabEventArgs"/> class.
 /// </summary>
 /// <param name="theTabPage">The tab page.</param>
 /// <param name="theTabEvent">The tab event.</param>
 public TabEventArgs(                                                                                        // 1.0.010
     System.Windows.Forms.TabPage theTabPage,                                                                // 1.0.010
     TabEventArgs.TabEvents theTabEvent)                                                                     // 1.0.010
 {                                                                                                           // 1.0.010
     this._TabPage  = theTabPage;                                                                            // 1.0.010
     this._TabEvent = theTabEvent;                                                                           // 1.0.010
 }                                                                                                           // 1.0.010
Ejemplo n.º 3
0
 public override void AddToTab(System.Windows.Forms.TabPage o)
 {
     _control = new GridViewControl();
     o.Text   = "GridView";
     o.Controls.Add(_control);
     o.Controls[0].Dock = System.Windows.Forms.DockStyle.Fill;
 }
Ejemplo n.º 4
0
 public CVentanaProcesos(CViewsManager vm)
 {
     view                      = (vm.getFirstView("GestorProcesos.VentanaProcesos") != null)? vm.getFirstView("GestorProcesos.VentanaProcesos"): vm.AddView("GestorProcesos.VentanaProcesos");
     VentanaProcesos           = (System.Windows.Forms.UserControl)view.getCtrl("GestorProcesos.VentanaProcesos");
     VentanaProcesos_cstr      = view.getCtrlStruct("GestorProcesos.VentanaProcesos");
     tabProcesos               = (System.Windows.Forms.TabControl)view.getCtrl("tabProcesos");
     tabProcesos_cstr          = view.getCtrlStruct("tabProcesos");
     Pcontent                  = (System.Windows.Forms.TabPage)view.getCtrl("Pcontent");
     Pcontent_cstr             = view.getCtrlStruct("Pcontent");
     PProcessPanel             = (System.Windows.Forms.TabPage)view.getCtrl("PProcessPanel");
     PProcessPanel_cstr        = view.getCtrlStruct("PProcessPanel");
     PLeft                     = (System.Windows.Forms.Panel)view.getCtrl("PLeft");
     PLeft_cstr                = view.getCtrlStruct("PLeft");
     PProcessList              = (System.Windows.Forms.Panel)view.getCtrl("PProcessList");
     PProcessList_cstr         = view.getCtrlStruct("PProcessList");
     LProcess                  = (System.Windows.Forms.ListBox)view.getCtrl("LProcess");
     LProcess_cstr             = view.getCtrlStruct("LProcess");
     contextMenu_Proceso       = (System.Windows.Forms.ContextMenuStrip)view.getCtrl("contextMenu_Proceso");
     contextMenu_Proceso_cstr  = view.getCtrlStruct("contextMenu_Proceso");
     PProcessDir               = (System.Windows.Forms.Panel)view.getCtrl("PProcessDir");
     PProcessDir_cstr          = view.getCtrlStruct("PProcessDir");
     TV_Processes              = (System.Windows.Forms.TreeView)view.getCtrl("TV_Processes");
     TV_Processes_cstr         = view.getCtrlStruct("TV_Processes");
     contextMenu_Procesos      = (System.Windows.Forms.ContextMenuStrip)view.getCtrl("contextMenu_Procesos");
     contextMenu_Procesos_cstr = view.getCtrlStruct("contextMenu_Procesos");
 }
Ejemplo n.º 5
0
 //PRB: Exception thrown during Windows Forms data binding if bound control is on a tab page with uncreated handle
 //FIX: Make sure all tab pages are created when the tabcontrol is created.
 //https://connect.microsoft.com/VisualStudio/feedback/details/351177
 private void InitializeTabPage(System.Windows.Forms.TabPage page_, bool createHandle_, bool createControl_)
 {
     if (!createControl_ && !createHandle_)
     {
         return;
     }
     if (createHandle_ && !page_.IsHandleCreated)
     {
         IntPtr handle = page_.Handle;
     }
     if (!page_.Created && createControl_)
     {
         return;
     }
     bool visible = page_.Visible;
     if (!visible)
     {
         page_.Visible = true;
     }
     page_.CreateControl();
     if (!visible)
     {
         page_.Visible = false;
     }
 }
Ejemplo n.º 6
0
 /// <summary>
 /// TabPage
 /// </summary>
 /// <param name="STC"></param>
 public override void TabPageStyle(System.Windows.Forms.TabPage TP)
 {
     TP.Paint += delegate(object sender, System.Windows.Forms.PaintEventArgs e)
     {
         this.OnTabPageBackground(this.ChangeHexColorToDecimalColor("#FFA6E4"), e);
     };
 }
Ejemplo n.º 7
0
 public static void EnableTab(System.Windows.Forms.TabPage page, bool enable)
 {
     foreach (System.Windows.Forms.Control ctl in page.Controls)
     {
         ctl.Enabled = enable;
     }
 }
        }                                                                                                           // 1.0.010

        /// <summary>
        /// Initializes a new instance of the <see cref="TabEventArgs"/> class.
        /// </summary>
        /// <param name="theTabPage">The tab page.</param>
        /// <param name="theTabEvent">The tab event.</param>
        public TabEventArgs(
            ZeroitAyensuTabPage theTabPage,
            TabEventArgs.TabEvents theTabEvent)
        {
            this._TabPage  = theTabPage;
            this._TabEvent = theTabEvent;
        }
Ejemplo n.º 9
0
        public WinFormsTabPage(Widget shellobject, string caption)
            : base(shellobject)
        {
            tabpage     = new System.Windows.Forms.TabPage(caption);
            tabpage.Tag = shellobject; //map-back from native control to guppy object

            tabpage.UseVisualStyleBackColor = true;
        }
Ejemplo n.º 10
0
 public void AddToTab(System.Windows.Forms.TabControl tabControl, System.Windows.Forms.TabPage tabPage)
 {
     ((System.ComponentModel.ISupportInitialize)(volume)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(icon)).BeginInit();
     associatedTabControl = tabControl;
     associatedTabPage    = tabPage;
     tabPage.Controls.Add(panel);
 }
Ejemplo n.º 11
0
 public Song(uint BPM, System.Windows.Forms.TabPage TabPage, uint[] TrackIndex)
 {
     this.BPM        = BPM;
     this.TabPage    = TabPage;
     TrackSelect     = new List <System.Windows.Forms.RadioButton>();
     Tracks          = new List <Track>();
     this.TrackIndex = TrackIndex;
 }
        }                                                                                                           // 1.0.010

        /// <summary>
        /// Initializes a new instance of the <see cref="TabEventArgs"/> class.
        /// </summary>
        /// <param name="theTabIndex">Index of the tab.</param>
        /// <param name="theTabPage">The tab page.</param>
        /// <param name="theTabEvent">The tab event.</param>
        public TabEventArgs(
            int theTabIndex,
            ZeroitAyensuTabPage theTabPage,
            TabEventArgs.TabEvents theTabEvent)
        {
            this._TabIndex = theTabIndex;
            this._TabPage  = theTabPage;
            this._TabEvent = theTabEvent;
        }
Ejemplo n.º 13
0
 protected override void OnControlAdded(ControlEventArgs e_)
 {
     base.OnControlAdded(e_);
     System.Windows.Forms.TabPage page = e_.Control as System.Windows.Forms.TabPage;
     if ((page != null) && (page.Parent == this) && (IsHandleCreated || Created))
     {
         InitializeTabPage(page, IsHandleCreated, Created);
     }
 }
 public static void AddAndShow(
     System.Windows.Forms.TabPage pluginTabPage)
 {
     pluginTabPage.Controls.Add(new System.Windows.Forms.Integration.ElementHost()
     {
         Child = new NotSupportedView(),
         Dock  = System.Windows.Forms.DockStyle.Fill,
     });
 }
 public void SetVariableTab(string VariableName)
 {
     if (this._handlersTable.ContainsKey(VariableName))
     {
         System.Windows.Forms.TabPage tabPage = default(System.Windows.Forms.TabPage);
         tabPage = (System.Windows.Forms.TabPage) this._variablesTabPagesTable[VariableName];
         this.tabVariablesSimulationHandler.SelectedTab = tabPage;
     }
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="TabEventArgs"/> class.
 /// </summary>
 /// <param name="theNewTabIndex">Index of the new tab.</param>
 /// <param name="theOldTabIndex">Index of the old tab.</param>
 /// <param name="theTabPage">The tab page.</param>
 /// <param name="theTabEvent">The tab event.</param>
 public TabEventArgs(                                                                                        // 1.0.010
     int theNewTabIndex, int theOldTabIndex,                                                                 // 1.0.010
     System.Windows.Forms.TabPage theTabPage,                                                                // 1.0.010
     TabEventArgs.TabEvents theTabEvent)                                                                     // 1.0.010
 {                                                                                                           // 1.0.010
     this._TabIndex    = theNewTabIndex;                                                                     // 1.0.010
     this._oldTabIndex = theOldTabIndex;                                                                     // 1.0.010
     this._TabPage     = theTabPage;                                                                         // 1.0.010
     this._TabEvent    = theTabEvent;                                                                        // 1.0.010
 }                                                                                                           // 1.0.010
        }                                                                                                           // 1.0.010

        /// <summary>
        /// Initializes a new instance of the <see cref="TabEventArgs"/> class.
        /// </summary>
        /// <param name="theNewTabIndex">Index of the new tab.</param>
        /// <param name="theOldTabIndex">Index of the old tab.</param>
        /// <param name="theTabPage">The tab page.</param>
        /// <param name="theTabEvent">The tab event.</param>
        public TabEventArgs(                                                                                        // 1.0.003
            int theNewTabIndex, int theOldTabIndex,                                                                 // 1.0.003
            ZeroitAyensuTabPage theTabPage,                                                                         // 1.0.003
            TabEventArgs.TabEvents theTabEvent)                                                                     // 1.0.003
        {                                                                                                           // 1.0.003
            this._TabIndex    = theNewTabIndex;                                                                     // 1.0.003
            this._oldTabIndex = theOldTabIndex;                                                                     // 1.0.003
            this._TabPage     = theTabPage;                                                                         // 1.0.003
            this._TabEvent    = theTabEvent;                                                                        // 1.0.003
        }                                                                                                           // 1.0.003
Ejemplo n.º 18
0
        //
        // TabControl
        //
        public void InitializeTabControl(ref System.Windows.Forms.TabControl tab_control, string text)
        {
            // TabPage
            System.Windows.Forms.TabPage tab_page = new System.Windows.Forms.TabPage();
            tab_page.UseVisualStyleBackColor = true;
            tab_page.Name = text;
            tab_page.Text = text;
            tab_control.Controls.Add(tab_page);

            // Panel
            System.Windows.Forms.Panel panel = new System.Windows.Forms.Panel();
            panel.Dock       = System.Windows.Forms.DockStyle.Fill;
            panel.AutoScroll = true;
            tab_page.Controls.Add(panel);

            // DataGridView
            this.data_grid_view_      = new System.Windows.Forms.DataGridView();
            this.data_grid_view_.Dock = System.Windows.Forms.DockStyle.Fill;
            this.data_grid_view_.AllowUserToAddRows    = false;
            this.data_grid_view_.AllowUserToResizeRows = false;
            this.data_grid_view_.AutoSizeColumnsMode   = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
            this.data_grid_view_.MultiSelect           = false;
            panel.Controls.Add(this.data_grid_view_);

            // Column
            {
                System.Windows.Forms.DataGridViewTextBoxColumn textbox = new System.Windows.Forms.DataGridViewTextBoxColumn();
                textbox.ReadOnly = true;
                this.data_grid_view_.Columns.Add(textbox);
                textbox.Name = "Name";
            }
            {
                System.Windows.Forms.DataGridViewTextBoxColumn textbox = new System.Windows.Forms.DataGridViewTextBoxColumn();
                textbox.ReadOnly = true;
                this.data_grid_view_.Columns.Add(textbox);
                textbox.Name = "Bit";
            }
            {
                System.Windows.Forms.DataGridViewComboBoxColumn combobox = new System.Windows.Forms.DataGridViewComboBoxColumn();
                combobox.DataPropertyName = "ValueSelect";
                //this.data_grid_view_.Columns.Insert(1, combobox);
                this.data_grid_view_.Columns.Add(combobox);
                combobox.Name = "ValueSelect";
            }
            {
                System.Windows.Forms.DataGridViewTextBoxColumn textbox = new System.Windows.Forms.DataGridViewTextBoxColumn();
                this.data_grid_view_.Columns.Add(textbox);
                textbox.Name = "Value";
            }
            foreach (System.Windows.Forms.DataGridViewColumn col in this.data_grid_view_.Columns)
            {
                col.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            }
        }
Ejemplo n.º 19
0
        protected Boolean ValidateForm(System.Windows.Forms.TabPage tabPage, System.Windows.Forms.Control control, Boolean condition, String errorMessage, Boolean canIgnore)
        {
            Boolean result = this.ValidateForm(control, condition, errorMessage, canIgnore);

            if (!result)
            {
                (tabPage.Parent as System.Windows.Forms.TabControl).SelectedTab = tabPage;
            }

            return(result);
        }
Ejemplo n.º 20
0
        public void OnTabChanged(object sender, System.Windows.Forms.TabPage SelectedPage)
        {
            var TabChangedDelegate = TabChanged as EventHandler <TabPageChangedArgs>;

            if (TabChangedDelegate != null)
            {
                TabChangedDelegate(this, new TabPageChangedArgs {
                    Tabpage = SelectedPage
                });
            }
        }
Ejemplo n.º 21
0
 private void InitializeComponent()
 {
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage = new System.Windows.Forms.TabPage();
     this.browser = new System.Windows.Forms.WebBrowser();
     this.chbDisplayAll = new System.Windows.Forms.CheckBox();
     this.tabControl1.SuspendLayout();
     this.tabPage.SuspendLayout();
     this.SuspendLayout();
     this.tabControl1.Controls.Add(this.tabPage);
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location = new System.Drawing.Point(0, 0);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(300, 300);
     this.tabControl1.TabIndex = 0;
     this.tabPage.BackColor = System.Drawing.SystemColors.Control;
     this.tabPage.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.tabPage.Controls.Add(this.browser);
     this.tabPage.Controls.Add(this.chbDisplayAll);
     this.tabPage.Location = new System.Drawing.Point(4, 22);
     this.tabPage.Name = "tabPage";
     this.tabPage.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage.Size = new System.Drawing.Size(292, 274);
     this.tabPage.TabIndex = 0;
     this.tabPage.Text = "Release Notes";
     this.browser.AllowWebBrowserDrop = false;
     this.browser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.browser.IsWebBrowserContextMenuEnabled = false;
     this.browser.Location = new System.Drawing.Point(3, 3);
     this.browser.MinimumSize = new System.Drawing.Size(20, 20);
     this.browser.Name = "browser";
     this.browser.ScriptErrorsSuppressed = true;
     this.browser.Size = new System.Drawing.Size(282, 240);
     this.browser.TabIndex = 0;
     this.browser.WebBrowserShortcutsEnabled = false;
     this.browser.Navigating += new System.Windows.Forms.WebBrowserNavigatingEventHandler(this.browser_Navigating);
     this.chbDisplayAll.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.chbDisplayAll.Location = new System.Drawing.Point(3, 243);
     this.chbDisplayAll.Name = "chbDisplayAll";
     this.chbDisplayAll.Size = new System.Drawing.Size(282, 24);
     this.chbDisplayAll.TabIndex = 1;
     this.chbDisplayAll.Text = "Display all";
     this.chbDisplayAll.UseVisualStyleBackColor = true;
     this.chbDisplayAll.CheckedChanged += new EventHandler(this.chbDisplayAll_CheckedChanged);
     this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.tabControl1);
     this.Name = "ReleaseNotesControl";
     this.Size = new System.Drawing.Size(300, 300);
     this.tabControl1.ResumeLayout(false);
     this.tabPage.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 22
0
 private void InitializeComponent()
 {
     this.tabControl1   = new System.Windows.Forms.TabControl();
     this.tabPage       = new System.Windows.Forms.TabPage();
     this.browser       = new System.Windows.Forms.WebBrowser();
     this.chbDisplayAll = new System.Windows.Forms.CheckBox();
     this.tabControl1.SuspendLayout();
     this.tabPage.SuspendLayout();
     this.SuspendLayout();
     this.tabControl1.Controls.Add(this.tabPage);
     this.tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location      = new System.Drawing.Point(0, 0);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(300, 300);
     this.tabControl1.TabIndex      = 0;
     this.tabPage.BackColor         = System.Drawing.SystemColors.Control;
     this.tabPage.BorderStyle       = System.Windows.Forms.BorderStyle.Fixed3D;
     this.tabPage.Controls.Add(this.browser);
     this.tabPage.Controls.Add(this.chbDisplayAll);
     this.tabPage.Location                       = new System.Drawing.Point(4, 22);
     this.tabPage.Name                           = "tabPage";
     this.tabPage.Padding                        = new System.Windows.Forms.Padding(3);
     this.tabPage.Size                           = new System.Drawing.Size(292, 274);
     this.tabPage.TabIndex                       = 0;
     this.tabPage.Text                           = "Release Notes";
     this.browser.AllowWebBrowserDrop            = false;
     this.browser.Dock                           = System.Windows.Forms.DockStyle.Fill;
     this.browser.IsWebBrowserContextMenuEnabled = false;
     this.browser.Location                       = new System.Drawing.Point(3, 3);
     this.browser.MinimumSize                    = new System.Drawing.Size(20, 20);
     this.browser.Name                           = "browser";
     this.browser.ScriptErrorsSuppressed         = true;
     this.browser.Size                           = new System.Drawing.Size(282, 240);
     this.browser.TabIndex                       = 0;
     this.browser.WebBrowserShortcutsEnabled     = false;
     this.browser.Navigating                    += new System.Windows.Forms.WebBrowserNavigatingEventHandler(this.browser_Navigating);
     this.chbDisplayAll.Dock                     = System.Windows.Forms.DockStyle.Bottom;
     this.chbDisplayAll.Location                 = new System.Drawing.Point(3, 243);
     this.chbDisplayAll.Name                     = "chbDisplayAll";
     this.chbDisplayAll.Size                     = new System.Drawing.Size(282, 24);
     this.chbDisplayAll.TabIndex                 = 1;
     this.chbDisplayAll.Text                     = "Display all";
     this.chbDisplayAll.UseVisualStyleBackColor  = true;
     this.chbDisplayAll.CheckedChanged          += new EventHandler(this.chbDisplayAll_CheckedChanged);
     this.AutoScaleDimensions                    = new System.Drawing.SizeF(6f, 13f);
     this.AutoScaleMode                          = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.tabControl1);
     this.Name = "ReleaseNotesControl";
     this.Size = new System.Drawing.Size(300, 300);
     this.tabControl1.ResumeLayout(false);
     this.tabPage.ResumeLayout(false);
     this.ResumeLayout(false);
 }
    private void Form1_Load(object sender, EventArgs e)
    {
        var mTab = new MyTab();

        mTab.Location = new System.Drawing.Point(100, 100);
        // The OnClick will only work on the
        // Tabs themselves so Pages must be added to display the Tabs.
        var mtabPage1 = new System.Windows.Forms.TabPage();

        mTab.Controls.Add(mtabPage1);
        this.Controls.Add(mTab);
    }
Ejemplo n.º 24
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.tabControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Location = new System.Drawing.Point(4, 6);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(335, 107);
     this.tabControl1.TabIndex = 0;
     this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
     //
     // tabPage1
     //
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(327, 81);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "C#编程词典——全能版";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // tabPage2
     //
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size = new System.Drawing.Size(327, 81);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "C#编程词典——珍藏版";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // Frm_Main
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(344, 114);
     this.Controls.Add(this.tabControl1);
     this.Name = "Frm_Main";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "获取选中的选项卡名称";
     this.Load += new System.EventHandler(this.Form1_Load);
     this.tabControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 25
0
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.TabControl tabControl1;
            System.Windows.Forms.TabPage tabPage2;
            this.propertyGrid1 = new System.Windows.Forms.PropertyGrid();
            tabControl1 = new System.Windows.Forms.TabControl();
            tabPage2 = new System.Windows.Forms.TabPage();
            tabControl1.SuspendLayout();
            tabPage2.SuspendLayout();
            this.SuspendLayout();
            // 
            // tabControl1
            // 
            tabControl1.Controls.Add(tabPage2);
            tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            tabControl1.Location = new System.Drawing.Point(0, 0);
            tabControl1.Name = "tabControl1";
            tabControl1.SelectedIndex = 0;
            tabControl1.Size = new System.Drawing.Size(150, 348);
            tabControl1.TabIndex = 0;
            // 
            // tabPage2
            // 
            tabPage2.BackColor = System.Drawing.SystemColors.Control;
            tabPage2.Controls.Add(this.propertyGrid1);
            tabPage2.Location = new System.Drawing.Point(4, 22);
            tabPage2.Name = "tabPage2";
            tabPage2.Padding = new System.Windows.Forms.Padding(3);
            tabPage2.Size = new System.Drawing.Size(142, 322);
            tabPage2.TabIndex = 1;
            tabPage2.Text = "Properties";
            // 
            // propertyGrid1
            // 
            this.propertyGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.propertyGrid1.Location = new System.Drawing.Point(3, 3);
            this.propertyGrid1.Name = "propertyGrid1";
            this.propertyGrid1.Size = new System.Drawing.Size(136, 316);
            this.propertyGrid1.TabIndex = 0;
            // 
            // PropertyPage
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(tabControl1);
            this.Name = "PropertyPage";
            this.Size = new System.Drawing.Size(150, 348);
            tabControl1.ResumeLayout(false);
            tabPage2.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Ejemplo n.º 26
0
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.TabControl tabControl1;
            System.Windows.Forms.TabPage tabPage2;
            this.treeView1 = new System.Windows.Forms.TreeView();
            tabControl1 = new System.Windows.Forms.TabControl();
            tabPage2 = new System.Windows.Forms.TabPage();
            tabControl1.SuspendLayout();
            tabPage2.SuspendLayout();
            this.SuspendLayout();
            // 
            // tabControl1
            // 
            tabControl1.Controls.Add(tabPage2);
            tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            tabControl1.Location = new System.Drawing.Point(0, 0);
            tabControl1.Name = "tabControl1";
            tabControl1.SelectedIndex = 0;
            tabControl1.Size = new System.Drawing.Size(208, 356);
            tabControl1.TabIndex = 1;
            // 
            // tabPage2
            // 
            tabPage2.BackColor = System.Drawing.SystemColors.Control;
            tabPage2.Controls.Add(this.treeView1);
            tabPage2.Location = new System.Drawing.Point(4, 22);
            tabPage2.Name = "tabPage2";
            tabPage2.Padding = new System.Windows.Forms.Padding(3);
            tabPage2.Size = new System.Drawing.Size(200, 330);
            tabPage2.TabIndex = 1;
            tabPage2.Text = "World";
            // 
            // treeView1
            // 
            this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.treeView1.Location = new System.Drawing.Point(3, 3);
            this.treeView1.Name = "treeView1";
            this.treeView1.Size = new System.Drawing.Size(194, 324);
            this.treeView1.TabIndex = 0;
            // 
            // WorldPage
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(tabControl1);
            this.Name = "WorldPage";
            this.Size = new System.Drawing.Size(208, 356);
            tabControl1.ResumeLayout(false);
            tabPage2.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Ejemplo n.º 27
0
 /// <summary>
 /// Erforderliche Methode für die Designerunterstützung.
 /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PropertyForm_SimplePointSymbol));
     this.panelSymbol  = new System.Windows.Forms.Panel();
     this.tabControl1  = new System.Windows.Forms.TabControl();
     this.tabPage1     = new System.Windows.Forms.TabPage();
     this.propertyGrid = new System.Windows.Forms.PropertyGrid();
     this.panelSymbol.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.SuspendLayout();
     //
     // panelSymbol
     //
     resources.ApplyResources(this.panelSymbol, "panelSymbol");
     this.panelSymbol.Controls.Add(this.tabControl1);
     this.panelSymbol.Name = "panelSymbol";
     //
     // tabControl1
     //
     resources.ApplyResources(this.tabControl1, "tabControl1");
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     //
     // tabPage1
     //
     resources.ApplyResources(this.tabPage1, "tabPage1");
     this.tabPage1.Controls.Add(this.propertyGrid);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // propertyGrid
     //
     resources.ApplyResources(this.propertyGrid, "propertyGrid");
     this.propertyGrid.HelpForeColor         = System.Drawing.SystemColors.Control;
     this.propertyGrid.LineColor             = System.Drawing.SystemColors.ScrollBar;
     this.propertyGrid.Name                  = "propertyGrid";
     this.propertyGrid.ToolbarVisible        = false;
     this.propertyGrid.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.propertyGrid_PropertyValueChanged);
     //
     // PropertyForm_SimplePointSymbol
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.panelSymbol);
     this.Name = "PropertyForm_SimplePointSymbol";
     this.panelSymbol.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.TabControl tabControl1;
     System.Windows.Forms.TabPage    tabPage2;
     this.treeView1 = new System.Windows.Forms.TreeView();
     tabControl1    = new System.Windows.Forms.TabControl();
     tabPage2       = new System.Windows.Forms.TabPage();
     tabControl1.SuspendLayout();
     tabPage2.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     tabControl1.Controls.Add(tabPage2);
     tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     tabControl1.Location      = new System.Drawing.Point(0, 0);
     tabControl1.Name          = "tabControl1";
     tabControl1.SelectedIndex = 0;
     tabControl1.Size          = new System.Drawing.Size(208, 356);
     tabControl1.TabIndex      = 1;
     //
     // tabPage2
     //
     tabPage2.BackColor = System.Drawing.SystemColors.Control;
     tabPage2.Controls.Add(this.treeView1);
     tabPage2.Location = new System.Drawing.Point(4, 22);
     tabPage2.Name     = "tabPage2";
     tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     tabPage2.Size     = new System.Drawing.Size(200, 330);
     tabPage2.TabIndex = 1;
     tabPage2.Text     = "World";
     //
     // treeView1
     //
     this.treeView1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.treeView1.Location = new System.Drawing.Point(3, 3);
     this.treeView1.Name     = "treeView1";
     this.treeView1.Size     = new System.Drawing.Size(194, 324);
     this.treeView1.TabIndex = 0;
     //
     // WorldPage
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(tabControl1);
     this.Name = "WorldPage";
     this.Size = new System.Drawing.Size(208, 356);
     tabControl1.ResumeLayout(false);
     tabPage2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 29
0
        public void InitPlugin(System.Windows.Forms.TabPage pluginScreenSpace, System.Windows.Forms.Label pluginStatusText)
        {
            ShortCutCreator.TryCreateShortcut(APP_ID, APP_ID);
            active                 = true;
            this.lblStatus         = pluginStatusText;
            this.lblStatus.Text    = "FFXIV F.A.T.E Plugin Started.";
            pluginScreenSpace.Text = "FATE Parser";

            Task.Factory.StartNew(() =>
            {
                this.lblStatus.Text = "Downloading Data.json";

                loadJSONData();
                this.lblStatus.Text = "Downloaded Data.json";

                pluginStatusText.Invoke(new Action(delegate()
                {
                    this.lblStatus.Text = "FFXIV F.A.T.E Plugin Started.";

                    pluginScreenSpace.Controls.Add(this);
                    xmlSettings = new SettingsSerializer(this);

                    foreach (ActPluginData plugin in ActGlobals.oFormActMain.ActPlugins)
                    {
                        if (plugin.pluginObj != this)
                        {
                            continue;
                        }
                        fileInfo = plugin.pluginFile;
                        break;
                    }


                    if (timer == null)
                    {
                        timer          = new System.Windows.Forms.Timer();
                        timer.Interval = 30 * 1000;
                        timer.Tick    += Timer_Tick;
                    }
                    timer.Enabled = true;

                    updateFFXIVProcesses();


                    LoadSettings();
                    this.comboBoxLanguage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
                    selLng = (string)this.comboBoxLanguage.SelectedValue;
                    loadFates();
                }));
            });
        }
Ejemplo n.º 30
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.TabControl tabControl1;
     System.Windows.Forms.TabPage    tabPage2;
     this.propertyGrid1 = new System.Windows.Forms.PropertyGrid();
     tabControl1        = new System.Windows.Forms.TabControl();
     tabPage2           = new System.Windows.Forms.TabPage();
     tabControl1.SuspendLayout();
     tabPage2.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     tabControl1.Controls.Add(tabPage2);
     tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     tabControl1.Location      = new System.Drawing.Point(0, 0);
     tabControl1.Name          = "tabControl1";
     tabControl1.SelectedIndex = 0;
     tabControl1.Size          = new System.Drawing.Size(150, 348);
     tabControl1.TabIndex      = 0;
     //
     // tabPage2
     //
     tabPage2.BackColor = System.Drawing.SystemColors.Control;
     tabPage2.Controls.Add(this.propertyGrid1);
     tabPage2.Location = new System.Drawing.Point(4, 22);
     tabPage2.Name     = "tabPage2";
     tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     tabPage2.Size     = new System.Drawing.Size(142, 322);
     tabPage2.TabIndex = 1;
     tabPage2.Text     = "Properties";
     //
     // propertyGrid1
     //
     this.propertyGrid1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.propertyGrid1.Location = new System.Drawing.Point(3, 3);
     this.propertyGrid1.Name     = "propertyGrid1";
     this.propertyGrid1.Size     = new System.Drawing.Size(136, 316);
     this.propertyGrid1.TabIndex = 0;
     //
     // PropertyPage
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(tabControl1);
     this.Name = "PropertyPage";
     this.Size = new System.Drawing.Size(150, 348);
     tabControl1.ResumeLayout(false);
     tabPage2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 31
0
        public Section(CToolStripButton ctsb, System.Windows.Forms.TabPage tp, string name, string text, bool selected)
        {
            this.Name     = name;
            this.text     = text;
            this.Selected = selected;
            this.Button   = ctsb;
            this.Tab      = tp;
            this.Id       = count;

            tp.Name = this.Name;

            this.Button.Text = text;
            count++;
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.tbControlSMSF = new System.Windows.Forms.TabControl();
     this.tbTimeLine = new System.Windows.Forms.TabPage();
     this.tbMakePost = new System.Windows.Forms.TabPage();
     this.tbControlSMSF.SuspendLayout();
     this.SuspendLayout();
     //
     // tbControlSMSF
     //
     this.tbControlSMSF.Controls.Add(this.tbTimeLine);
     this.tbControlSMSF.Controls.Add(this.tbMakePost);
     this.tbControlSMSF.Location = new System.Drawing.Point(12, 12);
     this.tbControlSMSF.Name = "tbControlSMSF";
     this.tbControlSMSF.SelectedIndex = 0;
     this.tbControlSMSF.Size = new System.Drawing.Size(713, 659);
     this.tbControlSMSF.TabIndex = 0;
     //
     // tbTimeLine
     //
     this.tbTimeLine.Location = new System.Drawing.Point(4, 22);
     this.tbTimeLine.Name = "tbTimeLine";
     this.tbTimeLine.Padding = new System.Windows.Forms.Padding(3);
     this.tbTimeLine.Size = new System.Drawing.Size(705, 633);
     this.tbTimeLine.TabIndex = 0;
     this.tbTimeLine.Text = "Tijdlijn";
     this.tbTimeLine.UseVisualStyleBackColor = true;
     //
     // tbMakePost
     //
     this.tbMakePost.Location = new System.Drawing.Point(4, 22);
     this.tbMakePost.Name = "tbMakePost";
     this.tbMakePost.Padding = new System.Windows.Forms.Padding(3);
     this.tbMakePost.Size = new System.Drawing.Size(801, 410);
     this.tbMakePost.TabIndex = 1;
     this.tbMakePost.Text = "Post aanmaken";
     this.tbMakePost.UseVisualStyleBackColor = true;
     //
     // SocialMediaSystemForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(736, 683);
     this.Controls.Add(this.tbControlSMSF);
     this.Name = "SocialMediaSystemForm";
     this.Text = "SocialMediaSystemFormcs";
     this.Load += new System.EventHandler(this.SocialMediaSystemForm_Load);
     this.tbControlSMSF.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 33
0
        public DeviceTab(AudioDevice audioDevice)
        {
            AudioDevice = audioDevice;

            // tabPage
            //
            TabPage            = new System.Windows.Forms.TabPage(audioDevice.GetDisplayName());
            TabPage.AutoScroll = true;
            TabPage.Location   = new System.Drawing.Point(4, 22);
            TabPage.Name       = "tabPage_" + (audioDevice.GetHashCode().ToString());
            TabPage.Padding    = new System.Windows.Forms.Padding(3);
            TabPage.Size       = new System.Drawing.Size(899, 343);
            TabPage.TabIndex   = nextID;
            TabPage.UseVisualStyleBackColor = true;
        }
Ejemplo n.º 34
0
        public Section(CToolStripButton b, System.Windows.Forms.TabPage t, String text, bool Selected)
        {
            this.Name     = "Section" + count;
            this.text     = text;
            this.Selected = Selected;
            this.Id       = count;

            this.Button = b;
            this.Tab    = t;

            t.Name = this.Name;

            this.Button.Text = text;
            count++;
        }
Ejemplo n.º 35
0
        public void AddControl(Control control, string tabName)
        {
            System.Windows.Forms.TabPage tabPage = new System.Windows.Forms.TabPage();
            tabPage.Text = tabName;


            var host = new System.Windows.Forms.Integration.ElementHost();

            host.Dock  = System.Windows.Forms.DockStyle.Fill;
            host.Child = control;


            tabPage.Controls.Add(host);
            masterTabControl.Controls.Add(tabPage);
        }
		private void InitializeSourceGrid() {
			this.dataGrid.Rows.RowHeight = 21;  //處理第一列中文字體會被遮住的問題
			this.dataGrid.Columns.Add("ProductId", "商品", typeof(string));
			this.dataGrid.Columns.Add("Description", "說明", typeof(string));
			this.dataGrid.Columns.Add("ExchangeName", "交易所", typeof(string));
			this.dataGrid.Columns[0].Width = 100;
			this.dataGrid.Columns[1].Width = 155;
			this.dataGrid.Columns[2].Width = 80;

			//修改選擇條的框線寬度與顏色
			SourceGrid.Selection.SelectionBase cSelectionBase = this.dataGrid.Selection as SourceGrid.Selection.SelectionBase;
			cSelectionBase.Border = new DevAge.Drawing.RectangleBorder(new DevAge.Drawing.BorderLine(cSelectionBase.BackColor, 1));

			//建立資料來源
			__cSources = new System.Collections.Generic.List<Data.SimpleBoundList<Data._ProductInfo>>(32);
			__cSources.Add(new Data.SimpleBoundList<Data._ProductInfo>(4096));
			this.dataGrid.DataSource = __cSources[0];

			__cCurrentPages = this.pageItem_All;
		}
Ejemplo n.º 37
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Filmes));
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.label18 = new System.Windows.Forms.Label();
     this.Genero = new System.Windows.Forms.GroupBox();
     this.label16 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.label1 = new System.Windows.Forms.Label();
     this.tb_Quantidade = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.button2 = new System.Windows.Forms.Button();
     this.label5 = new System.Windows.Forms.Label();
     this.button1 = new System.Windows.Forms.Button();
     this.tb_titulo = new System.Windows.Forms.TextBox();
     this.tb_anoprod = new System.Windows.Forms.TextBox();
     this.tb_subtitulo = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.tb_duracao = new System.Windows.Forms.TextBox();
     this.tb_produtora = new System.Windows.Forms.TextBox();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.tabPage4 = new System.Windows.Forms.TabPage();
     this.Voltar = new System.Windows.Forms.ToolStrip();
     this.Retornar = new System.Windows.Forms.ToolStripButton();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.rb_genero = new System.Windows.Forms.RadioButton();
     this.rb_nome = new System.Windows.Forms.RadioButton();
     this.Bt_Pesquisar = new System.Windows.Forms.Button();
     this.tb_VerPesquisa = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.tbCodAltEx = new System.Windows.Forms.TextBox();
     this.dgFilmes = new System.Windows.Forms.DataGridView();
     this.button3 = new System.Windows.Forms.Button();
     this.button4 = new System.Windows.Forms.Button();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.Genero.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.tabPage4.SuspendLayout();
     this.Voltar.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgFilmes)).BeginInit();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage4);
     this.tabControl1.Location = new System.Drawing.Point(0, 2);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(634, 460);
     this.tabControl1.TabIndex = 5;
     //
     // tabPage1
     //
     this.tabPage1.BackColor = System.Drawing.SystemColors.Control;
     this.tabPage1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tabPage1.BackgroundImage")));
     this.tabPage1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.tabPage1.Controls.Add(this.groupBox3);
     this.tabPage1.Controls.Add(this.toolStrip1);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(626, 434);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Cadastrar Filme";
     //
     // groupBox3
     //
     this.groupBox3.BackColor = System.Drawing.Color.Transparent;
     this.groupBox3.Controls.Add(this.label18);
     this.groupBox3.Controls.Add(this.Genero);
     this.groupBox3.Controls.Add(this.comboBox1);
     this.groupBox3.Controls.Add(this.label1);
     this.groupBox3.Controls.Add(this.tb_Quantidade);
     this.groupBox3.Controls.Add(this.label2);
     this.groupBox3.Controls.Add(this.label13);
     this.groupBox3.Controls.Add(this.label3);
     this.groupBox3.Controls.Add(this.label4);
     this.groupBox3.Controls.Add(this.button2);
     this.groupBox3.Controls.Add(this.label5);
     this.groupBox3.Controls.Add(this.button1);
     this.groupBox3.Controls.Add(this.tb_titulo);
     this.groupBox3.Controls.Add(this.tb_anoprod);
     this.groupBox3.Controls.Add(this.tb_subtitulo);
     this.groupBox3.Controls.Add(this.label7);
     this.groupBox3.Controls.Add(this.tb_duracao);
     this.groupBox3.Controls.Add(this.tb_produtora);
     this.groupBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox3.ForeColor = System.Drawing.SystemColors.Control;
     this.groupBox3.Location = new System.Drawing.Point(22, 6);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(583, 390);
     this.groupBox3.TabIndex = 19;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Cadastrar Novo Filme";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.BackColor = System.Drawing.Color.Transparent;
     this.label18.Font = new System.Drawing.Font("Verdana", 7F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.ForeColor = System.Drawing.SystemColors.Control;
     this.label18.Location = new System.Drawing.Point(396, 19);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(150, 12);
     this.label18.TabIndex = 52;
     this.label18.Text = "( * ) Campos Obrigatórios";
     //
     // Genero
     //
     this.Genero.Controls.Add(this.label16);
     this.Genero.Controls.Add(this.label15);
     this.Genero.Controls.Add(this.label14);
     this.Genero.Controls.Add(this.label12);
     this.Genero.Controls.Add(this.label11);
     this.Genero.Controls.Add(this.label10);
     this.Genero.Controls.Add(this.label9);
     this.Genero.Controls.Add(this.label8);
     this.Genero.Controls.Add(this.label17);
     this.Genero.Enabled = false;
     this.Genero.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.Genero.ForeColor = System.Drawing.SystemColors.Control;
     this.Genero.Location = new System.Drawing.Point(41, 322);
     this.Genero.Name = "Genero";
     this.Genero.Size = new System.Drawing.Size(490, 61);
     this.Genero.TabIndex = 38;
     this.Genero.TabStop = false;
     this.Genero.Text = "Genero";
     //
     // label16
     //
     this.label16.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label16.AutoSize = true;
     this.label16.Enabled = false;
     this.label16.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label16.Location = new System.Drawing.Point(411, 17);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(65, 13);
     this.label16.TabIndex = 8;
     this.label16.Text = "O - Outros";
     //
     // label15
     //
     this.label15.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label15.AutoSize = true;
     this.label15.Enabled = false;
     this.label15.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label15.Location = new System.Drawing.Point(305, 39);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(107, 13);
     this.label15.TabIndex = 7;
     this.label15.Text = "M - Documentário";
     //
     // label14
     //
     this.label14.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label14.AutoSize = true;
     this.label14.Enabled = false;
     this.label14.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label14.Location = new System.Drawing.Point(97, 37);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(61, 13);
     this.label14.TabIndex = 6;
     this.label14.Text = "T - Terror";
     //
     // label12
     //
     this.label12.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label12.AutoSize = true;
     this.label12.Enabled = false;
     this.label12.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label12.Location = new System.Drawing.Point(6, 38);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(64, 13);
     this.label12.TabIndex = 5;
     this.label12.Text = "F - Ficção";
     //
     // label11
     //
     this.label11.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label11.AutoSize = true;
     this.label11.Enabled = false;
     this.label11.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label11.Location = new System.Drawing.Point(305, 17);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(64, 13);
     this.label11.TabIndex = 4;
     this.label11.Text = "D - Drama";
     //
     // label10
     //
     this.label10.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label10.AutoSize = true;
     this.label10.Enabled = false;
     this.label10.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label10.Location = new System.Drawing.Point(190, 37);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(81, 13);
     this.label10.TabIndex = 3;
     this.label10.Text = "R - Romance";
     //
     // label9
     //
     this.label9.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label9.AutoSize = true;
     this.label9.Enabled = false;
     this.label9.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label9.Location = new System.Drawing.Point(190, 16);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(75, 13);
     this.label9.TabIndex = 2;
     this.label9.Text = "C - Comédia";
     //
     // label8
     //
     this.label8.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label8.AutoSize = true;
     this.label8.Enabled = false;
     this.label8.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label8.Location = new System.Drawing.Point(96, 16);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(78, 13);
     this.label8.TabIndex = 1;
     this.label8.Text = "V - Aventura";
     //
     // label17
     //
     this.label17.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label17.AutoSize = true;
     this.label17.Enabled = false;
     this.label17.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label17.Location = new System.Drawing.Point(6, 16);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(63, 13);
     this.label17.TabIndex = 0;
     this.label17.Text = "A - ação  ";
     //
     // comboBox1
     //
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
     "A",
     "V",
     "C",
     "D",
     "R",
     "F",
     "T",
     "M",
     "O"});
     this.comboBox1.Location = new System.Drawing.Point(153, 138);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(57, 24);
     this.comboBox1.TabIndex = 19;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(62, 49);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(61, 16);
     this.label1.TabIndex = 0;
     this.label1.Text = "Título *";
     //
     // tb_Quantidade
     //
     this.tb_Quantidade.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_Quantidade.Location = new System.Drawing.Point(153, 239);
     this.tb_Quantidade.Name = "tb_Quantidade";
     this.tb_Quantidade.Size = new System.Drawing.Size(123, 23);
     this.tb_Quantidade.TabIndex = 18;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(62, 194);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(93, 16);
     this.label2.TabIndex = 1;
     this.label2.Text = "Produtora *";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.Location = new System.Drawing.Point(62, 242);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(92, 16);
     this.label13.TabIndex = 17;
     this.label13.Text = "Quantidade";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(62, 95);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(73, 16);
     this.label3.TabIndex = 2;
     this.label3.Text = "Subtítulo";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(62, 141);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(77, 16);
     this.label4.TabIndex = 3;
     this.label4.Text = "Genero  *";
     //
     // button2
     //
     this.button2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.button2.Location = new System.Drawing.Point(388, 235);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(107, 31);
     this.button2.TabIndex = 15;
     this.button2.Text = "&Cadastrar Filme";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(305, 198);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(73, 16);
     this.label5.TabIndex = 4;
     this.label5.Text = "Duração:";
     //
     // button1
     //
     this.button1.ForeColor = System.Drawing.SystemColors.ControlText;
     this.button1.Location = new System.Drawing.Point(388, 272);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(107, 31);
     this.button1.TabIndex = 14;
     this.button1.Text = "&Cancelar";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // tb_titulo
     //
     this.tb_titulo.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_titulo.Location = new System.Drawing.Point(153, 46);
     this.tb_titulo.Name = "tb_titulo";
     this.tb_titulo.Size = new System.Drawing.Size(342, 23);
     this.tb_titulo.TabIndex = 6;
     //
     // tb_anoprod
     //
     this.tb_anoprod.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_anoprod.Location = new System.Drawing.Point(384, 136);
     this.tb_anoprod.Name = "tb_anoprod";
     this.tb_anoprod.Size = new System.Drawing.Size(111, 23);
     this.tb_anoprod.TabIndex = 13;
     //
     // tb_subtitulo
     //
     this.tb_subtitulo.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_subtitulo.Location = new System.Drawing.Point(153, 95);
     this.tb_subtitulo.Name = "tb_subtitulo";
     this.tb_subtitulo.Size = new System.Drawing.Size(342, 23);
     this.tb_subtitulo.TabIndex = 7;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(243, 143);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(143, 16);
     this.label7.TabIndex = 12;
     this.label7.Text = "Ano de Produção *";
     //
     // tb_duracao
     //
     this.tb_duracao.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_duracao.Location = new System.Drawing.Point(384, 195);
     this.tb_duracao.Name = "tb_duracao";
     this.tb_duracao.Size = new System.Drawing.Size(111, 23);
     this.tb_duracao.TabIndex = 8;
     //
     // tb_produtora
     //
     this.tb_produtora.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_produtora.Location = new System.Drawing.Point(153, 194);
     this.tb_produtora.Name = "tb_produtora";
     this.tb_produtora.Size = new System.Drawing.Size(123, 23);
     this.tb_produtora.TabIndex = 9;
     //
     // toolStrip1
     //
     this.toolStrip1.BackColor = System.Drawing.Color.Transparent;
     this.toolStrip1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(32, 32);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton1});
     this.toolStrip1.Location = new System.Drawing.Point(3, 392);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.toolStrip1.Size = new System.Drawing.Size(620, 39);
     this.toolStrip1.TabIndex = 49;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButton1
     //
     this.toolStripButton1.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStripButton1.ForeColor = System.Drawing.SystemColors.Control;
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(112, 36);
     this.toolStripButton1.Text = "Retornar";
     this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
     //
     // tabPage4
     //
     this.tabPage4.BackColor = System.Drawing.SystemColors.Control;
     this.tabPage4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tabPage4.BackgroundImage")));
     this.tabPage4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.tabPage4.Controls.Add(this.Voltar);
     this.tabPage4.Controls.Add(this.groupBox2);
     this.tabPage4.Controls.Add(this.label6);
     this.tabPage4.Controls.Add(this.tbCodAltEx);
     this.tabPage4.Controls.Add(this.dgFilmes);
     this.tabPage4.Controls.Add(this.button3);
     this.tabPage4.Controls.Add(this.button4);
     this.tabPage4.Location = new System.Drawing.Point(4, 22);
     this.tabPage4.Name = "tabPage4";
     this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage4.Size = new System.Drawing.Size(626, 434);
     this.tabPage4.TabIndex = 3;
     this.tabPage4.Text = "Alterar ou Excluir Filme";
     this.tabPage4.Enter += new System.EventHandler(this.tabPage4_Enter);
     //
     // Voltar
     //
     this.Voltar.BackColor = System.Drawing.Color.Transparent;
     this.Voltar.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.Voltar.ImageScalingSize = new System.Drawing.Size(32, 32);
     this.Voltar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Retornar});
     this.Voltar.Location = new System.Drawing.Point(3, 392);
     this.Voltar.Name = "Voltar";
     this.Voltar.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.Voltar.Size = new System.Drawing.Size(620, 39);
     this.Voltar.TabIndex = 48;
     this.Voltar.Text = "toolStrip1";
     //
     // Retornar
     //
     this.Retornar.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Retornar.ForeColor = System.Drawing.SystemColors.Control;
     this.Retornar.Image = ((System.Drawing.Image)(resources.GetObject("Retornar.Image")));
     this.Retornar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.Retornar.Name = "Retornar";
     this.Retornar.Size = new System.Drawing.Size(112, 36);
     this.Retornar.Text = "Retornar";
     this.Retornar.Click += new System.EventHandler(this.Retornar_Click);
     //
     // groupBox2
     //
     this.groupBox2.BackColor = System.Drawing.Color.Transparent;
     this.groupBox2.Controls.Add(this.groupBox1);
     this.groupBox2.Controls.Add(this.Bt_Pesquisar);
     this.groupBox2.Controls.Add(this.tb_VerPesquisa);
     this.groupBox2.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox2.ForeColor = System.Drawing.SystemColors.Control;
     this.groupBox2.Location = new System.Drawing.Point(8, 6);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(615, 86);
     this.groupBox2.TabIndex = 38;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Pesquisa De filme";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.rb_genero);
     this.groupBox1.Controls.Add(this.rb_nome);
     this.groupBox1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.ForeColor = System.Drawing.SystemColors.Control;
     this.groupBox1.Location = new System.Drawing.Point(458, 12);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(154, 68);
     this.groupBox1.TabIndex = 37;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Tipo De Pesquisa";
     //
     // rb_genero
     //
     this.rb_genero.AutoSize = true;
     this.rb_genero.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rb_genero.Location = new System.Drawing.Point(20, 48);
     this.rb_genero.Name = "rb_genero";
     this.rb_genero.Size = new System.Drawing.Size(106, 20);
     this.rb_genero.TabIndex = 34;
     this.rb_genero.Text = "Por Genero";
     this.rb_genero.UseVisualStyleBackColor = true;
     //
     // rb_nome
     //
     this.rb_nome.AutoSize = true;
     this.rb_nome.Checked = true;
     this.rb_nome.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rb_nome.Location = new System.Drawing.Point(20, 22);
     this.rb_nome.Name = "rb_nome";
     this.rb_nome.Size = new System.Drawing.Size(96, 20);
     this.rb_nome.TabIndex = 32;
     this.rb_nome.TabStop = true;
     this.rb_nome.Text = "Por Nome";
     this.rb_nome.UseVisualStyleBackColor = true;
     //
     // Bt_Pesquisar
     //
     this.Bt_Pesquisar.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Bt_Pesquisar.ForeColor = System.Drawing.SystemColors.ControlText;
     this.Bt_Pesquisar.Location = new System.Drawing.Point(324, 35);
     this.Bt_Pesquisar.Name = "Bt_Pesquisar";
     this.Bt_Pesquisar.Size = new System.Drawing.Size(95, 26);
     this.Bt_Pesquisar.TabIndex = 31;
     this.Bt_Pesquisar.Text = "Pesquisar";
     this.Bt_Pesquisar.UseVisualStyleBackColor = true;
     this.Bt_Pesquisar.Click += new System.EventHandler(this.Bt_Pesquisar_Click);
     //
     // tb_VerPesquisa
     //
     this.tb_VerPesquisa.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_VerPesquisa.Location = new System.Drawing.Point(6, 38);
     this.tb_VerPesquisa.Name = "tb_VerPesquisa";
     this.tb_VerPesquisa.Size = new System.Drawing.Size(248, 23);
     this.tb_VerPesquisa.TabIndex = 33;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.SystemColors.Control;
     this.label6.Location = new System.Drawing.Point(6, 105);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(184, 16);
     this.label6.TabIndex = 36;
     this.label6.Text = "Digite o Código do filme:";
     //
     // tbCodAltEx
     //
     this.tbCodAltEx.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbCodAltEx.Location = new System.Drawing.Point(14, 124);
     this.tbCodAltEx.Name = "tbCodAltEx";
     this.tbCodAltEx.Size = new System.Drawing.Size(248, 23);
     this.tbCodAltEx.TabIndex = 35;
     //
     // dgFilmes
     //
     this.dgFilmes.AllowUserToAddRows = false;
     this.dgFilmes.AllowUserToDeleteRows = false;
     this.dgFilmes.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.dgFilmes.BackgroundColor = System.Drawing.SystemColors.ButtonFace;
     this.dgFilmes.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgFilmes.GridColor = System.Drawing.SystemColors.ControlText;
     this.dgFilmes.Location = new System.Drawing.Point(6, 156);
     this.dgFilmes.Name = "dgFilmes";
     this.dgFilmes.ReadOnly = true;
     this.dgFilmes.Size = new System.Drawing.Size(614, 230);
     this.dgFilmes.TabIndex = 30;
     //
     // button3
     //
     this.button3.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button3.Location = new System.Drawing.Point(332, 124);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(95, 26);
     this.button3.TabIndex = 29;
     this.button3.Text = "&Alterar";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // button4
     //
     this.button4.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button4.Location = new System.Drawing.Point(466, 124);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(95, 26);
     this.button4.TabIndex = 28;
     this.button4.Text = "&Excluir";
     this.button4.UseVisualStyleBackColor = true;
     this.button4.Click += new System.EventHandler(this.button4_Click);
     //
     // Filmes
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(634, 462);
     this.Controls.Add(this.tabControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
     this.IsMdiContainer = true;
     this.Name = "Filmes";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Filmes";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Filmes_FormClosing);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.Genero.ResumeLayout(false);
     this.Genero.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.tabPage4.ResumeLayout(false);
     this.tabPage4.PerformLayout();
     this.Voltar.ResumeLayout(false);
     this.Voltar.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgFilmes)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_CancelacionesCobranzas));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
     this.GroupBox1 = new System.Windows.Forms.GroupBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtCuentaname = new System.Windows.Forms.TextBox();
     this.GroupBox6 = new System.Windows.Forms.GroupBox();
     this.rbAnalisis2 = new System.Windows.Forms.RadioButton();
     this.rbAnalisis1 = new System.Windows.Forms.RadioButton();
     this.Label3 = new System.Windows.Forms.Label();
     this.txtGlosa = new System.Windows.Forms.TextBox();
     this.btnSeleccionarproveedores = new System.Windows.Forms.Button();
     this.GroupBox10 = new System.Windows.Forms.GroupBox();
     this.rbMultiplesdetalles = new System.Windows.Forms.RadioButton();
     this.rbDetalle = new System.Windows.Forms.RadioButton();
     this.chkCuenta = new System.Windows.Forms.CheckBox();
     this.txtCtactename = new System.Windows.Forms.TextBox();
     this.txtCuenta = new System.Windows.Forms.TextBox();
     this.btnGenerarPendientes = new System.Windows.Forms.Button();
     this.txtRuc = new System.Windows.Forms.TextBox();
     this.TabCancelaciones = new System.Windows.Forms.TabControl();
     this.TabPage1 = new System.Windows.Forms.TabPage();
     this.cboModalidad = new System.Windows.Forms.ComboBox();
     this.label21 = new System.Windows.Forms.Label();
     this.txtcuentaid = new System.Windows.Forms.TextBox();
     this.cboFefectivo = new System.Windows.Forms.ComboBox();
     this.label9 = new System.Windows.Forms.Label();
     this.cboBanco = new System.Windows.Forms.ComboBox();
     this.cboFpago = new System.Windows.Forms.ComboBox();
     this.examinar = new System.Windows.Forms.DataGridView();
     this.selecciona = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.ctactename = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.debehaber = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.pedidoid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.num_op = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cuentaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tipoper = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cuentaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tipdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.serdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.numdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fechdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fechvenc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.moneda = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.saldo1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.saldo2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.monedap = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.pagosoles = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.pagodolares = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.asiento = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tipcamb = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.glosa = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.porcdetraccion = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.original1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.original2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fEmision = new System.Windows.Forms.DateTimePicker();
     this.txtTipCamb = new System.Windows.Forms.TextBox();
     this.txtnomdetalle = new System.Windows.Forms.TextBox();
     this.btnPagoauto = new System.Windows.Forms.Button();
     this.cboMoneda = new System.Windows.Forms.ComboBox();
     this.txtmontoapagar = new System.Windows.Forms.TextBox();
     this.GroupBox5 = new System.Windows.Forms.GroupBox();
     this.Label6 = new System.Windows.Forms.Label();
     this.Label7 = new System.Windows.Forms.Label();
     this.lbldolaresseleccionado = new System.Windows.Forms.Label();
     this.lblsolesseleccionado = new System.Windows.Forms.Label();
     this.txtNumpago = new System.Windows.Forms.TextBox();
     this.Label1 = new System.Windows.Forms.Label();
     this.txtconcepto = new System.Windows.Forms.TextBox();
     this.txtDsubdiario = new System.Windows.Forms.TextBox();
     this.Label18 = new System.Windows.Forms.Label();
     this.txtCodsubdiario = new System.Windows.Forms.TextBox();
     this.GroupBox21 = new System.Windows.Forms.GroupBox();
     this.rbSoles = new System.Windows.Forms.RadioButton();
     this.rbDolares = new System.Windows.Forms.RadioButton();
     this.Label15 = new System.Windows.Forms.Label();
     this.Label10 = new System.Windows.Forms.Label();
     this.Label5 = new System.Windows.Forms.Label();
     this.txtglosacampo = new System.Windows.Forms.TextBox();
     this.GroupBox4 = new System.Windows.Forms.GroupBox();
     this.btnVervoucher = new System.Windows.Forms.Button();
     this.btnGeneravoucher = new System.Windows.Forms.Button();
     this.btnSalir = new System.Windows.Forms.Button();
     this.GroupBox3 = new System.Windows.Forms.GroupBox();
     this.Label12 = new System.Windows.Forms.Label();
     this.Label11 = new System.Windows.Forms.Label();
     this.lbTotalD = new System.Windows.Forms.Label();
     this.lbTotalS = new System.Windows.Forms.Label();
     this.GroupBox2 = new System.Windows.Forms.GroupBox();
     this.Label2 = new System.Windows.Forms.Label();
     this.Label14 = new System.Windows.Forms.Label();
     this.lbltotregistros = new System.Windows.Forms.Label();
     this.Label13 = new System.Windows.Forms.Label();
     this.lbltotalpagodolares = new System.Windows.Forms.Label();
     this.lbltotalpagosoles = new System.Windows.Forms.Label();
     this.Label8 = new System.Windows.Forms.Label();
     this.txtSiglasubdiario = new System.Windows.Forms.TextBox();
     this.TabPage2 = new System.Windows.Forms.TabPage();
     this.grbsoles = new System.Windows.Forms.GroupBox();
     this.Label20 = new System.Windows.Forms.Label();
     this.txttotalhaberdolares = new System.Windows.Forms.TextBox();
     this.txttotaldebedolares = new System.Windows.Forms.TextBox();
     this.Label17 = new System.Windows.Forms.Label();
     this.txttotalhabersoles = new System.Windows.Forms.TextBox();
     this.Label19 = new System.Windows.Forms.Label();
     this.Label22 = new System.Windows.Forms.Label();
     this.txttotaldebesoles = new System.Windows.Forms.TextBox();
     this.txtdescripcampo = new System.Windows.Forms.TextBox();
     this.gridgastos = new System.Windows.Forms.DataGridView();
     this.asientoitems = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Gasto_cuentaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_cuentaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_debehaber = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_moneda = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Importe = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ImporteCambio = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_cencosid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_tipdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_serdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_numdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_fechdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btnaddfila = new System.Windows.Forms.Button();
     this.btndelfila = new System.Windows.Forms.Button();
     this.lblregseleccionado = new System.Windows.Forms.Label();
     this.GroupBox1.SuspendLayout();
     this.GroupBox6.SuspendLayout();
     this.GroupBox10.SuspendLayout();
     this.TabCancelaciones.SuspendLayout();
     this.TabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.examinar)).BeginInit();
     this.GroupBox5.SuspendLayout();
     this.GroupBox21.SuspendLayout();
     this.GroupBox4.SuspendLayout();
     this.GroupBox3.SuspendLayout();
     this.GroupBox2.SuspendLayout();
     this.TabPage2.SuspendLayout();
     this.grbsoles.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridgastos)).BeginInit();
     this.SuspendLayout();
     //
     // GroupBox1
     //
     this.GroupBox1.Controls.Add(this.label4);
     this.GroupBox1.Controls.Add(this.txtCuentaname);
     this.GroupBox1.Controls.Add(this.GroupBox6);
     this.GroupBox1.Controls.Add(this.Label3);
     this.GroupBox1.Controls.Add(this.txtGlosa);
     this.GroupBox1.Controls.Add(this.btnSeleccionarproveedores);
     this.GroupBox1.Controls.Add(this.GroupBox10);
     this.GroupBox1.Controls.Add(this.chkCuenta);
     this.GroupBox1.Controls.Add(this.txtCtactename);
     this.GroupBox1.Controls.Add(this.txtCuenta);
     this.GroupBox1.Controls.Add(this.btnGenerarPendientes);
     this.GroupBox1.Controls.Add(this.txtRuc);
     this.GroupBox1.Location = new System.Drawing.Point(5, 2);
     this.GroupBox1.Name = "GroupBox1";
     this.GroupBox1.Size = new System.Drawing.Size(1032, 80);
     this.GroupBox1.TabIndex = 0;
     this.GroupBox1.TabStop = false;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.ForeColor = System.Drawing.Color.RoyalBlue;
     this.label4.Location = new System.Drawing.Point(162, 16);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(48, 13);
     this.label4.TabIndex = 1;
     this.label4.Text = "Ruc-Cód";
     //
     // txtCuentaname
     //
     this.txtCuentaname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtCuentaname.Location = new System.Drawing.Point(300, 33);
     this.txtCuentaname.MaxLength = 60;
     this.txtCuentaname.Name = "txtCuentaname";
     this.txtCuentaname.Size = new System.Drawing.Size(400, 21);
     this.txtCuentaname.TabIndex = 6;
     //
     // GroupBox6
     //
     this.GroupBox6.Controls.Add(this.rbAnalisis2);
     this.GroupBox6.Controls.Add(this.rbAnalisis1);
     this.GroupBox6.Location = new System.Drawing.Point(860, 9);
     this.GroupBox6.Name = "GroupBox6";
     this.GroupBox6.Size = new System.Drawing.Size(162, 64);
     this.GroupBox6.TabIndex = 11;
     this.GroupBox6.TabStop = false;
     this.GroupBox6.Text = "| Análisis |";
     //
     // rbAnalisis2
     //
     this.rbAnalisis2.AutoSize = true;
     this.rbAnalisis2.ForeColor = System.Drawing.Color.RoyalBlue;
     this.rbAnalisis2.Location = new System.Drawing.Point(7, 39);
     this.rbAnalisis2.Name = "rbAnalisis2";
     this.rbAnalisis2.Size = new System.Drawing.Size(146, 17);
     this.rbAnalisis2.TabIndex = 1;
     this.rbAnalisis2.Text = "Con Pedido / Op/C.Costo";
     this.rbAnalisis2.UseVisualStyleBackColor = true;
     this.rbAnalisis2.CheckedChanged += new System.EventHandler(this.rbAnalisis2_CheckedChanged);
     //
     // rbAnalisis1
     //
     this.rbAnalisis1.AutoSize = true;
     this.rbAnalisis1.Checked = true;
     this.rbAnalisis1.ForeColor = System.Drawing.Color.RoyalBlue;
     this.rbAnalisis1.Location = new System.Drawing.Point(7, 17);
     this.rbAnalisis1.Name = "rbAnalisis1";
     this.rbAnalisis1.Size = new System.Drawing.Size(135, 17);
     this.rbAnalisis1.TabIndex = 0;
     this.rbAnalisis1.TabStop = true;
     this.rbAnalisis1.Text = "Sin Pedido/Op/C.Costo";
     this.rbAnalisis1.UseVisualStyleBackColor = true;
     this.rbAnalisis1.CheckedChanged += new System.EventHandler(this.rbAnalisis1_CheckedChanged);
     //
     // Label3
     //
     this.Label3.AutoSize = true;
     this.Label3.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label3.Location = new System.Drawing.Point(177, 58);
     this.Label3.Name = "Label3";
     this.Label3.Size = new System.Drawing.Size(33, 13);
     this.Label3.TabIndex = 7;
     this.Label3.Text = "Glosa";
     //
     // txtGlosa
     //
     this.txtGlosa.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtGlosa.Location = new System.Drawing.Point(217, 54);
     this.txtGlosa.MaxLength = 60;
     this.txtGlosa.Name = "txtGlosa";
     this.txtGlosa.Size = new System.Drawing.Size(483, 21);
     this.txtGlosa.TabIndex = 8;
     //
     // btnSeleccionarproveedores
     //
     this.btnSeleccionarproveedores.Image = ((System.Drawing.Image)(resources.GetObject("btnSeleccionarproveedores.Image")));
     this.btnSeleccionarproveedores.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnSeleccionarproveedores.Location = new System.Drawing.Point(716, 13);
     this.btnSeleccionarproveedores.Name = "btnSeleccionarproveedores";
     this.btnSeleccionarproveedores.Size = new System.Drawing.Size(120, 27);
     this.btnSeleccionarproveedores.TabIndex = 9;
     this.btnSeleccionarproveedores.Text = "Seleccionar Rucs";
     this.btnSeleccionarproveedores.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnSeleccionarproveedores.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnSeleccionarproveedores.UseVisualStyleBackColor = true;
     this.btnSeleccionarproveedores.Click += new System.EventHandler(this.btnSeleccionarproveedores_Click);
     //
     // GroupBox10
     //
     this.GroupBox10.Controls.Add(this.rbMultiplesdetalles);
     this.GroupBox10.Controls.Add(this.rbDetalle);
     this.GroupBox10.Location = new System.Drawing.Point(8, 9);
     this.GroupBox10.Name = "GroupBox10";
     this.GroupBox10.Size = new System.Drawing.Size(131, 64);
     this.GroupBox10.TabIndex = 0;
     this.GroupBox10.TabStop = false;
     this.GroupBox10.Text = "| Seleccionar |";
     //
     // rbMultiplesdetalles
     //
     this.rbMultiplesdetalles.AutoSize = true;
     this.rbMultiplesdetalles.ForeColor = System.Drawing.Color.RoyalBlue;
     this.rbMultiplesdetalles.Location = new System.Drawing.Point(9, 38);
     this.rbMultiplesdetalles.Name = "rbMultiplesdetalles";
     this.rbMultiplesdetalles.Size = new System.Drawing.Size(115, 17);
     this.rbMultiplesdetalles.TabIndex = 1;
     this.rbMultiplesdetalles.Text = "Múltiples Rucs-Cod";
     this.rbMultiplesdetalles.UseVisualStyleBackColor = true;
     this.rbMultiplesdetalles.CheckedChanged += new System.EventHandler(this.rbMultiplesdetalles_CheckedChanged);
     //
     // rbDetalle
     //
     this.rbDetalle.AutoSize = true;
     this.rbDetalle.Checked = true;
     this.rbDetalle.ForeColor = System.Drawing.Color.RoyalBlue;
     this.rbDetalle.Location = new System.Drawing.Point(9, 17);
     this.rbDetalle.Name = "rbDetalle";
     this.rbDetalle.Size = new System.Drawing.Size(66, 17);
     this.rbDetalle.TabIndex = 0;
     this.rbDetalle.TabStop = true;
     this.rbDetalle.Text = "Ruc-Cód";
     this.rbDetalle.UseVisualStyleBackColor = true;
     this.rbDetalle.CheckedChanged += new System.EventHandler(this.rbDetalle_CheckedChanged);
     //
     // chkCuenta
     //
     this.chkCuenta.AutoSize = true;
     this.chkCuenta.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkCuenta.ForeColor = System.Drawing.Color.RoyalBlue;
     this.chkCuenta.Location = new System.Drawing.Point(149, 35);
     this.chkCuenta.Name = "chkCuenta";
     this.chkCuenta.Size = new System.Drawing.Size(61, 17);
     this.chkCuenta.TabIndex = 4;
     this.chkCuenta.Text = "Cuenta";
     this.chkCuenta.UseVisualStyleBackColor = true;
     this.chkCuenta.CheckedChanged += new System.EventHandler(this.chkCuenta_CheckedChanged);
     //
     // txtCtactename
     //
     this.txtCtactename.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtCtactename.Location = new System.Drawing.Point(300, 12);
     this.txtCtactename.MaxLength = 60;
     this.txtCtactename.Name = "txtCtactename";
     this.txtCtactename.Size = new System.Drawing.Size(400, 21);
     this.txtCtactename.TabIndex = 3;
     //
     // txtCuenta
     //
     this.txtCuenta.Location = new System.Drawing.Point(217, 33);
     this.txtCuenta.MaxLength = 10;
     this.txtCuenta.Name = "txtCuenta";
     this.txtCuenta.Size = new System.Drawing.Size(80, 21);
     this.txtCuenta.TabIndex = 5;
     this.txtCuenta.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtCuenta_KeyDown);
     //
     // btnGenerarPendientes
     //
     this.btnGenerarPendientes.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnGenerarPendientes.Location = new System.Drawing.Point(716, 47);
     this.btnGenerarPendientes.Name = "btnGenerarPendientes";
     this.btnGenerarPendientes.Size = new System.Drawing.Size(120, 24);
     this.btnGenerarPendientes.TabIndex = 10;
     this.btnGenerarPendientes.Text = "Generar Pendientes";
     this.btnGenerarPendientes.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnGenerarPendientes.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnGenerarPendientes.UseVisualStyleBackColor = true;
     this.btnGenerarPendientes.Click += new System.EventHandler(this.btnGenerarPendientes_Click);
     //
     // txtRuc
     //
     this.txtRuc.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtRuc.Location = new System.Drawing.Point(217, 12);
     this.txtRuc.MaxLength = 11;
     this.txtRuc.Name = "txtRuc";
     this.txtRuc.Size = new System.Drawing.Size(80, 21);
     this.txtRuc.TabIndex = 2;
     this.txtRuc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtRuc_KeyDown);
     //
     // TabCancelaciones
     //
     this.TabCancelaciones.Controls.Add(this.TabPage1);
     this.TabCancelaciones.Controls.Add(this.TabPage2);
     this.TabCancelaciones.Location = new System.Drawing.Point(5, 90);
     this.TabCancelaciones.Name = "TabCancelaciones";
     this.TabCancelaciones.SelectedIndex = 0;
     this.TabCancelaciones.Size = new System.Drawing.Size(1032, 447);
     this.TabCancelaciones.TabIndex = 1;
     this.TabCancelaciones.SelectedIndexChanged += new System.EventHandler(this.TabCancelaciones_SelectedIndexChanged);
     //
     // TabPage1
     //
     this.TabPage1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.TabPage1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.TabPage1.Controls.Add(this.cboModalidad);
     this.TabPage1.Controls.Add(this.label21);
     this.TabPage1.Controls.Add(this.txtcuentaid);
     this.TabPage1.Controls.Add(this.cboFefectivo);
     this.TabPage1.Controls.Add(this.label9);
     this.TabPage1.Controls.Add(this.cboBanco);
     this.TabPage1.Controls.Add(this.cboFpago);
     this.TabPage1.Controls.Add(this.examinar);
     this.TabPage1.Controls.Add(this.fEmision);
     this.TabPage1.Controls.Add(this.txtTipCamb);
     this.TabPage1.Controls.Add(this.txtnomdetalle);
     this.TabPage1.Controls.Add(this.btnPagoauto);
     this.TabPage1.Controls.Add(this.cboMoneda);
     this.TabPage1.Controls.Add(this.txtmontoapagar);
     this.TabPage1.Controls.Add(this.GroupBox5);
     this.TabPage1.Controls.Add(this.txtNumpago);
     this.TabPage1.Controls.Add(this.Label1);
     this.TabPage1.Controls.Add(this.txtconcepto);
     this.TabPage1.Controls.Add(this.txtDsubdiario);
     this.TabPage1.Controls.Add(this.Label18);
     this.TabPage1.Controls.Add(this.txtCodsubdiario);
     this.TabPage1.Controls.Add(this.GroupBox21);
     this.TabPage1.Controls.Add(this.Label15);
     this.TabPage1.Controls.Add(this.Label10);
     this.TabPage1.Controls.Add(this.Label5);
     this.TabPage1.Controls.Add(this.txtglosacampo);
     this.TabPage1.Controls.Add(this.GroupBox4);
     this.TabPage1.Controls.Add(this.GroupBox3);
     this.TabPage1.Controls.Add(this.GroupBox2);
     this.TabPage1.Controls.Add(this.Label8);
     this.TabPage1.Controls.Add(this.txtSiglasubdiario);
     this.TabPage1.Location = new System.Drawing.Point(4, 22);
     this.TabPage1.Name = "TabPage1";
     this.TabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.TabPage1.Size = new System.Drawing.Size(1024, 421);
     this.TabPage1.TabIndex = 0;
     this.TabPage1.Text = "Selecciona Documentos";
     //
     // cboModalidad
     //
     this.cboModalidad.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboModalidad.DropDownWidth = 240;
     this.cboModalidad.FormattingEnabled = true;
     this.cboModalidad.Items.AddRange(new object[] {
     "1  Sin Detracción/Retetención",
     "2  Detracción a Depositar %",
     "3  A Pagar Menos Detracción %",
     "4  Retención % IGV",
     "5  A Cobrar Menos Detracción/Retención %"});
     this.cboModalidad.Location = new System.Drawing.Point(61, 40);
     this.cboModalidad.Name = "cboModalidad";
     this.cboModalidad.Size = new System.Drawing.Size(190, 21);
     this.cboModalidad.TabIndex = 54;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.ForeColor = System.Drawing.Color.RoyalBlue;
     this.label21.Location = new System.Drawing.Point(3, 44);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(55, 13);
     this.label21.TabIndex = 53;
     this.label21.Text = "Modalidad";
     //
     // txtcuentaid
     //
     this.txtcuentaid.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtcuentaid.Location = new System.Drawing.Point(367, 17);
     this.txtcuentaid.MaxLength = 10;
     this.txtcuentaid.Name = "txtcuentaid";
     this.txtcuentaid.Size = new System.Drawing.Size(71, 21);
     this.txtcuentaid.TabIndex = 52;
     //
     // cboFefectivo
     //
     this.cboFefectivo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboFefectivo.DropDownWidth = 360;
     this.cboFefectivo.FormattingEnabled = true;
     this.cboFefectivo.Location = new System.Drawing.Point(714, 40);
     this.cboFefectivo.Name = "cboFefectivo";
     this.cboFefectivo.Size = new System.Drawing.Size(300, 21);
     this.cboFefectivo.TabIndex = 51;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.ForeColor = System.Drawing.Color.RoyalBlue;
     this.label9.Location = new System.Drawing.Point(655, 44);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(56, 13);
     this.label9.TabIndex = 50;
     this.label9.Text = "F.Efectivo";
     //
     // cboBanco
     //
     this.cboBanco.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboBanco.DropDownWidth = 240;
     this.cboBanco.FormattingEnabled = true;
     this.cboBanco.Location = new System.Drawing.Point(293, 40);
     this.cboBanco.Name = "cboBanco";
     this.cboBanco.Size = new System.Drawing.Size(220, 21);
     this.cboBanco.TabIndex = 13;
     //
     // cboFpago
     //
     this.cboFpago.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboFpago.DropDownWidth = 360;
     this.cboFpago.FormattingEnabled = true;
     this.cboFpago.Location = new System.Drawing.Point(607, 17);
     this.cboFpago.Name = "cboFpago";
     this.cboFpago.Size = new System.Drawing.Size(320, 21);
     this.cboFpago.TabIndex = 9;
     //
     // examinar
     //
     this.examinar.AllowUserToAddRows = false;
     this.examinar.AllowUserToResizeRows = false;
     this.examinar.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.examinar.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.Sunken;
     this.examinar.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.examinar.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.examinar.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.examinar.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.selecciona,
     this.ctactename,
     this.debehaber,
     this.pedidoid,
     this.num_op,
     this.cuentaname,
     this.tipoper,
     this.cuentaid,
     this.tipdoc,
     this.serdoc,
     this.numdoc,
     this.fechdoc,
     this.fechvenc,
     this.moneda,
     this.saldo1,
     this.saldo2,
     this.monedap,
     this.pagosoles,
     this.pagodolares,
     this.asiento,
     this.tipcamb,
     this.glosa,
     this.porcdetraccion,
     this.original1,
     this.original2});
     this.examinar.Location = new System.Drawing.Point(6, 67);
     this.examinar.Name = "examinar";
     this.examinar.RowHeadersVisible = false;
     this.examinar.RowTemplate.Height = 20;
     this.examinar.Size = new System.Drawing.Size(1009, 252);
     this.examinar.TabIndex = 16;
     this.examinar.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.examinar_CellBeginEdit);
     this.examinar.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.examinar_CellContentClick);
     this.examinar.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.examinar_CellValueChanged);
     this.examinar.RowPrePaint += new System.Windows.Forms.DataGridViewRowPrePaintEventHandler(this.examinar_RowPrePaint);
     this.examinar.SelectionChanged += new System.EventHandler(this.examinar_SelectionChanged);
     this.examinar.KeyDown += new System.Windows.Forms.KeyEventHandler(this.examinar_KeyDown);
     //
     // selecciona
     //
     this.selecciona.DataPropertyName = "selecciona";
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.NullValue = false;
     this.selecciona.DefaultCellStyle = dataGridViewCellStyle2;
     this.selecciona.HeaderText = "X";
     this.selecciona.Name = "selecciona";
     this.selecciona.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.selecciona.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.selecciona.ToolTipText = "\"Click - Check\"  para Seleccionar";
     this.selecciona.Width = 30;
     //
     // ctactename
     //
     this.ctactename.DataPropertyName = "ctactename";
     this.ctactename.HeaderText = "Cta.Cte. Nombre";
     this.ctactename.Name = "ctactename";
     this.ctactename.Visible = false;
     //
     // debehaber
     //
     this.debehaber.DataPropertyName = "debehaber";
     this.debehaber.HeaderText = "DebeHaber";
     this.debehaber.Name = "debehaber";
     this.debehaber.Visible = false;
     //
     // pedidoid
     //
     this.pedidoid.DataPropertyName = "pedidoid";
     this.pedidoid.HeaderText = "Pedido";
     this.pedidoid.Name = "pedidoid";
     this.pedidoid.Visible = false;
     this.pedidoid.Width = 70;
     //
     // num_op
     //
     this.num_op.DataPropertyName = "num_op";
     this.num_op.HeaderText = "OP";
     this.num_op.Name = "num_op";
     this.num_op.Visible = false;
     this.num_op.Width = 70;
     //
     // cuentaname
     //
     this.cuentaname.DataPropertyName = "cuentaname";
     this.cuentaname.HeaderText = "Nombre Cuenta";
     this.cuentaname.Name = "cuentaname";
     this.cuentaname.Visible = false;
     //
     // tipoper
     //
     this.tipoper.DataPropertyName = "tipoper";
     this.tipoper.HeaderText = "P";
     this.tipoper.Name = "tipoper";
     this.tipoper.Width = 22;
     //
     // cuentaid
     //
     this.cuentaid.DataPropertyName = "cuentaid";
     this.cuentaid.HeaderText = "Cuenta";
     this.cuentaid.Name = "cuentaid";
     this.cuentaid.ReadOnly = true;
     this.cuentaid.Width = 68;
     //
     // tipdoc
     //
     this.tipdoc.DataPropertyName = "tipdoc";
     this.tipdoc.HeaderText = "TD";
     this.tipdoc.Name = "tipdoc";
     this.tipdoc.ReadOnly = true;
     this.tipdoc.Width = 26;
     //
     // serdoc
     //
     this.serdoc.DataPropertyName = "serdoc";
     this.serdoc.HeaderText = "Serie";
     this.serdoc.Name = "serdoc";
     this.serdoc.Width = 34;
     //
     // numdoc
     //
     this.numdoc.DataPropertyName = "numdoc";
     this.numdoc.HeaderText = "Número";
     this.numdoc.Name = "numdoc";
     this.numdoc.Width = 70;
     //
     // fechdoc
     //
     this.fechdoc.DataPropertyName = "fechdoc";
     this.fechdoc.HeaderText = "F.Emisión";
     this.fechdoc.Name = "fechdoc";
     this.fechdoc.ReadOnly = true;
     this.fechdoc.Width = 70;
     //
     // fechvenc
     //
     this.fechvenc.DataPropertyName = "fechvenc";
     this.fechvenc.HeaderText = "F.Venc.";
     this.fechvenc.Name = "fechvenc";
     this.fechvenc.Width = 70;
     //
     // moneda
     //
     this.moneda.DataPropertyName = "moneda";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle3.Format = "N2";
     dataGridViewCellStyle3.NullValue = "0";
     this.moneda.DefaultCellStyle = dataGridViewCellStyle3;
     this.moneda.HeaderText = "M";
     this.moneda.Name = "moneda";
     this.moneda.ReadOnly = true;
     this.moneda.Width = 20;
     //
     // saldo1
     //
     this.saldo1.DataPropertyName = "saldo1";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle4.Format = "N2";
     dataGridViewCellStyle4.NullValue = "0";
     this.saldo1.DefaultCellStyle = dataGridViewCellStyle4;
     this.saldo1.HeaderText = "Saldo S/.";
     this.saldo1.Name = "saldo1";
     this.saldo1.ReadOnly = true;
     this.saldo1.Width = 90;
     //
     // saldo2
     //
     this.saldo2.DataPropertyName = "saldo2";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle5.Format = "N2";
     dataGridViewCellStyle5.NullValue = "0";
     this.saldo2.DefaultCellStyle = dataGridViewCellStyle5;
     this.saldo2.HeaderText = "Saldo US$";
     this.saldo2.Name = "saldo2";
     this.saldo2.ReadOnly = true;
     this.saldo2.Width = 90;
     //
     // monedap
     //
     this.monedap.DataPropertyName = "monedap";
     this.monedap.HeaderText = "MP";
     this.monedap.Name = "monedap";
     this.monedap.Width = 22;
     //
     // pagosoles
     //
     this.pagosoles.DataPropertyName = "pagosoles";
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle6.Format = "N2";
     dataGridViewCellStyle6.NullValue = "0";
     this.pagosoles.DefaultCellStyle = dataGridViewCellStyle6;
     this.pagosoles.HeaderText = "Pago Soles";
     this.pagosoles.Name = "pagosoles";
     this.pagosoles.Width = 90;
     //
     // pagodolares
     //
     this.pagodolares.DataPropertyName = "pagodolares";
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle7.Format = "N2";
     dataGridViewCellStyle7.NullValue = "0";
     this.pagodolares.DefaultCellStyle = dataGridViewCellStyle7;
     this.pagodolares.HeaderText = "Pago Dólares";
     this.pagodolares.Name = "pagodolares";
     this.pagodolares.Width = 90;
     //
     // asiento
     //
     this.asiento.DataPropertyName = "asiento";
     this.asiento.HeaderText = "Voucher";
     this.asiento.Name = "asiento";
     this.asiento.Width = 130;
     //
     // tipcamb
     //
     this.tipcamb.DataPropertyName = "tipcamb";
     dataGridViewCellStyle8.NullValue = "0";
     this.tipcamb.DefaultCellStyle = dataGridViewCellStyle8;
     this.tipcamb.HeaderText = "T.C.";
     this.tipcamb.Name = "tipcamb";
     this.tipcamb.Width = 54;
     //
     // glosa
     //
     this.glosa.DataPropertyName = "glosa";
     this.glosa.HeaderText = "Glosa";
     this.glosa.Name = "glosa";
     this.glosa.Visible = false;
     this.glosa.Width = 250;
     //
     // porcdetraccion
     //
     this.porcdetraccion.DataPropertyName = "porcdetraccion";
     this.porcdetraccion.HeaderText = "% Detracción";
     this.porcdetraccion.Name = "porcdetraccion";
     this.porcdetraccion.Visible = false;
     //
     // original1
     //
     this.original1.DataPropertyName = "original1";
     this.original1.HeaderText = "Original S/.";
     this.original1.Name = "original1";
     this.original1.Visible = false;
     //
     // original2
     //
     this.original2.DataPropertyName = "original2";
     this.original2.HeaderText = "Original US$";
     this.original2.Name = "original2";
     this.original2.Visible = false;
     //
     // fEmision
     //
     this.fEmision.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fEmision.Location = new System.Drawing.Point(447, 17);
     this.fEmision.Name = "fEmision";
     this.fEmision.Size = new System.Drawing.Size(87, 21);
     this.fEmision.TabIndex = 5;
     this.fEmision.ValueChanged += new System.EventHandler(this.fEmision_ValueChanged);
     //
     // txtTipCamb
     //
     this.txtTipCamb.Enabled = false;
     this.txtTipCamb.Location = new System.Drawing.Point(538, 17);
     this.txtTipCamb.Name = "txtTipCamb";
     this.txtTipCamb.Size = new System.Drawing.Size(60, 21);
     this.txtTipCamb.TabIndex = 7;
     this.txtTipCamb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtnomdetalle
     //
     this.txtnomdetalle.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtnomdetalle.Enabled = false;
     this.txtnomdetalle.Location = new System.Drawing.Point(6, 322);
     this.txtnomdetalle.MaxLength = 11;
     this.txtnomdetalle.Name = "txtnomdetalle";
     this.txtnomdetalle.Size = new System.Drawing.Size(366, 21);
     this.txtnomdetalle.TabIndex = 49;
     //
     // btnPagoauto
     //
     this.btnPagoauto.Location = new System.Drawing.Point(633, 388);
     this.btnPagoauto.Name = "btnPagoauto";
     this.btnPagoauto.Size = new System.Drawing.Size(96, 24);
     this.btnPagoauto.TabIndex = 12;
     this.btnPagoauto.Text = "Cancelar";
     this.btnPagoauto.UseVisualStyleBackColor = true;
     this.btnPagoauto.Visible = false;
     this.btnPagoauto.Click += new System.EventHandler(this.btnPagoauto_Click);
     //
     // cboMoneda
     //
     this.cboMoneda.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboMoneda.FormattingEnabled = true;
     this.cboMoneda.Location = new System.Drawing.Point(682, 362);
     this.cboMoneda.Name = "cboMoneda";
     this.cboMoneda.Size = new System.Drawing.Size(90, 21);
     this.cboMoneda.TabIndex = 11;
     this.cboMoneda.Visible = false;
     //
     // txtmontoapagar
     //
     this.txtmontoapagar.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtmontoapagar.Location = new System.Drawing.Point(605, 363);
     this.txtmontoapagar.MaxLength = 11;
     this.txtmontoapagar.Name = "txtmontoapagar";
     this.txtmontoapagar.Size = new System.Drawing.Size(74, 21);
     this.txtmontoapagar.TabIndex = 10;
     this.txtmontoapagar.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtmontoapagar.Visible = false;
     //
     // GroupBox5
     //
     this.GroupBox5.BackColor = System.Drawing.Color.PaleGoldenrod;
     this.GroupBox5.Controls.Add(this.Label6);
     this.GroupBox5.Controls.Add(this.Label7);
     this.GroupBox5.Controls.Add(this.lbldolaresseleccionado);
     this.GroupBox5.Controls.Add(this.lblsolesseleccionado);
     this.GroupBox5.Location = new System.Drawing.Point(184, 352);
     this.GroupBox5.Name = "GroupBox5";
     this.GroupBox5.Size = new System.Drawing.Size(176, 60);
     this.GroupBox5.TabIndex = 5;
     this.GroupBox5.TabStop = false;
     this.GroupBox5.Text = "Total Seleccionado";
     //
     // Label6
     //
     this.Label6.AutoSize = true;
     this.Label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label6.Location = new System.Drawing.Point(90, 18);
     this.Label6.Name = "Label6";
     this.Label6.Size = new System.Drawing.Size(64, 13);
     this.Label6.TabIndex = 2;
     this.Label6.Text = "Total US$";
     //
     // Label7
     //
     this.Label7.AutoSize = true;
     this.Label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label7.Location = new System.Drawing.Point(10, 18);
     this.Label7.Name = "Label7";
     this.Label7.Size = new System.Drawing.Size(58, 13);
     this.Label7.TabIndex = 0;
     this.Label7.Text = "Total S/.";
     //
     // lbldolaresseleccionado
     //
     this.lbldolaresseleccionado.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lbldolaresseleccionado.Location = new System.Drawing.Point(89, 33);
     this.lbldolaresseleccionado.Name = "lbldolaresseleccionado";
     this.lbldolaresseleccionado.Size = new System.Drawing.Size(83, 20);
     this.lbldolaresseleccionado.TabIndex = 3;
     this.lbldolaresseleccionado.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblsolesseleccionado
     //
     this.lblsolesseleccionado.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblsolesseleccionado.Location = new System.Drawing.Point(4, 33);
     this.lblsolesseleccionado.Name = "lblsolesseleccionado";
     this.lblsolesseleccionado.Size = new System.Drawing.Size(83, 20);
     this.lblsolesseleccionado.TabIndex = 1;
     this.lblsolesseleccionado.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtNumpago
     //
     this.txtNumpago.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtNumpago.Location = new System.Drawing.Point(929, 17);
     this.txtNumpago.MaxLength = 10;
     this.txtNumpago.Name = "txtNumpago";
     this.txtNumpago.Size = new System.Drawing.Size(85, 21);
     this.txtNumpago.TabIndex = 11;
     //
     // Label1
     //
     this.Label1.AutoSize = true;
     this.Label1.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label1.Location = new System.Drawing.Point(927, 3);
     this.Label1.Name = "Label1";
     this.Label1.Size = new System.Drawing.Size(71, 13);
     this.Label1.TabIndex = 10;
     this.Label1.Text = "Nº Ch/. - Op.";
     //
     // txtconcepto
     //
     this.txtconcepto.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtconcepto.Enabled = false;
     this.txtconcepto.Location = new System.Drawing.Point(373, 322);
     this.txtconcepto.MaxLength = 11;
     this.txtconcepto.Name = "txtconcepto";
     this.txtconcepto.Size = new System.Drawing.Size(354, 21);
     this.txtconcepto.TabIndex = 48;
     //
     // txtDsubdiario
     //
     this.txtDsubdiario.Enabled = false;
     this.txtDsubdiario.Location = new System.Drawing.Point(50, 17);
     this.txtDsubdiario.Name = "txtDsubdiario";
     this.txtDsubdiario.Size = new System.Drawing.Size(315, 21);
     this.txtDsubdiario.TabIndex = 2;
     //
     // Label18
     //
     this.Label18.AutoSize = true;
     this.Label18.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label18.Location = new System.Drawing.Point(4, 3);
     this.Label18.Name = "Label18";
     this.Label18.Size = new System.Drawing.Size(56, 13);
     this.Label18.TabIndex = 0;
     this.Label18.Text = "Sub-Diario";
     //
     // txtCodsubdiario
     //
     this.txtCodsubdiario.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtCodsubdiario.Location = new System.Drawing.Point(7, 17);
     this.txtCodsubdiario.MaxLength = 4;
     this.txtCodsubdiario.Name = "txtCodsubdiario";
     this.txtCodsubdiario.Size = new System.Drawing.Size(41, 21);
     this.txtCodsubdiario.TabIndex = 1;
     this.txtCodsubdiario.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtCodsubdiario_KeyDown);
     //
     // GroupBox21
     //
     this.GroupBox21.Controls.Add(this.rbSoles);
     this.GroupBox21.Controls.Add(this.rbDolares);
     this.GroupBox21.Location = new System.Drawing.Point(525, 36);
     this.GroupBox21.Name = "GroupBox21";
     this.GroupBox21.Size = new System.Drawing.Size(129, 28);
     this.GroupBox21.TabIndex = 15;
     this.GroupBox21.TabStop = false;
     //
     // rbSoles
     //
     this.rbSoles.AutoSize = true;
     this.rbSoles.Checked = true;
     this.rbSoles.Cursor = System.Windows.Forms.Cursors.Hand;
     this.rbSoles.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(213)))));
     this.rbSoles.Location = new System.Drawing.Point(7, 8);
     this.rbSoles.Name = "rbSoles";
     this.rbSoles.Size = new System.Drawing.Size(50, 17);
     this.rbSoles.TabIndex = 0;
     this.rbSoles.TabStop = true;
     this.rbSoles.Text = "Soles";
     this.rbSoles.UseVisualStyleBackColor = true;
     //
     // rbDolares
     //
     this.rbDolares.AutoSize = true;
     this.rbDolares.Cursor = System.Windows.Forms.Cursors.Hand;
     this.rbDolares.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(213)))));
     this.rbDolares.Location = new System.Drawing.Point(63, 8);
     this.rbDolares.Name = "rbDolares";
     this.rbDolares.Size = new System.Drawing.Size(61, 17);
     this.rbDolares.TabIndex = 1;
     this.rbDolares.Text = "Dólares";
     this.rbDolares.UseVisualStyleBackColor = true;
     //
     // Label15
     //
     this.Label15.AutoSize = true;
     this.Label15.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label15.Location = new System.Drawing.Point(605, 3);
     this.Label15.Name = "Label15";
     this.Label15.Size = new System.Drawing.Size(79, 13);
     this.Label15.TabIndex = 8;
     this.Label15.Text = "Forma de pago";
     //
     // Label10
     //
     this.Label10.AutoSize = true;
     this.Label10.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label10.Location = new System.Drawing.Point(564, 3);
     this.Label10.Name = "Label10";
     this.Label10.Size = new System.Drawing.Size(28, 13);
     this.Label10.TabIndex = 6;
     this.Label10.Text = "T.C.";
     //
     // Label5
     //
     this.Label5.AutoSize = true;
     this.Label5.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label5.Location = new System.Drawing.Point(445, 3);
     this.Label5.Name = "Label5";
     this.Label5.Size = new System.Drawing.Size(52, 13);
     this.Label5.TabIndex = 4;
     this.Label5.Text = "F.Emisión";
     //
     // txtglosacampo
     //
     this.txtglosacampo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtglosacampo.Enabled = false;
     this.txtglosacampo.Location = new System.Drawing.Point(728, 322);
     this.txtglosacampo.MaxLength = 11;
     this.txtglosacampo.Name = "txtglosacampo";
     this.txtglosacampo.Size = new System.Drawing.Size(286, 21);
     this.txtglosacampo.TabIndex = 37;
     //
     // GroupBox4
     //
     this.GroupBox4.Controls.Add(this.btnVervoucher);
     this.GroupBox4.Controls.Add(this.btnGeneravoucher);
     this.GroupBox4.Controls.Add(this.btnSalir);
     this.GroupBox4.Location = new System.Drawing.Point(783, 343);
     this.GroupBox4.Name = "GroupBox4";
     this.GroupBox4.Size = new System.Drawing.Size(231, 72);
     this.GroupBox4.TabIndex = 13;
     this.GroupBox4.TabStop = false;
     //
     // btnVervoucher
     //
     this.btnVervoucher.Image = ((System.Drawing.Image)(resources.GetObject("btnVervoucher.Image")));
     this.btnVervoucher.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnVervoucher.Location = new System.Drawing.Point(6, 40);
     this.btnVervoucher.Name = "btnVervoucher";
     this.btnVervoucher.Size = new System.Drawing.Size(143, 26);
     this.btnVervoucher.TabIndex = 2;
     this.btnVervoucher.Text = "Ver Voucher Generado";
     this.btnVervoucher.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnVervoucher.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnVervoucher.UseVisualStyleBackColor = true;
     this.btnVervoucher.Click += new System.EventHandler(this.btnVervoucher_Click);
     //
     // btnGeneravoucher
     //
     this.btnGeneravoucher.Image = global::BapFormulariosNet.Properties.Resources.Acepta16;
     this.btnGeneravoucher.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnGeneravoucher.Location = new System.Drawing.Point(7, 12);
     this.btnGeneravoucher.Name = "btnGeneravoucher";
     this.btnGeneravoucher.Size = new System.Drawing.Size(143, 26);
     this.btnGeneravoucher.TabIndex = 0;
     this.btnGeneravoucher.Text = "Generar Voucher";
     this.btnGeneravoucher.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnGeneravoucher.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnGeneravoucher.UseVisualStyleBackColor = true;
     this.btnGeneravoucher.Click += new System.EventHandler(this.btnGeneravoucher_Click);
     //
     // btnSalir
     //
     this.btnSalir.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSalir.Image = global::BapFormulariosNet.Properties.Resources.Cancela16;
     this.btnSalir.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnSalir.Location = new System.Drawing.Point(155, 12);
     this.btnSalir.Name = "btnSalir";
     this.btnSalir.Size = new System.Drawing.Size(69, 25);
     this.btnSalir.TabIndex = 1;
     this.btnSalir.Text = "&Salir  ";
     this.btnSalir.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnSalir.UseVisualStyleBackColor = true;
     this.btnSalir.Click += new System.EventHandler(this.btnSalir_Click);
     //
     // GroupBox3
     //
     this.GroupBox3.BackColor = System.Drawing.Color.PaleGreen;
     this.GroupBox3.Controls.Add(this.Label12);
     this.GroupBox3.Controls.Add(this.Label11);
     this.GroupBox3.Controls.Add(this.lbTotalD);
     this.GroupBox3.Controls.Add(this.lbTotalS);
     this.GroupBox3.Location = new System.Drawing.Point(6, 352);
     this.GroupBox3.Name = "GroupBox3";
     this.GroupBox3.Size = new System.Drawing.Size(178, 60);
     this.GroupBox3.TabIndex = 4;
     this.GroupBox3.TabStop = false;
     this.GroupBox3.Text = "Total Deuda";
     //
     // Label12
     //
     this.Label12.AutoSize = true;
     this.Label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label12.Location = new System.Drawing.Point(90, 18);
     this.Label12.Name = "Label12";
     this.Label12.Size = new System.Drawing.Size(64, 13);
     this.Label12.TabIndex = 2;
     this.Label12.Text = "Total US$";
     //
     // Label11
     //
     this.Label11.AutoSize = true;
     this.Label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label11.Location = new System.Drawing.Point(10, 18);
     this.Label11.Name = "Label11";
     this.Label11.Size = new System.Drawing.Size(58, 13);
     this.Label11.TabIndex = 0;
     this.Label11.Text = "Total S/.";
     //
     // lbTotalD
     //
     this.lbTotalD.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lbTotalD.Location = new System.Drawing.Point(90, 33);
     this.lbTotalD.Name = "lbTotalD";
     this.lbTotalD.Size = new System.Drawing.Size(84, 20);
     this.lbTotalD.TabIndex = 3;
     this.lbTotalD.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lbTotalS
     //
     this.lbTotalS.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lbTotalS.Location = new System.Drawing.Point(4, 33);
     this.lbTotalS.Name = "lbTotalS";
     this.lbTotalS.Size = new System.Drawing.Size(84, 20);
     this.lbTotalS.TabIndex = 1;
     this.lbTotalS.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // GroupBox2
     //
     this.GroupBox2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
     this.GroupBox2.Controls.Add(this.Label2);
     this.GroupBox2.Controls.Add(this.Label14);
     this.GroupBox2.Controls.Add(this.lbltotregistros);
     this.GroupBox2.Controls.Add(this.Label13);
     this.GroupBox2.Controls.Add(this.lbltotalpagodolares);
     this.GroupBox2.Controls.Add(this.lbltotalpagosoles);
     this.GroupBox2.Location = new System.Drawing.Point(360, 352);
     this.GroupBox2.Name = "GroupBox2";
     this.GroupBox2.Size = new System.Drawing.Size(240, 60);
     this.GroupBox2.TabIndex = 6;
     this.GroupBox2.TabStop = false;
     this.GroupBox2.Text = "Total a Cancelar";
     //
     // Label2
     //
     this.Label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label2.Location = new System.Drawing.Point(178, 18);
     this.Label2.Name = "Label2";
     this.Label2.Size = new System.Drawing.Size(60, 13);
     this.Label2.TabIndex = 4;
     this.Label2.Text = "Registros";
     //
     // Label14
     //
     this.Label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label14.Location = new System.Drawing.Point(95, 18);
     this.Label14.Name = "Label14";
     this.Label14.Size = new System.Drawing.Size(82, 13);
     this.Label14.TabIndex = 2;
     this.Label14.Text = "Total US$";
     //
     // lbltotregistros
     //
     this.lbltotregistros.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lbltotregistros.Location = new System.Drawing.Point(183, 33);
     this.lbltotregistros.Name = "lbltotregistros";
     this.lbltotregistros.Size = new System.Drawing.Size(53, 20);
     this.lbltotregistros.TabIndex = 3;
     this.lbltotregistros.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // Label13
     //
     this.Label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label13.Location = new System.Drawing.Point(6, 18);
     this.Label13.Name = "Label13";
     this.Label13.Size = new System.Drawing.Size(82, 13);
     this.Label13.TabIndex = 0;
     this.Label13.Text = "Total S/.";
     this.Label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lbltotalpagodolares
     //
     this.lbltotalpagodolares.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lbltotalpagodolares.Location = new System.Drawing.Point(93, 33);
     this.lbltotalpagodolares.Name = "lbltotalpagodolares";
     this.lbltotalpagodolares.Size = new System.Drawing.Size(88, 20);
     this.lbltotalpagodolares.TabIndex = 3;
     this.lbltotalpagodolares.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lbltotalpagosoles
     //
     this.lbltotalpagosoles.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lbltotalpagosoles.Location = new System.Drawing.Point(3, 33);
     this.lbltotalpagosoles.Name = "lbltotalpagosoles";
     this.lbltotalpagosoles.Size = new System.Drawing.Size(88, 20);
     this.lbltotalpagosoles.TabIndex = 1;
     this.lbltotalpagosoles.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // Label8
     //
     this.Label8.AutoSize = true;
     this.Label8.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label8.Location = new System.Drawing.Point(254, 44);
     this.Label8.Name = "Label8";
     this.Label8.Size = new System.Drawing.Size(36, 13);
     this.Label8.TabIndex = 12;
     this.Label8.Text = "Banco";
     //
     // txtSiglasubdiario
     //
     this.txtSiglasubdiario.Location = new System.Drawing.Point(323, 17);
     this.txtSiglasubdiario.MaxLength = 3;
     this.txtSiglasubdiario.Name = "txtSiglasubdiario";
     this.txtSiglasubdiario.Size = new System.Drawing.Size(41, 21);
     this.txtSiglasubdiario.TabIndex = 3;
     //
     // TabPage2
     //
     this.TabPage2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.TabPage2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.TabPage2.Controls.Add(this.grbsoles);
     this.TabPage2.Controls.Add(this.txtdescripcampo);
     this.TabPage2.Controls.Add(this.gridgastos);
     this.TabPage2.Controls.Add(this.btnaddfila);
     this.TabPage2.Controls.Add(this.btndelfila);
     this.TabPage2.Location = new System.Drawing.Point(4, 22);
     this.TabPage2.Name = "TabPage2";
     this.TabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.TabPage2.Size = new System.Drawing.Size(1024, 421);
     this.TabPage2.TabIndex = 1;
     this.TabPage2.Text = "Gastos Adicionales";
     //
     // grbsoles
     //
     this.grbsoles.Controls.Add(this.Label20);
     this.grbsoles.Controls.Add(this.txttotalhaberdolares);
     this.grbsoles.Controls.Add(this.txttotaldebedolares);
     this.grbsoles.Controls.Add(this.Label17);
     this.grbsoles.Controls.Add(this.txttotalhabersoles);
     this.grbsoles.Controls.Add(this.Label19);
     this.grbsoles.Controls.Add(this.Label22);
     this.grbsoles.Controls.Add(this.txttotaldebesoles);
     this.grbsoles.Location = new System.Drawing.Point(723, 296);
     this.grbsoles.Margin = new System.Windows.Forms.Padding(0);
     this.grbsoles.Name = "grbsoles";
     this.grbsoles.Size = new System.Drawing.Size(278, 79);
     this.grbsoles.TabIndex = 28;
     this.grbsoles.TabStop = false;
     //
     // Label20
     //
     this.Label20.AutoSize = true;
     this.Label20.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label20.Location = new System.Drawing.Point(188, 9);
     this.Label20.Name = "Label20";
     this.Label20.Size = new System.Drawing.Size(43, 13);
     this.Label20.TabIndex = 10;
     this.Label20.Text = "Dólares";
     //
     // txttotalhaberdolares
     //
     this.txttotalhaberdolares.Enabled = false;
     this.txttotalhaberdolares.Location = new System.Drawing.Point(162, 46);
     this.txttotalhaberdolares.Name = "txttotalhaberdolares";
     this.txttotalhaberdolares.Size = new System.Drawing.Size(102, 21);
     this.txttotalhaberdolares.TabIndex = 8;
     this.txttotalhaberdolares.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txttotaldebedolares
     //
     this.txttotaldebedolares.Enabled = false;
     this.txttotaldebedolares.Location = new System.Drawing.Point(162, 24);
     this.txttotaldebedolares.Name = "txttotaldebedolares";
     this.txttotaldebedolares.Size = new System.Drawing.Size(102, 21);
     this.txttotaldebedolares.TabIndex = 7;
     this.txttotaldebedolares.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // Label17
     //
     this.Label17.AutoSize = true;
     this.Label17.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label17.Location = new System.Drawing.Point(5, 50);
     this.Label17.Name = "Label17";
     this.Label17.Size = new System.Drawing.Size(40, 13);
     this.Label17.TabIndex = 4;
     this.Label17.Text = "HABER";
     //
     // txttotalhabersoles
     //
     this.txttotalhabersoles.Enabled = false;
     this.txttotalhabersoles.Location = new System.Drawing.Point(53, 46);
     this.txttotalhabersoles.Name = "txttotalhabersoles";
     this.txttotalhabersoles.Size = new System.Drawing.Size(102, 21);
     this.txttotalhabersoles.TabIndex = 3;
     this.txttotalhabersoles.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // Label19
     //
     this.Label19.AutoSize = true;
     this.Label19.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label19.Location = new System.Drawing.Point(13, 28);
     this.Label19.Name = "Label19";
     this.Label19.Size = new System.Drawing.Size(32, 13);
     this.Label19.TabIndex = 2;
     this.Label19.Text = "DEBE";
     //
     // Label22
     //
     this.Label22.AutoSize = true;
     this.Label22.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label22.Location = new System.Drawing.Point(64, 9);
     this.Label22.Name = "Label22";
     this.Label22.Size = new System.Drawing.Size(32, 13);
     this.Label22.TabIndex = 0;
     this.Label22.Text = "Soles";
     //
     // txttotaldebesoles
     //
     this.txttotaldebesoles.Enabled = false;
     this.txttotaldebesoles.Location = new System.Drawing.Point(53, 24);
     this.txttotaldebesoles.Name = "txttotaldebesoles";
     this.txttotaldebesoles.Size = new System.Drawing.Size(102, 21);
     this.txttotaldebesoles.TabIndex = 1;
     this.txttotaldebesoles.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtdescripcampo
     //
     this.txtdescripcampo.BackColor = System.Drawing.Color.White;
     this.txtdescripcampo.Enabled = false;
     this.txtdescripcampo.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.txtdescripcampo.Location = new System.Drawing.Point(219, 308);
     this.txtdescripcampo.Name = "txtdescripcampo";
     this.txtdescripcampo.Size = new System.Drawing.Size(473, 21);
     this.txtdescripcampo.TabIndex = 27;
     //
     // gridgastos
     //
     this.gridgastos.AllowUserToAddRows = false;
     this.gridgastos.AllowUserToDeleteRows = false;
     this.gridgastos.AllowUserToResizeColumns = false;
     this.gridgastos.AllowUserToResizeRows = false;
     this.gridgastos.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.gridgastos.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
     this.gridgastos.ColumnHeadersHeight = 24;
     this.gridgastos.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.asientoitems,
     this.Gasto_cuentaid,
     this.gasto_cuentaname,
     this.gasto_debehaber,
     this.gasto_moneda,
     this.Importe,
     this.ImporteCambio,
     this.gasto_cencosid,
     this.gasto_tipdoc,
     this.gasto_serdoc,
     this.gasto_numdoc,
     this.gasto_fechdoc});
     this.gridgastos.Location = new System.Drawing.Point(9, 20);
     this.gridgastos.MultiSelect = false;
     this.gridgastos.Name = "gridgastos";
     this.gridgastos.RowHeadersWidth = 10;
     dataGridViewCellStyle12.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridgastos.RowsDefaultCellStyle = dataGridViewCellStyle12;
     this.gridgastos.RowTemplate.Height = 20;
     this.gridgastos.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.gridgastos.Size = new System.Drawing.Size(1004, 273);
     this.gridgastos.TabIndex = 24;
     this.gridgastos.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.gridgastos_CellBeginEdit);
     this.gridgastos.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridgastos_CellEndEdit);
     this.gridgastos.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridgastos_CellValueChanged);
     this.gridgastos.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.gridgastos_EditingControlShowing);
     this.gridgastos.SelectionChanged += new System.EventHandler(this.gridgastos_SelectionChanged);
     this.gridgastos.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gridgastos_KeyDown);
     //
     // asientoitems
     //
     this.asientoitems.DataPropertyName = "asientoitems";
     this.asientoitems.HeaderText = "Asiento Items";
     this.asientoitems.Name = "asientoitems";
     this.asientoitems.Visible = false;
     //
     // Gasto_cuentaid
     //
     this.Gasto_cuentaid.DataPropertyName = "cuentaid";
     this.Gasto_cuentaid.HeaderText = "Cuenta";
     this.Gasto_cuentaid.Name = "Gasto_cuentaid";
     this.Gasto_cuentaid.Width = 70;
     //
     // gasto_cuentaname
     //
     this.gasto_cuentaname.DataPropertyName = "cuentaname";
     this.gasto_cuentaname.HeaderText = "Descripción";
     this.gasto_cuentaname.Name = "gasto_cuentaname";
     this.gasto_cuentaname.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.gasto_cuentaname.Width = 350;
     //
     // gasto_debehaber
     //
     this.gasto_debehaber.DataPropertyName = "debehaber";
     dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.gasto_debehaber.DefaultCellStyle = dataGridViewCellStyle9;
     this.gasto_debehaber.HeaderText = "D/H";
     this.gasto_debehaber.MaxInputLength = 1;
     this.gasto_debehaber.Name = "gasto_debehaber";
     this.gasto_debehaber.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.gasto_debehaber.Width = 35;
     //
     // gasto_moneda
     //
     this.gasto_moneda.DataPropertyName = "moneda";
     this.gasto_moneda.HeaderText = "MP";
     this.gasto_moneda.Name = "gasto_moneda";
     this.gasto_moneda.Width = 28;
     //
     // Importe
     //
     this.Importe.DataPropertyName = "Importe";
     dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle10.Format = "N2";
     dataGridViewCellStyle10.NullValue = "0";
     this.Importe.DefaultCellStyle = dataGridViewCellStyle10;
     this.Importe.HeaderText = "Importe";
     this.Importe.Name = "Importe";
     this.Importe.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.Importe.Width = 73;
     //
     // ImporteCambio
     //
     this.ImporteCambio.DataPropertyName = "ImporteCambio";
     dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle11.Format = "N2";
     dataGridViewCellStyle11.NullValue = "0";
     this.ImporteCambio.DefaultCellStyle = dataGridViewCellStyle11;
     this.ImporteCambio.HeaderText = "Cambio";
     this.ImporteCambio.Name = "ImporteCambio";
     this.ImporteCambio.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.ImporteCambio.Width = 73;
     //
     // gasto_cencosid
     //
     this.gasto_cencosid.DataPropertyName = "cencosid";
     this.gasto_cencosid.HeaderText = "C.Costo";
     this.gasto_cencosid.Name = "gasto_cencosid";
     this.gasto_cencosid.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.gasto_cencosid.Width = 60;
     //
     // gasto_tipdoc
     //
     this.gasto_tipdoc.DataPropertyName = "tipdoc";
     this.gasto_tipdoc.HeaderText = "TD";
     this.gasto_tipdoc.Name = "gasto_tipdoc";
     this.gasto_tipdoc.Width = 30;
     //
     // gasto_serdoc
     //
     this.gasto_serdoc.DataPropertyName = "serdoc";
     this.gasto_serdoc.HeaderText = "Serie";
     this.gasto_serdoc.Name = "gasto_serdoc";
     this.gasto_serdoc.Width = 40;
     //
     // gasto_numdoc
     //
     this.gasto_numdoc.DataPropertyName = "numdoc";
     this.gasto_numdoc.HeaderText = "Número";
     this.gasto_numdoc.Name = "gasto_numdoc";
     this.gasto_numdoc.Width = 80;
     //
     // gasto_fechdoc
     //
     this.gasto_fechdoc.DataPropertyName = "fechdoc";
     this.gasto_fechdoc.HeaderText = "Fecha(dd/mm/aaaa)";
     this.gasto_fechdoc.Name = "gasto_fechdoc";
     this.gasto_fechdoc.Width = 110;
     //
     // btnaddfila
     //
     //this.btnaddfila.Image = global::BapFormulariosNet.Properties.Resources.btnAdd;
     this.btnaddfila.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnaddfila.Location = new System.Drawing.Point(10, 305);
     this.btnaddfila.Name = "btnaddfila";
     this.btnaddfila.Size = new System.Drawing.Size(94, 32);
     this.btnaddfila.TabIndex = 25;
     this.btnaddfila.Text = "&Nueva Fila";
     this.btnaddfila.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnaddfila.UseVisualStyleBackColor = true;
     this.btnaddfila.Click += new System.EventHandler(this.btnaddfila_Click);
     //
     // btndelfila
     //
     //this.btndelfila.Image = global::BapFormulariosNet.Properties.Resources.btnDel;
     this.btndelfila.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btndelfila.Location = new System.Drawing.Point(115, 305);
     this.btndelfila.Name = "btndelfila";
     this.btndelfila.Size = new System.Drawing.Size(94, 32);
     this.btndelfila.TabIndex = 26;
     this.btndelfila.Text = "&Eliminar Fila";
     this.btndelfila.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btndelfila.UseVisualStyleBackColor = true;
     this.btndelfila.Click += new System.EventHandler(this.btndelfila_Click);
     //
     // lblregseleccionado
     //
     this.lblregseleccionado.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
     this.lblregseleccionado.Cursor = System.Windows.Forms.Cursors.IBeam;
     this.lblregseleccionado.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblregseleccionado.Location = new System.Drawing.Point(80, 539);
     this.lblregseleccionado.Name = "lblregseleccionado";
     this.lblregseleccionado.Size = new System.Drawing.Size(228, 13);
     this.lblregseleccionado.TabIndex = 3;
     this.lblregseleccionado.Text = "REGISTROS SELECCIONADOS";
     this.lblregseleccionado.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblregseleccionado.Visible = false;
     //
     // Frm_CancelacionesCobranzas
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1042, 543);
     this.Controls.Add(this.lblregseleccionado);
     this.Controls.Add(this.GroupBox1);
     this.Controls.Add(this.TabCancelaciones);
     this.DoubleBuffered = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_CancelacionesCobranzas";
     this.Text = "Tesoreria - Cobranzas y Pagos";
     this.Activated += new System.EventHandler(this.Frm_CancelacionesCobranzas_Activated);
     this.Load += new System.EventHandler(this.Frm_CancelacionesCobranzas_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_CancelacionesCobranzas_KeyDown);
     this.GroupBox1.ResumeLayout(false);
     this.GroupBox1.PerformLayout();
     this.GroupBox6.ResumeLayout(false);
     this.GroupBox6.PerformLayout();
     this.GroupBox10.ResumeLayout(false);
     this.GroupBox10.PerformLayout();
     this.TabCancelaciones.ResumeLayout(false);
     this.TabPage1.ResumeLayout(false);
     this.TabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.examinar)).EndInit();
     this.GroupBox5.ResumeLayout(false);
     this.GroupBox5.PerformLayout();
     this.GroupBox21.ResumeLayout(false);
     this.GroupBox21.PerformLayout();
     this.GroupBox4.ResumeLayout(false);
     this.GroupBox3.ResumeLayout(false);
     this.GroupBox3.PerformLayout();
     this.GroupBox2.ResumeLayout(false);
     this.TabPage2.ResumeLayout(false);
     this.TabPage2.PerformLayout();
     this.grbsoles.ResumeLayout(false);
     this.grbsoles.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridgastos)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ServerSettingsForm));
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.EnablePunkBuster = new System.Windows.Forms.CheckBox();
     this.AutoBalanceBox = new System.Windows.Forms.CheckBox();
     this.ServerIpBox = new System.Windows.Forms.TextBox();
     this.label9 = new System.Windows.Forms.Label();
     this.groupBox13 = new System.Windows.Forms.GroupBox();
     this.TeamRatioBox = new System.Windows.Forms.TextBox();
     this.TeamRatioBar = new System.Windows.Forms.TrackBar();
     this.groupBox12 = new System.Windows.Forms.GroupBox();
     this.ScoreLimitBox = new System.Windows.Forms.TextBox();
     this.ScoreLimitBar = new System.Windows.Forms.TrackBar();
     this.groupBox11 = new System.Windows.Forms.GroupBox();
     this.TicketRatioBox = new System.Windows.Forms.TextBox();
     this.TicketRatioBar = new System.Windows.Forms.TrackBar();
     this.groupBox10 = new System.Windows.Forms.GroupBox();
     this.MaxPlayersBar = new System.Windows.Forms.TrackBar();
     this.MaxPlayersBox = new System.Windows.Forms.TextBox();
     this.groupBox9 = new System.Windows.Forms.GroupBox();
     this.PlayersToStartSlider = new System.Windows.Forms.TrackBar();
     this.PlayersToStartValueBox = new System.Windows.Forms.TextBox();
     this.RoundsPerMapBox = new System.Windows.Forms.NumericUpDown();
     this.GamespyPortBox = new System.Windows.Forms.NumericUpDown();
     this.ServerPortBox = new System.Windows.Forms.NumericUpDown();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.ServerWelcomeBox = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.ServerPasswordBox = new System.Windows.Forms.TextBox();
     this.ServerNameBox = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.EnablePublicServerBox = new System.Windows.Forms.CheckBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.label4 = new System.Windows.Forms.Label();
     this.groupBox21 = new System.Windows.Forms.GroupBox();
     this.TimeB4RestartMapBar = new System.Windows.Forms.TrackBar();
     this.TimeB4RestartMapBox = new System.Windows.Forms.TextBox();
     this.groupBox20 = new System.Windows.Forms.GroupBox();
     this.NotEnoughPlayersBar = new System.Windows.Forms.TrackBar();
     this.NotEnoughPlayersBox = new System.Windows.Forms.TextBox();
     this.groupBox19 = new System.Windows.Forms.GroupBox();
     this.EORBar = new System.Windows.Forms.TrackBar();
     this.EORBox = new System.Windows.Forms.TextBox();
     this.groupBox18 = new System.Windows.Forms.GroupBox();
     this.EndDelayBar = new System.Windows.Forms.TrackBar();
     this.EndDelayBox = new System.Windows.Forms.TextBox();
     this.groupBox17 = new System.Windows.Forms.GroupBox();
     this.StartDelayBar = new System.Windows.Forms.TrackBar();
     this.StartDelayBox = new System.Windows.Forms.TextBox();
     this.groupBox16 = new System.Windows.Forms.GroupBox();
     this.ManDownBar = new System.Windows.Forms.TrackBar();
     this.ManDownBox = new System.Windows.Forms.TextBox();
     this.groupBox15 = new System.Windows.Forms.GroupBox();
     this.SpawnTimeBar = new System.Windows.Forms.TrackBar();
     this.SpawnTimeBox = new System.Windows.Forms.TextBox();
     this.groupBox14 = new System.Windows.Forms.GroupBox();
     this.TimeLimitBar = new System.Windows.Forms.TrackBar();
     this.TimeLimitBox = new System.Windows.Forms.TextBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.VoipPasswordBox = new System.Windows.Forms.TextBox();
     this.label12 = new System.Windows.Forms.Label();
     this.RemoteVoipIpBox = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.EnableRemoteVoip = new System.Windows.Forms.CheckBox();
     this.VoipServerPort = new System.Windows.Forms.NumericUpDown();
     this.label10 = new System.Windows.Forms.Label();
     this.VoipBF2ServerPort = new System.Windows.Forms.NumericUpDown();
     this.VoipBF2ClientPort = new System.Windows.Forms.NumericUpDown();
     this.VoipQualityBox = new System.Windows.Forms.TextBox();
     this.label16 = new System.Windows.Forms.Label();
     this.VoipQualityBar = new System.Windows.Forms.TrackBar();
     this.label15 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.EnableVoip = new System.Windows.Forms.CheckBox();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.label8 = new System.Windows.Forms.Label();
     this.TksBeforeKickBox = new System.Windows.Forms.NumericUpDown();
     this.PunishDefaultBox = new System.Windows.Forms.CheckBox();
     this.FriendlyFireBox = new System.Windows.Forms.CheckBox();
     this.PunishTeamKillsBox = new System.Windows.Forms.CheckBox();
     this.groupBox25 = new System.Windows.Forms.GroupBox();
     this.VehicleSplashFFBox = new System.Windows.Forms.TextBox();
     this.VehicleSplashFFBar = new System.Windows.Forms.TrackBar();
     this.groupBox24 = new System.Windows.Forms.GroupBox();
     this.SoldierSplashFFBox = new System.Windows.Forms.TextBox();
     this.SoldierSplashFFBar = new System.Windows.Forms.TrackBar();
     this.groupBox23 = new System.Windows.Forms.GroupBox();
     this.VehicleFFBox = new System.Windows.Forms.TextBox();
     this.VehicleFFBar = new System.Windows.Forms.TrackBar();
     this.groupBox22 = new System.Windows.Forms.GroupBox();
     this.SoldierFFBox = new System.Windows.Forms.TextBox();
     this.SoldierFFBar = new System.Windows.Forms.TrackBar();
     this.Cancel = new System.Windows.Forms.Button();
     this.SaveButton = new System.Windows.Forms.Button();
     this.groupBox8 = new System.Windows.Forms.GroupBox();
     this.RadioBlockTimeBox = new System.Windows.Forms.TextBox();
     this.label25 = new System.Windows.Forms.Label();
     this.RadioBlockTimeBar = new System.Windows.Forms.TrackBar();
     this.RadioMaxSpamBox = new System.Windows.Forms.NumericUpDown();
     this.RadioSpamIntBox = new System.Windows.Forms.NumericUpDown();
     this.label24 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.AllowNoseCam = new System.Windows.Forms.CheckBox();
     this.HitIndicatorEnabled = new System.Windows.Forms.CheckBox();
     this.AllowExtViews = new System.Windows.Forms.CheckBox();
     this.AllowFreeCam = new System.Windows.Forms.CheckBox();
     this.AllowNATNagotiation = new System.Windows.Forms.CheckBox();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.tabPage4 = new System.Windows.Forms.TabPage();
     this.tabPage3 = new System.Windows.Forms.TabPage();
     this.groupBox26 = new System.Windows.Forms.GroupBox();
     this.InfoLink = new System.Windows.Forms.LinkLabel();
     this.groupBox31 = new System.Windows.Forms.GroupBox();
     this.BotCountBar1 = new System.Windows.Forms.TrackBar();
     this.BotCountBox1 = new System.Windows.Forms.TextBox();
     this.groupBox32 = new System.Windows.Forms.GroupBox();
     this.BotCountBar2 = new System.Windows.Forms.TrackBar();
     this.BotCountBox2 = new System.Windows.Forms.TextBox();
     this.ForceBotCount = new System.Windows.Forms.CheckBox();
     this.groupBox29 = new System.Windows.Forms.GroupBox();
     this.BotCountBar = new System.Windows.Forms.TrackBar();
     this.BotCountBox = new System.Windows.Forms.TextBox();
     this.groupBox28 = new System.Windows.Forms.GroupBox();
     this.BotRatioBox = new System.Windows.Forms.TextBox();
     this.BotRatioBar = new System.Windows.Forms.TrackBar();
     this.groupBox27 = new System.Windows.Forms.GroupBox();
     this.BotDifficultyBox = new System.Windows.Forms.TextBox();
     this.BotDifficultyBar = new System.Windows.Forms.TrackBar();
     this.tabPage7 = new System.Windows.Forms.TabPage();
     this.groupBox7 = new System.Windows.Forms.GroupBox();
     this.PlayersVotingBox = new System.Windows.Forms.TextBox();
     this.label13 = new System.Windows.Forms.Label();
     this.PlayersVotingBar = new System.Windows.Forms.TrackBar();
     this.VoteTimeBox = new System.Windows.Forms.TextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.VoteTimeBar = new System.Windows.Forms.TrackBar();
     this.EnableTeamVotingBox = new System.Windows.Forms.CheckBox();
     this.EnableVotingBox = new System.Windows.Forms.CheckBox();
     this.tabPage5 = new System.Windows.Forms.TabPage();
     this.groupBox30 = new System.Windows.Forms.GroupBox();
     this.SLogoUrlBox = new System.Windows.Forms.TextBox();
     this.label23 = new System.Windows.Forms.Label();
     this.CLogoUrlBox = new System.Windows.Forms.TextBox();
     this.label22 = new System.Windows.Forms.Label();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.DemoHookBox = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.DemoDownloadBox = new System.Windows.Forms.TextBox();
     this.DemoIndexUrlBox = new System.Windows.Forms.TextBox();
     this.label20 = new System.Windows.Forms.Label();
     this.label21 = new System.Windows.Forms.Label();
     this.DemoQualityBox = new System.Windows.Forms.TextBox();
     this.label18 = new System.Windows.Forms.Label();
     this.DemoQualityBar = new System.Windows.Forms.TrackBar();
     this.EnableAutoRecord = new System.Windows.Forms.CheckBox();
     this.tabPage6 = new System.Windows.Forms.TabPage();
     this.Tipsy = new System.Windows.Forms.ToolTip(this.components);
     this.groupBox1.SuspendLayout();
     this.groupBox13.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TeamRatioBar)).BeginInit();
     this.groupBox12.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ScoreLimitBar)).BeginInit();
     this.groupBox11.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TicketRatioBar)).BeginInit();
     this.groupBox10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MaxPlayersBar)).BeginInit();
     this.groupBox9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.PlayersToStartSlider)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RoundsPerMapBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GamespyPortBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ServerPortBox)).BeginInit();
     this.groupBox2.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox21.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TimeB4RestartMapBar)).BeginInit();
     this.groupBox20.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NotEnoughPlayersBar)).BeginInit();
     this.groupBox19.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.EORBar)).BeginInit();
     this.groupBox18.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.EndDelayBar)).BeginInit();
     this.groupBox17.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.StartDelayBar)).BeginInit();
     this.groupBox16.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ManDownBar)).BeginInit();
     this.groupBox15.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.SpawnTimeBar)).BeginInit();
     this.groupBox14.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TimeLimitBar)).BeginInit();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.VoipServerPort)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.VoipBF2ServerPort)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.VoipBF2ClientPort)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.VoipQualityBar)).BeginInit();
     this.groupBox6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TksBeforeKickBox)).BeginInit();
     this.groupBox25.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.VehicleSplashFFBar)).BeginInit();
     this.groupBox24.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.SoldierSplashFFBar)).BeginInit();
     this.groupBox23.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.VehicleFFBar)).BeginInit();
     this.groupBox22.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.SoldierFFBar)).BeginInit();
     this.groupBox8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.RadioBlockTimeBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RadioMaxSpamBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RadioSpamIntBox)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.tabPage4.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.groupBox26.SuspendLayout();
     this.groupBox31.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BotCountBar1)).BeginInit();
     this.groupBox32.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BotCountBar2)).BeginInit();
     this.groupBox29.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BotCountBar)).BeginInit();
     this.groupBox28.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BotRatioBar)).BeginInit();
     this.groupBox27.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BotDifficultyBar)).BeginInit();
     this.tabPage7.SuspendLayout();
     this.groupBox7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.PlayersVotingBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.VoteTimeBar)).BeginInit();
     this.tabPage5.SuspendLayout();
     this.groupBox30.SuspendLayout();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DemoQualityBar)).BeginInit();
     this.tabPage6.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.EnablePunkBuster);
     this.groupBox1.Controls.Add(this.AutoBalanceBox);
     this.groupBox1.Controls.Add(this.ServerIpBox);
     this.groupBox1.Controls.Add(this.label9);
     this.groupBox1.Controls.Add(this.groupBox13);
     this.groupBox1.Controls.Add(this.groupBox12);
     this.groupBox1.Controls.Add(this.groupBox11);
     this.groupBox1.Controls.Add(this.groupBox10);
     this.groupBox1.Controls.Add(this.groupBox9);
     this.groupBox1.Controls.Add(this.RoundsPerMapBox);
     this.groupBox1.Controls.Add(this.GamespyPortBox);
     this.groupBox1.Controls.Add(this.ServerPortBox);
     this.groupBox1.Controls.Add(this.groupBox2);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.ServerPasswordBox);
     this.groupBox1.Controls.Add(this.ServerNameBox);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.EnablePublicServerBox);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Location = new System.Drawing.Point(5, 5);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(594, 337);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     //
     // EnablePunkBuster
     //
     this.EnablePunkBuster.AutoSize = true;
     this.EnablePunkBuster.Location = new System.Drawing.Point(155, 176);
     this.EnablePunkBuster.Name = "EnablePunkBuster";
     this.EnablePunkBuster.Size = new System.Drawing.Size(120, 17);
     this.EnablePunkBuster.TabIndex = 29;
     this.EnablePunkBuster.Text = "Enable Punk Buster";
     this.Tipsy.SetToolTip(this.EnablePunkBuster, "Enable PunkBuster automatic cheat protection. Visit http://www.evenbalance.com fo" +
             "r more information about PunkBuster.");
     this.EnablePunkBuster.UseVisualStyleBackColor = true;
     //
     // AutoBalanceBox
     //
     this.AutoBalanceBox.AutoSize = true;
     this.AutoBalanceBox.Location = new System.Drawing.Point(10, 176);
     this.AutoBalanceBox.Name = "AutoBalanceBox";
     this.AutoBalanceBox.Size = new System.Drawing.Size(121, 17);
     this.AutoBalanceBox.TabIndex = 28;
     this.AutoBalanceBox.Text = "Autobalance Teams";
     this.Tipsy.SetToolTip(this.AutoBalanceBox, "Enabling this will automatically move players to the team with less players when " +
             "they die, and will prevent players from switching\r\nteams if it would cause them " +
             "to be too unbalanced.");
     this.AutoBalanceBox.UseVisualStyleBackColor = true;
     //
     // ServerIpBox
     //
     this.ServerIpBox.Location = new System.Drawing.Point(82, 80);
     this.ServerIpBox.Name = "ServerIpBox";
     this.ServerIpBox.Size = new System.Drawing.Size(210, 20);
     this.ServerIpBox.TabIndex = 27;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(6, 82);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(54, 13);
     this.label9.TabIndex = 26;
     this.label9.Text = "Server IP:";
     this.Tipsy.SetToolTip(this.label9, "This setting allows you to set the network IP address for your server. This setti" +
             "ng needs to match the \"interfaceIP\" setting.\r\n\r\nNote: Leave Blank to use the def" +
             "ault IP for this machine");
     //
     // groupBox13
     //
     this.groupBox13.Controls.Add(this.TeamRatioBox);
     this.groupBox13.Controls.Add(this.TeamRatioBar);
     this.groupBox13.Location = new System.Drawing.Point(301, 216);
     this.groupBox13.Name = "groupBox13";
     this.groupBox13.Size = new System.Drawing.Size(283, 54);
     this.groupBox13.TabIndex = 25;
     this.groupBox13.TabStop = false;
     this.groupBox13.Text = "Team Ratio";
     //
     // TeamRatioBox
     //
     this.TeamRatioBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.TeamRatioBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.TeamRatioBox.Location = new System.Drawing.Point(252, 19);
     this.TeamRatioBox.Name = "TeamRatioBox";
     this.TeamRatioBox.ReadOnly = true;
     this.TeamRatioBox.Size = new System.Drawing.Size(26, 13);
     this.TeamRatioBox.TabIndex = 21;
     this.TeamRatioBox.Text = "50%";
     //
     // TeamRatioBar
     //
     this.TeamRatioBar.AutoSize = false;
     this.TeamRatioBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.TeamRatioBar.LargeChange = 10;
     this.TeamRatioBar.Location = new System.Drawing.Point(7, 19);
     this.TeamRatioBar.Maximum = 100;
     this.TeamRatioBar.Name = "TeamRatioBar";
     this.TeamRatioBar.Size = new System.Drawing.Size(240, 28);
     this.TeamRatioBar.SmallChange = 5;
     this.TeamRatioBar.TabIndex = 20;
     this.TeamRatioBar.TickFrequency = 10;
     this.Tipsy.SetToolTip(this.TeamRatioBar, "This ratio represents how autoBalanceTeam considers the desired ratio between tea" +
             "m 1 and team 2. \r\nThe percent represents what percent of team 1\'s current player" +
             "s is considered \'even\' for team 2.");
     this.TeamRatioBar.Value = 50;
     this.TeamRatioBar.ValueChanged += new System.EventHandler(this.TeamRatioBar_ValueChanged);
     //
     // groupBox12
     //
     this.groupBox12.Controls.Add(this.ScoreLimitBox);
     this.groupBox12.Controls.Add(this.ScoreLimitBar);
     this.groupBox12.Location = new System.Drawing.Point(301, 275);
     this.groupBox12.Name = "groupBox12";
     this.groupBox12.Size = new System.Drawing.Size(283, 54);
     this.groupBox12.TabIndex = 24;
     this.groupBox12.TabStop = false;
     this.groupBox12.Text = "Score Limit";
     //
     // ScoreLimitBox
     //
     this.ScoreLimitBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.ScoreLimitBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.ScoreLimitBox.Location = new System.Drawing.Point(252, 19);
     this.ScoreLimitBox.Name = "ScoreLimitBox";
     this.ScoreLimitBox.ReadOnly = true;
     this.ScoreLimitBox.Size = new System.Drawing.Size(20, 13);
     this.ScoreLimitBox.TabIndex = 21;
     this.ScoreLimitBox.Text = "0";
     //
     // ScoreLimitBar
     //
     this.ScoreLimitBar.AutoSize = false;
     this.ScoreLimitBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.ScoreLimitBar.Location = new System.Drawing.Point(7, 19);
     this.ScoreLimitBar.Maximum = 300;
     this.ScoreLimitBar.Name = "ScoreLimitBar";
     this.ScoreLimitBar.Size = new System.Drawing.Size(240, 28);
     this.ScoreLimitBar.TabIndex = 20;
     this.ScoreLimitBar.TickStyle = System.Windows.Forms.TickStyle.None;
     this.Tipsy.SetToolTip(this.ScoreLimitBar, "After this number of points is scored by one team, the round will end.");
     this.ScoreLimitBar.ValueChanged += new System.EventHandler(this.ScoreLimitBar_ValueChanged);
     //
     // groupBox11
     //
     this.groupBox11.Controls.Add(this.TicketRatioBox);
     this.groupBox11.Controls.Add(this.TicketRatioBar);
     this.groupBox11.Location = new System.Drawing.Point(303, 156);
     this.groupBox11.Name = "groupBox11";
     this.groupBox11.Size = new System.Drawing.Size(283, 54);
     this.groupBox11.TabIndex = 23;
     this.groupBox11.TabStop = false;
     this.groupBox11.Text = "Ticket Ratio";
     //
     // TicketRatioBox
     //
     this.TicketRatioBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.TicketRatioBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.TicketRatioBox.Location = new System.Drawing.Point(251, 19);
     this.TicketRatioBox.Name = "TicketRatioBox";
     this.TicketRatioBox.ReadOnly = true;
     this.TicketRatioBox.Size = new System.Drawing.Size(26, 13);
     this.TicketRatioBox.TabIndex = 18;
     this.TicketRatioBox.Text = "100%";
     //
     // TicketRatioBar
     //
     this.TicketRatioBar.AutoSize = false;
     this.TicketRatioBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.TicketRatioBar.LargeChange = 25;
     this.TicketRatioBar.Location = new System.Drawing.Point(6, 19);
     this.TicketRatioBar.Maximum = 1000;
     this.TicketRatioBar.Name = "TicketRatioBar";
     this.TicketRatioBar.Size = new System.Drawing.Size(240, 29);
     this.TicketRatioBar.SmallChange = 5;
     this.TicketRatioBar.TabIndex = 17;
     this.TicketRatioBar.TickFrequency = 50;
     this.Tipsy.SetToolTip(this.TicketRatioBar, "You can set the percentage of the normal number of tickets you wish to use.");
     this.TicketRatioBar.Value = 100;
     this.TicketRatioBar.ValueChanged += new System.EventHandler(this.TicketRatioBar_ValueChanged);
     //
     // groupBox10
     //
     this.groupBox10.Controls.Add(this.MaxPlayersBar);
     this.groupBox10.Controls.Add(this.MaxPlayersBox);
     this.groupBox10.Location = new System.Drawing.Point(9, 275);
     this.groupBox10.Name = "groupBox10";
     this.groupBox10.Size = new System.Drawing.Size(283, 54);
     this.groupBox10.TabIndex = 22;
     this.groupBox10.TabStop = false;
     this.groupBox10.Text = "Maximum Players";
     //
     // MaxPlayersBar
     //
     this.MaxPlayersBar.AutoSize = false;
     this.MaxPlayersBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.MaxPlayersBar.LargeChange = 8;
     this.MaxPlayersBar.Location = new System.Drawing.Point(6, 19);
     this.MaxPlayersBar.Maximum = 64;
     this.MaxPlayersBar.Name = "MaxPlayersBar";
     this.MaxPlayersBar.Size = new System.Drawing.Size(240, 29);
     this.MaxPlayersBar.SmallChange = 2;
     this.MaxPlayersBar.TabIndex = 8;
     this.MaxPlayersBar.TickFrequency = 8;
     this.Tipsy.SetToolTip(this.MaxPlayersBar, "The maximum number of players allowed on your server at once.");
     this.MaxPlayersBar.Value = 64;
     this.MaxPlayersBar.ValueChanged += new System.EventHandler(this.MaxPlayersBar_ValueChanged);
     //
     // MaxPlayersBox
     //
     this.MaxPlayersBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.MaxPlayersBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.MaxPlayersBox.Location = new System.Drawing.Point(252, 19);
     this.MaxPlayersBox.Name = "MaxPlayersBox";
     this.MaxPlayersBox.ReadOnly = true;
     this.MaxPlayersBox.Size = new System.Drawing.Size(20, 13);
     this.MaxPlayersBox.TabIndex = 10;
     this.MaxPlayersBox.Text = "64";
     //
     // groupBox9
     //
     this.groupBox9.Controls.Add(this.PlayersToStartSlider);
     this.groupBox9.Controls.Add(this.PlayersToStartValueBox);
     this.groupBox9.Location = new System.Drawing.Point(10, 216);
     this.groupBox9.Name = "groupBox9";
     this.groupBox9.Size = new System.Drawing.Size(283, 54);
     this.groupBox9.TabIndex = 21;
     this.groupBox9.TabStop = false;
     this.groupBox9.Text = "Number of Players Needed To Start";
     //
     // PlayersToStartSlider
     //
     this.PlayersToStartSlider.AutoSize = false;
     this.PlayersToStartSlider.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.PlayersToStartSlider.LargeChange = 8;
     this.PlayersToStartSlider.Location = new System.Drawing.Point(6, 19);
     this.PlayersToStartSlider.Maximum = 64;
     this.PlayersToStartSlider.Name = "PlayersToStartSlider";
     this.PlayersToStartSlider.Size = new System.Drawing.Size(240, 29);
     this.PlayersToStartSlider.SmallChange = 2;
     this.PlayersToStartSlider.TabIndex = 8;
     this.PlayersToStartSlider.TickFrequency = 8;
     this.Tipsy.SetToolTip(this.PlayersToStartSlider, "The minimum number of players needed for a round to begin. Until this number of p" +
             "layers have joined, \r\nthe server stays in a \"pre-game\" state and neither team lo" +
             "ses any tickets.");
     this.PlayersToStartSlider.Value = 2;
     this.PlayersToStartSlider.ValueChanged += new System.EventHandler(this.PlayersToStartSlider_ValueChanged);
     //
     // PlayersToStartValueBox
     //
     this.PlayersToStartValueBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.PlayersToStartValueBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.PlayersToStartValueBox.Location = new System.Drawing.Point(252, 19);
     this.PlayersToStartValueBox.Name = "PlayersToStartValueBox";
     this.PlayersToStartValueBox.ReadOnly = true;
     this.PlayersToStartValueBox.Size = new System.Drawing.Size(20, 13);
     this.PlayersToStartValueBox.TabIndex = 10;
     this.PlayersToStartValueBox.Text = "2";
     //
     // RoundsPerMapBox
     //
     this.RoundsPerMapBox.Location = new System.Drawing.Point(242, 147);
     this.RoundsPerMapBox.Maximum = new decimal(new int[] {
     999,
     0,
     0,
     0});
     this.RoundsPerMapBox.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.RoundsPerMapBox.Name = "RoundsPerMapBox";
     this.RoundsPerMapBox.Size = new System.Drawing.Size(50, 20);
     this.RoundsPerMapBox.TabIndex = 20;
     this.RoundsPerMapBox.Value = new decimal(new int[] {
     3,
     0,
     0,
     0});
     //
     // GamespyPortBox
     //
     this.GamespyPortBox.Location = new System.Drawing.Point(232, 115);
     this.GamespyPortBox.Maximum = new decimal(new int[] {
     65535,
     0,
     0,
     0});
     this.GamespyPortBox.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.GamespyPortBox.Name = "GamespyPortBox";
     this.GamespyPortBox.Size = new System.Drawing.Size(60, 20);
     this.GamespyPortBox.TabIndex = 19;
     this.GamespyPortBox.Value = new decimal(new int[] {
     29900,
     0,
     0,
     0});
     //
     // ServerPortBox
     //
     this.ServerPortBox.Location = new System.Drawing.Point(71, 115);
     this.ServerPortBox.Maximum = new decimal(new int[] {
     65535,
     0,
     0,
     0});
     this.ServerPortBox.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.ServerPortBox.Name = "ServerPortBox";
     this.ServerPortBox.Size = new System.Drawing.Size(60, 20);
     this.ServerPortBox.TabIndex = 18;
     this.ServerPortBox.Value = new decimal(new int[] {
     16567,
     0,
     0,
     0});
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.ServerWelcomeBox);
     this.groupBox2.Location = new System.Drawing.Point(301, 20);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(283, 116);
     this.groupBox2.TabIndex = 15;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Server Welcome Message";
     //
     // ServerWelcomeBox
     //
     this.ServerWelcomeBox.Location = new System.Drawing.Point(9, 18);
     this.ServerWelcomeBox.Multiline = true;
     this.ServerWelcomeBox.Name = "ServerWelcomeBox";
     this.ServerWelcomeBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.ServerWelcomeBox.Size = new System.Drawing.Size(266, 91);
     this.ServerWelcomeBox.TabIndex = 0;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(154, 117);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(76, 13);
     this.label6.TabIndex = 12;
     this.label6.Text = "Gamespy Port:";
     this.Tipsy.SetToolTip(this.label6, resources.GetString("label6.ToolTip"));
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(6, 117);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(63, 13);
     this.label5.TabIndex = 11;
     this.label5.Text = "Server Port:";
     this.Tipsy.SetToolTip(this.label5, "This setting allows you to customize the port used for gameplay network traffic.");
     //
     // ServerPasswordBox
     //
     this.ServerPasswordBox.Location = new System.Drawing.Point(82, 54);
     this.ServerPasswordBox.Name = "ServerPasswordBox";
     this.ServerPasswordBox.Size = new System.Drawing.Size(210, 20);
     this.ServerPasswordBox.TabIndex = 7;
     //
     // ServerNameBox
     //
     this.ServerNameBox.Location = new System.Drawing.Point(82, 28);
     this.ServerNameBox.Name = "ServerNameBox";
     this.ServerNameBox.Size = new System.Drawing.Size(210, 20);
     this.ServerNameBox.TabIndex = 6;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(152, 149);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(90, 13);
     this.label3.TabIndex = 4;
     this.label3.Text = "Rounds Per Map:";
     this.Tipsy.SetToolTip(this.label3, "Set the number of rounds to complete before the map automatically changes to the " +
             "next on the list.");
     //
     // EnablePublicServerBox
     //
     this.EnablePublicServerBox.AutoSize = true;
     this.EnablePublicServerBox.Location = new System.Drawing.Point(10, 148);
     this.EnablePublicServerBox.Name = "EnablePublicServerBox";
     this.EnablePublicServerBox.Size = new System.Drawing.Size(125, 17);
     this.EnablePublicServerBox.TabIndex = 3;
     this.EnablePublicServerBox.Text = "Enable Public Server";
     this.Tipsy.SetToolTip(this.EnablePublicServerBox, "Set this to report your server to the Internet server browser list.");
     this.EnablePublicServerBox.UseVisualStyleBackColor = true;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(6, 56);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(56, 13);
     this.label2.TabIndex = 1;
     this.label2.Text = "Password:"******"If you set a password, players will need to enter it before connecting to your se" +
             "rver.");
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(6, 31);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(72, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Server Name:";
     this.Tipsy.SetToolTip(this.label1, "This is the name your server will be listed by in the Internet or LAN server brow" +
             "ser.");
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.label4);
     this.groupBox3.Controls.Add(this.groupBox21);
     this.groupBox3.Controls.Add(this.groupBox20);
     this.groupBox3.Controls.Add(this.groupBox19);
     this.groupBox3.Controls.Add(this.groupBox18);
     this.groupBox3.Controls.Add(this.groupBox17);
     this.groupBox3.Controls.Add(this.groupBox16);
     this.groupBox3.Controls.Add(this.groupBox15);
     this.groupBox3.Controls.Add(this.groupBox14);
     this.groupBox3.Location = new System.Drawing.Point(5, 5);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(594, 337);
     this.groupBox3.TabIndex = 2;
     this.groupBox3.TabStop = false;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(202, 22);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(186, 13);
     this.label4.TabIndex = 34;
     this.label4.Text = "Slider values are displayed in seconds";
     //
     // groupBox21
     //
     this.groupBox21.Controls.Add(this.TimeB4RestartMapBar);
     this.groupBox21.Controls.Add(this.TimeB4RestartMapBox);
     this.groupBox21.Location = new System.Drawing.Point(299, 244);
     this.groupBox21.Name = "groupBox21";
     this.groupBox21.Size = new System.Drawing.Size(283, 54);
     this.groupBox21.TabIndex = 33;
     this.groupBox21.TabStop = false;
     this.groupBox21.Text = "Time Before Restart Map";
     //
     // TimeB4RestartMapBar
     //
     this.TimeB4RestartMapBar.AutoSize = false;
     this.TimeB4RestartMapBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.TimeB4RestartMapBar.LargeChange = 15;
     this.TimeB4RestartMapBar.Location = new System.Drawing.Point(6, 19);
     this.TimeB4RestartMapBar.Maximum = 60;
     this.TimeB4RestartMapBar.Name = "TimeB4RestartMapBar";
     this.TimeB4RestartMapBar.Size = new System.Drawing.Size(240, 29);
     this.TimeB4RestartMapBar.SmallChange = 5;
     this.TimeB4RestartMapBar.TabIndex = 11;
     this.TimeB4RestartMapBar.TickFrequency = 5;
     this.Tipsy.SetToolTip(this.TimeB4RestartMapBar, "This is the number of seconds before a round starts once the minimun number of pl" +
             "ayers has joined.");
     this.TimeB4RestartMapBar.Value = 15;
     this.TimeB4RestartMapBar.ValueChanged += new System.EventHandler(this.TimeB4RestartMapBar_ValueChanged);
     //
     // TimeB4RestartMapBox
     //
     this.TimeB4RestartMapBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.TimeB4RestartMapBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.TimeB4RestartMapBox.Location = new System.Drawing.Point(252, 19);
     this.TimeB4RestartMapBox.Name = "TimeB4RestartMapBox";
     this.TimeB4RestartMapBox.ReadOnly = true;
     this.TimeB4RestartMapBox.Size = new System.Drawing.Size(20, 13);
     this.TimeB4RestartMapBox.TabIndex = 13;
     this.TimeB4RestartMapBox.Text = "15";
     //
     // groupBox20
     //
     this.groupBox20.Controls.Add(this.NotEnoughPlayersBar);
     this.groupBox20.Controls.Add(this.NotEnoughPlayersBox);
     this.groupBox20.Location = new System.Drawing.Point(10, 244);
     this.groupBox20.Name = "groupBox20";
     this.groupBox20.Size = new System.Drawing.Size(283, 54);
     this.groupBox20.TabIndex = 32;
     this.groupBox20.TabStop = false;
     this.groupBox20.Text = "Not Enough Players Start Delay";
     //
     // NotEnoughPlayersBar
     //
     this.NotEnoughPlayersBar.AutoSize = false;
     this.NotEnoughPlayersBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.NotEnoughPlayersBar.LargeChange = 15;
     this.NotEnoughPlayersBar.Location = new System.Drawing.Point(6, 19);
     this.NotEnoughPlayersBar.Maximum = 60;
     this.NotEnoughPlayersBar.Name = "NotEnoughPlayersBar";
     this.NotEnoughPlayersBar.Size = new System.Drawing.Size(240, 29);
     this.NotEnoughPlayersBar.SmallChange = 5;
     this.NotEnoughPlayersBar.TabIndex = 11;
     this.NotEnoughPlayersBar.TickFrequency = 5;
     this.Tipsy.SetToolTip(this.NotEnoughPlayersBar, resources.GetString("NotEnoughPlayersBar.ToolTip"));
     this.NotEnoughPlayersBar.Value = 15;
     this.NotEnoughPlayersBar.ValueChanged += new System.EventHandler(this.NotEnoughPlayersBar_ValueChanged);
     //
     // NotEnoughPlayersBox
     //
     this.NotEnoughPlayersBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.NotEnoughPlayersBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.NotEnoughPlayersBox.Location = new System.Drawing.Point(252, 19);
     this.NotEnoughPlayersBox.Name = "NotEnoughPlayersBox";
     this.NotEnoughPlayersBox.ReadOnly = true;
     this.NotEnoughPlayersBox.Size = new System.Drawing.Size(20, 13);
     this.NotEnoughPlayersBox.TabIndex = 13;
     this.NotEnoughPlayersBox.Text = "15";
     //
     // groupBox19
     //
     this.groupBox19.Controls.Add(this.EORBar);
     this.groupBox19.Controls.Add(this.EORBox);
     this.groupBox19.Location = new System.Drawing.Point(299, 182);
     this.groupBox19.Name = "groupBox19";
     this.groupBox19.Size = new System.Drawing.Size(283, 54);
     this.groupBox19.TabIndex = 31;
     this.groupBox19.TabStop = false;
     this.groupBox19.Text = "End of Round Delay";
     //
     // EORBar
     //
     this.EORBar.AutoSize = false;
     this.EORBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.EORBar.LargeChange = 15;
     this.EORBar.Location = new System.Drawing.Point(6, 19);
     this.EORBar.Maximum = 120;
     this.EORBar.Name = "EORBar";
     this.EORBar.Size = new System.Drawing.Size(240, 29);
     this.EORBar.SmallChange = 5;
     this.EORBar.TabIndex = 11;
     this.EORBar.TickFrequency = 5;
     this.Tipsy.SetToolTip(this.EORBar, "This is the amount of time in seconds that the message stating which team won is " +
             "displayed \r\nat the end of the round.");
     this.EORBar.Value = 45;
     this.EORBar.ValueChanged += new System.EventHandler(this.EORBar_ValueChanged);
     //
     // EORBox
     //
     this.EORBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.EORBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.EORBox.Location = new System.Drawing.Point(252, 19);
     this.EORBox.Name = "EORBox";
     this.EORBox.ReadOnly = true;
     this.EORBox.Size = new System.Drawing.Size(20, 13);
     this.EORBox.TabIndex = 13;
     this.EORBox.Text = "45";
     //
     // groupBox18
     //
     this.groupBox18.Controls.Add(this.EndDelayBar);
     this.groupBox18.Controls.Add(this.EndDelayBox);
     this.groupBox18.Location = new System.Drawing.Point(299, 118);
     this.groupBox18.Name = "groupBox18";
     this.groupBox18.Size = new System.Drawing.Size(283, 54);
     this.groupBox18.TabIndex = 30;
     this.groupBox18.TabStop = false;
     this.groupBox18.Text = "End Delay";
     //
     // EndDelayBar
     //
     this.EndDelayBar.AutoSize = false;
     this.EndDelayBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.EndDelayBar.LargeChange = 15;
     this.EndDelayBar.Location = new System.Drawing.Point(6, 19);
     this.EndDelayBar.Maximum = 60;
     this.EndDelayBar.Name = "EndDelayBar";
     this.EndDelayBar.Size = new System.Drawing.Size(240, 29);
     this.EndDelayBar.SmallChange = 5;
     this.EndDelayBar.TabIndex = 11;
     this.EndDelayBar.TickFrequency = 5;
     this.Tipsy.SetToolTip(this.EndDelayBar, "This is the amount of time in seconds between when a round ends and a new round b" +
             "egins.");
     this.EndDelayBar.Value = 15;
     this.EndDelayBar.ValueChanged += new System.EventHandler(this.EndDelayBar_ValueChanged);
     //
     // EndDelayBox
     //
     this.EndDelayBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.EndDelayBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.EndDelayBox.Location = new System.Drawing.Point(252, 19);
     this.EndDelayBox.Name = "EndDelayBox";
     this.EndDelayBox.ReadOnly = true;
     this.EndDelayBox.Size = new System.Drawing.Size(20, 13);
     this.EndDelayBox.TabIndex = 13;
     this.EndDelayBox.Text = "15";
     //
     // groupBox17
     //
     this.groupBox17.Controls.Add(this.StartDelayBar);
     this.groupBox17.Controls.Add(this.StartDelayBox);
     this.groupBox17.Location = new System.Drawing.Point(299, 54);
     this.groupBox17.Name = "groupBox17";
     this.groupBox17.Size = new System.Drawing.Size(283, 54);
     this.groupBox17.TabIndex = 29;
     this.groupBox17.TabStop = false;
     this.groupBox17.Text = "Start Delay";
     //
     // StartDelayBar
     //
     this.StartDelayBar.AutoSize = false;
     this.StartDelayBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.StartDelayBar.LargeChange = 15;
     this.StartDelayBar.Location = new System.Drawing.Point(6, 19);
     this.StartDelayBar.Maximum = 60;
     this.StartDelayBar.Name = "StartDelayBar";
     this.StartDelayBar.Size = new System.Drawing.Size(240, 29);
     this.StartDelayBar.SmallChange = 5;
     this.StartDelayBar.TabIndex = 11;
     this.StartDelayBar.TickFrequency = 5;
     this.Tipsy.SetToolTip(this.StartDelayBar, "This is the amount of time in seconds players are kept waiting for the game to st" +
             "art, \r\nonce the minimum number of players has been reached.");
     this.StartDelayBar.Value = 15;
     this.StartDelayBar.ValueChanged += new System.EventHandler(this.StartDelayBar_ValueChanged);
     //
     // StartDelayBox
     //
     this.StartDelayBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.StartDelayBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.StartDelayBox.Location = new System.Drawing.Point(252, 19);
     this.StartDelayBox.Name = "StartDelayBox";
     this.StartDelayBox.ReadOnly = true;
     this.StartDelayBox.Size = new System.Drawing.Size(20, 13);
     this.StartDelayBox.TabIndex = 13;
     this.StartDelayBox.Text = "15";
     //
     // groupBox16
     //
     this.groupBox16.Controls.Add(this.ManDownBar);
     this.groupBox16.Controls.Add(this.ManDownBox);
     this.groupBox16.Location = new System.Drawing.Point(10, 182);
     this.groupBox16.Name = "groupBox16";
     this.groupBox16.Size = new System.Drawing.Size(283, 54);
     this.groupBox16.TabIndex = 28;
     this.groupBox16.TabStop = false;
     this.groupBox16.Text = "Man Down Time";
     //
     // ManDownBar
     //
     this.ManDownBar.AutoSize = false;
     this.ManDownBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.ManDownBar.LargeChange = 15;
     this.ManDownBar.Location = new System.Drawing.Point(6, 19);
     this.ManDownBar.Maximum = 60;
     this.ManDownBar.Name = "ManDownBar";
     this.ManDownBar.Size = new System.Drawing.Size(240, 29);
     this.ManDownBar.SmallChange = 5;
     this.ManDownBar.TabIndex = 11;
     this.ManDownBar.TickFrequency = 5;
     this.Tipsy.SetToolTip(this.ManDownBar, "This is the amount of time players will wait to spawn in the game again after bei" +
             "ng incapacitated \r\nand able to be revived by a medic.");
     this.ManDownBar.Value = 15;
     this.ManDownBar.ValueChanged += new System.EventHandler(this.ManDownBar_ValueChanged);
     //
     // ManDownBox
     //
     this.ManDownBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.ManDownBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.ManDownBox.Location = new System.Drawing.Point(252, 19);
     this.ManDownBox.Name = "ManDownBox";
     this.ManDownBox.ReadOnly = true;
     this.ManDownBox.Size = new System.Drawing.Size(20, 13);
     this.ManDownBox.TabIndex = 13;
     this.ManDownBox.Text = "15";
     //
     // groupBox15
     //
     this.groupBox15.Controls.Add(this.SpawnTimeBar);
     this.groupBox15.Controls.Add(this.SpawnTimeBox);
     this.groupBox15.Location = new System.Drawing.Point(10, 118);
     this.groupBox15.Name = "groupBox15";
     this.groupBox15.Size = new System.Drawing.Size(283, 54);
     this.groupBox15.TabIndex = 27;
     this.groupBox15.TabStop = false;
     this.groupBox15.Text = "Spawn Time";
     //
     // SpawnTimeBar
     //
     this.SpawnTimeBar.AutoSize = false;
     this.SpawnTimeBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.SpawnTimeBar.LargeChange = 15;
     this.SpawnTimeBar.Location = new System.Drawing.Point(6, 19);
     this.SpawnTimeBar.Maximum = 60;
     this.SpawnTimeBar.Name = "SpawnTimeBar";
     this.SpawnTimeBar.Size = new System.Drawing.Size(240, 29);
     this.SpawnTimeBar.SmallChange = 5;
     this.SpawnTimeBar.TabIndex = 11;
     this.SpawnTimeBar.TickFrequency = 5;
     this.Tipsy.SetToolTip(this.SpawnTimeBar, "This is the amount of time in seconds that players will wait to spawn in the game" +
             " again after being killed.");
     this.SpawnTimeBar.Value = 15;
     this.SpawnTimeBar.ValueChanged += new System.EventHandler(this.SpawnTimeBar_ValueChanged);
     //
     // SpawnTimeBox
     //
     this.SpawnTimeBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.SpawnTimeBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.SpawnTimeBox.Location = new System.Drawing.Point(252, 19);
     this.SpawnTimeBox.Name = "SpawnTimeBox";
     this.SpawnTimeBox.ReadOnly = true;
     this.SpawnTimeBox.Size = new System.Drawing.Size(20, 13);
     this.SpawnTimeBox.TabIndex = 13;
     this.SpawnTimeBox.Text = "15";
     //
     // groupBox14
     //
     this.groupBox14.Controls.Add(this.TimeLimitBar);
     this.groupBox14.Controls.Add(this.TimeLimitBox);
     this.groupBox14.Location = new System.Drawing.Point(10, 54);
     this.groupBox14.Name = "groupBox14";
     this.groupBox14.Size = new System.Drawing.Size(283, 54);
     this.groupBox14.TabIndex = 26;
     this.groupBox14.TabStop = false;
     this.groupBox14.Text = "Time Limit";
     //
     // TimeLimitBar
     //
     this.TimeLimitBar.AutoSize = false;
     this.TimeLimitBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.TimeLimitBar.LargeChange = 60;
     this.TimeLimitBar.Location = new System.Drawing.Point(6, 19);
     this.TimeLimitBar.Maximum = 7200;
     this.TimeLimitBar.Name = "TimeLimitBar";
     this.TimeLimitBar.Size = new System.Drawing.Size(240, 29);
     this.TimeLimitBar.SmallChange = 10;
     this.TimeLimitBar.TabIndex = 11;
     this.TimeLimitBar.TickFrequency = 120;
     this.TimeLimitBar.TickStyle = System.Windows.Forms.TickStyle.None;
     this.Tipsy.SetToolTip(this.TimeLimitBar, "After this amount of time is reached, the round will end.");
     this.TimeLimitBar.ValueChanged += new System.EventHandler(this.TimeLimitBar_ValueChanged);
     //
     // TimeLimitBox
     //
     this.TimeLimitBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.TimeLimitBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.TimeLimitBox.Location = new System.Drawing.Point(252, 19);
     this.TimeLimitBox.Name = "TimeLimitBox";
     this.TimeLimitBox.ReadOnly = true;
     this.TimeLimitBox.Size = new System.Drawing.Size(24, 13);
     this.TimeLimitBox.TabIndex = 13;
     this.TimeLimitBox.Text = "0";
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.VoipPasswordBox);
     this.groupBox4.Controls.Add(this.label12);
     this.groupBox4.Controls.Add(this.RemoteVoipIpBox);
     this.groupBox4.Controls.Add(this.label11);
     this.groupBox4.Controls.Add(this.EnableRemoteVoip);
     this.groupBox4.Controls.Add(this.VoipServerPort);
     this.groupBox4.Controls.Add(this.label10);
     this.groupBox4.Controls.Add(this.VoipBF2ServerPort);
     this.groupBox4.Controls.Add(this.VoipBF2ClientPort);
     this.groupBox4.Controls.Add(this.VoipQualityBox);
     this.groupBox4.Controls.Add(this.label16);
     this.groupBox4.Controls.Add(this.VoipQualityBar);
     this.groupBox4.Controls.Add(this.label15);
     this.groupBox4.Controls.Add(this.label14);
     this.groupBox4.Controls.Add(this.EnableVoip);
     this.groupBox4.Location = new System.Drawing.Point(13, 16);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(280, 299);
     this.groupBox4.TabIndex = 3;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "VOIP Settings";
     //
     // VoipPasswordBox
     //
     this.VoipPasswordBox.Enabled = false;
     this.VoipPasswordBox.Location = new System.Drawing.Point(101, 92);
     this.VoipPasswordBox.Name = "VoipPasswordBox";
     this.VoipPasswordBox.Size = new System.Drawing.Size(150, 20);
     this.VoipPasswordBox.TabIndex = 31;
     this.Tipsy.SetToolTip(this.VoipPasswordBox, "When using an external VOIP server, this should be set to the password associated" +
             " with the VOIP Server port from the VOIP server\'s configuration. ");
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(11, 95);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(80, 13);
     this.label12.TabIndex = 30;
     this.label12.Text = "Voip Password:"******"RemoteVoipIpBox";
     this.RemoteVoipIpBox.Size = new System.Drawing.Size(150, 20);
     this.RemoteVoipIpBox.TabIndex = 29;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(11, 67);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(84, 13);
     this.label11.TabIndex = 28;
     this.label11.Text = "Remote Voip IP:";
     this.Tipsy.SetToolTip(this.label11, "When using an external VOIP server, this should be set with it\'s IP address.");
     //
     // EnableRemoteVoip
     //
     this.EnableRemoteVoip.AutoSize = true;
     this.EnableRemoteVoip.Location = new System.Drawing.Point(127, 34);
     this.EnableRemoteVoip.Name = "EnableRemoteVoip";
     this.EnableRemoteVoip.Size = new System.Drawing.Size(127, 17);
     this.EnableRemoteVoip.TabIndex = 27;
     this.EnableRemoteVoip.Text = "Enable Remote VOIP";
     this.Tipsy.SetToolTip(this.EnableRemoteVoip, "Enable the use of an external BF2 VOIP Server, thereby disabling the integrated V" +
             "OIP server.");
     this.EnableRemoteVoip.UseVisualStyleBackColor = true;
     this.EnableRemoteVoip.CheckedChanged += new System.EventHandler(this.EnableRemoteVoip_CheckedChanged);
     //
     // VoipServerPort
     //
     this.VoipServerPort.Enabled = false;
     this.VoipServerPort.Location = new System.Drawing.Point(101, 183);
     this.VoipServerPort.Maximum = new decimal(new int[] {
     65535,
     0,
     0,
     0});
     this.VoipServerPort.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.VoipServerPort.Name = "VoipServerPort";
     this.VoipServerPort.Size = new System.Drawing.Size(60, 20);
     this.VoipServerPort.TabIndex = 26;
     this.Tipsy.SetToolTip(this.VoipServerPort, resources.GetString("VoipServerPort.ToolTip"));
     this.VoipServerPort.Value = new decimal(new int[] {
     55125,
     0,
     0,
     0});
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(11, 185);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(87, 13);
     this.label10.TabIndex = 25;
     this.label10.Text = "Voip Server Port:";
     //
     // VoipBF2ServerPort
     //
     this.VoipBF2ServerPort.Location = new System.Drawing.Point(101, 156);
     this.VoipBF2ServerPort.Maximum = new decimal(new int[] {
     65535,
     0,
     0,
     0});
     this.VoipBF2ServerPort.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.VoipBF2ServerPort.Name = "VoipBF2ServerPort";
     this.VoipBF2ServerPort.Size = new System.Drawing.Size(60, 20);
     this.VoipBF2ServerPort.TabIndex = 24;
     this.Tipsy.SetToolTip(this.VoipBF2ServerPort, "The BF2 server uses this port to communicate with the VOIP server.");
     this.VoipBF2ServerPort.Value = new decimal(new int[] {
     55124,
     0,
     0,
     0});
     //
     // VoipBF2ClientPort
     //
     this.VoipBF2ClientPort.Location = new System.Drawing.Point(101, 129);
     this.VoipBF2ClientPort.Maximum = new decimal(new int[] {
     65535,
     0,
     0,
     0});
     this.VoipBF2ClientPort.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.VoipBF2ClientPort.Name = "VoipBF2ClientPort";
     this.VoipBF2ClientPort.Size = new System.Drawing.Size(60, 20);
     this.VoipBF2ClientPort.TabIndex = 23;
     this.Tipsy.SetToolTip(this.VoipBF2ClientPort, "This is the port the BF2 client uses for communication with the voip server.");
     this.VoipBF2ClientPort.Value = new decimal(new int[] {
     55123,
     0,
     0,
     0});
     //
     // VoipQualityBox
     //
     this.VoipQualityBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.VoipQualityBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.VoipQualityBox.Location = new System.Drawing.Point(251, 250);
     this.VoipQualityBox.Name = "VoipQualityBox";
     this.VoipQualityBox.ReadOnly = true;
     this.VoipQualityBox.Size = new System.Drawing.Size(20, 13);
     this.VoipQualityBox.TabIndex = 22;
     this.VoipQualityBox.Text = "1";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(59, 234);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(163, 13);
     this.label16.TabIndex = 21;
     this.label16.Text = "Voip Quality (1 = Worst, 5 = Best)";
     this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.Tipsy.SetToolTip(this.label16, "Use this to adjust the quality of VOIP audio. Raising the quality level will incr" +
             "ease the amount of bandwidth your server uses. Recommended settings are 5 for LA" +
             "N and 3 for Internet.");
     //
     // VoipQualityBar
     //
     this.VoipQualityBar.AutoSize = false;
     this.VoipQualityBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.VoipQualityBar.Location = new System.Drawing.Point(9, 250);
     this.VoipQualityBar.Maximum = 5;
     this.VoipQualityBar.Minimum = 1;
     this.VoipQualityBar.Name = "VoipQualityBar";
     this.VoipQualityBar.Size = new System.Drawing.Size(240, 28);
     this.VoipQualityBar.TabIndex = 20;
     this.VoipQualityBar.Value = 1;
     this.VoipQualityBar.ValueChanged += new System.EventHandler(this.VoipQualityBar_ValueChanged);
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(11, 158);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(85, 13);
     this.label15.TabIndex = 15;
     this.label15.Text = "BF2 Server Port:";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(11, 131);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(80, 13);
     this.label14.TabIndex = 5;
     this.label14.Text = "BF2 Client Port:";
     //
     // EnableVoip
     //
     this.EnableVoip.AutoSize = true;
     this.EnableVoip.Location = new System.Drawing.Point(27, 34);
     this.EnableVoip.Name = "EnableVoip";
     this.EnableVoip.Size = new System.Drawing.Size(87, 17);
     this.EnableVoip.TabIndex = 4;
     this.EnableVoip.Text = "Enable VOIP";
     this.Tipsy.SetToolTip(this.EnableVoip, "Enable the use of VOIP for squad communication.");
     this.EnableVoip.UseVisualStyleBackColor = true;
     this.EnableVoip.CheckedChanged += new System.EventHandler(this.EnableVoip_CheckedChanged);
     //
     // groupBox6
     //
     this.groupBox6.Controls.Add(this.label8);
     this.groupBox6.Controls.Add(this.TksBeforeKickBox);
     this.groupBox6.Controls.Add(this.PunishDefaultBox);
     this.groupBox6.Controls.Add(this.FriendlyFireBox);
     this.groupBox6.Controls.Add(this.PunishTeamKillsBox);
     this.groupBox6.Controls.Add(this.groupBox25);
     this.groupBox6.Controls.Add(this.groupBox24);
     this.groupBox6.Controls.Add(this.groupBox23);
     this.groupBox6.Controls.Add(this.groupBox22);
     this.groupBox6.Location = new System.Drawing.Point(5, 5);
     this.groupBox6.Name = "groupBox6";
     this.groupBox6.Size = new System.Drawing.Size(594, 337);
     this.groupBox6.TabIndex = 5;
     this.groupBox6.TabStop = false;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(297, 58);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(111, 13);
     this.label8.TabIndex = 47;
     this.label8.Text = "Teamkills before Kick:";
     this.Tipsy.SetToolTip(this.label8, "When punishing is enabled, this sets the number of punished teamkills required to" +
             " be kicked from the server.");
     //
     // TksBeforeKickBox
     //
     this.TksBeforeKickBox.Enabled = false;
     this.TksBeforeKickBox.Location = new System.Drawing.Point(408, 56);
     this.TksBeforeKickBox.Maximum = new decimal(new int[] {
     99,
     0,
     0,
     0});
     this.TksBeforeKickBox.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.TksBeforeKickBox.Name = "TksBeforeKickBox";
     this.TksBeforeKickBox.Size = new System.Drawing.Size(40, 20);
     this.TksBeforeKickBox.TabIndex = 46;
     this.TksBeforeKickBox.Value = new decimal(new int[] {
     3,
     0,
     0,
     0});
     //
     // PunishDefaultBox
     //
     this.PunishDefaultBox.AutoSize = true;
     this.PunishDefaultBox.Enabled = false;
     this.PunishDefaultBox.Location = new System.Drawing.Point(147, 57);
     this.PunishDefaultBox.Name = "PunishDefaultBox";
     this.PunishDefaultBox.Size = new System.Drawing.Size(110, 17);
     this.PunishDefaultBox.TabIndex = 45;
     this.PunishDefaultBox.Text = "Punish By Default";
     this.Tipsy.SetToolTip(this.PunishDefaultBox, "This sets whether or not a player is automatically punished for a teamkill.");
     this.PunishDefaultBox.UseVisualStyleBackColor = true;
     //
     // FriendlyFireBox
     //
     this.FriendlyFireBox.AutoSize = true;
     this.FriendlyFireBox.Location = new System.Drawing.Point(297, 34);
     this.FriendlyFireBox.Name = "FriendlyFireBox";
     this.FriendlyFireBox.Size = new System.Drawing.Size(138, 17);
     this.FriendlyFireBox.TabIndex = 44;
     this.FriendlyFireBox.Text = "Friendly Fire With Mines";
     this.Tipsy.SetToolTip(this.FriendlyFireBox, "Turn this setting off to prevent friendly mines and claymores from detonating whe" +
             "n teammates go over them.");
     this.FriendlyFireBox.UseVisualStyleBackColor = true;
     //
     // PunishTeamKillsBox
     //
     this.PunishTeamKillsBox.AutoSize = true;
     this.PunishTeamKillsBox.Location = new System.Drawing.Point(147, 34);
     this.PunishTeamKillsBox.Name = "PunishTeamKillsBox";
     this.PunishTeamKillsBox.Size = new System.Drawing.Size(106, 17);
     this.PunishTeamKillsBox.TabIndex = 43;
     this.PunishTeamKillsBox.Text = "Punish TeamKills";
     this.Tipsy.SetToolTip(this.PunishTeamKillsBox, "Enable the system through which players can punish teamkillers in an attempt to k" +
             "ick them from the server.");
     this.PunishTeamKillsBox.UseVisualStyleBackColor = true;
     this.PunishTeamKillsBox.CheckedChanged += new System.EventHandler(this.PunishTeamKillsBox_CheckedChanged);
     //
     // groupBox25
     //
     this.groupBox25.Controls.Add(this.VehicleSplashFFBox);
     this.groupBox25.Controls.Add(this.VehicleSplashFFBar);
     this.groupBox25.Location = new System.Drawing.Point(300, 159);
     this.groupBox25.Name = "groupBox25";
     this.groupBox25.Size = new System.Drawing.Size(283, 54);
     this.groupBox25.TabIndex = 37;
     this.groupBox25.TabStop = false;
     this.groupBox25.Text = "Vehicle Friendly Splash Damage";
     //
     // VehicleSplashFFBox
     //
     this.VehicleSplashFFBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.VehicleSplashFFBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.VehicleSplashFFBox.Location = new System.Drawing.Point(250, 19);
     this.VehicleSplashFFBox.Name = "VehicleSplashFFBox";
     this.VehicleSplashFFBox.ReadOnly = true;
     this.VehicleSplashFFBox.Size = new System.Drawing.Size(26, 13);
     this.VehicleSplashFFBox.TabIndex = 13;
     this.VehicleSplashFFBox.Text = "100%";
     //
     // VehicleSplashFFBar
     //
     this.VehicleSplashFFBar.AutoSize = false;
     this.VehicleSplashFFBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.VehicleSplashFFBar.LargeChange = 25;
     this.VehicleSplashFFBar.Location = new System.Drawing.Point(6, 19);
     this.VehicleSplashFFBar.Maximum = 100;
     this.VehicleSplashFFBar.Name = "VehicleSplashFFBar";
     this.VehicleSplashFFBar.Size = new System.Drawing.Size(240, 29);
     this.VehicleSplashFFBar.SmallChange = 5;
     this.VehicleSplashFFBar.TabIndex = 29;
     this.VehicleSplashFFBar.TickFrequency = 25;
     this.VehicleSplashFFBar.Value = 100;
     this.VehicleSplashFFBar.ValueChanged += new System.EventHandler(this.VehicleSplashFFBar_ValueChanged);
     //
     // groupBox24
     //
     this.groupBox24.Controls.Add(this.SoldierSplashFFBox);
     this.groupBox24.Controls.Add(this.SoldierSplashFFBar);
     this.groupBox24.Location = new System.Drawing.Point(11, 159);
     this.groupBox24.Name = "groupBox24";
     this.groupBox24.Size = new System.Drawing.Size(283, 54);
     this.groupBox24.TabIndex = 36;
     this.groupBox24.TabStop = false;
     this.groupBox24.Text = "Soldier Friendly Splash Damage";
     //
     // SoldierSplashFFBox
     //
     this.SoldierSplashFFBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.SoldierSplashFFBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.SoldierSplashFFBox.Location = new System.Drawing.Point(250, 19);
     this.SoldierSplashFFBox.Name = "SoldierSplashFFBox";
     this.SoldierSplashFFBox.ReadOnly = true;
     this.SoldierSplashFFBox.Size = new System.Drawing.Size(26, 13);
     this.SoldierSplashFFBox.TabIndex = 13;
     this.SoldierSplashFFBox.Text = "100%";
     //
     // SoldierSplashFFBar
     //
     this.SoldierSplashFFBar.AutoSize = false;
     this.SoldierSplashFFBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.SoldierSplashFFBar.LargeChange = 25;
     this.SoldierSplashFFBar.Location = new System.Drawing.Point(6, 19);
     this.SoldierSplashFFBar.Maximum = 100;
     this.SoldierSplashFFBar.Name = "SoldierSplashFFBar";
     this.SoldierSplashFFBar.Size = new System.Drawing.Size(240, 29);
     this.SoldierSplashFFBar.SmallChange = 5;
     this.SoldierSplashFFBar.TabIndex = 29;
     this.SoldierSplashFFBar.TickFrequency = 25;
     this.SoldierSplashFFBar.Value = 100;
     this.SoldierSplashFFBar.ValueChanged += new System.EventHandler(this.SoldierSplashFFBar_ValueChanged);
     //
     // groupBox23
     //
     this.groupBox23.Controls.Add(this.VehicleFFBox);
     this.groupBox23.Controls.Add(this.VehicleFFBar);
     this.groupBox23.Location = new System.Drawing.Point(300, 96);
     this.groupBox23.Name = "groupBox23";
     this.groupBox23.Size = new System.Drawing.Size(283, 54);
     this.groupBox23.TabIndex = 35;
     this.groupBox23.TabStop = false;
     this.groupBox23.Text = "Vehicle Friendly Fire Damage";
     //
     // VehicleFFBox
     //
     this.VehicleFFBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.VehicleFFBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.VehicleFFBox.Location = new System.Drawing.Point(250, 19);
     this.VehicleFFBox.Name = "VehicleFFBox";
     this.VehicleFFBox.ReadOnly = true;
     this.VehicleFFBox.Size = new System.Drawing.Size(26, 13);
     this.VehicleFFBox.TabIndex = 13;
     this.VehicleFFBox.Text = "100%";
     //
     // VehicleFFBar
     //
     this.VehicleFFBar.AutoSize = false;
     this.VehicleFFBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.VehicleFFBar.LargeChange = 25;
     this.VehicleFFBar.Location = new System.Drawing.Point(6, 19);
     this.VehicleFFBar.Maximum = 100;
     this.VehicleFFBar.Name = "VehicleFFBar";
     this.VehicleFFBar.Size = new System.Drawing.Size(240, 29);
     this.VehicleFFBar.SmallChange = 5;
     this.VehicleFFBar.TabIndex = 29;
     this.VehicleFFBar.TickFrequency = 25;
     this.VehicleFFBar.Value = 100;
     this.VehicleFFBar.ValueChanged += new System.EventHandler(this.VehicleFFBar_ValueChanged);
     //
     // groupBox22
     //
     this.groupBox22.Controls.Add(this.SoldierFFBox);
     this.groupBox22.Controls.Add(this.SoldierFFBar);
     this.groupBox22.Location = new System.Drawing.Point(11, 96);
     this.groupBox22.Name = "groupBox22";
     this.groupBox22.Size = new System.Drawing.Size(283, 54);
     this.groupBox22.TabIndex = 34;
     this.groupBox22.TabStop = false;
     this.groupBox22.Text = "Soldier Friendly Fire Damage";
     //
     // SoldierFFBox
     //
     this.SoldierFFBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.SoldierFFBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.SoldierFFBox.Location = new System.Drawing.Point(250, 19);
     this.SoldierFFBox.Name = "SoldierFFBox";
     this.SoldierFFBox.ReadOnly = true;
     this.SoldierFFBox.Size = new System.Drawing.Size(26, 13);
     this.SoldierFFBox.TabIndex = 13;
     this.SoldierFFBox.Text = "100%";
     //
     // SoldierFFBar
     //
     this.SoldierFFBar.AutoSize = false;
     this.SoldierFFBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.SoldierFFBar.LargeChange = 25;
     this.SoldierFFBar.Location = new System.Drawing.Point(6, 19);
     this.SoldierFFBar.Maximum = 100;
     this.SoldierFFBar.Name = "SoldierFFBar";
     this.SoldierFFBar.Size = new System.Drawing.Size(240, 29);
     this.SoldierFFBar.SmallChange = 5;
     this.SoldierFFBar.TabIndex = 29;
     this.SoldierFFBar.TickFrequency = 25;
     this.SoldierFFBar.Value = 100;
     this.SoldierFFBar.ValueChanged += new System.EventHandler(this.SoldierFFBar_ValueChanged);
     //
     // Cancel
     //
     this.Cancel.Location = new System.Drawing.Point(198, 395);
     this.Cancel.Name = "Cancel";
     this.Cancel.Size = new System.Drawing.Size(100, 30);
     this.Cancel.TabIndex = 7;
     this.Cancel.Text = "Cancel";
     this.Cancel.UseVisualStyleBackColor = true;
     this.Cancel.Click += new System.EventHandler(this.Cancel_Click);
     //
     // SaveButton
     //
     this.SaveButton.Location = new System.Drawing.Point(311, 395);
     this.SaveButton.Name = "SaveButton";
     this.SaveButton.Size = new System.Drawing.Size(100, 30);
     this.SaveButton.TabIndex = 8;
     this.SaveButton.Text = "Save and Close";
     this.SaveButton.UseVisualStyleBackColor = true;
     this.SaveButton.Click += new System.EventHandler(this.SaveButton_Click);
     //
     // groupBox8
     //
     this.groupBox8.Controls.Add(this.RadioBlockTimeBox);
     this.groupBox8.Controls.Add(this.label25);
     this.groupBox8.Controls.Add(this.RadioBlockTimeBar);
     this.groupBox8.Controls.Add(this.RadioMaxSpamBox);
     this.groupBox8.Controls.Add(this.RadioSpamIntBox);
     this.groupBox8.Controls.Add(this.label24);
     this.groupBox8.Controls.Add(this.label7);
     this.groupBox8.Controls.Add(this.AllowNoseCam);
     this.groupBox8.Controls.Add(this.HitIndicatorEnabled);
     this.groupBox8.Controls.Add(this.AllowExtViews);
     this.groupBox8.Controls.Add(this.AllowFreeCam);
     this.groupBox8.Controls.Add(this.AllowNATNagotiation);
     this.groupBox8.Location = new System.Drawing.Point(9, 10);
     this.groupBox8.Name = "groupBox8";
     this.groupBox8.Size = new System.Drawing.Size(585, 336);
     this.groupBox8.TabIndex = 9;
     this.groupBox8.TabStop = false;
     this.groupBox8.Text = "Misc";
     //
     // RadioBlockTimeBox
     //
     this.RadioBlockTimeBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.RadioBlockTimeBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.RadioBlockTimeBox.Location = new System.Drawing.Point(526, 129);
     this.RadioBlockTimeBox.Name = "RadioBlockTimeBox";
     this.RadioBlockTimeBox.ReadOnly = true;
     this.RadioBlockTimeBox.Size = new System.Drawing.Size(20, 13);
     this.RadioBlockTimeBox.TabIndex = 43;
     this.RadioBlockTimeBox.Text = "30";
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(342, 112);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(142, 13);
     this.label25.TabIndex = 42;
     this.label25.Text = "Radio Block Time (Seconds)";
     this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.Tipsy.SetToolTip(this.label25, "This is the amount of time a player will be blocked from posting any further mess" +
             "ages after violating the Radio Max Spam Count \r\nwithin the Radio Spam Interval t" +
             "ime frame");
     //
     // RadioBlockTimeBar
     //
     this.RadioBlockTimeBar.AutoSize = false;
     this.RadioBlockTimeBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.RadioBlockTimeBar.Location = new System.Drawing.Point(280, 128);
     this.RadioBlockTimeBar.Maximum = 120;
     this.RadioBlockTimeBar.Name = "RadioBlockTimeBar";
     this.RadioBlockTimeBar.Size = new System.Drawing.Size(240, 24);
     this.RadioBlockTimeBar.TabIndex = 41;
     this.RadioBlockTimeBar.TickFrequency = 15;
     this.RadioBlockTimeBar.Value = 30;
     this.RadioBlockTimeBar.ValueChanged += new System.EventHandler(this.RadioBlockTimeBar_ValueChanged);
     //
     // RadioMaxSpamBox
     //
     this.RadioMaxSpamBox.Location = new System.Drawing.Point(405, 71);
     this.RadioMaxSpamBox.Name = "RadioMaxSpamBox";
     this.RadioMaxSpamBox.Size = new System.Drawing.Size(40, 20);
     this.RadioMaxSpamBox.TabIndex = 18;
     this.RadioMaxSpamBox.Value = new decimal(new int[] {
     6,
     0,
     0,
     0});
     //
     // RadioSpamIntBox
     //
     this.RadioSpamIntBox.Location = new System.Drawing.Point(405, 47);
     this.RadioSpamIntBox.Name = "RadioSpamIntBox";
     this.RadioSpamIntBox.Size = new System.Drawing.Size(40, 20);
     this.RadioSpamIntBox.TabIndex = 17;
     this.RadioSpamIntBox.Value = new decimal(new int[] {
     6,
     0,
     0,
     0});
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(275, 73);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(122, 13);
     this.label24.TabIndex = 16;
     this.label24.Text = "Radio Max Spam Count:";
     this.Tipsy.SetToolTip(this.label24, "The maximum amout of messages a player can post within the Radio Spam Interval be" +
             "fore being blocked");
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(275, 49);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(106, 13);
     this.label7.TabIndex = 15;
     this.label7.Text = "Radio Spam Interval:";
     this.Tipsy.SetToolTip(this.label7, "The amount of interval at which players messages will be checked against the max " +
             "spam count");
     //
     // AllowNoseCam
     //
     this.AllowNoseCam.AutoSize = true;
     this.AllowNoseCam.Location = new System.Drawing.Point(36, 131);
     this.AllowNoseCam.Name = "AllowNoseCam";
     this.AllowNoseCam.Size = new System.Drawing.Size(103, 17);
     this.AllowNoseCam.TabIndex = 14;
     this.AllowNoseCam.Text = "Allow Nose Cam";
     this.Tipsy.SetToolTip(this.AllowNoseCam, "Use this to enable or disable the use of nose-cam in certain vehicles (planes/hel" +
             "icopters).");
     this.AllowNoseCam.UseVisualStyleBackColor = true;
     //
     // HitIndicatorEnabled
     //
     this.HitIndicatorEnabled.AutoSize = true;
     this.HitIndicatorEnabled.Location = new System.Drawing.Point(36, 168);
     this.HitIndicatorEnabled.Name = "HitIndicatorEnabled";
     this.HitIndicatorEnabled.Size = new System.Drawing.Size(83, 17);
     this.HitIndicatorEnabled.TabIndex = 13;
     this.HitIndicatorEnabled.Text = "Hit Indicator";
     this.Tipsy.SetToolTip(this.HitIndicatorEnabled, "This setting toggles whether or not players receive crosshair feedback indicating" +
             " they have hit a target.");
     this.HitIndicatorEnabled.UseVisualStyleBackColor = true;
     //
     // AllowExtViews
     //
     this.AllowExtViews.AutoSize = true;
     this.AllowExtViews.Location = new System.Drawing.Point(36, 108);
     this.AllowExtViews.Name = "AllowExtViews";
     this.AllowExtViews.Size = new System.Drawing.Size(103, 17);
     this.AllowExtViews.TabIndex = 12;
     this.AllowExtViews.Text = "Allow Ext. Views";
     this.Tipsy.SetToolTip(this.AllowExtViews, "Use this to enable or disable the use of 3rd person cameras in vehicles.");
     this.AllowExtViews.UseVisualStyleBackColor = true;
     //
     // AllowFreeCam
     //
     this.AllowFreeCam.AutoSize = true;
     this.AllowFreeCam.Location = new System.Drawing.Point(36, 85);
     this.AllowFreeCam.Name = "AllowFreeCam";
     this.AllowFreeCam.Size = new System.Drawing.Size(99, 17);
     this.AllowFreeCam.TabIndex = 11;
     this.AllowFreeCam.Text = "Allow Free Cam";
     this.Tipsy.SetToolTip(this.AllowFreeCam, "Allow players to use a free-roaming camera while waiting to spawn. Players can ac" +
             "tivate this camera using the JUMP key.");
     this.AllowFreeCam.UseVisualStyleBackColor = true;
     //
     // AllowNATNagotiation
     //
     this.AllowNATNagotiation.AutoSize = true;
     this.AllowNATNagotiation.Location = new System.Drawing.Point(36, 48);
     this.AllowNATNagotiation.Name = "AllowNATNagotiation";
     this.AllowNATNagotiation.Size = new System.Drawing.Size(133, 17);
     this.AllowNATNagotiation.TabIndex = 10;
     this.AllowNATNagotiation.Text = "Allow NAT Negotiation";
     this.Tipsy.SetToolTip(this.AllowNATNagotiation, "Allow Network Address Translation negotiation. \r\n\r\nTry this if you use a router o" +
             "r gateway device and are having problems hosting a server.");
     this.AllowNATNagotiation.UseVisualStyleBackColor = true;
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage4);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Controls.Add(this.tabPage7);
     this.tabControl1.Controls.Add(this.tabPage5);
     this.tabControl1.Controls.Add(this.tabPage6);
     this.tabControl1.Location = new System.Drawing.Point(-1, 12);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(613, 375);
     this.tabControl1.TabIndex = 10;
     //
     // tabPage1
     //
     this.tabPage1.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.tabPage1.Controls.Add(this.groupBox1);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(605, 349);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "General";
     //
     // tabPage2
     //
     this.tabPage2.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.tabPage2.Controls.Add(this.groupBox3);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size = new System.Drawing.Size(605, 349);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "Timers";
     //
     // tabPage4
     //
     this.tabPage4.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.tabPage4.Controls.Add(this.groupBox6);
     this.tabPage4.Location = new System.Drawing.Point(4, 22);
     this.tabPage4.Name = "tabPage4";
     this.tabPage4.Size = new System.Drawing.Size(605, 349);
     this.tabPage4.TabIndex = 3;
     this.tabPage4.Text = "Friendly Fire";
     //
     // tabPage3
     //
     this.tabPage3.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.tabPage3.Controls.Add(this.groupBox26);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name = "tabPage3";
     this.tabPage3.Size = new System.Drawing.Size(605, 349);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text = "Coop Bots";
     //
     // groupBox26
     //
     this.groupBox26.Controls.Add(this.InfoLink);
     this.groupBox26.Controls.Add(this.groupBox31);
     this.groupBox26.Controls.Add(this.groupBox32);
     this.groupBox26.Controls.Add(this.ForceBotCount);
     this.groupBox26.Controls.Add(this.groupBox29);
     this.groupBox26.Controls.Add(this.groupBox28);
     this.groupBox26.Controls.Add(this.groupBox27);
     this.groupBox26.Location = new System.Drawing.Point(5, 5);
     this.groupBox26.Name = "groupBox26";
     this.groupBox26.Size = new System.Drawing.Size(594, 337);
     this.groupBox26.TabIndex = 0;
     this.groupBox26.TabStop = false;
     //
     // InfoLink
     //
     this.InfoLink.AutoSize = true;
     this.InfoLink.Location = new System.Drawing.Point(339, 206);
     this.InfoLink.Name = "InfoLink";
     this.InfoLink.Size = new System.Drawing.Size(61, 13);
     this.InfoLink.TabIndex = 41;
     this.InfoLink.TabStop = true;
     this.InfoLink.Text = "More Info...";
     this.InfoLink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.InfoLink_LinkClicked);
     //
     // groupBox31
     //
     this.groupBox31.Controls.Add(this.BotCountBar1);
     this.groupBox31.Controls.Add(this.BotCountBox1);
     this.groupBox31.Location = new System.Drawing.Point(11, 250);
     this.groupBox31.Name = "groupBox31";
     this.groupBox31.Size = new System.Drawing.Size(283, 54);
     this.groupBox31.TabIndex = 40;
     this.groupBox31.TabStop = false;
     this.groupBox31.Text = "Team 1 Bot Count";
     //
     // BotCountBar1
     //
     this.BotCountBar1.AutoSize = false;
     this.BotCountBar1.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.BotCountBar1.Enabled = false;
     this.BotCountBar1.LargeChange = 8;
     this.BotCountBar1.Location = new System.Drawing.Point(6, 19);
     this.BotCountBar1.Maximum = 48;
     this.BotCountBar1.Name = "BotCountBar1";
     this.BotCountBar1.Size = new System.Drawing.Size(240, 29);
     this.BotCountBar1.SmallChange = 2;
     this.BotCountBar1.TabIndex = 8;
     this.BotCountBar1.TickFrequency = 4;
     this.BotCountBar1.Value = 16;
     this.BotCountBar1.ValueChanged += new System.EventHandler(this.BotCountBar1_ValueChanged);
     //
     // BotCountBox1
     //
     this.BotCountBox1.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.BotCountBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.BotCountBox1.Location = new System.Drawing.Point(252, 19);
     this.BotCountBox1.Name = "BotCountBox1";
     this.BotCountBox1.ReadOnly = true;
     this.BotCountBox1.Size = new System.Drawing.Size(20, 13);
     this.BotCountBox1.TabIndex = 10;
     this.BotCountBox1.Text = "16";
     //
     // groupBox32
     //
     this.groupBox32.Controls.Add(this.BotCountBar2);
     this.groupBox32.Controls.Add(this.BotCountBox2);
     this.groupBox32.Location = new System.Drawing.Point(300, 250);
     this.groupBox32.Name = "groupBox32";
     this.groupBox32.Size = new System.Drawing.Size(283, 54);
     this.groupBox32.TabIndex = 39;
     this.groupBox32.TabStop = false;
     this.groupBox32.Text = "Team 2 Bot Count";
     //
     // BotCountBar2
     //
     this.BotCountBar2.AutoSize = false;
     this.BotCountBar2.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.BotCountBar2.Enabled = false;
     this.BotCountBar2.LargeChange = 8;
     this.BotCountBar2.Location = new System.Drawing.Point(6, 19);
     this.BotCountBar2.Maximum = 48;
     this.BotCountBar2.Name = "BotCountBar2";
     this.BotCountBar2.Size = new System.Drawing.Size(240, 29);
     this.BotCountBar2.SmallChange = 2;
     this.BotCountBar2.TabIndex = 11;
     this.BotCountBar2.TickFrequency = 4;
     this.BotCountBar2.Value = 16;
     this.BotCountBar2.ValueChanged += new System.EventHandler(this.BotCountBar2_ValueChanged);
     //
     // BotCountBox2
     //
     this.BotCountBox2.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.BotCountBox2.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.BotCountBox2.Location = new System.Drawing.Point(252, 19);
     this.BotCountBox2.Name = "BotCountBox2";
     this.BotCountBox2.ReadOnly = true;
     this.BotCountBox2.Size = new System.Drawing.Size(20, 13);
     this.BotCountBox2.TabIndex = 12;
     this.BotCountBox2.Text = "16";
     //
     // ForceBotCount
     //
     this.ForceBotCount.AutoSize = true;
     this.ForceBotCount.Location = new System.Drawing.Point(195, 205);
     this.ForceBotCount.Name = "ForceBotCount";
     this.ForceBotCount.Size = new System.Drawing.Size(147, 17);
     this.ForceBotCount.TabIndex = 38;
     this.ForceBotCount.Text = "Force More Than 48 Bots";
     this.ForceBotCount.UseVisualStyleBackColor = true;
     this.ForceBotCount.CheckedChanged += new System.EventHandler(this.ForceBotCount_CheckedChanged);
     //
     // groupBox29
     //
     this.groupBox29.Controls.Add(this.BotCountBar);
     this.groupBox29.Controls.Add(this.BotCountBox);
     this.groupBox29.Location = new System.Drawing.Point(11, 43);
     this.groupBox29.Name = "groupBox29";
     this.groupBox29.Size = new System.Drawing.Size(283, 54);
     this.groupBox29.TabIndex = 37;
     this.groupBox29.TabStop = false;
     this.groupBox29.Text = "Bot Count";
     //
     // BotCountBar
     //
     this.BotCountBar.AutoSize = false;
     this.BotCountBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.BotCountBar.LargeChange = 8;
     this.BotCountBar.Location = new System.Drawing.Point(6, 19);
     this.BotCountBar.Maximum = 48;
     this.BotCountBar.Name = "BotCountBar";
     this.BotCountBar.Size = new System.Drawing.Size(240, 29);
     this.BotCountBar.SmallChange = 2;
     this.BotCountBar.TabIndex = 8;
     this.BotCountBar.TickFrequency = 4;
     this.Tipsy.SetToolTip(this.BotCountBar, "The maximum number of players allowed on your server at once.");
     this.BotCountBar.Value = 16;
     this.BotCountBar.ValueChanged += new System.EventHandler(this.BotCountBar_ValueChanged);
     //
     // BotCountBox
     //
     this.BotCountBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.BotCountBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.BotCountBox.Location = new System.Drawing.Point(252, 19);
     this.BotCountBox.Name = "BotCountBox";
     this.BotCountBox.ReadOnly = true;
     this.BotCountBox.Size = new System.Drawing.Size(20, 13);
     this.BotCountBox.TabIndex = 10;
     this.BotCountBox.Text = "16";
     //
     // groupBox28
     //
     this.groupBox28.Controls.Add(this.BotRatioBox);
     this.groupBox28.Controls.Add(this.BotRatioBar);
     this.groupBox28.Location = new System.Drawing.Point(300, 43);
     this.groupBox28.Name = "groupBox28";
     this.groupBox28.Size = new System.Drawing.Size(283, 54);
     this.groupBox28.TabIndex = 36;
     this.groupBox28.TabStop = false;
     this.groupBox28.Text = "Bot Ratio";
     //
     // BotRatioBox
     //
     this.BotRatioBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.BotRatioBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.BotRatioBox.Location = new System.Drawing.Point(250, 19);
     this.BotRatioBox.Name = "BotRatioBox";
     this.BotRatioBox.ReadOnly = true;
     this.BotRatioBox.Size = new System.Drawing.Size(26, 13);
     this.BotRatioBox.TabIndex = 13;
     this.BotRatioBox.Text = "50%";
     //
     // BotRatioBar
     //
     this.BotRatioBar.AutoSize = false;
     this.BotRatioBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.BotRatioBar.LargeChange = 10;
     this.BotRatioBar.Location = new System.Drawing.Point(6, 19);
     this.BotRatioBar.Maximum = 100;
     this.BotRatioBar.Name = "BotRatioBar";
     this.BotRatioBar.Size = new System.Drawing.Size(240, 29);
     this.BotRatioBar.SmallChange = 5;
     this.BotRatioBar.TabIndex = 29;
     this.BotRatioBar.TickFrequency = 10;
     this.BotRatioBar.Value = 50;
     this.BotRatioBar.ValueChanged += new System.EventHandler(this.BotRatioBar_ValueChanged);
     //
     // groupBox27
     //
     this.groupBox27.Controls.Add(this.BotDifficultyBox);
     this.groupBox27.Controls.Add(this.BotDifficultyBar);
     this.groupBox27.Location = new System.Drawing.Point(11, 114);
     this.groupBox27.Name = "groupBox27";
     this.groupBox27.Size = new System.Drawing.Size(283, 54);
     this.groupBox27.TabIndex = 35;
     this.groupBox27.TabStop = false;
     this.groupBox27.Text = "Bot Difficulty";
     //
     // BotDifficultyBox
     //
     this.BotDifficultyBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.BotDifficultyBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.BotDifficultyBox.Location = new System.Drawing.Point(250, 19);
     this.BotDifficultyBox.Name = "BotDifficultyBox";
     this.BotDifficultyBox.ReadOnly = true;
     this.BotDifficultyBox.Size = new System.Drawing.Size(26, 13);
     this.BotDifficultyBox.TabIndex = 13;
     this.BotDifficultyBox.Text = "100";
     //
     // BotDifficultyBar
     //
     this.BotDifficultyBar.AutoSize = false;
     this.BotDifficultyBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.BotDifficultyBar.LargeChange = 10;
     this.BotDifficultyBar.Location = new System.Drawing.Point(6, 19);
     this.BotDifficultyBar.Maximum = 100;
     this.BotDifficultyBar.Name = "BotDifficultyBar";
     this.BotDifficultyBar.Size = new System.Drawing.Size(240, 29);
     this.BotDifficultyBar.SmallChange = 5;
     this.BotDifficultyBar.TabIndex = 29;
     this.BotDifficultyBar.TickFrequency = 10;
     this.BotDifficultyBar.Value = 100;
     this.BotDifficultyBar.ValueChanged += new System.EventHandler(this.BotDifficultyBar_ValueChanged);
     //
     // tabPage7
     //
     this.tabPage7.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.tabPage7.Controls.Add(this.groupBox7);
     this.tabPage7.Controls.Add(this.groupBox4);
     this.tabPage7.Location = new System.Drawing.Point(4, 22);
     this.tabPage7.Name = "tabPage7";
     this.tabPage7.Size = new System.Drawing.Size(605, 349);
     this.tabPage7.TabIndex = 6;
     this.tabPage7.Text = "Voting / Voip";
     //
     // groupBox7
     //
     this.groupBox7.Controls.Add(this.PlayersVotingBox);
     this.groupBox7.Controls.Add(this.label13);
     this.groupBox7.Controls.Add(this.PlayersVotingBar);
     this.groupBox7.Controls.Add(this.VoteTimeBox);
     this.groupBox7.Controls.Add(this.label17);
     this.groupBox7.Controls.Add(this.VoteTimeBar);
     this.groupBox7.Controls.Add(this.EnableTeamVotingBox);
     this.groupBox7.Controls.Add(this.EnableVotingBox);
     this.groupBox7.Location = new System.Drawing.Point(312, 16);
     this.groupBox7.Name = "groupBox7";
     this.groupBox7.Size = new System.Drawing.Size(280, 198);
     this.groupBox7.TabIndex = 5;
     this.groupBox7.TabStop = false;
     this.groupBox7.Text = "Voting Settigns";
     //
     // PlayersVotingBox
     //
     this.PlayersVotingBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.PlayersVotingBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.PlayersVotingBox.Location = new System.Drawing.Point(253, 148);
     this.PlayersVotingBox.Name = "PlayersVotingBox";
     this.PlayersVotingBox.ReadOnly = true;
     this.PlayersVotingBox.Size = new System.Drawing.Size(20, 13);
     this.PlayersVotingBox.TabIndex = 43;
     this.PlayersVotingBox.Text = "2";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(72, 131);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(136, 13);
     this.label13.TabIndex = 42;
     this.label13.Text = "Minimum Players For Voting";
     this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.Tipsy.SetToolTip(this.label13, "This is the minimum number of votes needed for a poll to be sucessful.");
     //
     // PlayersVotingBar
     //
     this.PlayersVotingBar.AutoSize = false;
     this.PlayersVotingBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.PlayersVotingBar.Location = new System.Drawing.Point(7, 147);
     this.PlayersVotingBar.Maximum = 30;
     this.PlayersVotingBar.Name = "PlayersVotingBar";
     this.PlayersVotingBar.Size = new System.Drawing.Size(240, 24);
     this.PlayersVotingBar.TabIndex = 41;
     this.PlayersVotingBar.TickFrequency = 2;
     this.PlayersVotingBar.Value = 2;
     this.PlayersVotingBar.ValueChanged += new System.EventHandler(this.PlayersVotingBar_ValueChanged);
     //
     // VoteTimeBox
     //
     this.VoteTimeBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.VoteTimeBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.VoteTimeBox.Location = new System.Drawing.Point(253, 88);
     this.VoteTimeBox.Name = "VoteTimeBox";
     this.VoteTimeBox.ReadOnly = true;
     this.VoteTimeBox.Size = new System.Drawing.Size(20, 13);
     this.VoteTimeBox.TabIndex = 40;
     this.VoteTimeBox.Text = "90";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(87, 71);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(106, 13);
     this.label17.TabIndex = 39;
     this.label17.Text = "Vote Time (Seconds)";
     this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.Tipsy.SetToolTip(this.label17, "This is the amount of time that a poll such as a kick vote or map vote stays open" +
             ".");
     //
     // VoteTimeBar
     //
     this.VoteTimeBar.AutoSize = false;
     this.VoteTimeBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.VoteTimeBar.Location = new System.Drawing.Point(7, 87);
     this.VoteTimeBar.Maximum = 120;
     this.VoteTimeBar.Name = "VoteTimeBar";
     this.VoteTimeBar.Size = new System.Drawing.Size(240, 24);
     this.VoteTimeBar.TabIndex = 38;
     this.VoteTimeBar.TickFrequency = 15;
     this.VoteTimeBar.Value = 90;
     this.VoteTimeBar.ValueChanged += new System.EventHandler(this.VoteTimeBar_ValueChanged);
     //
     // EnableTeamVotingBox
     //
     this.EnableTeamVotingBox.AutoSize = true;
     this.EnableTeamVotingBox.Location = new System.Drawing.Point(139, 31);
     this.EnableTeamVotingBox.Name = "EnableTeamVotingBox";
     this.EnableTeamVotingBox.Size = new System.Drawing.Size(110, 17);
     this.EnableTeamVotingBox.TabIndex = 6;
     this.EnableTeamVotingBox.Text = "Team Voting Only";
     this.Tipsy.SetToolTip(this.EnableTeamVotingBox, "This option will restrict all voting queries and responses to members of the same" +
             " team.");
     this.EnableTeamVotingBox.UseVisualStyleBackColor = true;
     //
     // EnableVotingBox
     //
     this.EnableVotingBox.AutoSize = true;
     this.EnableVotingBox.Location = new System.Drawing.Point(27, 31);
     this.EnableVotingBox.Name = "EnableVotingBox";
     this.EnableVotingBox.Size = new System.Drawing.Size(92, 17);
     this.EnableVotingBox.TabIndex = 5;
     this.EnableVotingBox.Text = "Enable Voting";
     this.Tipsy.SetToolTip(this.EnableVotingBox, "Enable or disable voting.");
     this.EnableVotingBox.UseVisualStyleBackColor = true;
     //
     // tabPage5
     //
     this.tabPage5.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.tabPage5.Controls.Add(this.groupBox30);
     this.tabPage5.Controls.Add(this.groupBox5);
     this.tabPage5.Location = new System.Drawing.Point(4, 22);
     this.tabPage5.Name = "tabPage5";
     this.tabPage5.Size = new System.Drawing.Size(605, 349);
     this.tabPage5.TabIndex = 4;
     this.tabPage5.Text = "Demo & Urls";
     //
     // groupBox30
     //
     this.groupBox30.Controls.Add(this.SLogoUrlBox);
     this.groupBox30.Controls.Add(this.label23);
     this.groupBox30.Controls.Add(this.CLogoUrlBox);
     this.groupBox30.Controls.Add(this.label22);
     this.groupBox30.Location = new System.Drawing.Point(8, 189);
     this.groupBox30.Name = "groupBox30";
     this.groupBox30.Size = new System.Drawing.Size(589, 140);
     this.groupBox30.TabIndex = 1;
     this.groupBox30.TabStop = false;
     this.groupBox30.Text = "Url Settings";
     //
     // SLogoUrlBox
     //
     this.SLogoUrlBox.Location = new System.Drawing.Point(145, 78);
     this.SLogoUrlBox.MaxLength = 256;
     this.SLogoUrlBox.Name = "SLogoUrlBox";
     this.SLogoUrlBox.Size = new System.Drawing.Size(280, 20);
     this.SLogoUrlBox.TabIndex = 37;
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(31, 80);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(101, 13);
     this.label23.TabIndex = 36;
     this.label23.Text = "Sponser Logo URL:";
     this.Tipsy.SetToolTip(this.label23, "Enter a URL to an image, and it will be displayed in the server browser when the " +
             "server is highlighted. \r\nThe image must be in PNG or JPG format, and should have" +
             " a 4:1 aspect ratio for best results.");
     //
     // CLogoUrlBox
     //
     this.CLogoUrlBox.Location = new System.Drawing.Point(145, 44);
     this.CLogoUrlBox.MaxLength = 256;
     this.CLogoUrlBox.Name = "CLogoUrlBox";
     this.CLogoUrlBox.Size = new System.Drawing.Size(280, 20);
     this.CLogoUrlBox.TabIndex = 35;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(31, 46);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(113, 13);
     this.label22.TabIndex = 34;
     this.label22.Text = "Community Logo URL:";
     this.Tipsy.SetToolTip(this.label22, "Enter a URL to an image, and it will be displayed in the loading screen when conn" +
             "ecting to the server. The image must be in PNG or JPG format, \r\nand should have " +
             "a 4:1 aspect ratio for best results.");
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.DemoHookBox);
     this.groupBox5.Controls.Add(this.label19);
     this.groupBox5.Controls.Add(this.DemoDownloadBox);
     this.groupBox5.Controls.Add(this.DemoIndexUrlBox);
     this.groupBox5.Controls.Add(this.label20);
     this.groupBox5.Controls.Add(this.label21);
     this.groupBox5.Controls.Add(this.DemoQualityBox);
     this.groupBox5.Controls.Add(this.label18);
     this.groupBox5.Controls.Add(this.DemoQualityBar);
     this.groupBox5.Controls.Add(this.EnableAutoRecord);
     this.groupBox5.Location = new System.Drawing.Point(8, 5);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(589, 178);
     this.groupBox5.TabIndex = 0;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Demo Settings";
     //
     // DemoHookBox
     //
     this.DemoHookBox.Location = new System.Drawing.Point(145, 121);
     this.DemoHookBox.MaxLength = 256;
     this.DemoHookBox.Name = "DemoHookBox";
     this.DemoHookBox.Size = new System.Drawing.Size(280, 20);
     this.DemoHookBox.TabIndex = 33;
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(31, 123);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(92, 13);
     this.label19.TabIndex = 32;
     this.label19.Text = "Auto Demo Hook:";
     this.Tipsy.SetToolTip(this.label19, "This is the application or script that is called on to manage demo recordings at " +
             "the end of rounds.");
     //
     // DemoDownloadBox
     //
     this.DemoDownloadBox.Location = new System.Drawing.Point(145, 95);
     this.DemoDownloadBox.MaxLength = 256;
     this.DemoDownloadBox.Name = "DemoDownloadBox";
     this.DemoDownloadBox.Size = new System.Drawing.Size(280, 20);
     this.DemoDownloadBox.TabIndex = 31;
     //
     // DemoIndexUrlBox
     //
     this.DemoIndexUrlBox.Location = new System.Drawing.Point(145, 69);
     this.DemoIndexUrlBox.MaxLength = 256;
     this.DemoIndexUrlBox.Name = "DemoIndexUrlBox";
     this.DemoIndexUrlBox.Size = new System.Drawing.Size(280, 20);
     this.DemoIndexUrlBox.TabIndex = 30;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(31, 97);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(114, 13);
     this.label20.TabIndex = 29;
     this.label20.Text = "Demo Download URL:";
     this.Tipsy.SetToolTip(this.label20, "If demo recording is enabled, this should be set to the publicly accessible URL w" +
             "here the demo files can be downloaded.");
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(31, 72);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(92, 13);
     this.label21.TabIndex = 28;
     this.label21.Text = "Demo Index URL:";
     this.Tipsy.SetToolTip(this.label21, "This is the location where automatically recorded demo files will be saved.");
     //
     // DemoQualityBox
     //
     this.DemoQualityBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.DemoQualityBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.DemoQualityBox.Location = new System.Drawing.Point(420, 32);
     this.DemoQualityBox.Name = "DemoQualityBox";
     this.DemoQualityBox.ReadOnly = true;
     this.DemoQualityBox.Size = new System.Drawing.Size(20, 13);
     this.DemoQualityBox.TabIndex = 25;
     this.DemoQualityBox.Text = "1";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(228, 16);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(176, 13);
     this.label18.TabIndex = 24;
     this.label18.Text = "Demo Quality (1 = Worst, 10 = Best)";
     this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.Tipsy.SetToolTip(this.label18, "Set the quality of demo recording, if enabled, on the server. \r\n\r\nINCREASING THE " +
             "VALUE OF THIS SETTING WILL SEVERLY IMPACT THE PERFORMANCE OF THIS SERVER.");
     //
     // DemoQualityBar
     //
     this.DemoQualityBar.AutoSize = false;
     this.DemoQualityBar.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.DemoQualityBar.Location = new System.Drawing.Point(178, 32);
     this.DemoQualityBar.Minimum = 1;
     this.DemoQualityBar.Name = "DemoQualityBar";
     this.DemoQualityBar.Size = new System.Drawing.Size(240, 28);
     this.DemoQualityBar.TabIndex = 23;
     this.DemoQualityBar.Value = 1;
     this.DemoQualityBar.ValueChanged += new System.EventHandler(this.DemoQualityBar_ValueChanged);
     //
     // EnableAutoRecord
     //
     this.EnableAutoRecord.AutoSize = true;
     this.EnableAutoRecord.Location = new System.Drawing.Point(34, 32);
     this.EnableAutoRecord.Name = "EnableAutoRecord";
     this.EnableAutoRecord.Size = new System.Drawing.Size(122, 17);
     this.EnableAutoRecord.TabIndex = 0;
     this.EnableAutoRecord.Text = "Enable Auto Record";
     this.EnableAutoRecord.UseVisualStyleBackColor = true;
     //
     // tabPage6
     //
     this.tabPage6.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.tabPage6.Controls.Add(this.groupBox8);
     this.tabPage6.Location = new System.Drawing.Point(4, 22);
     this.tabPage6.Name = "tabPage6";
     this.tabPage6.Size = new System.Drawing.Size(605, 349);
     this.tabPage6.TabIndex = 5;
     this.tabPage6.Text = "Misc";
     //
     // Tipsy
     //
     this.Tipsy.AutoPopDelay = 10000;
     this.Tipsy.InitialDelay = 500;
     this.Tipsy.ReshowDelay = 100;
     //
     // ServerSettingsForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(609, 437);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.SaveButton);
     this.Controls.Add(this.Cancel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "ServerSettingsForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Server Settings";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox13.ResumeLayout(false);
     this.groupBox13.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TeamRatioBar)).EndInit();
     this.groupBox12.ResumeLayout(false);
     this.groupBox12.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ScoreLimitBar)).EndInit();
     this.groupBox11.ResumeLayout(false);
     this.groupBox11.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TicketRatioBar)).EndInit();
     this.groupBox10.ResumeLayout(false);
     this.groupBox10.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MaxPlayersBar)).EndInit();
     this.groupBox9.ResumeLayout(false);
     this.groupBox9.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.PlayersToStartSlider)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RoundsPerMapBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GamespyPortBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ServerPortBox)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.groupBox21.ResumeLayout(false);
     this.groupBox21.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TimeB4RestartMapBar)).EndInit();
     this.groupBox20.ResumeLayout(false);
     this.groupBox20.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NotEnoughPlayersBar)).EndInit();
     this.groupBox19.ResumeLayout(false);
     this.groupBox19.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.EORBar)).EndInit();
     this.groupBox18.ResumeLayout(false);
     this.groupBox18.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.EndDelayBar)).EndInit();
     this.groupBox17.ResumeLayout(false);
     this.groupBox17.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.StartDelayBar)).EndInit();
     this.groupBox16.ResumeLayout(false);
     this.groupBox16.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ManDownBar)).EndInit();
     this.groupBox15.ResumeLayout(false);
     this.groupBox15.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.SpawnTimeBar)).EndInit();
     this.groupBox14.ResumeLayout(false);
     this.groupBox14.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TimeLimitBar)).EndInit();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.VoipServerPort)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.VoipBF2ServerPort)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.VoipBF2ClientPort)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.VoipQualityBar)).EndInit();
     this.groupBox6.ResumeLayout(false);
     this.groupBox6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TksBeforeKickBox)).EndInit();
     this.groupBox25.ResumeLayout(false);
     this.groupBox25.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.VehicleSplashFFBar)).EndInit();
     this.groupBox24.ResumeLayout(false);
     this.groupBox24.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.SoldierSplashFFBar)).EndInit();
     this.groupBox23.ResumeLayout(false);
     this.groupBox23.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.VehicleFFBar)).EndInit();
     this.groupBox22.ResumeLayout(false);
     this.groupBox22.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.SoldierFFBar)).EndInit();
     this.groupBox8.ResumeLayout(false);
     this.groupBox8.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.RadioBlockTimeBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RadioMaxSpamBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RadioSpamIntBox)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.tabPage4.ResumeLayout(false);
     this.tabPage3.ResumeLayout(false);
     this.groupBox26.ResumeLayout(false);
     this.groupBox26.PerformLayout();
     this.groupBox31.ResumeLayout(false);
     this.groupBox31.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BotCountBar1)).EndInit();
     this.groupBox32.ResumeLayout(false);
     this.groupBox32.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BotCountBar2)).EndInit();
     this.groupBox29.ResumeLayout(false);
     this.groupBox29.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BotCountBar)).EndInit();
     this.groupBox28.ResumeLayout(false);
     this.groupBox28.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BotRatioBar)).EndInit();
     this.groupBox27.ResumeLayout(false);
     this.groupBox27.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BotDifficultyBar)).EndInit();
     this.tabPage7.ResumeLayout(false);
     this.groupBox7.ResumeLayout(false);
     this.groupBox7.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.PlayersVotingBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.VoteTimeBar)).EndInit();
     this.tabPage5.ResumeLayout(false);
     this.groupBox30.ResumeLayout(false);
     this.groupBox30.PerformLayout();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DemoQualityBar)).EndInit();
     this.tabPage6.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 40
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Mapper));
     this.tabMob = new System.Windows.Forms.TabPage();
     this.btnNewMob = new System.Windows.Forms.Button();
     this.btnAddObject = new System.Windows.Forms.Button();
     this.lblMobs = new System.Windows.Forms.Label();
     this.lblLoadingObjects = new System.Windows.Forms.Label();
     this.panel7 = new System.Windows.Forms.Panel();
     this.btnRemoveLoad = new System.Windows.Forms.Button();
     this.lbLoads = new System.Windows.Forms.ListBox();
     this.btnAddLoad = new System.Windows.Forms.Button();
     this.cboAllObjects = new System.Windows.Forms.ComboBox();
     this.lblMobLoadingObjects = new System.Windows.Forms.Label();
     this.btnObjDetail = new System.Windows.Forms.Button();
     this.btnHighlightSpawns = new System.Windows.Forms.Button();
     this.panel6 = new System.Windows.Forms.Panel();
     this.btnRemoveSpawn = new System.Windows.Forms.Button();
     this.lbSpawns = new System.Windows.Forms.ListBox();
     this.btnAddSpawn = new System.Windows.Forms.Button();
     this.cboAllMobs = new System.Windows.Forms.ComboBox();
     this.lblMobsInRoom = new System.Windows.Forms.Label();
     this.btnMobDetail = new System.Windows.Forms.Button();
     this.lblMobRoomName = new System.Windows.Forms.Label();
     this.lblMobCurrentVNUM = new System.Windows.Forms.Label();
     this.lblMobVNUMPrompt = new System.Windows.Forms.Label();
     this.lblMobCurrentRoom = new System.Windows.Forms.Label();
     this.lblMobCurrentRoomPrompt = new System.Windows.Forms.Label();
     this.lblMobGeneral = new System.Windows.Forms.Label();
     this.panel5 = new System.Windows.Forms.Panel();
     this.lblQuickMobID = new System.Windows.Forms.Label();
     this.lblQuickMobVNUM = new System.Windows.Forms.Label();
     this.lblQuickMobName = new System.Windows.Forms.Label();
     this.cboMaxExisting = new System.Windows.Forms.ComboBox();
     this.lblMaxExisting = new System.Windows.Forms.Label();
     this.lblMobVNUM = new System.Windows.Forms.Label();
     this.lblMobName = new System.Windows.Forms.Label();
     this.tabRoom = new System.Windows.Forms.TabPage();
     this.pnlRoomDetail = new System.Windows.Forms.Panel();
     this.btnCopyRoom = new System.Windows.Forms.Button();
     this.lblRoomRoomNumber = new System.Windows.Forms.Label();
     this.lblDetailRoomNumber = new System.Windows.Forms.Label();
     this.btnSaveRoom = new System.Windows.Forms.Button();
     this.cboSector = new System.Windows.Forms.ComboBox();
     this.txtVNUM = new System.Windows.Forms.TextBox();
     this.txtRoomName = new System.Windows.Forms.TextBox();
     this.txtExtraDescKeywords = new System.Windows.Forms.TextBox();
     this.txtExtraDescription = new System.Windows.Forms.TextBox();
     this.txtDownExit = new System.Windows.Forms.TextBox();
     this.txtUpExit = new System.Windows.Forms.TextBox();
     this.txtWestExit = new System.Windows.Forms.TextBox();
     this.txtEastExit = new System.Windows.Forms.TextBox();
     this.txtSouthExit = new System.Windows.Forms.TextBox();
     this.txtNorthExit = new System.Windows.Forms.TextBox();
     this.lblDownExit = new System.Windows.Forms.Label();
     this.lblUpExit = new System.Windows.Forms.Label();
     this.lblWestExit = new System.Windows.Forms.Label();
     this.lblEastExit = new System.Windows.Forms.Label();
     this.lblSouthExit = new System.Windows.Forms.Label();
     this.lblNorthExit = new System.Windows.Forms.Label();
     this.lblExtraDescription = new System.Windows.Forms.Label();
     this.lblExtraDescKeywords = new System.Windows.Forms.Label();
     this.txtRoomDescription = new System.Windows.Forms.TextBox();
     this.lblRoomDescription = new System.Windows.Forms.Label();
     this.lblTerrain = new System.Windows.Forms.Label();
     this.lblRoomName = new System.Windows.Forms.Label();
     this.lblRoomVNUM = new System.Windows.Forms.Label();
     this.lblButtonName = new System.Windows.Forms.Label();
     this.lblIndoors = new System.Windows.Forms.Label();
     this.btnIndoors = new System.Windows.Forms.Button();
     this.tabControl = new System.Windows.Forms.TabControl();
     this.tabArea = new System.Windows.Forms.TabPage();
     this.lblMapConfigLabel = new System.Windows.Forms.Label();
     this.pnlMapConfig = new System.Windows.Forms.Panel();
     this.chkAutoMap = new System.Windows.Forms.CheckBox();
     this.lblDefault = new System.Windows.Forms.Label();
     this.btnDefault = new System.Windows.Forms.Button();
     this.lblRoomCount = new System.Windows.Forms.Label();
     this.lblZoomViewLabel = new System.Windows.Forms.Label();
     this.lblRoomCountLabel = new System.Windows.Forms.Label();
     this.lblOverviewRoomName = new System.Windows.Forms.Label();
     this.lblDoorSection = new System.Windows.Forms.Label();
     this.pnlZoom = new System.Windows.Forms.Panel();
     this.btnDoorWest = new System.Windows.Forms.Button();
     this.btnDoorDown = new System.Windows.Forms.Button();
     this.btnDoorSouth = new System.Windows.Forms.Button();
     this.btnDoorEast = new System.Windows.Forms.Button();
     this.btnDoorUp = new System.Windows.Forms.Button();
     this.btnDoorNorth = new System.Windows.Forms.Button();
     this.btnZoomDown = new System.Windows.Forms.PictureBox();
     this.btnZoomUp = new System.Windows.Forms.PictureBox();
     this.lblZ = new System.Windows.Forms.Label();
     this.lblY = new System.Windows.Forms.Label();
     this.lblX = new System.Windows.Forms.Label();
     this.lblCoordZ = new System.Windows.Forms.Label();
     this.lblCoordY = new System.Windows.Forms.Label();
     this.lblCoordX = new System.Windows.Forms.Label();
     this.btnZoomWest = new System.Windows.Forms.Button();
     this.btnZoomEast = new System.Windows.Forms.Button();
     this.btnZoomSouth = new System.Windows.Forms.Button();
     this.btnZoomNorth = new System.Windows.Forms.Button();
     this.btnCurrentZoom = new System.Windows.Forms.Button();
     this.pnlDoor = new System.Windows.Forms.Panel();
     this.btnDeleteDoor = new System.Windows.Forms.Button();
     this.lblDoorID = new System.Windows.Forms.Label();
     this.lblDoorFlag = new System.Windows.Forms.Label();
     this.cboDoorType = new System.Windows.Forms.ComboBox();
     this.lblDoorKey = new System.Windows.Forms.Label();
     this.cboDoorKey = new System.Windows.Forms.ComboBox();
     this.lblDoorObjNum = new System.Windows.Forms.Label();
     this.txtDoorVNUM = new System.Windows.Forms.TextBox();
     this.btnSaveDoor = new System.Windows.Forms.Button();
     this.lblKeywords = new System.Windows.Forms.Label();
     this.txtDoorKeywords = new System.Windows.Forms.TextBox();
     this.lblDirection = new System.Windows.Forms.Label();
     this.cboDirection = new System.Windows.Forms.ComboBox();
     this.lblAreaID = new System.Windows.Forms.Label();
     this.lblGeneral = new System.Windows.Forms.Label();
     this.lblAreaIDPrompt = new System.Windows.Forms.Label();
     this.pnlGeneral = new System.Windows.Forms.Panel();
     this.lblRoomNameLabel = new System.Windows.Forms.Label();
     this.lblCurrentRoomName = new System.Windows.Forms.Label();
     this.lblVNUM = new System.Windows.Forms.Label();
     this.lblCurrentVNUM = new System.Windows.Forms.Label();
     this.lblButtonPrompt = new System.Windows.Forms.Label();
     this.tabAttributes = new System.Windows.Forms.TabPage();
     this.panel4 = new System.Windows.Forms.Panel();
     this.lblAttributesRoomVNUM = new System.Windows.Forms.Label();
     this.lblAttributesRoomNumber = new System.Windows.Forms.Label();
     this.lblAttributesRoomName = new System.Windows.Forms.Label();
     this.lblAttRoomID = new System.Windows.Forms.Label();
     this.lblAttVNUM = new System.Windows.Forms.Label();
     this.lblAttRoomName = new System.Windows.Forms.Label();
     this.btnSaveRoomAttributes = new System.Windows.Forms.Button();
     this.lblAttributes = new System.Windows.Forms.Label();
     this.panel3 = new System.Windows.Forms.Panel();
     this.lblNoMob = new System.Windows.Forms.Label();
     this.lblAttDuel = new System.Windows.Forms.Label();
     this.lblAttClan = new System.Windows.Forms.Label();
     this.chkAttDuel = new System.Windows.Forms.CheckBox();
     this.chkAttClan = new System.Windows.Forms.CheckBox();
     this.lblAttPrivate = new System.Windows.Forms.Label();
     this.chkAttPrivate = new System.Windows.Forms.CheckBox();
     this.lblAttNoMagic = new System.Windows.Forms.Label();
     this.chkAttNoMagic = new System.Windows.Forms.CheckBox();
     this.lblAttSafe = new System.Windows.Forms.Label();
     this.chkAttSafe = new System.Windows.Forms.CheckBox();
     this.lblAttDeath = new System.Windows.Forms.Label();
     this.chkAttDeath = new System.Windows.Forms.CheckBox();
     this.lblAttClub = new System.Windows.Forms.Label();
     this.chkAttClub = new System.Windows.Forms.CheckBox();
     this.lblAttArena = new System.Windows.Forms.Label();
     this.lblAttLock = new System.Windows.Forms.Label();
     this.chkAttArena = new System.Windows.Forms.CheckBox();
     this.chkAttLock = new System.Windows.Forms.CheckBox();
     this.lblAttNoMob = new System.Windows.Forms.Label();
     this.chkAttNoMob = new System.Windows.Forms.CheckBox();
     this.lblAttDark = new System.Windows.Forms.Label();
     this.chkAttDark = new System.Windows.Forms.CheckBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.areaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.roomToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.mobToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newMobToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.objectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newObjectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.lblAreaHeader = new System.Windows.Forms.Label();
     this.tabMob.SuspendLayout();
     this.panel7.SuspendLayout();
     this.panel6.SuspendLayout();
     this.panel5.SuspendLayout();
     this.tabRoom.SuspendLayout();
     this.pnlRoomDetail.SuspendLayout();
     this.tabControl.SuspendLayout();
     this.tabArea.SuspendLayout();
     this.pnlMapConfig.SuspendLayout();
     this.pnlZoom.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnZoomDown)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnZoomUp)).BeginInit();
     this.pnlDoor.SuspendLayout();
     this.pnlGeneral.SuspendLayout();
     this.tabAttributes.SuspendLayout();
     this.panel4.SuspendLayout();
     this.panel3.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // tabMob
     //
     this.tabMob.BackColor = System.Drawing.Color.LightSlateGray;
     this.tabMob.Controls.Add(this.btnNewMob);
     this.tabMob.Controls.Add(this.btnAddObject);
     this.tabMob.Controls.Add(this.lblMobs);
     this.tabMob.Controls.Add(this.lblLoadingObjects);
     this.tabMob.Controls.Add(this.panel7);
     this.tabMob.Controls.Add(this.btnHighlightSpawns);
     this.tabMob.Controls.Add(this.panel6);
     this.tabMob.Controls.Add(this.lblMobRoomName);
     this.tabMob.Controls.Add(this.lblMobCurrentVNUM);
     this.tabMob.Controls.Add(this.lblMobVNUMPrompt);
     this.tabMob.Controls.Add(this.lblMobCurrentRoom);
     this.tabMob.Controls.Add(this.lblMobCurrentRoomPrompt);
     this.tabMob.Controls.Add(this.lblMobGeneral);
     this.tabMob.Controls.Add(this.panel5);
     this.tabMob.Location = new System.Drawing.Point(4, 22);
     this.tabMob.Name = "tabMob";
     this.tabMob.Padding = new System.Windows.Forms.Padding(3);
     this.tabMob.Size = new System.Drawing.Size(451, 745);
     this.tabMob.TabIndex = 1;
     this.tabMob.Text = "Mobs";
     //
     // btnNewMob
     //
     this.btnNewMob.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnNewMob.Location = new System.Drawing.Point(355, 209);
     this.btnNewMob.Name = "btnNewMob";
     this.btnNewMob.Size = new System.Drawing.Size(88, 23);
     this.btnNewMob.TabIndex = 42;
     this.btnNewMob.Text = "New Mob";
     this.btnNewMob.UseVisualStyleBackColor = true;
     this.btnNewMob.Click += new System.EventHandler(this.btnNewMob_Click);
     //
     // btnAddObject
     //
     this.btnAddObject.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnAddObject.Location = new System.Drawing.Point(355, 494);
     this.btnAddObject.Name = "btnAddObject";
     this.btnAddObject.Size = new System.Drawing.Size(88, 23);
     this.btnAddObject.TabIndex = 48;
     this.btnAddObject.Text = "New Object";
     this.btnAddObject.UseVisualStyleBackColor = true;
     this.btnAddObject.Click += new System.EventHandler(this.btnAddObject_Click);
     //
     // lblMobs
     //
     this.lblMobs.AutoSize = true;
     this.lblMobs.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMobs.Location = new System.Drawing.Point(17, 224);
     this.lblMobs.Name = "lblMobs";
     this.lblMobs.Size = new System.Drawing.Size(38, 14);
     this.lblMobs.TabIndex = 38;
     this.lblMobs.Text = "Mobs";
     //
     // lblLoadingObjects
     //
     this.lblLoadingObjects.AutoSize = true;
     this.lblLoadingObjects.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLoadingObjects.Location = new System.Drawing.Point(17, 508);
     this.lblLoadingObjects.Name = "lblLoadingObjects";
     this.lblLoadingObjects.Size = new System.Drawing.Size(49, 14);
     this.lblLoadingObjects.TabIndex = 37;
     this.lblLoadingObjects.Text = "Objects";
     //
     // panel7
     //
     this.panel7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel7.Controls.Add(this.btnRemoveLoad);
     this.panel7.Controls.Add(this.lbLoads);
     this.panel7.Controls.Add(this.btnAddLoad);
     this.panel7.Controls.Add(this.cboAllObjects);
     this.panel7.Controls.Add(this.lblMobLoadingObjects);
     this.panel7.Controls.Add(this.btnObjDetail);
     this.panel7.Location = new System.Drawing.Point(17, 523);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(426, 212);
     this.panel7.TabIndex = 36;
     //
     // btnRemoveLoad
     //
     this.btnRemoveLoad.Enabled = false;
     this.btnRemoveLoad.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnRemoveLoad.Location = new System.Drawing.Point(308, 173);
     this.btnRemoveLoad.Name = "btnRemoveLoad";
     this.btnRemoveLoad.Size = new System.Drawing.Size(106, 23);
     this.btnRemoveLoad.TabIndex = 53;
     this.btnRemoveLoad.Text = "Remove Load";
     this.btnRemoveLoad.UseVisualStyleBackColor = true;
     this.btnRemoveLoad.Click += new System.EventHandler(this.btnRemoveLoad_Click);
     //
     // lbLoads
     //
     this.lbLoads.BackColor = System.Drawing.Color.LightSlateGray;
     this.lbLoads.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbLoads.FormattingEnabled = true;
     this.lbLoads.ItemHeight = 14;
     this.lbLoads.Location = new System.Drawing.Point(6, 51);
     this.lbLoads.Name = "lbLoads";
     this.lbLoads.Size = new System.Drawing.Size(407, 116);
     this.lbLoads.TabIndex = 51;
     this.lbLoads.SelectedIndexChanged += new System.EventHandler(this.lbLoads_SelectedIndexChanged);
     //
     // btnAddLoad
     //
     this.btnAddLoad.Enabled = false;
     this.btnAddLoad.Location = new System.Drawing.Point(376, 23);
     this.btnAddLoad.Name = "btnAddLoad";
     this.btnAddLoad.Size = new System.Drawing.Size(37, 22);
     this.btnAddLoad.TabIndex = 50;
     this.btnAddLoad.Text = "[ + ]";
     this.btnAddLoad.UseVisualStyleBackColor = true;
     this.btnAddLoad.Click += new System.EventHandler(this.btnAddLoad_Click);
     //
     // cboAllObjects
     //
     this.cboAllObjects.BackColor = System.Drawing.Color.LightSlateGray;
     this.cboAllObjects.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboAllObjects.Enabled = false;
     this.cboAllObjects.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboAllObjects.FormattingEnabled = true;
     this.cboAllObjects.Location = new System.Drawing.Point(6, 23);
     this.cboAllObjects.Name = "cboAllObjects";
     this.cboAllObjects.Size = new System.Drawing.Size(367, 22);
     this.cboAllObjects.TabIndex = 49;
     //
     // lblMobLoadingObjects
     //
     this.lblMobLoadingObjects.AutoSize = true;
     this.lblMobLoadingObjects.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMobLoadingObjects.Location = new System.Drawing.Point(10, 6);
     this.lblMobLoadingObjects.Name = "lblMobLoadingObjects";
     this.lblMobLoadingObjects.Size = new System.Drawing.Size(173, 14);
     this.lblMobLoadingObjects.TabIndex = 35;
     this.lblMobLoadingObjects.Text = "Objects Currently Loading on Mob:";
     //
     // btnObjDetail
     //
     this.btnObjDetail.Enabled = false;
     this.btnObjDetail.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnObjDetail.Location = new System.Drawing.Point(6, 173);
     this.btnObjDetail.Name = "btnObjDetail";
     this.btnObjDetail.Size = new System.Drawing.Size(87, 23);
     this.btnObjDetail.TabIndex = 52;
     this.btnObjDetail.Text = "Object Detail";
     this.btnObjDetail.UseVisualStyleBackColor = true;
     this.btnObjDetail.Click += new System.EventHandler(this.btnFullObjDetail_Click);
     //
     // btnHighlightSpawns
     //
     this.btnHighlightSpawns.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnHighlightSpawns.Location = new System.Drawing.Point(24, 88);
     this.btnHighlightSpawns.Name = "btnHighlightSpawns";
     this.btnHighlightSpawns.Size = new System.Drawing.Size(96, 23);
     this.btnHighlightSpawns.TabIndex = 41;
     this.btnHighlightSpawns.Text = "Show Spawns";
     this.btnHighlightSpawns.UseVisualStyleBackColor = true;
     this.btnHighlightSpawns.Click += new System.EventHandler(this.btnHighlightSpawns_Click);
     //
     // panel6
     //
     this.panel6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel6.Controls.Add(this.btnRemoveSpawn);
     this.panel6.Controls.Add(this.lbSpawns);
     this.panel6.Controls.Add(this.btnAddSpawn);
     this.panel6.Controls.Add(this.cboAllMobs);
     this.panel6.Controls.Add(this.lblMobsInRoom);
     this.panel6.Controls.Add(this.btnMobDetail);
     this.panel6.Location = new System.Drawing.Point(17, 238);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(426, 214);
     this.panel6.TabIndex = 35;
     //
     // btnRemoveSpawn
     //
     this.btnRemoveSpawn.Enabled = false;
     this.btnRemoveSpawn.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnRemoveSpawn.Location = new System.Drawing.Point(307, 175);
     this.btnRemoveSpawn.Name = "btnRemoveSpawn";
     this.btnRemoveSpawn.Size = new System.Drawing.Size(106, 23);
     this.btnRemoveSpawn.TabIndex = 47;
     this.btnRemoveSpawn.Text = "Remove Spawn";
     this.btnRemoveSpawn.UseVisualStyleBackColor = true;
     this.btnRemoveSpawn.Click += new System.EventHandler(this.btnRemoveSpawn_Click);
     //
     // lbSpawns
     //
     this.lbSpawns.BackColor = System.Drawing.Color.LightSlateGray;
     this.lbSpawns.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbSpawns.FormattingEnabled = true;
     this.lbSpawns.ItemHeight = 14;
     this.lbSpawns.Location = new System.Drawing.Point(6, 54);
     this.lbSpawns.Name = "lbSpawns";
     this.lbSpawns.Size = new System.Drawing.Size(407, 116);
     this.lbSpawns.TabIndex = 45;
     this.lbSpawns.SelectedIndexChanged += new System.EventHandler(this.lbSpawns_SelectedIndexChanged);
     //
     // btnAddSpawn
     //
     this.btnAddSpawn.Enabled = false;
     this.btnAddSpawn.Location = new System.Drawing.Point(377, 24);
     this.btnAddSpawn.Name = "btnAddSpawn";
     this.btnAddSpawn.Size = new System.Drawing.Size(37, 24);
     this.btnAddSpawn.TabIndex = 44;
     this.btnAddSpawn.Text = "[ + ]";
     this.btnAddSpawn.UseVisualStyleBackColor = true;
     this.btnAddSpawn.Click += new System.EventHandler(this.btnAddSpawn_Click);
     //
     // cboAllMobs
     //
     this.cboAllMobs.BackColor = System.Drawing.Color.LightSlateGray;
     this.cboAllMobs.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboAllMobs.Enabled = false;
     this.cboAllMobs.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboAllMobs.FormattingEnabled = true;
     this.cboAllMobs.Location = new System.Drawing.Point(6, 26);
     this.cboAllMobs.Name = "cboAllMobs";
     this.cboAllMobs.Size = new System.Drawing.Size(367, 22);
     this.cboAllMobs.TabIndex = 43;
     //
     // lblMobsInRoom
     //
     this.lblMobsInRoom.AutoSize = true;
     this.lblMobsInRoom.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMobsInRoom.Location = new System.Drawing.Point(8, 9);
     this.lblMobsInRoom.Name = "lblMobsInRoom";
     this.lblMobsInRoom.Size = new System.Drawing.Size(165, 14);
     this.lblMobsInRoom.TabIndex = 3;
     this.lblMobsInRoom.Text = "Mobs Currently Loading in Room:";
     //
     // btnMobDetail
     //
     this.btnMobDetail.Enabled = false;
     this.btnMobDetail.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnMobDetail.Location = new System.Drawing.Point(6, 175);
     this.btnMobDetail.Name = "btnMobDetail";
     this.btnMobDetail.Size = new System.Drawing.Size(88, 23);
     this.btnMobDetail.TabIndex = 46;
     this.btnMobDetail.Text = "Mob Detail";
     this.btnMobDetail.UseVisualStyleBackColor = true;
     this.btnMobDetail.Click += new System.EventHandler(this.btnFullDetail_Click);
     //
     // lblMobRoomName
     //
     this.lblMobRoomName.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMobRoomName.Location = new System.Drawing.Point(14, 150);
     this.lblMobRoomName.Name = "lblMobRoomName";
     this.lblMobRoomName.Size = new System.Drawing.Size(429, 16);
     this.lblMobRoomName.TabIndex = 26;
     this.lblMobRoomName.Text = "Room Name";
     //
     // lblMobCurrentVNUM
     //
     this.lblMobCurrentVNUM.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMobCurrentVNUM.Location = new System.Drawing.Point(364, 125);
     this.lblMobCurrentVNUM.Name = "lblMobCurrentVNUM";
     this.lblMobCurrentVNUM.Size = new System.Drawing.Size(67, 23);
     this.lblMobCurrentVNUM.TabIndex = 25;
     this.lblMobCurrentVNUM.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // lblMobVNUMPrompt
     //
     this.lblMobVNUMPrompt.AutoSize = true;
     this.lblMobVNUMPrompt.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMobVNUMPrompt.Location = new System.Drawing.Point(254, 128);
     this.lblMobVNUMPrompt.Name = "lblMobVNUMPrompt";
     this.lblMobVNUMPrompt.Size = new System.Drawing.Size(112, 16);
     this.lblMobVNUMPrompt.TabIndex = 24;
     this.lblMobVNUMPrompt.Text = "Current VNUM:";
     //
     // lblMobCurrentRoom
     //
     this.lblMobCurrentRoom.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMobCurrentRoom.Location = new System.Drawing.Point(122, 121);
     this.lblMobCurrentRoom.Name = "lblMobCurrentRoom";
     this.lblMobCurrentRoom.Size = new System.Drawing.Size(47, 23);
     this.lblMobCurrentRoom.TabIndex = 22;
     this.lblMobCurrentRoom.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // lblMobCurrentRoomPrompt
     //
     this.lblMobCurrentRoomPrompt.AutoSize = true;
     this.lblMobCurrentRoomPrompt.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMobCurrentRoomPrompt.Location = new System.Drawing.Point(14, 128);
     this.lblMobCurrentRoomPrompt.Name = "lblMobCurrentRoomPrompt";
     this.lblMobCurrentRoomPrompt.Size = new System.Drawing.Size(110, 16);
     this.lblMobCurrentRoomPrompt.TabIndex = 23;
     this.lblMobCurrentRoomPrompt.Text = "Current Room:";
     //
     // lblMobGeneral
     //
     this.lblMobGeneral.AutoSize = true;
     this.lblMobGeneral.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMobGeneral.Location = new System.Drawing.Point(17, 11);
     this.lblMobGeneral.Name = "lblMobGeneral";
     this.lblMobGeneral.Size = new System.Drawing.Size(82, 14);
     this.lblMobGeneral.TabIndex = 1;
     this.lblMobGeneral.Text = "Selected Mob";
     //
     // panel5
     //
     this.panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel5.Controls.Add(this.lblQuickMobID);
     this.panel5.Controls.Add(this.lblQuickMobVNUM);
     this.panel5.Controls.Add(this.lblQuickMobName);
     this.panel5.Controls.Add(this.cboMaxExisting);
     this.panel5.Controls.Add(this.lblMaxExisting);
     this.panel5.Controls.Add(this.lblMobVNUM);
     this.panel5.Controls.Add(this.lblMobName);
     this.panel5.Location = new System.Drawing.Point(17, 25);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(426, 59);
     this.panel5.TabIndex = 0;
     //
     // lblQuickMobID
     //
     this.lblQuickMobID.AutoSize = true;
     this.lblQuickMobID.Location = new System.Drawing.Point(348, 10);
     this.lblQuickMobID.Name = "lblQuickMobID";
     this.lblQuickMobID.Size = new System.Drawing.Size(0, 13);
     this.lblQuickMobID.TabIndex = 15;
     this.lblQuickMobID.Visible = false;
     //
     // lblQuickMobVNUM
     //
     this.lblQuickMobVNUM.AutoSize = true;
     this.lblQuickMobVNUM.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblQuickMobVNUM.Location = new System.Drawing.Point(48, 31);
     this.lblQuickMobVNUM.Name = "lblQuickMobVNUM";
     this.lblQuickMobVNUM.Size = new System.Drawing.Size(0, 14);
     this.lblQuickMobVNUM.TabIndex = 14;
     //
     // lblQuickMobName
     //
     this.lblQuickMobName.AutoSize = true;
     this.lblQuickMobName.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblQuickMobName.Location = new System.Drawing.Point(48, 10);
     this.lblQuickMobName.Name = "lblQuickMobName";
     this.lblQuickMobName.Size = new System.Drawing.Size(0, 14);
     this.lblQuickMobName.TabIndex = 13;
     //
     // cboMaxExisting
     //
     this.cboMaxExisting.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.cboMaxExisting.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboMaxExisting.FormattingEnabled = true;
     this.cboMaxExisting.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12",
     "13",
     "14",
     "15",
     "16",
     "17",
     "18",
     "19",
     "20"});
     this.cboMaxExisting.Location = new System.Drawing.Point(351, 28);
     this.cboMaxExisting.Name = "cboMaxExisting";
     this.cboMaxExisting.Size = new System.Drawing.Size(62, 22);
     this.cboMaxExisting.TabIndex = 40;
     //
     // lblMaxExisting
     //
     this.lblMaxExisting.AutoSize = true;
     this.lblMaxExisting.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMaxExisting.Location = new System.Drawing.Point(278, 33);
     this.lblMaxExisting.Name = "lblMaxExisting";
     this.lblMaxExisting.Size = new System.Drawing.Size(70, 14);
     this.lblMaxExisting.TabIndex = 11;
     this.lblMaxExisting.Text = "Max Existing:";
     //
     // lblMobVNUM
     //
     this.lblMobVNUM.AutoSize = true;
     this.lblMobVNUM.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMobVNUM.Location = new System.Drawing.Point(3, 31);
     this.lblMobVNUM.Name = "lblMobVNUM";
     this.lblMobVNUM.Size = new System.Drawing.Size(40, 14);
     this.lblMobVNUM.TabIndex = 2;
     this.lblMobVNUM.Text = "VNUM:";
     //
     // lblMobName
     //
     this.lblMobName.AutoSize = true;
     this.lblMobName.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMobName.Location = new System.Drawing.Point(13, 10);
     this.lblMobName.Name = "lblMobName";
     this.lblMobName.Size = new System.Drawing.Size(30, 14);
     this.lblMobName.TabIndex = 1;
     this.lblMobName.Text = "Mob:";
     //
     // tabRoom
     //
     this.tabRoom.BackColor = System.Drawing.Color.LightSlateGray;
     this.tabRoom.Controls.Add(this.pnlRoomDetail);
     this.tabRoom.Location = new System.Drawing.Point(4, 22);
     this.tabRoom.Name = "tabRoom";
     this.tabRoom.Padding = new System.Windows.Forms.Padding(3);
     this.tabRoom.Size = new System.Drawing.Size(451, 745);
     this.tabRoom.TabIndex = 0;
     this.tabRoom.Text = "Room Detail";
     //
     // pnlRoomDetail
     //
     this.pnlRoomDetail.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnlRoomDetail.Controls.Add(this.btnCopyRoom);
     this.pnlRoomDetail.Controls.Add(this.lblRoomRoomNumber);
     this.pnlRoomDetail.Controls.Add(this.lblDetailRoomNumber);
     this.pnlRoomDetail.Controls.Add(this.btnSaveRoom);
     this.pnlRoomDetail.Controls.Add(this.cboSector);
     this.pnlRoomDetail.Controls.Add(this.txtVNUM);
     this.pnlRoomDetail.Controls.Add(this.txtRoomName);
     this.pnlRoomDetail.Controls.Add(this.txtExtraDescKeywords);
     this.pnlRoomDetail.Controls.Add(this.txtExtraDescription);
     this.pnlRoomDetail.Controls.Add(this.txtDownExit);
     this.pnlRoomDetail.Controls.Add(this.txtUpExit);
     this.pnlRoomDetail.Controls.Add(this.txtWestExit);
     this.pnlRoomDetail.Controls.Add(this.txtEastExit);
     this.pnlRoomDetail.Controls.Add(this.txtSouthExit);
     this.pnlRoomDetail.Controls.Add(this.txtNorthExit);
     this.pnlRoomDetail.Controls.Add(this.lblDownExit);
     this.pnlRoomDetail.Controls.Add(this.lblUpExit);
     this.pnlRoomDetail.Controls.Add(this.lblWestExit);
     this.pnlRoomDetail.Controls.Add(this.lblEastExit);
     this.pnlRoomDetail.Controls.Add(this.lblSouthExit);
     this.pnlRoomDetail.Controls.Add(this.lblNorthExit);
     this.pnlRoomDetail.Controls.Add(this.lblExtraDescription);
     this.pnlRoomDetail.Controls.Add(this.lblExtraDescKeywords);
     this.pnlRoomDetail.Controls.Add(this.txtRoomDescription);
     this.pnlRoomDetail.Controls.Add(this.lblRoomDescription);
     this.pnlRoomDetail.Controls.Add(this.lblTerrain);
     this.pnlRoomDetail.Controls.Add(this.lblRoomName);
     this.pnlRoomDetail.Controls.Add(this.lblRoomVNUM);
     this.pnlRoomDetail.Location = new System.Drawing.Point(16, 23);
     this.pnlRoomDetail.Name = "pnlRoomDetail";
     this.pnlRoomDetail.Size = new System.Drawing.Size(422, 706);
     this.pnlRoomDetail.TabIndex = 0;
     //
     // btnCopyRoom
     //
     this.btnCopyRoom.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCopyRoom.Location = new System.Drawing.Point(9, 672);
     this.btnCopyRoom.Name = "btnCopyRoom";
     this.btnCopyRoom.Size = new System.Drawing.Size(84, 23);
     this.btnCopyRoom.TabIndex = 25;
     this.btnCopyRoom.Text = "Copy Room";
     this.btnCopyRoom.UseVisualStyleBackColor = true;
     //
     // lblRoomRoomNumber
     //
     this.lblRoomRoomNumber.AutoSize = true;
     this.lblRoomRoomNumber.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblRoomRoomNumber.Location = new System.Drawing.Point(106, 48);
     this.lblRoomRoomNumber.Name = "lblRoomRoomNumber";
     this.lblRoomRoomNumber.Size = new System.Drawing.Size(0, 13);
     this.lblRoomRoomNumber.TabIndex = 26;
     //
     // lblDetailRoomNumber
     //
     this.lblDetailRoomNumber.AutoSize = true;
     this.lblDetailRoomNumber.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblDetailRoomNumber.Location = new System.Drawing.Point(16, 48);
     this.lblDetailRoomNumber.Name = "lblDetailRoomNumber";
     this.lblDetailRoomNumber.Size = new System.Drawing.Size(77, 14);
     this.lblDetailRoomNumber.TabIndex = 25;
     this.lblDetailRoomNumber.Text = "Room Number:";
     //
     // btnSaveRoom
     //
     this.btnSaveRoom.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSaveRoom.Location = new System.Drawing.Point(331, 673);
     this.btnSaveRoom.Name = "btnSaveRoom";
     this.btnSaveRoom.Size = new System.Drawing.Size(75, 23);
     this.btnSaveRoom.TabIndex = 26;
     this.btnSaveRoom.Text = "Save Room";
     this.btnSaveRoom.UseVisualStyleBackColor = true;
     this.btnSaveRoom.Click += new System.EventHandler(this.btnSaveRoom_Click);
     //
     // cboSector
     //
     this.cboSector.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.cboSector.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboSector.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboSector.FormattingEnabled = true;
     this.cboSector.Items.AddRange(new object[] {
     "Inside",
     "City",
     "Field",
     "Forest",
     "Hills",
     "Mountain",
     "Water - Swim",
     "Water - No Swim"});
     this.cboSector.Location = new System.Drawing.Point(285, 45);
     this.cboSector.Name = "cboSector";
     this.cboSector.Size = new System.Drawing.Size(121, 22);
     this.cboSector.TabIndex = 14;
     //
     // txtVNUM
     //
     this.txtVNUM.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.txtVNUM.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtVNUM.Location = new System.Drawing.Point(59, 72);
     this.txtVNUM.Name = "txtVNUM";
     this.txtVNUM.Size = new System.Drawing.Size(100, 20);
     this.txtVNUM.TabIndex = 15;
     //
     // txtRoomName
     //
     this.txtRoomName.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.txtRoomName.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtRoomName.Location = new System.Drawing.Point(15, 19);
     this.txtRoomName.Name = "txtRoomName";
     this.txtRoomName.Size = new System.Drawing.Size(392, 20);
     this.txtRoomName.TabIndex = 13;
     //
     // txtExtraDescKeywords
     //
     this.txtExtraDescKeywords.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.txtExtraDescKeywords.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtExtraDescKeywords.Location = new System.Drawing.Point(14, 430);
     this.txtExtraDescKeywords.Name = "txtExtraDescKeywords";
     this.txtExtraDescKeywords.Size = new System.Drawing.Size(392, 20);
     this.txtExtraDescKeywords.TabIndex = 17;
     //
     // txtExtraDescription
     //
     this.txtExtraDescription.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.txtExtraDescription.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtExtraDescription.Location = new System.Drawing.Point(15, 470);
     this.txtExtraDescription.Name = "txtExtraDescription";
     this.txtExtraDescription.Size = new System.Drawing.Size(392, 20);
     this.txtExtraDescription.TabIndex = 18;
     //
     // txtDownExit
     //
     this.txtDownExit.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.txtDownExit.Location = new System.Drawing.Point(95, 645);
     this.txtDownExit.Name = "txtDownExit";
     this.txtDownExit.Size = new System.Drawing.Size(312, 22);
     this.txtDownExit.TabIndex = 24;
     //
     // txtUpExit
     //
     this.txtUpExit.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.txtUpExit.Location = new System.Drawing.Point(95, 617);
     this.txtUpExit.Name = "txtUpExit";
     this.txtUpExit.Size = new System.Drawing.Size(312, 22);
     this.txtUpExit.TabIndex = 23;
     //
     // txtWestExit
     //
     this.txtWestExit.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.txtWestExit.Location = new System.Drawing.Point(95, 590);
     this.txtWestExit.Name = "txtWestExit";
     this.txtWestExit.Size = new System.Drawing.Size(312, 22);
     this.txtWestExit.TabIndex = 22;
     //
     // txtEastExit
     //
     this.txtEastExit.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.txtEastExit.Location = new System.Drawing.Point(95, 563);
     this.txtEastExit.Name = "txtEastExit";
     this.txtEastExit.Size = new System.Drawing.Size(312, 22);
     this.txtEastExit.TabIndex = 21;
     //
     // txtSouthExit
     //
     this.txtSouthExit.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.txtSouthExit.Location = new System.Drawing.Point(95, 536);
     this.txtSouthExit.Name = "txtSouthExit";
     this.txtSouthExit.Size = new System.Drawing.Size(312, 22);
     this.txtSouthExit.TabIndex = 20;
     //
     // txtNorthExit
     //
     this.txtNorthExit.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.txtNorthExit.Location = new System.Drawing.Point(95, 509);
     this.txtNorthExit.Name = "txtNorthExit";
     this.txtNorthExit.Size = new System.Drawing.Size(312, 22);
     this.txtNorthExit.TabIndex = 19;
     //
     // lblDownExit
     //
     this.lblDownExit.AutoSize = true;
     this.lblDownExit.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblDownExit.Location = new System.Drawing.Point(8, 647);
     this.lblDownExit.Name = "lblDownExit";
     this.lblDownExit.Size = new System.Drawing.Size(87, 14);
     this.lblDownExit.TabIndex = 12;
     this.lblDownExit.Text = "Down Exit Desc:";
     //
     // lblUpExit
     //
     this.lblUpExit.AutoSize = true;
     this.lblUpExit.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblUpExit.Location = new System.Drawing.Point(24, 620);
     this.lblUpExit.Name = "lblUpExit";
     this.lblUpExit.Size = new System.Drawing.Size(71, 14);
     this.lblUpExit.TabIndex = 11;
     this.lblUpExit.Text = "Up Exit Desc:";
     //
     // lblWestExit
     //
     this.lblWestExit.AutoSize = true;
     this.lblWestExit.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblWestExit.Location = new System.Drawing.Point(12, 592);
     this.lblWestExit.Name = "lblWestExit";
     this.lblWestExit.Size = new System.Drawing.Size(83, 14);
     this.lblWestExit.TabIndex = 10;
     this.lblWestExit.Text = "West Exit Desc:";
     //
     // lblEastExit
     //
     this.lblEastExit.AutoSize = true;
     this.lblEastExit.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblEastExit.Location = new System.Drawing.Point(16, 566);
     this.lblEastExit.Name = "lblEastExit";
     this.lblEastExit.Size = new System.Drawing.Size(79, 14);
     this.lblEastExit.TabIndex = 9;
     this.lblEastExit.Text = "East Exit Desc:";
     //
     // lblSouthExit
     //
     this.lblSouthExit.AutoSize = true;
     this.lblSouthExit.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSouthExit.Location = new System.Drawing.Point(9, 540);
     this.lblSouthExit.Name = "lblSouthExit";
     this.lblSouthExit.Size = new System.Drawing.Size(86, 14);
     this.lblSouthExit.TabIndex = 8;
     this.lblSouthExit.Text = "South Exit Desc:";
     //
     // lblNorthExit
     //
     this.lblNorthExit.AutoSize = true;
     this.lblNorthExit.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblNorthExit.Location = new System.Drawing.Point(11, 514);
     this.lblNorthExit.Name = "lblNorthExit";
     this.lblNorthExit.Size = new System.Drawing.Size(84, 14);
     this.lblNorthExit.TabIndex = 7;
     this.lblNorthExit.Text = "North Exit Desc:";
     //
     // lblExtraDescription
     //
     this.lblExtraDescription.AutoSize = true;
     this.lblExtraDescription.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblExtraDescription.Location = new System.Drawing.Point(15, 453);
     this.lblExtraDescription.Name = "lblExtraDescription";
     this.lblExtraDescription.Size = new System.Drawing.Size(92, 14);
     this.lblExtraDescription.TabIndex = 6;
     this.lblExtraDescription.Text = "Extra Description:";
     //
     // lblExtraDescKeywords
     //
     this.lblExtraDescKeywords.AutoSize = true;
     this.lblExtraDescKeywords.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblExtraDescKeywords.Location = new System.Drawing.Point(15, 415);
     this.lblExtraDescKeywords.Name = "lblExtraDescKeywords";
     this.lblExtraDescKeywords.Size = new System.Drawing.Size(146, 14);
     this.lblExtraDescKeywords.TabIndex = 5;
     this.lblExtraDescKeywords.Text = "Extra Description Keywords:";
     //
     // txtRoomDescription
     //
     this.txtRoomDescription.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.txtRoomDescription.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtRoomDescription.Location = new System.Drawing.Point(15, 114);
     this.txtRoomDescription.Multiline = true;
     this.txtRoomDescription.Name = "txtRoomDescription";
     this.txtRoomDescription.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtRoomDescription.Size = new System.Drawing.Size(392, 289);
     this.txtRoomDescription.TabIndex = 16;
     //
     // lblRoomDescription
     //
     this.lblRoomDescription.AutoSize = true;
     this.lblRoomDescription.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblRoomDescription.Location = new System.Drawing.Point(16, 101);
     this.lblRoomDescription.Name = "lblRoomDescription";
     this.lblRoomDescription.Size = new System.Drawing.Size(94, 14);
     this.lblRoomDescription.TabIndex = 3;
     this.lblRoomDescription.Text = "Room Description:";
     //
     // lblTerrain
     //
     this.lblTerrain.AutoSize = true;
     this.lblTerrain.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTerrain.Location = new System.Drawing.Point(243, 48);
     this.lblTerrain.Name = "lblTerrain";
     this.lblTerrain.Size = new System.Drawing.Size(42, 14);
     this.lblTerrain.TabIndex = 2;
     this.lblTerrain.Text = "Sector:";
     //
     // lblRoomName
     //
     this.lblRoomName.AutoSize = true;
     this.lblRoomName.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblRoomName.Location = new System.Drawing.Point(16, 5);
     this.lblRoomName.Name = "lblRoomName";
     this.lblRoomName.Size = new System.Drawing.Size(67, 14);
     this.lblRoomName.TabIndex = 1;
     this.lblRoomName.Text = "Room Name:";
     //
     // lblRoomVNUM
     //
     this.lblRoomVNUM.AutoSize = true;
     this.lblRoomVNUM.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblRoomVNUM.Location = new System.Drawing.Point(16, 75);
     this.lblRoomVNUM.Name = "lblRoomVNUM";
     this.lblRoomVNUM.Size = new System.Drawing.Size(40, 14);
     this.lblRoomVNUM.TabIndex = 0;
     this.lblRoomVNUM.Text = "VNUM:";
     //
     // lblButtonName
     //
     this.lblButtonName.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblButtonName.Location = new System.Drawing.Point(83, 0);
     this.lblButtonName.Name = "lblButtonName";
     this.lblButtonName.Size = new System.Drawing.Size(71, 23);
     this.lblButtonName.TabIndex = 0;
     this.lblButtonName.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // lblIndoors
     //
     this.lblIndoors.Location = new System.Drawing.Point(0, 0);
     this.lblIndoors.Name = "lblIndoors";
     this.lblIndoors.Size = new System.Drawing.Size(100, 23);
     this.lblIndoors.TabIndex = 0;
     //
     // btnIndoors
     //
     this.btnIndoors.Location = new System.Drawing.Point(0, 0);
     this.btnIndoors.Name = "btnIndoors";
     this.btnIndoors.Size = new System.Drawing.Size(75, 23);
     this.btnIndoors.TabIndex = 0;
     //
     // tabControl
     //
     this.tabControl.Controls.Add(this.tabArea);
     this.tabControl.Controls.Add(this.tabRoom);
     this.tabControl.Controls.Add(this.tabAttributes);
     this.tabControl.Controls.Add(this.tabMob);
     this.tabControl.Enabled = false;
     this.tabControl.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControl.Location = new System.Drawing.Point(965, 38);
     this.tabControl.Name = "tabControl";
     this.tabControl.SelectedIndex = 0;
     this.tabControl.Size = new System.Drawing.Size(459, 771);
     this.tabControl.TabIndex = 7;
     //
     // tabArea
     //
     this.tabArea.BackColor = System.Drawing.Color.LightSlateGray;
     this.tabArea.Controls.Add(this.lblMapConfigLabel);
     this.tabArea.Controls.Add(this.pnlMapConfig);
     this.tabArea.Controls.Add(this.lblRoomCount);
     this.tabArea.Controls.Add(this.lblZoomViewLabel);
     this.tabArea.Controls.Add(this.lblRoomCountLabel);
     this.tabArea.Controls.Add(this.lblOverviewRoomName);
     this.tabArea.Controls.Add(this.lblDoorSection);
     this.tabArea.Controls.Add(this.pnlZoom);
     this.tabArea.Controls.Add(this.pnlDoor);
     this.tabArea.Controls.Add(this.lblAreaID);
     this.tabArea.Controls.Add(this.lblGeneral);
     this.tabArea.Controls.Add(this.lblAreaIDPrompt);
     this.tabArea.Controls.Add(this.pnlGeneral);
     this.tabArea.Location = new System.Drawing.Point(4, 22);
     this.tabArea.Name = "tabArea";
     this.tabArea.Size = new System.Drawing.Size(451, 745);
     this.tabArea.TabIndex = 0;
     this.tabArea.Text = "Area Overview";
     //
     // lblMapConfigLabel
     //
     this.lblMapConfigLabel.AutoSize = true;
     this.lblMapConfigLabel.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMapConfigLabel.Location = new System.Drawing.Point(9, 137);
     this.lblMapConfigLabel.Name = "lblMapConfigLabel";
     this.lblMapConfigLabel.Size = new System.Drawing.Size(131, 14);
     this.lblMapConfigLabel.TabIndex = 26;
     this.lblMapConfigLabel.Text = "Map Creation Behavior";
     //
     // pnlMapConfig
     //
     this.pnlMapConfig.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnlMapConfig.Controls.Add(this.chkAutoMap);
     this.pnlMapConfig.Controls.Add(this.lblDefault);
     this.pnlMapConfig.Controls.Add(this.btnDefault);
     this.pnlMapConfig.Location = new System.Drawing.Point(9, 151);
     this.pnlMapConfig.Name = "pnlMapConfig";
     this.pnlMapConfig.Size = new System.Drawing.Size(429, 109);
     this.pnlMapConfig.TabIndex = 25;
     //
     // chkAutoMap
     //
     this.chkAutoMap.AutoSize = true;
     this.chkAutoMap.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAutoMap.Location = new System.Drawing.Point(272, 13);
     this.chkAutoMap.Name = "chkAutoMap";
     this.chkAutoMap.Size = new System.Drawing.Size(138, 18);
     this.chkAutoMap.TabIndex = 4;
     this.chkAutoMap.Text = "Enable Map Creation";
     this.chkAutoMap.UseVisualStyleBackColor = true;
     this.chkAutoMap.CheckedChanged += new System.EventHandler(this.chkAutoMap_CheckedChanged);
     //
     // lblDefault
     //
     this.lblDefault.AutoSize = true;
     this.lblDefault.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblDefault.Location = new System.Drawing.Point(35, 14);
     this.lblDefault.Name = "lblDefault";
     this.lblDefault.Size = new System.Drawing.Size(99, 14);
     this.lblDefault.TabIndex = 9;
     this.lblDefault.Text = "Default Room Color";
     //
     // btnDefault
     //
     this.btnDefault.Location = new System.Drawing.Point(11, 9);
     this.btnDefault.Name = "btnDefault";
     this.btnDefault.Size = new System.Drawing.Size(20, 20);
     this.btnDefault.TabIndex = 8;
     this.btnDefault.TextImageRelation = System.Windows.Forms.TextImageRelation.TextAboveImage;
     this.btnDefault.UseVisualStyleBackColor = true;
     this.btnDefault.Click += new System.EventHandler(this.btnDefault_Click);
     //
     // lblRoomCount
     //
     this.lblRoomCount.AutoSize = true;
     this.lblRoomCount.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblRoomCount.Location = new System.Drawing.Point(420, 16);
     this.lblRoomCount.Name = "lblRoomCount";
     this.lblRoomCount.Size = new System.Drawing.Size(0, 14);
     this.lblRoomCount.TabIndex = 24;
     this.lblRoomCount.Visible = false;
     //
     // lblZoomViewLabel
     //
     this.lblZoomViewLabel.AutoSize = true;
     this.lblZoomViewLabel.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblZoomViewLabel.Location = new System.Drawing.Point(9, 425);
     this.lblZoomViewLabel.Name = "lblZoomViewLabel";
     this.lblZoomViewLabel.Size = new System.Drawing.Size(120, 14);
     this.lblZoomViewLabel.TabIndex = 21;
     this.lblZoomViewLabel.Text = "Current Room Zoom";
     //
     // lblRoomCountLabel
     //
     this.lblRoomCountLabel.AutoSize = true;
     this.lblRoomCountLabel.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblRoomCountLabel.Location = new System.Drawing.Point(346, 16);
     this.lblRoomCountLabel.Name = "lblRoomCountLabel";
     this.lblRoomCountLabel.Size = new System.Drawing.Size(68, 14);
     this.lblRoomCountLabel.TabIndex = 23;
     this.lblRoomCountLabel.Text = "Room Count:";
     this.lblRoomCountLabel.Visible = false;
     //
     // lblOverviewRoomName
     //
     this.lblOverviewRoomName.AutoSize = true;
     this.lblOverviewRoomName.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblOverviewRoomName.Location = new System.Drawing.Point(167, 378);
     this.lblOverviewRoomName.Name = "lblOverviewRoomName";
     this.lblOverviewRoomName.Size = new System.Drawing.Size(0, 16);
     this.lblOverviewRoomName.TabIndex = 20;
     //
     // lblDoorSection
     //
     this.lblDoorSection.AutoSize = true;
     this.lblDoorSection.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblDoorSection.Location = new System.Drawing.Point(10, 275);
     this.lblDoorSection.Name = "lblDoorSection";
     this.lblDoorSection.Size = new System.Drawing.Size(111, 14);
     this.lblDoorSection.TabIndex = 17;
     this.lblDoorSection.Text = "Door Configuration";
     //
     // pnlZoom
     //
     this.pnlZoom.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnlZoom.Controls.Add(this.btnDoorWest);
     this.pnlZoom.Controls.Add(this.btnDoorDown);
     this.pnlZoom.Controls.Add(this.btnDoorSouth);
     this.pnlZoom.Controls.Add(this.btnDoorEast);
     this.pnlZoom.Controls.Add(this.btnDoorUp);
     this.pnlZoom.Controls.Add(this.btnDoorNorth);
     this.pnlZoom.Controls.Add(this.btnZoomDown);
     this.pnlZoom.Controls.Add(this.btnZoomUp);
     this.pnlZoom.Controls.Add(this.lblZ);
     this.pnlZoom.Controls.Add(this.lblY);
     this.pnlZoom.Controls.Add(this.lblX);
     this.pnlZoom.Controls.Add(this.lblCoordZ);
     this.pnlZoom.Controls.Add(this.lblCoordY);
     this.pnlZoom.Controls.Add(this.lblCoordX);
     this.pnlZoom.Controls.Add(this.btnZoomWest);
     this.pnlZoom.Controls.Add(this.btnZoomEast);
     this.pnlZoom.Controls.Add(this.btnZoomSouth);
     this.pnlZoom.Controls.Add(this.btnZoomNorth);
     this.pnlZoom.Controls.Add(this.btnCurrentZoom);
     this.pnlZoom.Location = new System.Drawing.Point(9, 439);
     this.pnlZoom.Name = "pnlZoom";
     this.pnlZoom.Size = new System.Drawing.Size(429, 295);
     this.pnlZoom.TabIndex = 14;
     //
     // btnDoorWest
     //
     this.btnDoorWest.Image = ((System.Drawing.Image)(resources.GetObject("btnDoorWest.Image")));
     this.btnDoorWest.Location = new System.Drawing.Point(88, 117);
     this.btnDoorWest.Name = "btnDoorWest";
     this.btnDoorWest.Size = new System.Drawing.Size(54, 58);
     this.btnDoorWest.TabIndex = 28;
     this.btnDoorWest.UseVisualStyleBackColor = true;
     this.btnDoorWest.Visible = false;
     this.btnDoorWest.Click += new System.EventHandler(this.btnDoorWest_Click);
     //
     // btnDoorDown
     //
     this.btnDoorDown.Image = ((System.Drawing.Image)(resources.GetObject("btnDoorDown.Image")));
     this.btnDoorDown.Location = new System.Drawing.Point(88, 220);
     this.btnDoorDown.Name = "btnDoorDown";
     this.btnDoorDown.Size = new System.Drawing.Size(54, 58);
     this.btnDoorDown.TabIndex = 27;
     this.btnDoorDown.UseVisualStyleBackColor = true;
     this.btnDoorDown.Visible = false;
     this.btnDoorDown.Click += new System.EventHandler(this.btnDoorDown_Click);
     //
     // btnDoorSouth
     //
     this.btnDoorSouth.Image = ((System.Drawing.Image)(resources.GetObject("btnDoorSouth.Image")));
     this.btnDoorSouth.Location = new System.Drawing.Point(189, 220);
     this.btnDoorSouth.Name = "btnDoorSouth";
     this.btnDoorSouth.Size = new System.Drawing.Size(54, 58);
     this.btnDoorSouth.TabIndex = 26;
     this.btnDoorSouth.UseVisualStyleBackColor = true;
     this.btnDoorSouth.Visible = false;
     this.btnDoorSouth.Click += new System.EventHandler(this.btnDoorSouth_Click);
     //
     // btnDoorEast
     //
     this.btnDoorEast.Image = ((System.Drawing.Image)(resources.GetObject("btnDoorEast.Image")));
     this.btnDoorEast.Location = new System.Drawing.Point(285, 116);
     this.btnDoorEast.Name = "btnDoorEast";
     this.btnDoorEast.Size = new System.Drawing.Size(54, 58);
     this.btnDoorEast.TabIndex = 25;
     this.btnDoorEast.UseVisualStyleBackColor = true;
     this.btnDoorEast.Visible = false;
     this.btnDoorEast.Click += new System.EventHandler(this.btnDoorEast_Click);
     //
     // btnDoorUp
     //
     this.btnDoorUp.Image = ((System.Drawing.Image)(resources.GetObject("btnDoorUp.Image")));
     this.btnDoorUp.Location = new System.Drawing.Point(285, 17);
     this.btnDoorUp.Name = "btnDoorUp";
     this.btnDoorUp.Size = new System.Drawing.Size(54, 58);
     this.btnDoorUp.TabIndex = 24;
     this.btnDoorUp.UseVisualStyleBackColor = true;
     this.btnDoorUp.Visible = false;
     this.btnDoorUp.Click += new System.EventHandler(this.btnDoorUp_Click);
     //
     // btnDoorNorth
     //
     this.btnDoorNorth.Image = ((System.Drawing.Image)(resources.GetObject("btnDoorNorth.Image")));
     this.btnDoorNorth.Location = new System.Drawing.Point(189, 17);
     this.btnDoorNorth.Name = "btnDoorNorth";
     this.btnDoorNorth.Size = new System.Drawing.Size(54, 58);
     this.btnDoorNorth.TabIndex = 23;
     this.btnDoorNorth.UseVisualStyleBackColor = true;
     this.btnDoorNorth.Visible = false;
     this.btnDoorNorth.Click += new System.EventHandler(this.btnDoorNorth_Click);
     //
     // btnZoomDown
     //
     this.btnZoomDown.Image = ((System.Drawing.Image)(resources.GetObject("btnZoomDown.Image")));
     this.btnZoomDown.Location = new System.Drawing.Point(99, 224);
     this.btnZoomDown.Name = "btnZoomDown";
     this.btnZoomDown.Size = new System.Drawing.Size(58, 50);
     this.btnZoomDown.TabIndex = 0;
     this.btnZoomDown.TabStop = false;
     this.btnZoomDown.Visible = false;
     //
     // btnZoomUp
     //
     this.btnZoomUp.Image = ((System.Drawing.Image)(resources.GetObject("btnZoomUp.Image")));
     this.btnZoomUp.Location = new System.Drawing.Point(289, 21);
     this.btnZoomUp.Name = "btnZoomUp";
     this.btnZoomUp.Size = new System.Drawing.Size(51, 50);
     this.btnZoomUp.TabIndex = 1;
     this.btnZoomUp.TabStop = false;
     this.btnZoomUp.Visible = false;
     //
     // lblZ
     //
     this.lblZ.AutoSize = true;
     this.lblZ.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblZ.Location = new System.Drawing.Point(59, 59);
     this.lblZ.Name = "lblZ";
     this.lblZ.Size = new System.Drawing.Size(14, 15);
     this.lblZ.TabIndex = 22;
     this.lblZ.Text = "0";
     //
     // lblY
     //
     this.lblY.AutoSize = true;
     this.lblY.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblY.Location = new System.Drawing.Point(59, 36);
     this.lblY.Name = "lblY";
     this.lblY.Size = new System.Drawing.Size(14, 15);
     this.lblY.TabIndex = 21;
     this.lblY.Text = "0";
     //
     // lblX
     //
     this.lblX.AutoSize = true;
     this.lblX.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblX.Location = new System.Drawing.Point(59, 14);
     this.lblX.Name = "lblX";
     this.lblX.Size = new System.Drawing.Size(14, 15);
     this.lblX.TabIndex = 20;
     this.lblX.Text = "0";
     //
     // lblCoordZ
     //
     this.lblCoordZ.AutoSize = true;
     this.lblCoordZ.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCoordZ.Location = new System.Drawing.Point(19, 59);
     this.lblCoordZ.Name = "lblCoordZ";
     this.lblCoordZ.Size = new System.Drawing.Size(40, 15);
     this.lblCoordZ.TabIndex = 19;
     this.lblCoordZ.Text = "Level:";
     //
     // lblCoordY
     //
     this.lblCoordY.AutoSize = true;
     this.lblCoordY.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCoordY.Location = new System.Drawing.Point(14, 36);
     this.lblCoordY.Name = "lblCoordY";
     this.lblCoordY.Size = new System.Drawing.Size(45, 15);
     this.lblCoordY.TabIndex = 18;
     this.lblCoordY.Text = "Y-Axis:";
     //
     // lblCoordX
     //
     this.lblCoordX.AutoSize = true;
     this.lblCoordX.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCoordX.Location = new System.Drawing.Point(13, 13);
     this.lblCoordX.Name = "lblCoordX";
     this.lblCoordX.Size = new System.Drawing.Size(47, 15);
     this.lblCoordX.TabIndex = 17;
     this.lblCoordX.Text = "X-Axis:";
     //
     // btnZoomWest
     //
     this.btnZoomWest.BackColor = System.Drawing.Color.Black;
     this.btnZoomWest.Location = new System.Drawing.Point(92, 138);
     this.btnZoomWest.Name = "btnZoomWest";
     this.btnZoomWest.Size = new System.Drawing.Size(50, 14);
     this.btnZoomWest.TabIndex = 4;
     this.btnZoomWest.UseVisualStyleBackColor = false;
     this.btnZoomWest.Visible = false;
     //
     // btnZoomEast
     //
     this.btnZoomEast.BackColor = System.Drawing.Color.Black;
     this.btnZoomEast.Location = new System.Drawing.Point(286, 139);
     this.btnZoomEast.Name = "btnZoomEast";
     this.btnZoomEast.Size = new System.Drawing.Size(50, 14);
     this.btnZoomEast.TabIndex = 3;
     this.btnZoomEast.UseVisualStyleBackColor = false;
     this.btnZoomEast.Visible = false;
     //
     // btnZoomSouth
     //
     this.btnZoomSouth.BackColor = System.Drawing.Color.Black;
     this.btnZoomSouth.Location = new System.Drawing.Point(209, 224);
     this.btnZoomSouth.Name = "btnZoomSouth";
     this.btnZoomSouth.Size = new System.Drawing.Size(14, 50);
     this.btnZoomSouth.TabIndex = 2;
     this.btnZoomSouth.UseVisualStyleBackColor = false;
     this.btnZoomSouth.Visible = false;
     //
     // btnZoomNorth
     //
     this.btnZoomNorth.BackColor = System.Drawing.Color.Black;
     this.btnZoomNorth.Location = new System.Drawing.Point(209, 21);
     this.btnZoomNorth.Name = "btnZoomNorth";
     this.btnZoomNorth.Size = new System.Drawing.Size(14, 50);
     this.btnZoomNorth.TabIndex = 1;
     this.btnZoomNorth.UseVisualStyleBackColor = false;
     this.btnZoomNorth.Visible = false;
     //
     // btnCurrentZoom
     //
     this.btnCurrentZoom.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnCurrentZoom.Location = new System.Drawing.Point(160, 91);
     this.btnCurrentZoom.Name = "btnCurrentZoom";
     this.btnCurrentZoom.Size = new System.Drawing.Size(110, 110);
     this.btnCurrentZoom.TabIndex = 0;
     this.btnCurrentZoom.UseVisualStyleBackColor = true;
     this.btnCurrentZoom.Visible = false;
     //
     // pnlDoor
     //
     this.pnlDoor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnlDoor.Controls.Add(this.btnDeleteDoor);
     this.pnlDoor.Controls.Add(this.lblDoorID);
     this.pnlDoor.Controls.Add(this.lblDoorFlag);
     this.pnlDoor.Controls.Add(this.cboDoorType);
     this.pnlDoor.Controls.Add(this.lblDoorKey);
     this.pnlDoor.Controls.Add(this.cboDoorKey);
     this.pnlDoor.Controls.Add(this.lblDoorObjNum);
     this.pnlDoor.Controls.Add(this.txtDoorVNUM);
     this.pnlDoor.Controls.Add(this.btnSaveDoor);
     this.pnlDoor.Controls.Add(this.lblKeywords);
     this.pnlDoor.Controls.Add(this.txtDoorKeywords);
     this.pnlDoor.Controls.Add(this.lblDirection);
     this.pnlDoor.Controls.Add(this.cboDirection);
     this.pnlDoor.Location = new System.Drawing.Point(9, 289);
     this.pnlDoor.Name = "pnlDoor";
     this.pnlDoor.Size = new System.Drawing.Size(429, 117);
     this.pnlDoor.TabIndex = 12;
     //
     // btnDeleteDoor
     //
     this.btnDeleteDoor.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnDeleteDoor.Location = new System.Drawing.Point(339, 60);
     this.btnDeleteDoor.Name = "btnDeleteDoor";
     this.btnDeleteDoor.Size = new System.Drawing.Size(75, 23);
     this.btnDeleteDoor.TabIndex = 23;
     this.btnDeleteDoor.Text = "Delete Door";
     this.btnDeleteDoor.UseVisualStyleBackColor = true;
     this.btnDeleteDoor.Click += new System.EventHandler(this.btnDeleteDoor_Click);
     //
     // lblDoorID
     //
     this.lblDoorID.AutoSize = true;
     this.lblDoorID.Location = new System.Drawing.Point(4, 31);
     this.lblDoorID.Name = "lblDoorID";
     this.lblDoorID.Size = new System.Drawing.Size(0, 13);
     this.lblDoorID.TabIndex = 22;
     this.lblDoorID.Visible = false;
     //
     // lblDoorFlag
     //
     this.lblDoorFlag.AutoSize = true;
     this.lblDoorFlag.Location = new System.Drawing.Point(29, 61);
     this.lblDoorFlag.Name = "lblDoorFlag";
     this.lblDoorFlag.Size = new System.Drawing.Size(62, 13);
     this.lblDoorFlag.TabIndex = 21;
     this.lblDoorFlag.Text = "Door Type:";
     //
     // cboDoorType
     //
     this.cboDoorType.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.cboDoorType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboDoorType.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboDoorType.FormattingEnabled = true;
     this.cboDoorType.Items.AddRange(new object[] {
     "Pickable",
     "Not Pickable",
     "Special Routine"});
     this.cboDoorType.Location = new System.Drawing.Point(96, 57);
     this.cboDoorType.Name = "cboDoorType";
     this.cboDoorType.Size = new System.Drawing.Size(121, 22);
     this.cboDoorType.TabIndex = 11;
     //
     // lblDoorKey
     //
     this.lblDoorKey.AutoSize = true;
     this.lblDoorKey.Location = new System.Drawing.Point(35, 88);
     this.lblDoorKey.Name = "lblDoorKey";
     this.lblDoorKey.Size = new System.Drawing.Size(56, 13);
     this.lblDoorKey.TabIndex = 19;
     this.lblDoorKey.Text = "Door Key:";
     //
     // cboDoorKey
     //
     this.cboDoorKey.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.cboDoorKey.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboDoorKey.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboDoorKey.FormattingEnabled = true;
     this.cboDoorKey.Location = new System.Drawing.Point(96, 84);
     this.cboDoorKey.Name = "cboDoorKey";
     this.cboDoorKey.Size = new System.Drawing.Size(233, 22);
     this.cboDoorKey.TabIndex = 12;
     //
     // lblDoorObjNum
     //
     this.lblDoorObjNum.AutoSize = true;
     this.lblDoorObjNum.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblDoorObjNum.Location = new System.Drawing.Point(15, 35);
     this.lblDoorObjNum.Name = "lblDoorObjNum";
     this.lblDoorObjNum.Size = new System.Drawing.Size(66, 14);
     this.lblDoorObjNum.TabIndex = 17;
     this.lblDoorObjNum.Text = "Door VNUM:";
     //
     // txtDoorVNUM
     //
     this.txtDoorVNUM.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.txtDoorVNUM.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDoorVNUM.Location = new System.Drawing.Point(96, 32);
     this.txtDoorVNUM.Name = "txtDoorVNUM";
     this.txtDoorVNUM.Size = new System.Drawing.Size(88, 20);
     this.txtDoorVNUM.TabIndex = 9;
     //
     // btnSaveDoor
     //
     this.btnSaveDoor.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSaveDoor.Location = new System.Drawing.Point(339, 84);
     this.btnSaveDoor.Name = "btnSaveDoor";
     this.btnSaveDoor.Size = new System.Drawing.Size(74, 23);
     this.btnSaveDoor.TabIndex = 13;
     this.btnSaveDoor.Text = "Save Door";
     this.btnSaveDoor.UseVisualStyleBackColor = true;
     this.btnSaveDoor.Click += new System.EventHandler(this.btnSaveDoor_Click);
     //
     // lblKeywords
     //
     this.lblKeywords.AutoSize = true;
     this.lblKeywords.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblKeywords.Location = new System.Drawing.Point(4, 9);
     this.lblKeywords.Name = "lblKeywords";
     this.lblKeywords.Size = new System.Drawing.Size(87, 14);
     this.lblKeywords.TabIndex = 14;
     this.lblKeywords.Text = "Door Keywords:";
     //
     // txtDoorKeywords
     //
     this.txtDoorKeywords.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.txtDoorKeywords.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDoorKeywords.Location = new System.Drawing.Point(96, 7);
     this.txtDoorKeywords.Name = "txtDoorKeywords";
     this.txtDoorKeywords.Size = new System.Drawing.Size(318, 20);
     this.txtDoorKeywords.TabIndex = 8;
     //
     // lblDirection
     //
     this.lblDirection.AutoSize = true;
     this.lblDirection.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblDirection.Location = new System.Drawing.Point(242, 35);
     this.lblDirection.Name = "lblDirection";
     this.lblDirection.Size = new System.Drawing.Size(78, 14);
     this.lblDirection.TabIndex = 11;
     this.lblDirection.Text = "Door Direction:";
     //
     // cboDirection
     //
     this.cboDirection.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.cboDirection.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboDirection.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboDirection.FormattingEnabled = true;
     this.cboDirection.Items.AddRange(new object[] {
     "North",
     "South",
     "East",
     "West",
     "Up",
     "Down"});
     this.cboDirection.Location = new System.Drawing.Point(325, 32);
     this.cboDirection.Name = "cboDirection";
     this.cboDirection.Size = new System.Drawing.Size(88, 22);
     this.cboDirection.TabIndex = 10;
     //
     // lblAreaID
     //
     this.lblAreaID.AutoSize = true;
     this.lblAreaID.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAreaID.Location = new System.Drawing.Point(254, 16);
     this.lblAreaID.Name = "lblAreaID";
     this.lblAreaID.Size = new System.Drawing.Size(0, 14);
     this.lblAreaID.TabIndex = 5;
     this.lblAreaID.Visible = false;
     //
     // lblGeneral
     //
     this.lblGeneral.AutoSize = true;
     this.lblGeneral.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGeneral.Location = new System.Drawing.Point(9, 16);
     this.lblGeneral.Name = "lblGeneral";
     this.lblGeneral.Size = new System.Drawing.Size(50, 14);
     this.lblGeneral.TabIndex = 11;
     this.lblGeneral.Text = "General";
     //
     // lblAreaIDPrompt
     //
     this.lblAreaIDPrompt.AutoSize = true;
     this.lblAreaIDPrompt.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAreaIDPrompt.Location = new System.Drawing.Point(196, 16);
     this.lblAreaIDPrompt.Name = "lblAreaIDPrompt";
     this.lblAreaIDPrompt.Size = new System.Drawing.Size(49, 14);
     this.lblAreaIDPrompt.TabIndex = 4;
     this.lblAreaIDPrompt.Text = "Area ID:";
     this.lblAreaIDPrompt.Visible = false;
     //
     // pnlGeneral
     //
     this.pnlGeneral.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnlGeneral.Controls.Add(this.lblRoomNameLabel);
     this.pnlGeneral.Controls.Add(this.lblCurrentRoomName);
     this.pnlGeneral.Controls.Add(this.lblVNUM);
     this.pnlGeneral.Controls.Add(this.lblCurrentVNUM);
     this.pnlGeneral.Controls.Add(this.lblButtonName);
     this.pnlGeneral.Controls.Add(this.lblButtonPrompt);
     this.pnlGeneral.Location = new System.Drawing.Point(9, 30);
     this.pnlGeneral.Name = "pnlGeneral";
     this.pnlGeneral.Size = new System.Drawing.Size(429, 87);
     this.pnlGeneral.TabIndex = 10;
     //
     // lblRoomNameLabel
     //
     this.lblRoomNameLabel.AutoSize = true;
     this.lblRoomNameLabel.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblRoomNameLabel.Location = new System.Drawing.Point(6, 31);
     this.lblRoomNameLabel.Name = "lblRoomNameLabel";
     this.lblRoomNameLabel.Size = new System.Drawing.Size(67, 14);
     this.lblRoomNameLabel.TabIndex = 22;
     this.lblRoomNameLabel.Text = "Room Name:";
     //
     // lblCurrentRoomName
     //
     this.lblCurrentRoomName.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCurrentRoomName.Location = new System.Drawing.Point(6, 47);
     this.lblCurrentRoomName.Name = "lblCurrentRoomName";
     this.lblCurrentRoomName.Size = new System.Drawing.Size(413, 16);
     this.lblCurrentRoomName.TabIndex = 21;
     //
     // lblVNUM
     //
     this.lblVNUM.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblVNUM.Location = new System.Drawing.Point(333, 0);
     this.lblVNUM.Name = "lblVNUM";
     this.lblVNUM.Size = new System.Drawing.Size(88, 23);
     this.lblVNUM.TabIndex = 19;
     this.lblVNUM.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // lblCurrentVNUM
     //
     this.lblCurrentVNUM.AutoSize = true;
     this.lblCurrentVNUM.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCurrentVNUM.Location = new System.Drawing.Point(253, 8);
     this.lblCurrentVNUM.Name = "lblCurrentVNUM";
     this.lblCurrentVNUM.Size = new System.Drawing.Size(79, 14);
     this.lblCurrentVNUM.TabIndex = 18;
     this.lblCurrentVNUM.Text = "Current VNUM:";
     //
     // lblButtonPrompt
     //
     this.lblButtonPrompt.AutoSize = true;
     this.lblButtonPrompt.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblButtonPrompt.Location = new System.Drawing.Point(6, 8);
     this.lblButtonPrompt.Name = "lblButtonPrompt";
     this.lblButtonPrompt.Size = new System.Drawing.Size(76, 14);
     this.lblButtonPrompt.TabIndex = 16;
     this.lblButtonPrompt.Text = "Current Room:";
     //
     // tabAttributes
     //
     this.tabAttributes.BackColor = System.Drawing.Color.LightSlateGray;
     this.tabAttributes.Controls.Add(this.panel4);
     this.tabAttributes.Controls.Add(this.btnSaveRoomAttributes);
     this.tabAttributes.Controls.Add(this.lblAttributes);
     this.tabAttributes.Controls.Add(this.panel3);
     this.tabAttributes.Location = new System.Drawing.Point(4, 22);
     this.tabAttributes.Name = "tabAttributes";
     this.tabAttributes.Size = new System.Drawing.Size(451, 745);
     this.tabAttributes.TabIndex = 2;
     this.tabAttributes.Text = "Room Attributes";
     //
     // panel4
     //
     this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel4.Controls.Add(this.lblAttributesRoomVNUM);
     this.panel4.Controls.Add(this.lblAttributesRoomNumber);
     this.panel4.Controls.Add(this.lblAttributesRoomName);
     this.panel4.Controls.Add(this.lblAttRoomID);
     this.panel4.Controls.Add(this.lblAttVNUM);
     this.panel4.Controls.Add(this.lblAttRoomName);
     this.panel4.Location = new System.Drawing.Point(16, 19);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(421, 91);
     this.panel4.TabIndex = 7;
     //
     // lblAttributesRoomVNUM
     //
     this.lblAttributesRoomVNUM.AutoSize = true;
     this.lblAttributesRoomVNUM.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAttributesRoomVNUM.Location = new System.Drawing.Point(88, 68);
     this.lblAttributesRoomVNUM.Name = "lblAttributesRoomVNUM";
     this.lblAttributesRoomVNUM.Size = new System.Drawing.Size(0, 14);
     this.lblAttributesRoomVNUM.TabIndex = 9;
     //
     // lblAttributesRoomNumber
     //
     this.lblAttributesRoomNumber.AutoSize = true;
     this.lblAttributesRoomNumber.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAttributesRoomNumber.Location = new System.Drawing.Point(88, 45);
     this.lblAttributesRoomNumber.Name = "lblAttributesRoomNumber";
     this.lblAttributesRoomNumber.Size = new System.Drawing.Size(0, 14);
     this.lblAttributesRoomNumber.TabIndex = 8;
     //
     // lblAttributesRoomName
     //
     this.lblAttributesRoomName.AutoSize = true;
     this.lblAttributesRoomName.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAttributesRoomName.Location = new System.Drawing.Point(88, 11);
     this.lblAttributesRoomName.Name = "lblAttributesRoomName";
     this.lblAttributesRoomName.Size = new System.Drawing.Size(0, 14);
     this.lblAttributesRoomName.TabIndex = 7;
     //
     // lblAttRoomID
     //
     this.lblAttRoomID.AutoSize = true;
     this.lblAttRoomID.Location = new System.Drawing.Point(3, 45);
     this.lblAttRoomID.Name = "lblAttRoomID";
     this.lblAttRoomID.Size = new System.Drawing.Size(84, 13);
     this.lblAttRoomID.TabIndex = 5;
     this.lblAttRoomID.Text = "Room Number:";
     //
     // lblAttVNUM
     //
     this.lblAttVNUM.AutoSize = true;
     this.lblAttVNUM.Location = new System.Drawing.Point(44, 68);
     this.lblAttVNUM.Name = "lblAttVNUM";
     this.lblAttVNUM.Size = new System.Drawing.Size(43, 13);
     this.lblAttVNUM.TabIndex = 6;
     this.lblAttVNUM.Text = "VNUM:";
     //
     // lblAttRoomName
     //
     this.lblAttRoomName.AutoSize = true;
     this.lblAttRoomName.Location = new System.Drawing.Point(15, 11);
     this.lblAttRoomName.Name = "lblAttRoomName";
     this.lblAttRoomName.Size = new System.Drawing.Size(72, 13);
     this.lblAttRoomName.TabIndex = 4;
     this.lblAttRoomName.Text = "Room Name:";
     //
     // btnSaveRoomAttributes
     //
     this.btnSaveRoomAttributes.Location = new System.Drawing.Point(334, 706);
     this.btnSaveRoomAttributes.Name = "btnSaveRoomAttributes";
     this.btnSaveRoomAttributes.Size = new System.Drawing.Size(100, 23);
     this.btnSaveRoomAttributes.TabIndex = 39;
     this.btnSaveRoomAttributes.Text = "Save Attributes";
     this.btnSaveRoomAttributes.UseVisualStyleBackColor = true;
     //
     // lblAttributes
     //
     this.lblAttributes.AutoSize = true;
     this.lblAttributes.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAttributes.Location = new System.Drawing.Point(16, 136);
     this.lblAttributes.Name = "lblAttributes";
     this.lblAttributes.Size = new System.Drawing.Size(212, 14);
     this.lblAttributes.TabIndex = 1;
     this.lblAttributes.Text = "Select all Room Attributes that apply :";
     //
     // panel3
     //
     this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel3.Controls.Add(this.lblNoMob);
     this.panel3.Controls.Add(this.lblAttDuel);
     this.panel3.Controls.Add(this.lblAttClan);
     this.panel3.Controls.Add(this.chkAttDuel);
     this.panel3.Controls.Add(this.chkAttClan);
     this.panel3.Controls.Add(this.lblAttPrivate);
     this.panel3.Controls.Add(this.chkAttPrivate);
     this.panel3.Controls.Add(this.lblAttNoMagic);
     this.panel3.Controls.Add(this.chkAttNoMagic);
     this.panel3.Controls.Add(this.lblAttSafe);
     this.panel3.Controls.Add(this.chkAttSafe);
     this.panel3.Controls.Add(this.lblAttDeath);
     this.panel3.Controls.Add(this.chkAttDeath);
     this.panel3.Controls.Add(this.lblAttClub);
     this.panel3.Controls.Add(this.chkAttClub);
     this.panel3.Controls.Add(this.lblAttArena);
     this.panel3.Controls.Add(this.lblAttLock);
     this.panel3.Controls.Add(this.chkAttArena);
     this.panel3.Controls.Add(this.chkAttLock);
     this.panel3.Controls.Add(this.lblAttNoMob);
     this.panel3.Controls.Add(this.chkAttNoMob);
     this.panel3.Controls.Add(this.lblAttDark);
     this.panel3.Controls.Add(this.chkAttDark);
     this.panel3.Location = new System.Drawing.Point(16, 153);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(421, 310);
     this.panel3.TabIndex = 0;
     //
     // lblNoMob
     //
     this.lblNoMob.AutoSize = true;
     this.lblNoMob.Location = new System.Drawing.Point(101, 212);
     this.lblNoMob.Name = "lblNoMob";
     this.lblNoMob.Size = new System.Drawing.Size(149, 13);
     this.lblNoMob.TabIndex = 15;
     this.lblNoMob.Text = "Mobs will not wander here.";
     //
     // lblAttDuel
     //
     this.lblAttDuel.AutoSize = true;
     this.lblAttDuel.Location = new System.Drawing.Point(102, 141);
     this.lblAttDuel.Name = "lblAttDuel";
     this.lblAttDuel.Size = new System.Drawing.Size(307, 13);
     this.lblAttDuel.TabIndex = 23;
     this.lblAttDuel.Text = "PvP-friendly.  (Players can kill one another without Penalty)";
     //
     // lblAttClan
     //
     this.lblAttClan.AutoSize = true;
     this.lblAttClan.Location = new System.Drawing.Point(102, 44);
     this.lblAttClan.Name = "lblAttClan";
     this.lblAttClan.Size = new System.Drawing.Size(69, 13);
     this.lblAttClan.TabIndex = 22;
     this.lblAttClan.Text = "Clan House.";
     //
     // chkAttDuel
     //
     this.chkAttDuel.AutoSize = true;
     this.chkAttDuel.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAttDuel.Location = new System.Drawing.Point(12, 140);
     this.chkAttDuel.Name = "chkAttDuel";
     this.chkAttDuel.Size = new System.Drawing.Size(53, 18);
     this.chkAttDuel.TabIndex = 32;
     this.chkAttDuel.Text = "DUEL";
     this.chkAttDuel.UseVisualStyleBackColor = true;
     //
     // chkAttClan
     //
     this.chkAttClan.AutoSize = true;
     this.chkAttClan.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAttClan.Location = new System.Drawing.Point(12, 43);
     this.chkAttClan.Name = "chkAttClan";
     this.chkAttClan.Size = new System.Drawing.Size(56, 18);
     this.chkAttClan.TabIndex = 28;
     this.chkAttClan.Text = "CLAN";
     this.chkAttClan.UseVisualStyleBackColor = true;
     //
     // lblAttPrivate
     //
     this.lblAttPrivate.Location = new System.Drawing.Point(102, 237);
     this.lblAttPrivate.Name = "lblAttPrivate";
     this.lblAttPrivate.Size = new System.Drawing.Size(307, 30);
     this.lblAttPrivate.TabIndex = 15;
     this.lblAttPrivate.Text = "All variations of Relocation or Teleport will not work here.  Random-Room mobs wi" +
     "ll not be placed here.";
     //
     // chkAttPrivate
     //
     this.chkAttPrivate.AutoSize = true;
     this.chkAttPrivate.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAttPrivate.Location = new System.Drawing.Point(12, 236);
     this.chkAttPrivate.Name = "chkAttPrivate";
     this.chkAttPrivate.Size = new System.Drawing.Size(70, 18);
     this.chkAttPrivate.TabIndex = 36;
     this.chkAttPrivate.Text = "PRIVATE";
     this.chkAttPrivate.UseVisualStyleBackColor = true;
     //
     // lblAttNoMagic
     //
     this.lblAttNoMagic.AutoSize = true;
     this.lblAttNoMagic.Location = new System.Drawing.Point(102, 189);
     this.lblAttNoMagic.Name = "lblAttNoMagic";
     this.lblAttNoMagic.Size = new System.Drawing.Size(120, 13);
     this.lblAttNoMagic.TabIndex = 14;
     this.lblAttNoMagic.Text = "All Magic is absorbed.";
     //
     // chkAttNoMagic
     //
     this.chkAttNoMagic.AutoSize = true;
     this.chkAttNoMagic.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAttNoMagic.Location = new System.Drawing.Point(12, 188);
     this.chkAttNoMagic.Name = "chkAttNoMagic";
     this.chkAttNoMagic.Size = new System.Drawing.Size(84, 18);
     this.chkAttNoMagic.TabIndex = 34;
     this.chkAttNoMagic.Text = "NO_MAGIC";
     this.chkAttNoMagic.UseVisualStyleBackColor = true;
     //
     // lblAttSafe
     //
     this.lblAttSafe.AutoSize = true;
     this.lblAttSafe.Location = new System.Drawing.Point(102, 272);
     this.lblAttSafe.Name = "lblAttSafe";
     this.lblAttSafe.Size = new System.Drawing.Size(146, 13);
     this.lblAttSafe.TabIndex = 9;
     this.lblAttSafe.Text = "Combat cannot occur here.";
     //
     // chkAttSafe
     //
     this.chkAttSafe.AutoSize = true;
     this.chkAttSafe.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAttSafe.Location = new System.Drawing.Point(12, 271);
     this.chkAttSafe.Name = "chkAttSafe";
     this.chkAttSafe.Size = new System.Drawing.Size(53, 18);
     this.chkAttSafe.TabIndex = 38;
     this.chkAttSafe.Text = "SAFE";
     this.chkAttSafe.UseVisualStyleBackColor = true;
     //
     // lblAttDeath
     //
     this.lblAttDeath.AutoSize = true;
     this.lblAttDeath.Location = new System.Drawing.Point(102, 116);
     this.lblAttDeath.Name = "lblAttDeath";
     this.lblAttDeath.Size = new System.Drawing.Size(296, 13);
     this.lblAttDeath.TabIndex = 5;
     this.lblAttDeath.Text = "Room is a Death Trap.  Keep Lit so visible on \"exit\" check.";
     //
     // chkAttDeath
     //
     this.chkAttDeath.AutoSize = true;
     this.chkAttDeath.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAttDeath.Location = new System.Drawing.Point(12, 115);
     this.chkAttDeath.Name = "chkAttDeath";
     this.chkAttDeath.Size = new System.Drawing.Size(60, 18);
     this.chkAttDeath.TabIndex = 31;
     this.chkAttDeath.Text = "DEATH";
     this.chkAttDeath.UseVisualStyleBackColor = true;
     //
     // lblAttClub
     //
     this.lblAttClub.AutoSize = true;
     this.lblAttClub.Location = new System.Drawing.Point(102, 68);
     this.lblAttClub.Name = "lblAttClub";
     this.lblAttClub.Size = new System.Drawing.Size(171, 13);
     this.lblAttClub.TabIndex = 19;
     this.lblAttClub.Text = "Resting Room, increases Regen.";
     //
     // chkAttClub
     //
     this.chkAttClub.AutoSize = true;
     this.chkAttClub.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAttClub.Location = new System.Drawing.Point(12, 67);
     this.chkAttClub.Name = "chkAttClub";
     this.chkAttClub.Size = new System.Drawing.Size(55, 18);
     this.chkAttClub.TabIndex = 29;
     this.chkAttClub.Text = "CLUB";
     this.chkAttClub.UseVisualStyleBackColor = true;
     //
     // lblAttArena
     //
     this.lblAttArena.AutoSize = true;
     this.lblAttArena.Location = new System.Drawing.Point(102, 21);
     this.lblAttArena.Name = "lblAttArena";
     this.lblAttArena.Size = new System.Drawing.Size(119, 13);
     this.lblAttArena.TabIndex = 17;
     this.lblAttArena.Text = "PvP-Friendly with EXP.";
     //
     // lblAttLock
     //
     this.lblAttLock.AutoSize = true;
     this.lblAttLock.Location = new System.Drawing.Point(102, 165);
     this.lblAttLock.Name = "lblAttLock";
     this.lblAttLock.Size = new System.Drawing.Size(205, 13);
     this.lblAttLock.TabIndex = 16;
     this.lblAttLock.Text = "Lesser Gods and Mortals cannot enter.";
     //
     // chkAttArena
     //
     this.chkAttArena.AutoSize = true;
     this.chkAttArena.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAttArena.Location = new System.Drawing.Point(12, 20);
     this.chkAttArena.Name = "chkAttArena";
     this.chkAttArena.Size = new System.Drawing.Size(62, 18);
     this.chkAttArena.TabIndex = 27;
     this.chkAttArena.Text = "ARENA";
     this.chkAttArena.UseVisualStyleBackColor = true;
     //
     // chkAttLock
     //
     this.chkAttLock.AutoSize = true;
     this.chkAttLock.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAttLock.Location = new System.Drawing.Point(12, 164);
     this.chkAttLock.Name = "chkAttLock";
     this.chkAttLock.Size = new System.Drawing.Size(56, 18);
     this.chkAttLock.TabIndex = 33;
     this.chkAttLock.Text = "LOCK";
     this.chkAttLock.UseVisualStyleBackColor = true;
     //
     // lblAttNoMob
     //
     this.lblAttNoMob.AutoSize = true;
     this.lblAttNoMob.Location = new System.Drawing.Point(102, 189);
     this.lblAttNoMob.Name = "lblAttNoMob";
     this.lblAttNoMob.Size = new System.Drawing.Size(146, 13);
     this.lblAttNoMob.TabIndex = 7;
     this.lblAttNoMob.Text = "No Mobs can wander here.";
     //
     // chkAttNoMob
     //
     this.chkAttNoMob.AutoSize = true;
     this.chkAttNoMob.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAttNoMob.Location = new System.Drawing.Point(12, 212);
     this.chkAttNoMob.Name = "chkAttNoMob";
     this.chkAttNoMob.Size = new System.Drawing.Size(72, 18);
     this.chkAttNoMob.TabIndex = 35;
     this.chkAttNoMob.Text = "NO_MOB";
     this.chkAttNoMob.UseVisualStyleBackColor = true;
     //
     // lblAttDark
     //
     this.lblAttDark.AutoSize = true;
     this.lblAttDark.Location = new System.Drawing.Point(102, 92);
     this.lblAttDark.Name = "lblAttDark";
     this.lblAttDark.Size = new System.Drawing.Size(127, 13);
     this.lblAttDark.TabIndex = 3;
     this.lblAttDark.Text = "Requires a Light to see.";
     //
     // chkAttDark
     //
     this.chkAttDark.AutoSize = true;
     this.chkAttDark.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAttDark.Location = new System.Drawing.Point(12, 91);
     this.chkAttDark.Name = "chkAttDark";
     this.chkAttDark.Size = new System.Drawing.Size(55, 18);
     this.chkAttDark.TabIndex = 30;
     this.chkAttDark.Text = "DARK";
     this.chkAttDark.UseVisualStyleBackColor = true;
     //
     // panel1
     //
     this.panel1.Location = new System.Drawing.Point(26, 33);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(423, 148);
     this.panel1.TabIndex = 0;
     //
     // menuStrip1
     //
     this.menuStrip1.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.menuStrip1.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.areaToolStripMenuItem,
     this.roomToolStripMenuItem,
     this.mobToolStripMenuItem,
     this.objectToolStripMenuItem,
     this.helpToolStripMenuItem1});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(1450, 24);
     this.menuStrip1.TabIndex = 8;
     this.menuStrip1.Text = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.openToolStripMenuItem,
     this.exitToolStripMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "File";
     //
     // openToolStripMenuItem
     //
     this.openToolStripMenuItem.Name = "openToolStripMenuItem";
     this.openToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
     this.openToolStripMenuItem.Text = "Open";
     this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
     this.exitToolStripMenuItem.Text = "Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // areaToolStripMenuItem
     //
     this.areaToolStripMenuItem.Name = "areaToolStripMenuItem";
     this.areaToolStripMenuItem.Size = new System.Drawing.Size(43, 20);
     this.areaToolStripMenuItem.Text = "Area";
     //
     // roomToolStripMenuItem
     //
     this.roomToolStripMenuItem.Name = "roomToolStripMenuItem";
     this.roomToolStripMenuItem.Size = new System.Drawing.Size(51, 20);
     this.roomToolStripMenuItem.Text = "Room";
     //
     // mobToolStripMenuItem
     //
     this.mobToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.newMobToolStripMenuItem});
     this.mobToolStripMenuItem.Name = "mobToolStripMenuItem";
     this.mobToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.mobToolStripMenuItem.Text = "Mob";
     //
     // newMobToolStripMenuItem
     //
     this.newMobToolStripMenuItem.Name = "newMobToolStripMenuItem";
     this.newMobToolStripMenuItem.Size = new System.Drawing.Size(126, 22);
     this.newMobToolStripMenuItem.Text = "New Mob";
     this.newMobToolStripMenuItem.Click += new System.EventHandler(this.newMobToolStripMenuItem_Click);
     //
     // objectToolStripMenuItem
     //
     this.objectToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.newObjectToolStripMenuItem});
     this.objectToolStripMenuItem.Name = "objectToolStripMenuItem";
     this.objectToolStripMenuItem.Size = new System.Drawing.Size(54, 20);
     this.objectToolStripMenuItem.Text = "Object";
     //
     // newObjectToolStripMenuItem
     //
     this.newObjectToolStripMenuItem.Name = "newObjectToolStripMenuItem";
     this.newObjectToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
     this.newObjectToolStripMenuItem.Text = "New Object";
     this.newObjectToolStripMenuItem.Click += new System.EventHandler(this.newObjectToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem1
     //
     this.helpToolStripMenuItem1.Name = "helpToolStripMenuItem1";
     this.helpToolStripMenuItem1.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem1.Text = "Help";
     //
     // lblAreaHeader
     //
     this.lblAreaHeader.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAreaHeader.Location = new System.Drawing.Point(12, 29);
     this.lblAreaHeader.Name = "lblAreaHeader";
     this.lblAreaHeader.Size = new System.Drawing.Size(947, 23);
     this.lblAreaHeader.TabIndex = 9;
     this.lblAreaHeader.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // Mapper
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll = true;
     this.BackColor = System.Drawing.Color.DimGray;
     this.ClientSize = new System.Drawing.Size(1450, 821);
     this.Controls.Add(this.lblAreaHeader);
     this.Controls.Add(this.tabControl);
     this.Controls.Add(this.menuStrip1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "Mapper";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "GizMaker";
     this.tabMob.ResumeLayout(false);
     this.tabMob.PerformLayout();
     this.panel7.ResumeLayout(false);
     this.panel7.PerformLayout();
     this.panel6.ResumeLayout(false);
     this.panel6.PerformLayout();
     this.panel5.ResumeLayout(false);
     this.panel5.PerformLayout();
     this.tabRoom.ResumeLayout(false);
     this.pnlRoomDetail.ResumeLayout(false);
     this.pnlRoomDetail.PerformLayout();
     this.tabControl.ResumeLayout(false);
     this.tabArea.ResumeLayout(false);
     this.tabArea.PerformLayout();
     this.pnlMapConfig.ResumeLayout(false);
     this.pnlMapConfig.PerformLayout();
     this.pnlZoom.ResumeLayout(false);
     this.pnlZoom.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnZoomDown)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnZoomUp)).EndInit();
     this.pnlDoor.ResumeLayout(false);
     this.pnlDoor.PerformLayout();
     this.pnlGeneral.ResumeLayout(false);
     this.pnlGeneral.PerformLayout();
     this.tabAttributes.ResumeLayout(false);
     this.tabAttributes.PerformLayout();
     this.panel4.ResumeLayout(false);
     this.panel4.PerformLayout();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 41
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.faTabStrip1 = new System.Windows.Forms.TabControl();
     this.faTabStripItemInfo = new System.Windows.Forms.TabPage();
     this.label10 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.faTabStripItemSend = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.cmdClearSend = new System.Windows.Forms.Button();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.lblStatus = new System.Windows.Forms.Label();
     this.cmdSend = new System.Windows.Forms.Button();
     this.lblTeleLength = new System.Windows.Forms.Label();
     this.panel2 = new System.Windows.Forms.Panel();
     this.label7 = new System.Windows.Forms.Label();
     this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
     this.panel4 = new System.Windows.Forms.Panel();
     this.lblLenEmpf = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.splitContainer3 = new System.Windows.Forms.SplitContainer();
     this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
     this.lstStoredSenddata = new System.Windows.Forms.ListBox();
     this.panel3 = new System.Windows.Forms.Panel();
     this.cmdRemoveSendeTele = new System.Windows.Forms.Button();
     this.cmdAddSendeTele = new System.Windows.Forms.Button();
     this.dtaSendTabelle = new System.Windows.Forms.DataGridView();
     this.Bezeichnung = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Laenge = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Wert = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.splitContainer4 = new System.Windows.Forms.SplitContainer();
     this.dtaSendSendTable = new System.Windows.Forms.DataGridView();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dtaSendQuittTable = new System.Windows.Forms.DataGridView();
     this.colSendQuittText = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.faTabStripItemRecieve = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.kryptonButton2 = new System.Windows.Forms.Button();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.grdEmpfang = new System.Windows.Forms.DataGridView();
     this.colEmpf = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dtaEmpfangstelegrammAufgeschluesselt = new System.Windows.Forms.DataGridView();
     this.colEmpfBezeichnung = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colEmpfLaenge = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colEmpfWert = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.faTabStripItemSettings = new System.Windows.Forms.TabPage();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.label5 = new System.Windows.Forms.Label();
     this.cmdDelTele = new System.Windows.Forms.Button();
     this.cmdEditQuittFields = new System.Windows.Forms.Button();
     this.lstQuitt = new System.Windows.Forms.ListBox();
     this.chkAutoQuitt = new System.Windows.Forms.CheckBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.numSequenceNumberLength = new System.Windows.Forms.NumericUpDown();
     this.numSequenceNumberPosition = new System.Windows.Forms.NumericUpDown();
     this.label4 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.chkChanel2active = new System.Windows.Forms.CheckBox();
     this.numPort2 = new System.Windows.Forms.NumericUpDown();
     this.numPort1 = new System.Windows.Forms.NumericUpDown();
     this.lblKanal2Port = new System.Windows.Forms.Label();
     this.chkChanel1active = new System.Windows.Forms.CheckBox();
     this.lblKanal2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.optTwoChannel = new System.Windows.Forms.RadioButton();
     this.optOneChannel = new System.Windows.Forms.RadioButton();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.label1 = new System.Windows.Forms.Label();
     this.ipAddressControl = new IPAddressControlLib.IPAddressControl();
     this.cmdSelectStep7UDT = new System.Windows.Forms.Button();
     this.cmdConnect = new System.Windows.Forms.Button();
     this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.cmdSettExport = new System.Windows.Forms.Button();
     this.cmdSettImport = new System.Windows.Forms.Button();
     this.cmdSettingsSave = new System.Windows.Forms.Button();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.picConnection1 = new System.Windows.Forms.PictureBox();
     this.picConnection2 = new System.Windows.Forms.PictureBox();
     this.cmdDisconnect = new System.Windows.Forms.Button();
     this.toolTip = new System.Windows.Forms.ToolTip(this.components);
     this.faTabStrip1.SuspendLayout();
     this.faTabStripItemInfo.SuspendLayout();
     this.faTabStripItemSend.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel3.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).BeginInit();
     this.splitContainer3.Panel1.SuspendLayout();
     this.splitContainer3.Panel2.SuspendLayout();
     this.splitContainer3.SuspendLayout();
     this.tableLayoutPanel5.SuspendLayout();
     this.panel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtaSendTabelle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer4)).BeginInit();
     this.splitContainer4.Panel1.SuspendLayout();
     this.splitContainer4.Panel2.SuspendLayout();
     this.splitContainer4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtaSendSendTable)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtaSendQuittTable)).BeginInit();
     this.faTabStripItemRecieve.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdEmpfang)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtaEmpfangstelegrammAufgeschluesselt)).BeginInit();
     this.faTabStripItemSettings.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numSequenceNumberLength)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numSequenceNumberPosition)).BeginInit();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numPort2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numPort1)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.tableLayoutPanel4.SuspendLayout();
     this.panel1.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picConnection1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.picConnection2)).BeginInit();
     this.SuspendLayout();
     //
     // faTabStrip1
     //
     this.faTabStrip1.Controls.Add(this.faTabStripItemInfo);
     this.faTabStrip1.Controls.Add(this.faTabStripItemSend);
     this.faTabStrip1.Controls.Add(this.faTabStripItemRecieve);
     this.faTabStrip1.Controls.Add(this.faTabStripItemSettings);
     this.faTabStrip1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.faTabStrip1.Font = new System.Drawing.Font("Tahoma", 8.25F);
     this.faTabStrip1.Location = new System.Drawing.Point(3, 53);
     this.faTabStrip1.Name = "faTabStrip1";
     this.faTabStrip1.SelectedIndex = 0;
     this.faTabStrip1.Size = new System.Drawing.Size(896, 569);
     this.faTabStrip1.TabIndex = 2;
     this.faTabStrip1.Text = "Sende Tabelle";
     //
     // faTabStripItemInfo
     //
     this.faTabStripItemInfo.Controls.Add(this.label10);
     this.faTabStripItemInfo.Controls.Add(this.label9);
     this.faTabStripItemInfo.Location = new System.Drawing.Point(4, 22);
     this.faTabStripItemInfo.Name = "faTabStripItemInfo";
     this.faTabStripItemInfo.Size = new System.Drawing.Size(888, 543);
     this.faTabStripItemInfo.TabIndex = 3;
     this.faTabStripItemInfo.Text = "Info";
     //
     // label10
     //
     this.label10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label10.Location = new System.Drawing.Point(74, 59);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(726, 81);
     this.label10.TabIndex = 0;
     this.label10.Text = resources.GetString("label10.Text");
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(39, 25);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(31, 13);
     this.label9.TabIndex = 0;
     this.label9.Text = "Info:";
     //
     // faTabStripItemSend
     //
     this.faTabStripItemSend.Controls.Add(this.tableLayoutPanel1);
     this.faTabStripItemSend.Location = new System.Drawing.Point(4, 22);
     this.faTabStripItemSend.Name = "faTabStripItemSend";
     this.faTabStripItemSend.Size = new System.Drawing.Size(888, 543);
     this.faTabStripItemSend.TabIndex = 0;
     this.faTabStripItemSend.Text = "Sende Tabelle";
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 2;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 150F));
     this.tableLayoutPanel1.Controls.Add(this.cmdClearSend, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.splitContainer2, 0, 0);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 2;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 32F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(888, 543);
     this.tableLayoutPanel1.TabIndex = 1;
     //
     // cmdClearSend
     //
     this.cmdClearSend.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdClearSend.Location = new System.Drawing.Point(741, 514);
     this.cmdClearSend.Name = "cmdClearSend";
     this.cmdClearSend.Size = new System.Drawing.Size(144, 25);
     this.cmdClearSend.TabIndex = 5;
     this.cmdClearSend.Text = "CLR";
     this.cmdClearSend.UseVisualStyleBackColor = true;
     this.cmdClearSend.Click += new System.EventHandler(this.cmdClearSend_Click);
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.ColumnCount = 1;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel3.Controls.Add(this.lblStatus, 0, 2);
     this.tableLayoutPanel3.Controls.Add(this.cmdSend, 0, 0);
     this.tableLayoutPanel3.Controls.Add(this.lblTeleLength, 0, 3);
     this.tableLayoutPanel3.Controls.Add(this.panel2, 0, 1);
     this.tableLayoutPanel3.Controls.Add(this.panel4, 0, 4);
     this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(741, 3);
     this.tableLayoutPanel3.Name = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 5;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 60F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 99F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 64F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 55F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel3.Size = new System.Drawing.Size(144, 505);
     this.tableLayoutPanel3.TabIndex = 3;
     //
     // lblStatus
     //
     this.lblStatus.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lblStatus.Location = new System.Drawing.Point(3, 90);
     this.lblStatus.Name = "lblStatus";
     this.lblStatus.Size = new System.Drawing.Size(138, 99);
     this.lblStatus.TabIndex = 7;
     this.lblStatus.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // cmdSend
     //
     this.cmdSend.Location = new System.Drawing.Point(3, 3);
     this.cmdSend.Name = "cmdSend";
     this.cmdSend.Size = new System.Drawing.Size(138, 24);
     this.cmdSend.TabIndex = 6;
     this.cmdSend.Text = "Senden";
     this.cmdSend.UseVisualStyleBackColor = true;
     this.cmdSend.Click += new System.EventHandler(this.cmdSend_Click);
     //
     // lblTeleLength
     //
     this.lblTeleLength.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lblTeleLength.Location = new System.Drawing.Point(3, 189);
     this.lblTeleLength.Name = "lblTeleLength";
     this.lblTeleLength.Size = new System.Drawing.Size(138, 64);
     this.lblTeleLength.TabIndex = 9;
     this.lblTeleLength.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.label7);
     this.panel2.Controls.Add(this.numericUpDown1);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(3, 33);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(138, 54);
     this.panel2.TabIndex = 10;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(8, 8);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(66, 13);
     this.label7.TabIndex = 1;
     this.label7.Text = "Laufnummer";
     //
     // numericUpDown1
     //
     this.numericUpDown1.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::Kopplungstester.Properties.Settings.Default, "Laufnummer", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.numericUpDown1.Location = new System.Drawing.Point(18, 24);
     this.numericUpDown1.Name = "numericUpDown1";
     this.numericUpDown1.Size = new System.Drawing.Size(102, 21);
     this.numericUpDown1.TabIndex = 0;
     //
     // panel4
     //
     this.panel4.Controls.Add(this.lblLenEmpf);
     this.panel4.Controls.Add(this.label8);
     this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel4.Location = new System.Drawing.Point(3, 256);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(138, 246);
     this.panel4.TabIndex = 11;
     //
     // lblLenEmpf
     //
     this.lblLenEmpf.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lblLenEmpf.Location = new System.Drawing.Point(15, 159);
     this.lblLenEmpf.Name = "lblLenEmpf";
     this.lblLenEmpf.Size = new System.Drawing.Size(40, 13);
     this.lblLenEmpf.TabIndex = 0;
     //
     // label8
     //
     this.label8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(11, 143);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(40, 13);
     this.label8.TabIndex = 0;
     this.label8.Text = "Länge:";
     //
     // splitContainer2
     //
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(3, 3);
     this.splitContainer2.Name = "splitContainer2";
     this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.splitContainer3);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.splitContainer4);
     this.tableLayoutPanel1.SetRowSpan(this.splitContainer2, 2);
     this.splitContainer2.Size = new System.Drawing.Size(732, 537);
     this.splitContainer2.SplitterDistance = 305;
     this.splitContainer2.TabIndex = 4;
     //
     // splitContainer3
     //
     this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer3.Location = new System.Drawing.Point(0, 0);
     this.splitContainer3.Name = "splitContainer3";
     this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer3.Panel1
     //
     this.splitContainer3.Panel1.Controls.Add(this.tableLayoutPanel5);
     //
     // splitContainer3.Panel2
     //
     this.splitContainer3.Panel2.Controls.Add(this.dtaSendTabelle);
     this.splitContainer3.Size = new System.Drawing.Size(732, 305);
     this.splitContainer3.SplitterDistance = 76;
     this.splitContainer3.TabIndex = 0;
     //
     // tableLayoutPanel5
     //
     this.tableLayoutPanel5.ColumnCount = 2;
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
     this.tableLayoutPanel5.Controls.Add(this.lstStoredSenddata, 0, 0);
     this.tableLayoutPanel5.Controls.Add(this.panel3, 1, 0);
     this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel5.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel5.Name = "tableLayoutPanel5";
     this.tableLayoutPanel5.RowCount = 1;
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel5.Size = new System.Drawing.Size(732, 76);
     this.tableLayoutPanel5.TabIndex = 0;
     //
     // lstStoredSenddata
     //
     this.lstStoredSenddata.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lstStoredSenddata.FormattingEnabled = true;
     this.lstStoredSenddata.Location = new System.Drawing.Point(3, 3);
     this.lstStoredSenddata.Name = "lstStoredSenddata";
     this.lstStoredSenddata.Size = new System.Drawing.Size(626, 70);
     this.lstStoredSenddata.TabIndex = 0;
     this.lstStoredSenddata.DoubleClick += new System.EventHandler(this.lstStoredSenddata_DoubleClick);
     //
     // panel3
     //
     this.panel3.Controls.Add(this.cmdRemoveSendeTele);
     this.panel3.Controls.Add(this.cmdAddSendeTele);
     this.panel3.Location = new System.Drawing.Point(635, 3);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(94, 70);
     this.panel3.TabIndex = 1;
     //
     // cmdRemoveSendeTele
     //
     this.cmdRemoveSendeTele.Location = new System.Drawing.Point(8, 41);
     this.cmdRemoveSendeTele.Name = "cmdRemoveSendeTele";
     this.cmdRemoveSendeTele.Size = new System.Drawing.Size(76, 22);
     this.cmdRemoveSendeTele.TabIndex = 0;
     this.cmdRemoveSendeTele.Text = "Remove";
     this.cmdRemoveSendeTele.UseVisualStyleBackColor = true;
     this.cmdRemoveSendeTele.Click += new System.EventHandler(this.cmdRemoveSendeTele_Click);
     //
     // cmdAddSendeTele
     //
     this.cmdAddSendeTele.Location = new System.Drawing.Point(8, 13);
     this.cmdAddSendeTele.Name = "cmdAddSendeTele";
     this.cmdAddSendeTele.Size = new System.Drawing.Size(76, 22);
     this.cmdAddSendeTele.TabIndex = 0;
     this.cmdAddSendeTele.Text = "Add";
     this.cmdAddSendeTele.UseVisualStyleBackColor = true;
     this.cmdAddSendeTele.Click += new System.EventHandler(this.cmdAddSendeTele_Click);
     //
     // dtaSendTabelle
     //
     this.dtaSendTabelle.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dtaSendTabelle.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dtaSendTabelle.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Bezeichnung,
     this.Laenge,
     this.Wert});
     this.dtaSendTabelle.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dtaSendTabelle.Location = new System.Drawing.Point(0, 0);
     this.dtaSendTabelle.Name = "dtaSendTabelle";
     this.dtaSendTabelle.RowTemplate.DefaultCellStyle.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtaSendTabelle.Size = new System.Drawing.Size(732, 225);
     this.dtaSendTabelle.TabIndex = 4;
     this.dtaSendTabelle.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dtaSendTabelle_CellEndEdit);
     this.dtaSendTabelle.RowsAdded += new System.Windows.Forms.DataGridViewRowsAddedEventHandler(this.dtaSendTabelle_RowsAdded);
     //
     // Bezeichnung
     //
     this.Bezeichnung.HeaderText = "Bezeichnung";
     this.Bezeichnung.Name = "Bezeichnung";
     //
     // Laenge
     //
     this.Laenge.HeaderText = "Länge";
     this.Laenge.Name = "Laenge";
     //
     // Wert
     //
     this.Wert.HeaderText = "Wert";
     this.Wert.Name = "Wert";
     //
     // splitContainer4
     //
     this.splitContainer4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer4.Location = new System.Drawing.Point(0, 0);
     this.splitContainer4.Name = "splitContainer4";
     this.splitContainer4.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer4.Panel1
     //
     this.splitContainer4.Panel1.Controls.Add(this.dtaSendSendTable);
     //
     // splitContainer4.Panel2
     //
     this.splitContainer4.Panel2.Controls.Add(this.dtaSendQuittTable);
     this.splitContainer4.Size = new System.Drawing.Size(732, 228);
     this.splitContainer4.SplitterDistance = 109;
     this.splitContainer4.TabIndex = 0;
     //
     // dtaSendSendTable
     //
     this.dtaSendSendTable.AllowUserToAddRows = false;
     this.dtaSendSendTable.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dtaSendSendTable.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dtaSendSendTable.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewTextBoxColumn1});
     this.dtaSendSendTable.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dtaSendSendTable.Location = new System.Drawing.Point(0, 0);
     this.dtaSendSendTable.Name = "dtaSendSendTable";
     this.dtaSendSendTable.ReadOnly = true;
     this.dtaSendSendTable.RowTemplate.DefaultCellStyle.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtaSendSendTable.Size = new System.Drawing.Size(732, 109);
     this.dtaSendSendTable.TabIndex = 7;
     this.dtaSendSendTable.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dtaSendSendTable_CellContentClick);
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.HeaderText = "Gesendete Telegramme";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.ReadOnly = true;
     //
     // dtaSendQuittTable
     //
     this.dtaSendQuittTable.AllowUserToAddRows = false;
     this.dtaSendQuittTable.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dtaSendQuittTable.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dtaSendQuittTable.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colSendQuittText});
     this.dtaSendQuittTable.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dtaSendQuittTable.Location = new System.Drawing.Point(0, 0);
     this.dtaSendQuittTable.Name = "dtaSendQuittTable";
     this.dtaSendQuittTable.ReadOnly = true;
     this.dtaSendQuittTable.RowTemplate.DefaultCellStyle.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtaSendQuittTable.Size = new System.Drawing.Size(732, 115);
     this.dtaSendQuittTable.TabIndex = 6;
     //
     // colSendQuittText
     //
     this.colSendQuittText.HeaderText = "Empfangene Quittungen";
     this.colSendQuittText.Name = "colSendQuittText";
     this.colSendQuittText.ReadOnly = true;
     //
     // faTabStripItemRecieve
     //
     this.faTabStripItemRecieve.Controls.Add(this.tableLayoutPanel2);
     this.faTabStripItemRecieve.Location = new System.Drawing.Point(4, 22);
     this.faTabStripItemRecieve.Name = "faTabStripItemRecieve";
     this.faTabStripItemRecieve.Size = new System.Drawing.Size(888, 543);
     this.faTabStripItemRecieve.TabIndex = 1;
     this.faTabStripItemRecieve.Text = "Empfangs FIFO";
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.ColumnCount = 2;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 150F));
     this.tableLayoutPanel2.Controls.Add(this.kryptonButton2, 1, 0);
     this.tableLayoutPanel2.Controls.Add(this.splitContainer1, 0, 0);
     this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel2.Name = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 1;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel2.Size = new System.Drawing.Size(888, 543);
     this.tableLayoutPanel2.TabIndex = 2;
     //
     // kryptonButton2
     //
     this.kryptonButton2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.kryptonButton2.Location = new System.Drawing.Point(741, 3);
     this.kryptonButton2.Name = "kryptonButton2";
     this.kryptonButton2.Size = new System.Drawing.Size(144, 40);
     this.kryptonButton2.TabIndex = 4;
     this.kryptonButton2.Text = "CLR";
     this.kryptonButton2.UseVisualStyleBackColor = true;
     this.kryptonButton2.Click += new System.EventHandler(this.kryptonButton2_Click);
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(3, 3);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.grdEmpfang);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.dtaEmpfangstelegrammAufgeschluesselt);
     this.splitContainer1.Size = new System.Drawing.Size(732, 537);
     this.splitContainer1.SplitterDistance = 212;
     this.splitContainer1.TabIndex = 5;
     //
     // grdEmpfang
     //
     this.grdEmpfang.AllowUserToAddRows = false;
     this.grdEmpfang.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.grdEmpfang.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdEmpfang.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colEmpf});
     this.grdEmpfang.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdEmpfang.Location = new System.Drawing.Point(0, 0);
     this.grdEmpfang.Name = "grdEmpfang";
     this.grdEmpfang.ReadOnly = true;
     this.grdEmpfang.RowTemplate.DefaultCellStyle.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grdEmpfang.Size = new System.Drawing.Size(732, 212);
     this.grdEmpfang.TabIndex = 4;
     this.grdEmpfang.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdEmpfang_CellClick);
     this.grdEmpfang.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdEmpfang_CellContentClick);
     //
     // colEmpf
     //
     this.colEmpf.HeaderText = "Empfangstelegramme";
     this.colEmpf.Name = "colEmpf";
     this.colEmpf.ReadOnly = true;
     //
     // dtaEmpfangstelegrammAufgeschluesselt
     //
     this.dtaEmpfangstelegrammAufgeschluesselt.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dtaEmpfangstelegrammAufgeschluesselt.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dtaEmpfangstelegrammAufgeschluesselt.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colEmpfBezeichnung,
     this.colEmpfLaenge,
     this.colEmpfWert});
     this.dtaEmpfangstelegrammAufgeschluesselt.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dtaEmpfangstelegrammAufgeschluesselt.Location = new System.Drawing.Point(0, 0);
     this.dtaEmpfangstelegrammAufgeschluesselt.Name = "dtaEmpfangstelegrammAufgeschluesselt";
     this.dtaEmpfangstelegrammAufgeschluesselt.RowTemplate.DefaultCellStyle.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtaEmpfangstelegrammAufgeschluesselt.Size = new System.Drawing.Size(732, 321);
     this.dtaEmpfangstelegrammAufgeschluesselt.TabIndex = 5;
     //
     // colEmpfBezeichnung
     //
     this.colEmpfBezeichnung.HeaderText = "Bezeichnung";
     this.colEmpfBezeichnung.Name = "colEmpfBezeichnung";
     //
     // colEmpfLaenge
     //
     this.colEmpfLaenge.HeaderText = "Länge";
     this.colEmpfLaenge.Name = "colEmpfLaenge";
     //
     // colEmpfWert
     //
     this.colEmpfWert.HeaderText = "Wert";
     this.colEmpfWert.Name = "colEmpfWert";
     //
     // faTabStripItemSettings
     //
     this.faTabStripItemSettings.Controls.Add(this.groupBox4);
     this.faTabStripItemSettings.Controls.Add(this.groupBox3);
     this.faTabStripItemSettings.Controls.Add(this.groupBox2);
     this.faTabStripItemSettings.Controls.Add(this.groupBox1);
     this.faTabStripItemSettings.Location = new System.Drawing.Point(4, 22);
     this.faTabStripItemSettings.Name = "faTabStripItemSettings";
     this.faTabStripItemSettings.Size = new System.Drawing.Size(888, 543);
     this.faTabStripItemSettings.TabIndex = 2;
     this.faTabStripItemSettings.Text = "Einstellungen";
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.label5);
     this.groupBox4.Controls.Add(this.cmdDelTele);
     this.groupBox4.Controls.Add(this.cmdEditQuittFields);
     this.groupBox4.Controls.Add(this.lstQuitt);
     this.groupBox4.Controls.Add(this.chkAutoQuitt);
     this.groupBox4.Location = new System.Drawing.Point(409, 18);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(176, 232);
     this.groupBox4.TabIndex = 8;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Quittungs Parameter";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(6, 164);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(164, 54);
     this.label5.TabIndex = 16;
     this.label5.Text = "Wenn automatisch quittieren eingeschaltet ist werden im Telegramm die Positionen " +
     "durch den Text ersetzt";
     //
     // cmdDelTele
     //
     this.cmdDelTele.Location = new System.Drawing.Point(6, 139);
     this.cmdDelTele.Name = "cmdDelTele";
     this.cmdDelTele.Size = new System.Drawing.Size(58, 22);
     this.cmdDelTele.TabIndex = 12;
     this.cmdDelTele.Text = "Del";
     this.cmdDelTele.UseVisualStyleBackColor = true;
     this.cmdDelTele.Click += new System.EventHandler(this.cmdDelTele_Click);
     //
     // cmdEditQuittFields
     //
     this.cmdEditQuittFields.Location = new System.Drawing.Point(112, 139);
     this.cmdEditQuittFields.Name = "cmdEditQuittFields";
     this.cmdEditQuittFields.Size = new System.Drawing.Size(58, 22);
     this.cmdEditQuittFields.TabIndex = 12;
     this.cmdEditQuittFields.Text = "Add";
     this.cmdEditQuittFields.UseVisualStyleBackColor = true;
     this.cmdEditQuittFields.Click += new System.EventHandler(this.cmdEditQuittFields_Click);
     //
     // lstQuitt
     //
     this.lstQuitt.FormattingEnabled = true;
     this.lstQuitt.Location = new System.Drawing.Point(6, 38);
     this.lstQuitt.Name = "lstQuitt";
     this.lstQuitt.Size = new System.Drawing.Size(164, 95);
     this.lstQuitt.TabIndex = 12;
     //
     // chkAutoQuitt
     //
     this.chkAutoQuitt.AutoSize = true;
     this.chkAutoQuitt.Checked = true;
     this.chkAutoQuitt.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkAutoQuitt.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::Kopplungstester.Properties.Settings.Default, "AutomaticQuitt", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.chkAutoQuitt.Location = new System.Drawing.Point(6, 20);
     this.chkAutoQuitt.Name = "chkAutoQuitt";
     this.chkAutoQuitt.Size = new System.Drawing.Size(134, 17);
     this.chkAutoQuitt.TabIndex = 15;
     this.chkAutoQuitt.Text = "Automatisch quittieren";
     this.chkAutoQuitt.UseVisualStyleBackColor = true;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.numSequenceNumberLength);
     this.groupBox3.Controls.Add(this.numSequenceNumberPosition);
     this.groupBox3.Controls.Add(this.label4);
     this.groupBox3.Controls.Add(this.label6);
     this.groupBox3.Location = new System.Drawing.Point(11, 103);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(176, 107);
     this.groupBox3.TabIndex = 8;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Telegramm Parameter";
     //
     // numSequenceNumberLength
     //
     this.numSequenceNumberLength.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::Kopplungstester.Properties.Settings.Default, "SequenceNumberLength", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.numSequenceNumberLength.Location = new System.Drawing.Point(12, 75);
     this.numSequenceNumberLength.Maximum = new decimal(new int[] {
     65536,
     0,
     0,
     0});
     this.numSequenceNumberLength.Name = "numSequenceNumberLength";
     this.numSequenceNumberLength.Size = new System.Drawing.Size(141, 21);
     this.numSequenceNumberLength.TabIndex = 12;
     //
     // numSequenceNumberPosition
     //
     this.numSequenceNumberPosition.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::Kopplungstester.Properties.Settings.Default, "SequenceNumberPosition", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.numSequenceNumberPosition.Location = new System.Drawing.Point(12, 34);
     this.numSequenceNumberPosition.Maximum = new decimal(new int[] {
     65536,
     0,
     0,
     0});
     this.numSequenceNumberPosition.Name = "numSequenceNumberPosition";
     this.numSequenceNumberPosition.Size = new System.Drawing.Size(141, 21);
     this.numSequenceNumberPosition.TabIndex = 12;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(9, 59);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(98, 13);
     this.label4.TabIndex = 14;
     this.label4.Text = "Laufnummer Länge";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(9, 18);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(106, 13);
     this.label6.TabIndex = 14;
     this.label6.Text = "Laufnummer Position";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.chkChanel2active);
     this.groupBox2.Controls.Add(this.numPort2);
     this.groupBox2.Controls.Add(this.numPort1);
     this.groupBox2.Controls.Add(this.lblKanal2Port);
     this.groupBox2.Controls.Add(this.chkChanel1active);
     this.groupBox2.Controls.Add(this.lblKanal2);
     this.groupBox2.Controls.Add(this.label3);
     this.groupBox2.Controls.Add(this.label2);
     this.groupBox2.Controls.Add(this.optTwoChannel);
     this.groupBox2.Controls.Add(this.optOneChannel);
     this.groupBox2.Location = new System.Drawing.Point(216, 18);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(187, 232);
     this.groupBox2.TabIndex = 8;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Verbindungs Parameter";
     //
     // chkChanel2active
     //
     this.chkChanel2active.AutoSize = true;
     this.chkChanel2active.Checked = true;
     this.chkChanel2active.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkChanel2active.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::Kopplungstester.Properties.Settings.Default, "RecieveConnectionActive", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.chkChanel2active.Enabled = false;
     this.chkChanel2active.Location = new System.Drawing.Point(121, 171);
     this.chkChanel2active.Name = "chkChanel2active";
     this.chkChanel2active.Size = new System.Drawing.Size(49, 17);
     this.chkChanel2active.TabIndex = 15;
     this.chkChanel2active.Text = "aktiv";
     this.chkChanel2active.UseVisualStyleBackColor = true;
     //
     // numPort2
     //
     this.numPort2.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::Kopplungstester.Properties.Settings.Default, "RecievePort", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.numPort2.Enabled = false;
     this.numPort2.Location = new System.Drawing.Point(27, 188);
     this.numPort2.Maximum = new decimal(new int[] {
     65536,
     0,
     0,
     0});
     this.numPort2.Name = "numPort2";
     this.numPort2.Size = new System.Drawing.Size(141, 21);
     this.numPort2.TabIndex = 12;
     //
     // numPort1
     //
     this.numPort1.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::Kopplungstester.Properties.Settings.Default, "SendPort", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.numPort1.Location = new System.Drawing.Point(27, 120);
     this.numPort1.Maximum = new decimal(new int[] {
     65536,
     0,
     0,
     0});
     this.numPort1.Name = "numPort1";
     this.numPort1.Size = new System.Drawing.Size(141, 21);
     this.numPort1.TabIndex = 12;
     //
     // lblKanal2Port
     //
     this.lblKanal2Port.AutoSize = true;
     this.lblKanal2Port.Enabled = false;
     this.lblKanal2Port.Location = new System.Drawing.Point(24, 172);
     this.lblKanal2Port.Name = "lblKanal2Port";
     this.lblKanal2Port.Size = new System.Drawing.Size(27, 13);
     this.lblKanal2Port.TabIndex = 14;
     this.lblKanal2Port.Text = "Port";
     //
     // chkChanel1active
     //
     this.chkChanel1active.AutoSize = true;
     this.chkChanel1active.Checked = true;
     this.chkChanel1active.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkChanel1active.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::Kopplungstester.Properties.Settings.Default, "SendConnectionActive", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.chkChanel1active.Location = new System.Drawing.Point(121, 103);
     this.chkChanel1active.Name = "chkChanel1active";
     this.chkChanel1active.Size = new System.Drawing.Size(49, 17);
     this.chkChanel1active.TabIndex = 15;
     this.chkChanel1active.Text = "aktiv";
     this.chkChanel1active.UseVisualStyleBackColor = true;
     //
     // lblKanal2
     //
     this.lblKanal2.AutoSize = true;
     this.lblKanal2.Enabled = false;
     this.lblKanal2.Location = new System.Drawing.Point(9, 150);
     this.lblKanal2.Name = "lblKanal2";
     this.lblKanal2.Size = new System.Drawing.Size(88, 13);
     this.lblKanal2.TabIndex = 14;
     this.lblKanal2.Text = "Kanal 2 (recieve)";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(24, 104);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(27, 13);
     this.label3.TabIndex = 14;
     this.label3.Text = "Port";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(9, 82);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(121, 13);
     this.label2.TabIndex = 14;
     this.label2.Text = "Kanal 1 (send / recieve)";
     //
     // optTwoChannel
     //
     this.optTwoChannel.AutoSize = true;
     this.optTwoChannel.Checked = true;
     this.optTwoChannel.Location = new System.Drawing.Point(6, 43);
     this.optTwoChannel.Name = "optTwoChannel";
     this.optTwoChannel.Size = new System.Drawing.Size(60, 17);
     this.optTwoChannel.TabIndex = 14;
     this.optTwoChannel.TabStop = true;
     this.optTwoChannel.Text = "2 Kanal";
     this.optTwoChannel.UseVisualStyleBackColor = true;
     this.optTwoChannel.CheckedChanged += new System.EventHandler(this.optTwoChannel_CheckedChanged);
     //
     // optOneChannel
     //
     this.optOneChannel.AutoSize = true;
     this.optOneChannel.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::Kopplungstester.Properties.Settings.Default, "UseOnlyOneConnection", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.optOneChannel.Location = new System.Drawing.Point(6, 20);
     this.optOneChannel.Name = "optOneChannel";
     this.optOneChannel.Size = new System.Drawing.Size(60, 17);
     this.optOneChannel.TabIndex = 14;
     this.optOneChannel.Text = "1 Kanal";
     this.optOneChannel.UseVisualStyleBackColor = true;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.ipAddressControl);
     this.groupBox1.Location = new System.Drawing.Point(11, 18);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(176, 79);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Verbindungs Parameter";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(9, 27);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(87, 13);
     this.label1.TabIndex = 12;
     this.label1.Text = "IP - Adresse SPS";
     //
     // ipAddressControl
     //
     this.ipAddressControl.AllowInternalTab = false;
     this.ipAddressControl.AutoHeight = true;
     this.ipAddressControl.BackColor = System.Drawing.SystemColors.Window;
     this.ipAddressControl.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.ipAddressControl.Cursor = System.Windows.Forms.Cursors.IBeam;
     this.ipAddressControl.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::Kopplungstester.Properties.Settings.Default, "IPAddress", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.ipAddressControl.Location = new System.Drawing.Point(12, 52);
     this.ipAddressControl.MinimumSize = new System.Drawing.Size(87, 21);
     this.ipAddressControl.Name = "ipAddressControl";
     this.ipAddressControl.ReadOnly = false;
     this.ipAddressControl.Size = new System.Drawing.Size(141, 21);
     this.ipAddressControl.TabIndex = 13;
     this.ipAddressControl.Text = global::Kopplungstester.Properties.Settings.Default.IPAddress;
     //
     // cmdSelectStep7UDT
     //
     this.cmdSelectStep7UDT.Location = new System.Drawing.Point(281, 3);
     this.cmdSelectStep7UDT.Name = "cmdSelectStep7UDT";
     this.cmdSelectStep7UDT.Size = new System.Drawing.Size(136, 40);
     this.cmdSelectStep7UDT.TabIndex = 6;
     this.cmdSelectStep7UDT.Text = "Send/Recieve Struktur\r\naus Step7 UDT";
     this.cmdSelectStep7UDT.UseVisualStyleBackColor = true;
     this.cmdSelectStep7UDT.Click += new System.EventHandler(this.cmdSelectStep7UDT_Click);
     //
     // cmdConnect
     //
     this.cmdConnect.Location = new System.Drawing.Point(3, 3);
     this.cmdConnect.Name = "cmdConnect";
     this.cmdConnect.Size = new System.Drawing.Size(107, 40);
     this.cmdConnect.TabIndex = 11;
     this.cmdConnect.Text = "Connect";
     this.cmdConnect.UseVisualStyleBackColor = true;
     this.cmdConnect.Click += new System.EventHandler(this.cmdConnect_Click);
     //
     // tableLayoutPanel4
     //
     this.tableLayoutPanel4.ColumnCount = 1;
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel4.Controls.Add(this.faTabStrip1, 0, 1);
     this.tableLayoutPanel4.Controls.Add(this.panel1, 0, 0);
     this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel4.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel4.Name = "tableLayoutPanel4";
     this.tableLayoutPanel4.RowCount = 2;
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel4.Size = new System.Drawing.Size(902, 625);
     this.tableLayoutPanel4.TabIndex = 3;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.cmdSettExport);
     this.panel1.Controls.Add(this.cmdSettImport);
     this.panel1.Controls.Add(this.cmdSettingsSave);
     this.panel1.Controls.Add(this.flowLayoutPanel1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(3, 3);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(896, 44);
     this.panel1.TabIndex = 3;
     //
     // cmdSettExport
     //
     this.cmdSettExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdSettExport.Location = new System.Drawing.Point(636, 1);
     this.cmdSettExport.Name = "cmdSettExport";
     this.cmdSettExport.Size = new System.Drawing.Size(69, 40);
     this.cmdSettExport.TabIndex = 12;
     this.cmdSettExport.Text = "Settings export";
     this.cmdSettExport.UseVisualStyleBackColor = true;
     this.cmdSettExport.Click += new System.EventHandler(this.cmdSettExport_Click);
     //
     // cmdSettImport
     //
     this.cmdSettImport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdSettImport.Location = new System.Drawing.Point(711, 1);
     this.cmdSettImport.Name = "cmdSettImport";
     this.cmdSettImport.Size = new System.Drawing.Size(69, 40);
     this.cmdSettImport.TabIndex = 12;
     this.cmdSettImport.Text = "Settings import";
     this.cmdSettImport.UseVisualStyleBackColor = true;
     this.cmdSettImport.Click += new System.EventHandler(this.cmdSettImport_Click);
     //
     // cmdSettingsSave
     //
     this.cmdSettingsSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdSettingsSave.Location = new System.Drawing.Point(786, 1);
     this.cmdSettingsSave.Name = "cmdSettingsSave";
     this.cmdSettingsSave.Size = new System.Drawing.Size(107, 40);
     this.cmdSettingsSave.TabIndex = 12;
     this.cmdSettingsSave.Text = "Änderungen Speichern";
     this.cmdSettingsSave.UseVisualStyleBackColor = true;
     this.cmdSettingsSave.Click += new System.EventHandler(this.cmdSettingsSave_Click);
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Controls.Add(this.cmdConnect);
     this.flowLayoutPanel1.Controls.Add(this.picConnection1);
     this.flowLayoutPanel1.Controls.Add(this.picConnection2);
     this.flowLayoutPanel1.Controls.Add(this.cmdDisconnect);
     this.flowLayoutPanel1.Controls.Add(this.cmdSelectStep7UDT);
     this.flowLayoutPanel1.Location = new System.Drawing.Point(0, -3);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(550, 44);
     this.flowLayoutPanel1.TabIndex = 3;
     //
     // picConnection1
     //
     this.picConnection1.BackColor = System.Drawing.Color.Red;
     this.picConnection1.Location = new System.Drawing.Point(116, 3);
     this.picConnection1.Name = "picConnection1";
     this.picConnection1.Size = new System.Drawing.Size(20, 41);
     this.picConnection1.TabIndex = 12;
     this.picConnection1.TabStop = false;
     this.toolTip.SetToolTip(this.picConnection1, "Sende Verbindung aufgebaut");
     //
     // picConnection2
     //
     this.picConnection2.BackColor = System.Drawing.Color.Red;
     this.picConnection2.Location = new System.Drawing.Point(142, 3);
     this.picConnection2.Name = "picConnection2";
     this.picConnection2.Size = new System.Drawing.Size(20, 41);
     this.picConnection2.TabIndex = 12;
     this.picConnection2.TabStop = false;
     this.toolTip.SetToolTip(this.picConnection2, "Recieve Verbindung aufgebaut");
     //
     // cmdDisconnect
     //
     this.cmdDisconnect.Location = new System.Drawing.Point(168, 3);
     this.cmdDisconnect.Name = "cmdDisconnect";
     this.cmdDisconnect.Size = new System.Drawing.Size(107, 40);
     this.cmdDisconnect.TabIndex = 11;
     this.cmdDisconnect.Text = "Disconnect";
     this.cmdDisconnect.UseVisualStyleBackColor = true;
     this.cmdDisconnect.Click += new System.EventHandler(this.cmdDisconnect_Click);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(902, 625);
     this.Controls.Add(this.tableLayoutPanel4);
     this.Name = "MainForm";
     this.Text = "Kopplungstester";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
     this.faTabStrip1.ResumeLayout(false);
     this.faTabStripItemInfo.ResumeLayout(false);
     this.faTabStripItemInfo.PerformLayout();
     this.faTabStripItemSend.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel3.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
     this.panel4.ResumeLayout(false);
     this.panel4.PerformLayout();
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
     this.splitContainer2.ResumeLayout(false);
     this.splitContainer3.Panel1.ResumeLayout(false);
     this.splitContainer3.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).EndInit();
     this.splitContainer3.ResumeLayout(false);
     this.tableLayoutPanel5.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dtaSendTabelle)).EndInit();
     this.splitContainer4.Panel1.ResumeLayout(false);
     this.splitContainer4.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer4)).EndInit();
     this.splitContainer4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dtaSendSendTable)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtaSendQuittTable)).EndInit();
     this.faTabStripItemRecieve.ResumeLayout(false);
     this.tableLayoutPanel2.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdEmpfang)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtaEmpfangstelegrammAufgeschluesselt)).EndInit();
     this.faTabStripItemSettings.ResumeLayout(false);
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numSequenceNumberLength)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numSequenceNumberPosition)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numPort2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numPort1)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.tableLayoutPanel4.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.flowLayoutPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.picConnection1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.picConnection2)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.toolStripRequest = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBoxProtocol = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBoxMethod = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripTextBoxURL = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonCookies = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonAuthType = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonSendRequest = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.splitContainer4 = new System.Windows.Forms.SplitContainer();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.comboBoxRequestHeaders = new System.Windows.Forms.ComboBox();
     this.buttonAddToList = new System.Windows.Forms.Button();
     this.textBoxHeaderValue = new System.Windows.Forms.TextBox();
     this.listViewRequestHeaders = new System.Windows.Forms.ListView();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.buttonDeleteHeader = new System.Windows.Forms.Button();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.richTextBoxPOST = new System.Windows.Forms.RichTextBox();
     this.tabControl4 = new System.Windows.Forms.TabControl();
     this.tabPage5 = new System.Windows.Forms.TabPage();
     this.listViewResponseHeaders = new System.Windows.Forms.ListView();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.tabPage6 = new System.Windows.Forms.TabPage();
     this.richTextBoxSource = new System.Windows.Forms.RichTextBox();
     this.tabPage7 = new System.Windows.Forms.TabPage();
     this.webBrowserSource = new System.Windows.Forms.WebBrowser();
     this.splitContainer3 = new System.Windows.Forms.SplitContainer();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.toolStripRequest.SuspendLayout();
     this.splitContainer4.Panel1.SuspendLayout();
     this.splitContainer4.Panel2.SuspendLayout();
     this.splitContainer4.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.tabControl4.SuspendLayout();
     this.tabPage5.SuspendLayout();
     this.tabPage6.SuspendLayout();
     this.tabPage7.SuspendLayout();
     this.splitContainer3.Panel1.SuspendLayout();
     this.splitContainer3.Panel2.SuspendLayout();
     this.splitContainer3.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location = new System.Drawing.Point(0, 0);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(912, 313);
     this.tabControl1.TabIndex = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.splitContainer2);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(904, 287);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Request";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // splitContainer2
     //
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(3, 3);
     this.splitContainer2.Name = "splitContainer2";
     this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.toolStripRequest);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.splitContainer4);
     this.splitContainer2.Size = new System.Drawing.Size(898, 281);
     this.splitContainer2.SplitterDistance = 25;
     this.splitContainer2.TabIndex = 2;
     //
     // toolStripRequest
     //
     this.toolStripRequest.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripLabel2,
     this.toolStripComboBoxProtocol,
     this.toolStripSeparator7,
     this.toolStripLabel1,
     this.toolStripComboBoxMethod,
     this.toolStripSeparator8,
     this.toolStripLabel3,
     this.toolStripTextBoxURL,
     this.toolStripSeparator3,
     this.toolStripButtonCookies,
     this.toolStripSeparator9,
     this.toolStripButtonAuthType,
     this.toolStripSeparator5,
     this.toolStripButtonSendRequest,
     this.toolStripSeparator6});
     this.toolStripRequest.Location = new System.Drawing.Point(0, 0);
     this.toolStripRequest.Name = "toolStripRequest";
     this.toolStripRequest.Size = new System.Drawing.Size(898, 25);
     this.toolStripRequest.TabIndex = 0;
     this.toolStripRequest.Text = "toolStrip1";
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(46, 22);
     this.toolStripLabel2.Text = "Protocol";
     //
     // toolStripComboBoxProtocol
     //
     this.toolStripComboBoxProtocol.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBoxProtocol.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
     this.toolStripComboBoxProtocol.Items.AddRange(new object[] {
     "HTTP /1.0",
     "HTTP /1.1"});
     this.toolStripComboBoxProtocol.Name = "toolStripComboBoxProtocol";
     this.toolStripComboBoxProtocol.Size = new System.Drawing.Size(80, 25);
     //
     // toolStripSeparator7
     //
     this.toolStripSeparator7.Name = "toolStripSeparator7";
     this.toolStripSeparator7.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(43, 22);
     this.toolStripLabel1.Text = "Method";
     //
     // toolStripComboBoxMethod
     //
     this.toolStripComboBoxMethod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBoxMethod.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
     this.toolStripComboBoxMethod.Items.AddRange(new object[] {
     "GET",
     "POST"});
     this.toolStripComboBoxMethod.Name = "toolStripComboBoxMethod";
     this.toolStripComboBoxMethod.Size = new System.Drawing.Size(75, 25);
     //
     // toolStripSeparator8
     //
     this.toolStripSeparator8.Name = "toolStripSeparator8";
     this.toolStripSeparator8.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(30, 22);
     this.toolStripLabel3.Text = "URL:";
     //
     // toolStripTextBoxURL
     //
     this.toolStripTextBoxURL.Name = "toolStripTextBoxURL";
     this.toolStripTextBoxURL.Size = new System.Drawing.Size(410, 25);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonCookies
     //
     this.toolStripButtonCookies.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonCookies.ImageTransparentColor = System.Drawing.Color.Transparent;
     this.toolStripButtonCookies.Name = "toolStripButtonCookies";
     this.toolStripButtonCookies.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonCookies.Text = "Define Cokies";
     this.toolStripButtonCookies.Click += new System.EventHandler(this.toolStripButtonCookies_Click);
     //
     // toolStripSeparator9
     //
     this.toolStripSeparator9.Name = "toolStripSeparator9";
     this.toolStripSeparator9.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonAuthType
     //
     this.toolStripButtonAuthType.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonAuthType.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonAuthType.Name = "toolStripButtonAuthType";
     this.toolStripButtonAuthType.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonAuthType.Text = "Define Authentication";
     this.toolStripButtonAuthType.Click += new System.EventHandler(this.toolStripButtonAuthType_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonSendRequest
     //
     this.toolStripButtonSendRequest.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonSendRequest.Name = "toolStripButtonSendRequest";
     this.toolStripButtonSendRequest.Size = new System.Drawing.Size(94, 22);
     this.toolStripButtonSendRequest.Text = "Send Request";
     this.toolStripButtonSendRequest.Click += new System.EventHandler(this.toolStripButtonSendRequest_Click);
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
     //
     // splitContainer4
     //
     this.splitContainer4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer4.Location = new System.Drawing.Point(0, 0);
     this.splitContainer4.Name = "splitContainer4";
     //
     // splitContainer4.Panel1
     //
     this.splitContainer4.Panel1.Controls.Add(this.groupBox2);
     //
     // splitContainer4.Panel2
     //
     this.splitContainer4.Panel2.Controls.Add(this.groupBox3);
     this.splitContainer4.Size = new System.Drawing.Size(898, 252);
     this.splitContainer4.SplitterDistance = 546;
     this.splitContainer4.TabIndex = 0;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.splitContainer1);
     this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.Location = new System.Drawing.Point(0, 0);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(546, 252);
     this.groupBox2.TabIndex = 2;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Request Headers";
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(3, 16);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.comboBoxRequestHeaders);
     this.splitContainer1.Panel1.Controls.Add(this.buttonAddToList);
     this.splitContainer1.Panel1.Controls.Add(this.textBoxHeaderValue);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.listViewRequestHeaders);
     this.splitContainer1.Panel2.Controls.Add(this.buttonDeleteHeader);
     this.splitContainer1.Size = new System.Drawing.Size(540, 233);
     this.splitContainer1.SplitterDistance = 33;
     this.splitContainer1.TabIndex = 1;
     //
     // comboBoxRequestHeaders
     //
     this.comboBoxRequestHeaders.FormattingEnabled = true;
     this.comboBoxRequestHeaders.Location = new System.Drawing.Point(3, 5);
     this.comboBoxRequestHeaders.Name = "comboBoxRequestHeaders";
     this.comboBoxRequestHeaders.Size = new System.Drawing.Size(169, 21);
     this.comboBoxRequestHeaders.TabIndex = 3;
     //
     // buttonAddToList
     //
     this.buttonAddToList.Location = new System.Drawing.Point(450, 3);
     this.buttonAddToList.Name = "buttonAddToList";
     this.buttonAddToList.Size = new System.Drawing.Size(87, 23);
     this.buttonAddToList.TabIndex = 2;
     this.buttonAddToList.Text = "Add to List";
     this.buttonAddToList.UseVisualStyleBackColor = true;
     this.buttonAddToList.Click += new System.EventHandler(this.buttonAddToList_Click);
     //
     // textBoxHeaderValue
     //
     this.textBoxHeaderValue.Location = new System.Drawing.Point(178, 5);
     this.textBoxHeaderValue.Name = "textBoxHeaderValue";
     this.textBoxHeaderValue.Size = new System.Drawing.Size(266, 20);
     this.textBoxHeaderValue.TabIndex = 1;
     //
     // listViewRequestHeaders
     //
     this.listViewRequestHeaders.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2});
     this.listViewRequestHeaders.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listViewRequestHeaders.FullRowSelect = true;
     this.listViewRequestHeaders.GridLines = true;
     this.listViewRequestHeaders.Location = new System.Drawing.Point(0, 0);
     this.listViewRequestHeaders.Name = "listViewRequestHeaders";
     this.listViewRequestHeaders.Size = new System.Drawing.Size(540, 173);
     this.listViewRequestHeaders.TabIndex = 0;
     this.listViewRequestHeaders.UseCompatibleStateImageBehavior = false;
     this.listViewRequestHeaders.View = System.Windows.Forms.View.Details;
     this.listViewRequestHeaders.SelectedIndexChanged += new System.EventHandler(this.listViewRequestHeaders_SelectedIndexChanged);
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Header Name";
     this.columnHeader1.Width = 174;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Header Value";
     this.columnHeader2.Width = 333;
     //
     // buttonDeleteHeader
     //
     this.buttonDeleteHeader.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.buttonDeleteHeader.Enabled = false;
     this.buttonDeleteHeader.Location = new System.Drawing.Point(0, 173);
     this.buttonDeleteHeader.Name = "buttonDeleteHeader";
     this.buttonDeleteHeader.Size = new System.Drawing.Size(540, 23);
     this.buttonDeleteHeader.TabIndex = 1;
     this.buttonDeleteHeader.Text = "Delete Headers";
     this.buttonDeleteHeader.UseVisualStyleBackColor = true;
     this.buttonDeleteHeader.Click += new System.EventHandler(this.buttonDeleteHeader_Click);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.richTextBoxPOST);
     this.groupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox3.Location = new System.Drawing.Point(0, 0);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(348, 252);
     this.groupBox3.TabIndex = 0;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "POST";
     //
     // richTextBoxPOST
     //
     this.richTextBoxPOST.Dock = System.Windows.Forms.DockStyle.Fill;
     this.richTextBoxPOST.Location = new System.Drawing.Point(3, 16);
     this.richTextBoxPOST.Name = "richTextBoxPOST";
     this.richTextBoxPOST.Size = new System.Drawing.Size(342, 233);
     this.richTextBoxPOST.TabIndex = 0;
     this.richTextBoxPOST.Text = "";
     //
     // tabControl4
     //
     this.tabControl4.Controls.Add(this.tabPage5);
     this.tabControl4.Controls.Add(this.tabPage6);
     this.tabControl4.Controls.Add(this.tabPage7);
     this.tabControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl4.Location = new System.Drawing.Point(0, 0);
     this.tabControl4.Name = "tabControl4";
     this.tabControl4.SelectedIndex = 0;
     this.tabControl4.Size = new System.Drawing.Size(912, 256);
     this.tabControl4.TabIndex = 0;
     //
     // tabPage5
     //
     this.tabPage5.Controls.Add(this.listViewResponseHeaders);
     this.tabPage5.Location = new System.Drawing.Point(4, 22);
     this.tabPage5.Name = "tabPage5";
     this.tabPage5.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage5.Size = new System.Drawing.Size(904, 230);
     this.tabPage5.TabIndex = 0;
     this.tabPage5.Text = "Response Headers";
     this.tabPage5.UseVisualStyleBackColor = true;
     //
     // listViewResponseHeaders
     //
     this.listViewResponseHeaders.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader3,
     this.columnHeader4});
     this.listViewResponseHeaders.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listViewResponseHeaders.Location = new System.Drawing.Point(3, 3);
     this.listViewResponseHeaders.Name = "listViewResponseHeaders";
     this.listViewResponseHeaders.Size = new System.Drawing.Size(898, 224);
     this.listViewResponseHeaders.TabIndex = 0;
     this.listViewResponseHeaders.UseCompatibleStateImageBehavior = false;
     this.listViewResponseHeaders.View = System.Windows.Forms.View.Details;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Header Name";
     this.columnHeader3.Width = 229;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "Header Value";
     this.columnHeader4.Width = 458;
     //
     // tabPage6
     //
     this.tabPage6.Controls.Add(this.richTextBoxSource);
     this.tabPage6.Location = new System.Drawing.Point(4, 22);
     this.tabPage6.Name = "tabPage6";
     this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage6.Size = new System.Drawing.Size(904, 230);
     this.tabPage6.TabIndex = 1;
     this.tabPage6.Text = "Source Code";
     this.tabPage6.UseVisualStyleBackColor = true;
     //
     // richTextBoxSource
     //
     this.richTextBoxSource.Dock = System.Windows.Forms.DockStyle.Fill;
     this.richTextBoxSource.Location = new System.Drawing.Point(3, 3);
     this.richTextBoxSource.Name = "richTextBoxSource";
     this.richTextBoxSource.Size = new System.Drawing.Size(898, 224);
     this.richTextBoxSource.TabIndex = 0;
     this.richTextBoxSource.Text = "";
     //
     // tabPage7
     //
     this.tabPage7.Controls.Add(this.webBrowserSource);
     this.tabPage7.Location = new System.Drawing.Point(4, 22);
     this.tabPage7.Name = "tabPage7";
     this.tabPage7.Size = new System.Drawing.Size(904, 230);
     this.tabPage7.TabIndex = 2;
     this.tabPage7.Text = "Browser";
     this.tabPage7.UseVisualStyleBackColor = true;
     //
     // webBrowserSource
     //
     this.webBrowserSource.Dock = System.Windows.Forms.DockStyle.Fill;
     this.webBrowserSource.Location = new System.Drawing.Point(0, 0);
     this.webBrowserSource.MinimumSize = new System.Drawing.Size(20, 20);
     this.webBrowserSource.Name = "webBrowserSource";
     this.webBrowserSource.Size = new System.Drawing.Size(904, 230);
     this.webBrowserSource.TabIndex = 0;
     //
     // splitContainer3
     //
     this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer3.Location = new System.Drawing.Point(0, 0);
     this.splitContainer3.Name = "splitContainer3";
     this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer3.Panel1
     //
     this.splitContainer3.Panel1.Controls.Add(this.tabControl1);
     //
     // splitContainer3.Panel2
     //
     this.splitContainer3.Panel2.Controls.Add(this.tabControl4);
     this.splitContainer3.Size = new System.Drawing.Size(912, 573);
     this.splitContainer3.SplitterDistance = 313;
     this.splitContainer3.TabIndex = 1;
     //
     // frmMain
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(912, 573);
     this.Controls.Add(this.splitContainer3);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmMain";
     this.Text = "Custom Request";
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel1.PerformLayout();
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.ResumeLayout(false);
     this.toolStripRequest.ResumeLayout(false);
     this.toolStripRequest.PerformLayout();
     this.splitContainer4.Panel1.ResumeLayout(false);
     this.splitContainer4.Panel2.ResumeLayout(false);
     this.splitContainer4.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.tabControl4.ResumeLayout(false);
     this.tabPage5.ResumeLayout(false);
     this.tabPage6.ResumeLayout(false);
     this.tabPage7.ResumeLayout(false);
     this.splitContainer3.Panel1.ResumeLayout(false);
     this.splitContainer3.Panel2.ResumeLayout(false);
     this.splitContainer3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 43
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.DirectoryDialog = new System.Windows.Forms.FolderBrowserDialog();
     this.ExportDialog = new System.Windows.Forms.SaveFileDialog();
     this.ImportDialog = new System.Windows.Forms.OpenFileDialog();
     this.HideIcon = new System.Windows.Forms.NotifyIcon(this.components);
     this.HideMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.ShowForm = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.AbuotForm = new System.Windows.Forms.ToolStripMenuItem();
     this.ExitForm = new System.Windows.Forms.ToolStripMenuItem();
     this.MainMenu = new System.Windows.Forms.MenuStrip();
     this.MenuFile = new System.Windows.Forms.ToolStripMenuItem();
     this.OpenFolder = new System.Windows.Forms.ToolStripMenuItem();
     this.lastFoldersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.exit = new System.Windows.Forms.ToolStripMenuItem();
     this.MenuService = new System.Windows.Forms.ToolStripMenuItem();
     this.fastST = new System.Windows.Forms.ToolStripMenuItem();
     this.l2ini = new System.Windows.Forms.ToolStripMenuItem();
     this.pathSystem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.Settings = new System.Windows.Forms.ToolStripMenuItem();
     this.MenuAbout = new System.Windows.Forms.ToolStripMenuItem();
     this.StatusProgress = new System.Windows.Forms.ProgressBar();
     this.RightClick = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.CutR = new System.Windows.Forms.ToolStripMenuItem();
     this.CopyR = new System.Windows.Forms.ToolStripMenuItem();
     this.PasteR = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.SelectAll = new System.Windows.Forms.ToolStripMenuItem();
     this.path = new System.Windows.Forms.Label();
     this.StatusLabel = new System.Windows.Forms.Label();
     this.ChLabel = new System.Windows.Forms.Label();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.ChronicleInfo = new System.Windows.Forms.Label();
     this.FileDialog = new System.Windows.Forms.OpenFileDialog();
     this.ColorDialog = new System.Windows.Forms.ColorDialog();
     this.IniTab = new System.Windows.Forms.TabPage();
     this.NumLines = new System.Windows.Forms.Label();
     this.Counts = new System.Windows.Forms.Label();
     this.EncText = new System.Windows.Forms.Label();
     this.EnCod = new System.Windows.Forms.Label();
     this.FileIniComboName = new System.Windows.Forms.ComboBox();
     this.clearl2ini = new System.Windows.Forms.Button();
     this.savel2ini = new System.Windows.Forms.Button();
     this.IniTextBox = new System.Windows.Forms.RichTextBox();
     this.OpenL2iniText = new System.Windows.Forms.Button();
     this.DatTab = new System.Windows.Forms.TabPage();
     this._mergeButton = new com.jds.PathEditor.classes.gui.JButton();
     this.lockBtn = new System.Windows.Forms.CheckBox();
     this.editorBtn = new com.jds.PathEditor.classes.gui.JButton();
     this.startBtn2 = new com.jds.PathEditor.classes.gui.JButton();
     this.exportBtn2 = new com.jds.PathEditor.classes.gui.JButton();
     this.importBtn2 = new com.jds.PathEditor.classes.gui.JButton();
     this.SaveBtn2 = new com.jds.PathEditor.classes.gui.JButton();
     this.LoadBtn2 = new com.jds.PathEditor.classes.gui.JButton();
     this.FileNameCombo = new System.Windows.Forms.ListBox();
     this.Tabs = new System.Windows.Forms.TabControl();
     this.HideMenu.SuspendLayout();
     this.MainMenu.SuspendLayout();
     this.RightClick.SuspendLayout();
     this.IniTab.SuspendLayout();
     this.DatTab.SuspendLayout();
     this.Tabs.SuspendLayout();
     this.SuspendLayout();
     //
     // DirectoryDialog
     //
     this.DirectoryDialog.Description = "Choose directory where LineageII System.";
     this.DirectoryDialog.ShowNewFolderButton = false;
     //
     // HideIcon
     //
     this.HideIcon.ContextMenuStrip = this.HideMenu;
     this.HideIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("HideIcon.Icon")));
     this.HideIcon.Tag = "Path Editor";
     this.HideIcon.Text = "Path Editor";
     this.HideIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.HideIcon_MouseDoubleClick);
     //
     // HideMenu
     //
     this.HideMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.ShowForm,
     this.toolStripSeparator4,
     this.AbuotForm,
     this.ExitForm});
     this.HideMenu.Name = "HideMenu";
     this.HideMenu.Size = new System.Drawing.Size(108, 76);
     this.HideMenu.Text = "HideMenu";
     //
     // ShowForm
     //
     this.ShowForm.Name = "ShowForm";
     this.ShowForm.Size = new System.Drawing.Size(107, 22);
     this.ShowForm.Text = "Show";
     this.ShowForm.Click += new System.EventHandler(this.ShowForm_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(104, 6);
     //
     // AbuotForm
     //
     this.AbuotForm.Name = "AbuotForm";
     this.AbuotForm.Size = new System.Drawing.Size(107, 22);
     this.AbuotForm.Text = "About";
     this.AbuotForm.Click += new System.EventHandler(this.AbuotForm_Click);
     //
     // ExitForm
     //
     this.ExitForm.Name = "ExitForm";
     this.ExitForm.Size = new System.Drawing.Size(107, 22);
     this.ExitForm.Text = "Exit";
     this.ExitForm.Click += new System.EventHandler(this.ExitForm_Click);
     //
     // MainMenu
     //
     this.MainMenu.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.MainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.MenuFile,
     this.MenuService,
     this.MenuAbout});
     this.MainMenu.Location = new System.Drawing.Point(0, 0);
     this.MainMenu.Name = "MainMenu";
     this.MainMenu.Size = new System.Drawing.Size(521, 24);
     this.MainMenu.TabIndex = 2;
     this.MainMenu.Text = "menuStrip1";
     //
     // MenuFile
     //
     this.MenuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.OpenFolder,
     this.lastFoldersToolStripMenuItem,
     this.toolStripSeparator1,
     this.exit});
     this.MenuFile.Name = "MenuFile";
     this.MenuFile.Size = new System.Drawing.Size(37, 20);
     this.MenuFile.Text = "File";
     //
     // OpenFolder
     //
     this.OpenFolder.Name = "OpenFolder";
     this.OpenFolder.Size = new System.Drawing.Size(136, 22);
     this.OpenFolder.Text = "OpenFolder";
     this.OpenFolder.Click += new System.EventHandler(this.OpenFolder_Click);
     //
     // lastFoldersToolStripMenuItem
     //
     this.lastFoldersToolStripMenuItem.Name = "lastFoldersToolStripMenuItem";
     this.lastFoldersToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
     this.lastFoldersToolStripMenuItem.Text = "Last Folders";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(133, 6);
     //
     // exit
     //
     this.exit.Name = "exit";
     this.exit.Size = new System.Drawing.Size(136, 22);
     this.exit.Text = "Exit";
     this.exit.Click += new System.EventHandler(this.exit_Click);
     //
     // MenuService
     //
     this.MenuService.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fastST,
     this.pathSystem,
     this.toolStripSeparator3,
     this.Settings});
     this.MenuService.Name = "MenuService";
     this.MenuService.Size = new System.Drawing.Size(56, 20);
     this.MenuService.Text = "Service";
     //
     // fastST
     //
     this.fastST.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.l2ini});
     this.fastST.Name = "fastST";
     this.fastST.Size = new System.Drawing.Size(140, 22);
     this.fastST.Text = "Fast Settings";
     //
     // l2ini
     //
     this.l2ini.Name = "l2ini";
     this.l2ini.Size = new System.Drawing.Size(99, 22);
     this.l2ini.Text = "l2.ini";
     this.l2ini.Click += new System.EventHandler(this.l2ini_Click);
     //
     // pathSystem
     //
     this.pathSystem.Name = "pathSystem";
     this.pathSystem.Size = new System.Drawing.Size(140, 22);
     this.pathSystem.Text = "Path system";
     this.pathSystem.Click += new System.EventHandler(this.pathSystem_Click_1);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(137, 6);
     //
     // Settings
     //
     this.Settings.Name = "Settings";
     this.Settings.Size = new System.Drawing.Size(140, 22);
     this.Settings.Text = "Settings";
     this.Settings.Click += new System.EventHandler(this.Settings_Click);
     //
     // MenuAbout
     //
     this.MenuAbout.Name = "MenuAbout";
     this.MenuAbout.Size = new System.Drawing.Size(24, 20);
     this.MenuAbout.Text = "?";
     this.MenuAbout.Click += new System.EventHandler(this.MenuAbout_Click_1);
     //
     // StatusProgress
     //
     this.StatusProgress.Location = new System.Drawing.Point(366, 643);
     this.StatusProgress.Name = "StatusProgress";
     this.StatusProgress.Size = new System.Drawing.Size(139, 16);
     this.StatusProgress.TabIndex = 3;
     //
     // RightClick
     //
     this.RightClick.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.CutR,
     this.CopyR,
     this.PasteR,
     this.toolStripSeparator2,
     this.SelectAll});
     this.RightClick.Name = "RightClick";
     this.RightClick.Size = new System.Drawing.Size(123, 98);
     this.RightClick.Text = "Right";
     //
     // CutR
     //
     this.CutR.Name = "CutR";
     this.CutR.Size = new System.Drawing.Size(122, 22);
     this.CutR.Text = "Cut";
     this.CutR.Click += new System.EventHandler(this.CutR_Click);
     //
     // CopyR
     //
     this.CopyR.Name = "CopyR";
     this.CopyR.Size = new System.Drawing.Size(122, 22);
     this.CopyR.Text = "Copy";
     this.CopyR.Click += new System.EventHandler(this.CopyR_Click);
     //
     // PasteR
     //
     this.PasteR.Name = "PasteR";
     this.PasteR.Size = new System.Drawing.Size(122, 22);
     this.PasteR.Text = "Paste";
     this.PasteR.Click += new System.EventHandler(this.PasteR_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(119, 6);
     //
     // SelectAll
     //
     this.SelectAll.Name = "SelectAll";
     this.SelectAll.Size = new System.Drawing.Size(122, 22);
     this.SelectAll.Text = "Select All";
     this.SelectAll.Click += new System.EventHandler(this.SelectAll_Click);
     //
     // path
     //
     this.path.AutoSize = true;
     this.path.BackColor = System.Drawing.Color.Transparent;
     this.path.Location = new System.Drawing.Point(12, 619);
     this.path.Name = "path";
     this.path.Size = new System.Drawing.Size(32, 14);
     this.path.TabIndex = 9;
     this.path.Text = "Path";
     //
     // StatusLabel
     //
     this.StatusLabel.AutoSize = true;
     this.StatusLabel.Location = new System.Drawing.Point(13, 646);
     this.StatusLabel.Name = "StatusLabel";
     this.StatusLabel.Size = new System.Drawing.Size(70, 14);
     this.StatusLabel.TabIndex = 5;
     this.StatusLabel.Text = "StatusLabel";
     //
     // ChLabel
     //
     this.ChLabel.AutoSize = true;
     this.ChLabel.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.ChLabel.Location = new System.Drawing.Point(370, 4);
     this.ChLabel.Name = "ChLabel";
     this.ChLabel.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.ChLabel.Size = new System.Drawing.Size(39, 14);
     this.ChLabel.TabIndex = 6;
     this.ChLabel.Text = "NONE";
     this.ChLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     this.ChLabel.Click += new System.EventHandler(this.ChLabel_Click);
     //
     // statusStrip1
     //
     this.statusStrip1.Location = new System.Drawing.Point(0, 641);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(521, 22);
     this.statusStrip1.TabIndex = 10;
     this.statusStrip1.Text = "statusStrip1";
     //
     // ChronicleInfo
     //
     this.ChronicleInfo.AutoSize = true;
     this.ChronicleInfo.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.ChronicleInfo.Location = new System.Drawing.Point(311, 4);
     this.ChronicleInfo.Name = "ChronicleInfo";
     this.ChronicleInfo.Size = new System.Drawing.Size(60, 14);
     this.ChronicleInfo.TabIndex = 11;
     this.ChronicleInfo.Text = "Chronicle:";
     //
     // FileDialog
     //
     this.FileDialog.Filter = "Binary file|*.exe";
     //
     // ColorDialog
     //
     this.ColorDialog.FullOpen = true;
     //
     // IniTab
     //
     this.IniTab.Controls.Add(this.NumLines);
     this.IniTab.Controls.Add(this.Counts);
     this.IniTab.Controls.Add(this.EncText);
     this.IniTab.Controls.Add(this.EnCod);
     this.IniTab.Controls.Add(this.FileIniComboName);
     this.IniTab.Controls.Add(this.clearl2ini);
     this.IniTab.Controls.Add(this.savel2ini);
     this.IniTab.Controls.Add(this.IniTextBox);
     this.IniTab.Controls.Add(this.OpenL2iniText);
     this.IniTab.Location = new System.Drawing.Point(4, 23);
     this.IniTab.Name = "IniTab";
     this.IniTab.Padding = new System.Windows.Forms.Padding(3);
     this.IniTab.Size = new System.Drawing.Size(489, 552);
     this.IniTab.TabIndex = 1;
     this.IniTab.Text = "ini/int Files";
     this.IniTab.UseVisualStyleBackColor = true;
     //
     // NumLines
     //
     this.NumLines.AutoSize = true;
     this.NumLines.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.NumLines.Location = new System.Drawing.Point(347, 215);
     this.NumLines.Name = "NumLines";
     this.NumLines.Size = new System.Drawing.Size(97, 13);
     this.NumLines.TabIndex = 11;
     this.NumLines.Text = "Number of lines:";
     //
     // Counts
     //
     this.Counts.AutoSize = true;
     this.Counts.Location = new System.Drawing.Point(461, 214);
     this.Counts.Name = "Counts";
     this.Counts.Size = new System.Drawing.Size(14, 14);
     this.Counts.TabIndex = 10;
     this.Counts.Text = "0";
     //
     // EncText
     //
     this.EncText.AutoSize = true;
     this.EncText.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.EncText.Location = new System.Drawing.Point(347, 185);
     this.EncText.Name = "EncText";
     this.EncText.Size = new System.Drawing.Size(60, 13);
     this.EncText.TabIndex = 9;
     this.EncText.Text = "Encoding:";
     //
     // EnCod
     //
     this.EnCod.AutoSize = true;
     this.EnCod.Location = new System.Drawing.Point(422, 185);
     this.EnCod.Name = "EnCod";
     this.EnCod.Size = new System.Drawing.Size(14, 14);
     this.EnCod.TabIndex = 8;
     this.EnCod.Text = "0";
     //
     // FileIniComboName
     //
     this.FileIniComboName.Cursor = System.Windows.Forms.Cursors.Default;
     this.FileIniComboName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.FileIniComboName.Location = new System.Drawing.Point(355, 17);
     this.FileIniComboName.Name = "FileIniComboName";
     this.FileIniComboName.Size = new System.Drawing.Size(128, 22);
     this.FileIniComboName.TabIndex = 5;
     this.FileIniComboName.SelectedIndexChanged += new System.EventHandler(this.FileIniComboName_SelectedIndexChanged);
     //
     // clearl2ini
     //
     this.clearl2ini.Location = new System.Drawing.Point(352, 130);
     this.clearl2ini.Name = "clearl2ini";
     this.clearl2ini.Size = new System.Drawing.Size(131, 30);
     this.clearl2ini.TabIndex = 3;
     this.clearl2ini.Text = "Clear";
     this.clearl2ini.UseVisualStyleBackColor = true;
     this.clearl2ini.Click += new System.EventHandler(this.clearl2ini_Click);
     //
     // savel2ini
     //
     this.savel2ini.Location = new System.Drawing.Point(352, 94);
     this.savel2ini.Name = "savel2ini";
     this.savel2ini.Size = new System.Drawing.Size(131, 30);
     this.savel2ini.TabIndex = 4;
     this.savel2ini.Text = "Save";
     this.savel2ini.UseVisualStyleBackColor = true;
     this.savel2ini.Click += new System.EventHandler(this.savel2ini_Click);
     //
     // IniTextBox
     //
     this.IniTextBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.IniTextBox.ContextMenuStrip = this.RightClick;
     this.IniTextBox.Enabled = false;
     this.IniTextBox.Location = new System.Drawing.Point(18, 17);
     this.IniTextBox.Name = "IniTextBox";
     this.IniTextBox.Size = new System.Drawing.Size(328, 529);
     this.IniTextBox.TabIndex = 2;
     this.IniTextBox.Text = "";
     //
     // OpenL2iniText
     //
     this.OpenL2iniText.Location = new System.Drawing.Point(352, 58);
     this.OpenL2iniText.Name = "OpenL2iniText";
     this.OpenL2iniText.Size = new System.Drawing.Size(131, 30);
     this.OpenL2iniText.TabIndex = 0;
     this.OpenL2iniText.Text = "Open";
     this.OpenL2iniText.UseVisualStyleBackColor = true;
     this.OpenL2iniText.Click += new System.EventHandler(this.OpenIniButton_Click);
     //
     // DatTab
     //
     this.DatTab.Controls.Add(this._mergeButton);
     this.DatTab.Controls.Add(this.lockBtn);
     this.DatTab.Controls.Add(this.editorBtn);
     this.DatTab.Controls.Add(this.startBtn2);
     this.DatTab.Controls.Add(this.exportBtn2);
     this.DatTab.Controls.Add(this.importBtn2);
     this.DatTab.Controls.Add(this.SaveBtn2);
     this.DatTab.Controls.Add(this.LoadBtn2);
     this.DatTab.Controls.Add(this.FileNameCombo);
     this.DatTab.Location = new System.Drawing.Point(4, 23);
     this.DatTab.Name = "DatTab";
     this.DatTab.Padding = new System.Windows.Forms.Padding(3);
     this.DatTab.Size = new System.Drawing.Size(489, 552);
     this.DatTab.TabIndex = 0;
     this.DatTab.Text = "dat Files";
     this.DatTab.UseVisualStyleBackColor = true;
     //
     // _mergeButton
     //
     this._mergeButton.DescriptionText = "";
     this._mergeButton.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._mergeButton.HeaderText = "Merge";
     this._mergeButton.Image = global::com.jds.PathEditor.Resources.MERGE;
     this._mergeButton.ImageScalingSize = new System.Drawing.Size(16, 16);
     this._mergeButton.Location = new System.Drawing.Point(361, 256);
     this._mergeButton.Name = "_mergeButton";
     this._mergeButton.Size = new System.Drawing.Size(122, 50);
     this._mergeButton.TabIndex = 9;
     this._mergeButton.Click += new System.EventHandler(this._mergeButton_Click);
     //
     // lockBtn
     //
     this.lockBtn.AutoSize = true;
     this.lockBtn.Location = new System.Drawing.Point(364, 380);
     this.lockBtn.Name = "lockBtn";
     this.lockBtn.Size = new System.Drawing.Size(57, 18);
     this.lockBtn.TabIndex = 8;
     this.lockBtn.Text = "Lock?";
     this.lockBtn.UseVisualStyleBackColor = true;
     this.lockBtn.CheckedChanged += new System.EventHandler(this.lockBtn_CheckedChanged);
     //
     // editorBtn
     //
     this.editorBtn.DescriptionText = "";
     this.editorBtn.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.editorBtn.HeaderText = "Editor";
     this.editorBtn.Image = global::com.jds.PathEditor.Resources.editor;
     this.editorBtn.ImageScalingSize = new System.Drawing.Size(16, 16);
     this.editorBtn.Location = new System.Drawing.Point(361, 312);
     this.editorBtn.Name = "editorBtn";
     this.editorBtn.Size = new System.Drawing.Size(122, 50);
     this.editorBtn.TabIndex = 8;
     this.editorBtn.Click += new System.EventHandler(this.expToWindow_Click);
     //
     // startBtn2
     //
     this.startBtn2.DescriptionText = "";
     this.startBtn2.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.startBtn2.HeaderText = "Start L2";
     this.startBtn2.Image = global::com.jds.PathEditor.Resources.START;
     this.startBtn2.ImageScalingSize = new System.Drawing.Size(16, 16);
     this.startBtn2.Location = new System.Drawing.Point(361, 493);
     this.startBtn2.Name = "startBtn2";
     this.startBtn2.Size = new System.Drawing.Size(122, 50);
     this.startBtn2.TabIndex = 8;
     this.startBtn2.Click += new System.EventHandler(this.StartL2_Click);
     //
     // exportBtn2
     //
     this.exportBtn2.DescriptionText = "";
     this.exportBtn2.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.exportBtn2.HeaderText = "Export";
     this.exportBtn2.Image = global::com.jds.PathEditor.Resources.EXPORT;
     this.exportBtn2.ImageScalingSize = new System.Drawing.Size(16, 16);
     this.exportBtn2.Location = new System.Drawing.Point(361, 200);
     this.exportBtn2.Name = "exportBtn2";
     this.exportBtn2.Size = new System.Drawing.Size(122, 50);
     this.exportBtn2.TabIndex = 8;
     this.exportBtn2.Click += new System.EventHandler(this.ExpBtn_Click);
     //
     // importBtn2
     //
     this.importBtn2.DescriptionText = "";
     this.importBtn2.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.importBtn2.HeaderText = "Import";
     this.importBtn2.Image = global::com.jds.PathEditor.Resources.IMPORT;
     this.importBtn2.ImageScalingSize = new System.Drawing.Size(16, 16);
     this.importBtn2.Location = new System.Drawing.Point(361, 140);
     this.importBtn2.Name = "importBtn2";
     this.importBtn2.Size = new System.Drawing.Size(122, 50);
     this.importBtn2.TabIndex = 8;
     this.importBtn2.Click += new System.EventHandler(this.ImpBtn_Click);
     //
     // SaveBtn2
     //
     this.SaveBtn2.DescriptionText = "";
     this.SaveBtn2.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.SaveBtn2.HeaderText = "Save";
     this.SaveBtn2.Image = global::com.jds.PathEditor.Resources.SAVE;
     this.SaveBtn2.ImageScalingSize = new System.Drawing.Size(16, 16);
     this.SaveBtn2.Location = new System.Drawing.Point(361, 80);
     this.SaveBtn2.Name = "SaveBtn2";
     this.SaveBtn2.Size = new System.Drawing.Size(122, 50);
     this.SaveBtn2.TabIndex = 8;
     this.SaveBtn2.Click += new System.EventHandler(this.SaveBtn_Click);
     //
     // LoadBtn2
     //
     this.LoadBtn2.DescriptionText = "";
     this.LoadBtn2.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.LoadBtn2.HeaderText = "Load";
     this.LoadBtn2.Image = global::com.jds.PathEditor.Resources.LOAD;
     this.LoadBtn2.ImageScalingSize = new System.Drawing.Size(16, 16);
     this.LoadBtn2.Location = new System.Drawing.Point(361, 20);
     this.LoadBtn2.Name = "LoadBtn2";
     this.LoadBtn2.Size = new System.Drawing.Size(122, 50);
     this.LoadBtn2.TabIndex = 8;
     this.LoadBtn2.Click += new System.EventHandler(this.LoadBtn_Click);
     //
     // FileNameCombo
     //
     this.FileNameCombo.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.FileNameCombo.FormattingEnabled = true;
     this.FileNameCombo.ItemHeight = 14;
     this.FileNameCombo.Location = new System.Drawing.Point(23, 21);
     this.FileNameCombo.Name = "FileNameCombo";
     this.FileNameCombo.Size = new System.Drawing.Size(332, 522);
     this.FileNameCombo.TabIndex = 5;
     this.FileNameCombo.SelectedIndexChanged += new System.EventHandler(this.FileNameCombo_SelectedIndexChanged);
     //
     // Tabs
     //
     this.Tabs.Controls.Add(this.DatTab);
     this.Tabs.Controls.Add(this.IniTab);
     this.Tabs.Location = new System.Drawing.Point(12, 37);
     this.Tabs.Multiline = true;
     this.Tabs.Name = "Tabs";
     this.Tabs.SelectedIndex = 0;
     this.Tabs.Size = new System.Drawing.Size(497, 579);
     this.Tabs.TabIndex = 4;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(521, 663);
     this.Controls.Add(this.StatusProgress);
     this.Controls.Add(this.path);
     this.Controls.Add(this.StatusLabel);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.Tabs);
     this.Controls.Add(this.ChronicleInfo);
     this.Controls.Add(this.ChLabel);
     this.Controls.Add(this.MainMenu);
     this.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip = this.MainMenu;
     this.MaximizeBox = false;
     this.Name = "MainForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Path Editor";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
     this.Load += new System.EventHandler(this.MainForm_Load);
     this.Resize += new System.EventHandler(this.MainForm_Resize);
     this.HideMenu.ResumeLayout(false);
     this.MainMenu.ResumeLayout(false);
     this.MainMenu.PerformLayout();
     this.RightClick.ResumeLayout(false);
     this.IniTab.ResumeLayout(false);
     this.IniTab.PerformLayout();
     this.DatTab.ResumeLayout(false);
     this.DatTab.PerformLayout();
     this.Tabs.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 44
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(fGetAssembly));
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.pBFrontImage = new System.Windows.Forms.PictureBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.panel1 = new System.Windows.Forms.Panel();
     this.dTPCreatorGet = new System.Windows.Forms.DateTimePicker();
     this.label8 = new System.Windows.Forms.Label();
     this.tBCreatorSurname = new System.Windows.Forms.TextBox();
     this.label9 = new System.Windows.Forms.Label();
     this.dTPCustomerReturn = new System.Windows.Forms.DateTimePicker();
     this.label7 = new System.Windows.Forms.Label();
     this.tBCustomerSurname = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.pnlFooter = new System.Windows.Forms.Panel();
     this.bttnPrev = new System.Windows.Forms.Button();
     this.bttnNext = new System.Windows.Forms.Button();
     this.bttnCancel = new System.Windows.Forms.Button();
     this.pnlHeader = new System.Windows.Forms.Panel();
     this.lblHeader = new System.Windows.Forms.Label();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pBFrontImage)).BeginInit();
     this.tabPage2.SuspendLayout();
     this.panel1.SuspendLayout();
     this.pnlFooter.SuspendLayout();
     this.pnlHeader.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Location = new System.Drawing.Point(-7, -23);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(485, 261);
     this.tabControl1.TabIndex = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.pBFrontImage);
     this.tabPage1.Controls.Add(this.label2);
     this.tabPage1.Controls.Add(this.label3);
     this.tabPage1.Controls.Add(this.label1);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(477, 235);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "tabPage1";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // pBFrontImage
     //
     this.pBFrontImage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pBFrontImage.Image = global::UchetUSP.Properties.Resources.masterImage;
     this.pBFrontImage.Location = new System.Drawing.Point(-37, -9);
     this.pBFrontImage.Name = "pBFrontImage";
     this.pBFrontImage.Size = new System.Drawing.Size(196, 244);
     this.pBFrontImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pBFrontImage.TabIndex = 12;
     this.pBFrontImage.TabStop = false;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(191, 108);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(262, 31);
     this.label2.TabIndex = 10;
     this.label2.Text = "Этот мастер поможет принять сборку УСПО от заказчика с отрывным талоном к форме 2" +
         "424.";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(191, 151);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(262, 31);
     this.label3.TabIndex = 11;
     this.label3.Text = "Для продолжения нажмите кнопку \"Далее\".";
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label1.Location = new System.Drawing.Point(191, 40);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(262, 46);
     this.label1.TabIndex = 9;
     this.label1.Text = "Мастер возврата оснастки на участок сборки УСПО";
     //
     // tabPage2
     //
     this.tabPage2.BackColor = System.Drawing.SystemColors.Control;
     this.tabPage2.Controls.Add(this.panel1);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size = new System.Drawing.Size(477, 235);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "tabPage2";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.dTPCreatorGet);
     this.panel1.Controls.Add(this.label8);
     this.panel1.Controls.Add(this.tBCreatorSurname);
     this.panel1.Controls.Add(this.label9);
     this.panel1.Controls.Add(this.dTPCustomerReturn);
     this.panel1.Controls.Add(this.label7);
     this.panel1.Controls.Add(this.tBCustomerSurname);
     this.panel1.Controls.Add(this.label6);
     this.panel1.Controls.Add(this.label5);
     this.panel1.Controls.Add(this.label4);
     this.panel1.Location = new System.Drawing.Point(15, 55);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(447, 157);
     this.panel1.TabIndex = 0;
     //
     // dTPCreatorGet
     //
     this.dTPCreatorGet.Location = new System.Drawing.Point(189, 125);
     this.dTPCreatorGet.Name = "dTPCreatorGet";
     this.dTPCreatorGet.Size = new System.Drawing.Size(146, 20);
     this.dTPCreatorGet.TabIndex = 9;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(186, 109);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(33, 13);
     this.label8.TabIndex = 8;
     this.label8.Text = "Дата";
     //
     // tBCreatorSurname
     //
     this.tBCreatorSurname.Location = new System.Drawing.Point(44, 125);
     this.tBCreatorSurname.Name = "tBCreatorSurname";
     this.tBCreatorSurname.Size = new System.Drawing.Size(100, 20);
     this.tBCreatorSurname.TabIndex = 7;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(41, 109);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(56, 13);
     this.label9.TabIndex = 6;
     this.label9.Text = "Фамилия";
     //
     // dTPCustomerReturn
     //
     this.dTPCustomerReturn.Location = new System.Drawing.Point(189, 57);
     this.dTPCustomerReturn.Name = "dTPCustomerReturn";
     this.dTPCustomerReturn.Size = new System.Drawing.Size(146, 20);
     this.dTPCustomerReturn.TabIndex = 5;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(186, 41);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(33, 13);
     this.label7.TabIndex = 4;
     this.label7.Text = "Дата";
     //
     // tBCustomerSurname
     //
     this.tBCustomerSurname.Location = new System.Drawing.Point(44, 57);
     this.tBCustomerSurname.Name = "tBCustomerSurname";
     this.tBCustomerSurname.Size = new System.Drawing.Size(100, 20);
     this.tBCustomerSurname.TabIndex = 3;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(41, 41);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(56, 13);
     this.label6.TabIndex = 2;
     this.label6.Text = "Фамилия";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(20, 88);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(97, 13);
     this.label5.TabIndex = 1;
     this.label5.Text = "Оснастку принял:";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(20, 17);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(85, 13);
     this.label4.TabIndex = 0;
     this.label4.Text = "Оснастку сдал:";
     //
     // pnlFooter
     //
     this.pnlFooter.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnlFooter.Controls.Add(this.bttnPrev);
     this.pnlFooter.Controls.Add(this.bttnNext);
     this.pnlFooter.Controls.Add(this.bttnCancel);
     this.pnlFooter.Location = new System.Drawing.Point(-7, 232);
     this.pnlFooter.Name = "pnlFooter";
     this.pnlFooter.Size = new System.Drawing.Size(505, 78);
     this.pnlFooter.TabIndex = 5;
     //
     // bttnPrev
     //
     this.bttnPrev.Enabled = false;
     this.bttnPrev.Location = new System.Drawing.Point(200, 11);
     this.bttnPrev.Name = "bttnPrev";
     this.bttnPrev.Size = new System.Drawing.Size(74, 22);
     this.bttnPrev.TabIndex = 0;
     this.bttnPrev.Text = "< Назад";
     this.bttnPrev.UseVisualStyleBackColor = true;
     this.bttnPrev.Click += new System.EventHandler(this.bttnPrev_Click);
     //
     // bttnNext
     //
     this.bttnNext.Location = new System.Drawing.Point(280, 11);
     this.bttnNext.Name = "bttnNext";
     this.bttnNext.Size = new System.Drawing.Size(74, 22);
     this.bttnNext.TabIndex = 1;
     this.bttnNext.Text = "Далее >";
     this.bttnNext.UseVisualStyleBackColor = true;
     this.bttnNext.Click += new System.EventHandler(this.bttnNext_Click);
     //
     // bttnCancel
     //
     this.bttnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.bttnCancel.Location = new System.Drawing.Point(382, 11);
     this.bttnCancel.Name = "bttnCancel";
     this.bttnCancel.Size = new System.Drawing.Size(74, 22);
     this.bttnCancel.TabIndex = 2;
     this.bttnCancel.Text = "Отмена";
     this.bttnCancel.UseVisualStyleBackColor = true;
     this.bttnCancel.Click += new System.EventHandler(this.bttnCancel_Click);
     //
     // pnlHeader
     //
     this.pnlHeader.BackColor = System.Drawing.Color.White;
     this.pnlHeader.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnlHeader.Controls.Add(this.lblHeader);
     this.pnlHeader.Location = new System.Drawing.Point(-7, -37);
     this.pnlHeader.Name = "pnlHeader";
     this.pnlHeader.Size = new System.Drawing.Size(485, 94);
     this.pnlHeader.TabIndex = 7;
     this.pnlHeader.Visible = false;
     //
     // lblHeader
     //
     this.lblHeader.AutoSize = true;
     this.lblHeader.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.lblHeader.Location = new System.Drawing.Point(16, 55);
     this.lblHeader.Name = "lblHeader";
     this.lblHeader.Size = new System.Drawing.Size(224, 13);
     this.lblHeader.TabIndex = 0;
     this.lblHeader.Text = "Введите данные исполнения заказа";
     //
     // fGetAssembly
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(472, 280);
     this.Controls.Add(this.pnlHeader);
     this.Controls.Add(this.pnlFooter);
     this.Controls.Add(this.tabControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.Name = "fGetAssembly";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Мастер возврата оснастки на участок сборки УСПО";
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pBFrontImage)).EndInit();
     this.tabPage2.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.pnlFooter.ResumeLayout(false);
     this.pnlHeader.ResumeLayout(false);
     this.pnlHeader.PerformLayout();
     this.ResumeLayout(false);
 }
Ejemplo n.º 45
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Welcome));
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.label12 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.room125Button = new System.Windows.Forms.Button();
     this.room124Button = new System.Windows.Forms.Button();
     this.room118Button = new System.Windows.Forms.Button();
     this.room109Button = new System.Windows.Forms.Button();
     this.room126Button = new System.Windows.Forms.Button();
     this.room127Button = new System.Windows.Forms.Button();
     this.room128Button = new System.Windows.Forms.Button();
     this.room123Button = new System.Windows.Forms.Button();
     this.room122Button = new System.Windows.Forms.Button();
     this.room121Button = new System.Windows.Forms.Button();
     this.room117Button = new System.Windows.Forms.Button();
     this.room116Button = new System.Windows.Forms.Button();
     this.rom115Button = new System.Windows.Forms.Button();
     this.room108Button = new System.Windows.Forms.Button();
     this.room107Button = new System.Windows.Forms.Button();
     this.room106Button = new System.Windows.Forms.Button();
     this.room129Button = new System.Windows.Forms.Button();
     this.room130Button = new System.Windows.Forms.Button();
     this.room120Button = new System.Windows.Forms.Button();
     this.room119Button = new System.Windows.Forms.Button();
     this.room114Button = new System.Windows.Forms.Button();
     this.room113Button = new System.Windows.Forms.Button();
     this.room112Button = new System.Windows.Forms.Button();
     this.room111Button = new System.Windows.Forms.Button();
     this.room110Button = new System.Windows.Forms.Button();
     this.room105Button = new System.Windows.Forms.Button();
     this.room104Button = new System.Windows.Forms.Button();
     this.room102Button = new System.Windows.Forms.Button();
     this.room103Button = new System.Windows.Forms.Button();
     this.room101Button = new System.Windows.Forms.Button();
     this.label10 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.room272Button = new System.Windows.Forms.Button();
     this.room263Button = new System.Windows.Forms.Button();
     this.room271Button = new System.Windows.Forms.Button();
     this.room270Button = new System.Windows.Forms.Button();
     this.room269Button = new System.Windows.Forms.Button();
     this.room262Button = new System.Windows.Forms.Button();
     this.room261Button = new System.Windows.Forms.Button();
     this.room260Button = new System.Windows.Forms.Button();
     this.room268Button = new System.Windows.Forms.Button();
     this.room267Button = new System.Windows.Forms.Button();
     this.room266Button = new System.Windows.Forms.Button();
     this.room265Button = new System.Windows.Forms.Button();
     this.room264Button = new System.Windows.Forms.Button();
     this.room259Button = new System.Windows.Forms.Button();
     this.room258Button = new System.Windows.Forms.Button();
     this.room256Button = new System.Windows.Forms.Button();
     this.room257Button = new System.Windows.Forms.Button();
     this.room255Button = new System.Windows.Forms.Button();
     this.room254Button = new System.Windows.Forms.Button();
     this.room245Button = new System.Windows.Forms.Button();
     this.room253Button = new System.Windows.Forms.Button();
     this.room252Button = new System.Windows.Forms.Button();
     this.room251Button = new System.Windows.Forms.Button();
     this.room244Button = new System.Windows.Forms.Button();
     this.room243Button = new System.Windows.Forms.Button();
     this.room242Button = new System.Windows.Forms.Button();
     this.room250Button = new System.Windows.Forms.Button();
     this.room249Button = new System.Windows.Forms.Button();
     this.room248Button = new System.Windows.Forms.Button();
     this.room247Button = new System.Windows.Forms.Button();
     this.room246Button = new System.Windows.Forms.Button();
     this.rom241Button = new System.Windows.Forms.Button();
     this.room240Button = new System.Windows.Forms.Button();
     this.room238Button = new System.Windows.Forms.Button();
     this.room239Button = new System.Windows.Forms.Button();
     this.rom237Button = new System.Windows.Forms.Button();
     this.room236Button = new System.Windows.Forms.Button();
     this.room227Button = new System.Windows.Forms.Button();
     this.room235Button = new System.Windows.Forms.Button();
     this.room234Button = new System.Windows.Forms.Button();
     this.room233Button = new System.Windows.Forms.Button();
     this.room226Button = new System.Windows.Forms.Button();
     this.room225Button = new System.Windows.Forms.Button();
     this.room224Button = new System.Windows.Forms.Button();
     this.room232Button = new System.Windows.Forms.Button();
     this.room231Button = new System.Windows.Forms.Button();
     this.room230Button = new System.Windows.Forms.Button();
     this.room229Button = new System.Windows.Forms.Button();
     this.room228Button = new System.Windows.Forms.Button();
     this.room223Button = new System.Windows.Forms.Button();
     this.room222Button = new System.Windows.Forms.Button();
     this.room220Button = new System.Windows.Forms.Button();
     this.room221Button = new System.Windows.Forms.Button();
     this.room219Button = new System.Windows.Forms.Button();
     this.room218Button = new System.Windows.Forms.Button();
     this.room209Button = new System.Windows.Forms.Button();
     this.room217Button = new System.Windows.Forms.Button();
     this.room216Button = new System.Windows.Forms.Button();
     this.room215Button = new System.Windows.Forms.Button();
     this.room208Button = new System.Windows.Forms.Button();
     this.room207Button = new System.Windows.Forms.Button();
     this.room206Button = new System.Windows.Forms.Button();
     this.room214Button = new System.Windows.Forms.Button();
     this.room213Button = new System.Windows.Forms.Button();
     this.room212Button = new System.Windows.Forms.Button();
     this.room211Button = new System.Windows.Forms.Button();
     this.room210Button = new System.Windows.Forms.Button();
     this.room205Button = new System.Windows.Forms.Button();
     this.room204Button = new System.Windows.Forms.Button();
     this.room202Button = new System.Windows.Forms.Button();
     this.room203Button = new System.Windows.Forms.Button();
     this.room201Button = new System.Windows.Forms.Button();
     this.label19 = new System.Windows.Forms.Label();
     this.tabPage3 = new System.Windows.Forms.TabPage();
     this.tabPage4 = new System.Windows.Forms.TabPage();
     this.tabPage5 = new System.Windows.Forms.TabPage();
     this.label16 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.checkOutDateTimePicker = new System.Windows.Forms.DateTimePicker();
     this.checkInDateTimePicker = new System.Windows.Forms.DateTimePicker();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.checkAvailabilityButton = new System.Windows.Forms.Button();
     this.clearButton = new System.Windows.Forms.Button();
     this.roomLevelComboBox = new System.Windows.Forms.ComboBox();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.roomTypeComboBox = new System.Windows.Forms.ComboBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.clearNamesButton = new System.Windows.Forms.Button();
     this.lastNameTextBox = new System.Windows.Forms.TextBox();
     this.firstNameTextBox = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.retrieveBookingButton = new System.Windows.Forms.Button();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.label17 = new System.Windows.Forms.Label();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.viewHelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.programmingManualToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Controls.Add(this.tabPage4);
     this.tabControl1.Controls.Add(this.tabPage5);
     this.tabControl1.Location = new System.Drawing.Point(11, 199);
     this.tabControl1.Margin = new System.Windows.Forms.Padding(2);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(639, 377);
     this.tabControl1.TabIndex = 92;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.label12);
     this.tabPage1.Controls.Add(this.label11);
     this.tabPage1.Controls.Add(this.label9);
     this.tabPage1.Controls.Add(this.label1);
     this.tabPage1.Controls.Add(this.room125Button);
     this.tabPage1.Controls.Add(this.room124Button);
     this.tabPage1.Controls.Add(this.room118Button);
     this.tabPage1.Controls.Add(this.room109Button);
     this.tabPage1.Controls.Add(this.room126Button);
     this.tabPage1.Controls.Add(this.room127Button);
     this.tabPage1.Controls.Add(this.room128Button);
     this.tabPage1.Controls.Add(this.room123Button);
     this.tabPage1.Controls.Add(this.room122Button);
     this.tabPage1.Controls.Add(this.room121Button);
     this.tabPage1.Controls.Add(this.room117Button);
     this.tabPage1.Controls.Add(this.room116Button);
     this.tabPage1.Controls.Add(this.rom115Button);
     this.tabPage1.Controls.Add(this.room108Button);
     this.tabPage1.Controls.Add(this.room107Button);
     this.tabPage1.Controls.Add(this.room106Button);
     this.tabPage1.Controls.Add(this.room129Button);
     this.tabPage1.Controls.Add(this.room130Button);
     this.tabPage1.Controls.Add(this.room120Button);
     this.tabPage1.Controls.Add(this.room119Button);
     this.tabPage1.Controls.Add(this.room114Button);
     this.tabPage1.Controls.Add(this.room113Button);
     this.tabPage1.Controls.Add(this.room112Button);
     this.tabPage1.Controls.Add(this.room111Button);
     this.tabPage1.Controls.Add(this.room110Button);
     this.tabPage1.Controls.Add(this.room105Button);
     this.tabPage1.Controls.Add(this.room104Button);
     this.tabPage1.Controls.Add(this.room102Button);
     this.tabPage1.Controls.Add(this.room103Button);
     this.tabPage1.Controls.Add(this.room101Button);
     this.tabPage1.Controls.Add(this.label10);
     this.tabPage1.Controls.Add(this.label18);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Margin = new System.Windows.Forms.Padding(2);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(2);
     this.tabPage1.Size = new System.Drawing.Size(631, 351);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Lobby";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // label12
     //
     this.label12.BackColor = System.Drawing.Color.WhiteSmoke;
     this.label12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label12.Location = new System.Drawing.Point(419, 77);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(207, 197);
     this.label12.TabIndex = 102;
     this.label12.Text = "Swimming Pool";
     this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label11
     //
     this.label11.BackColor = System.Drawing.Color.WhiteSmoke;
     this.label11.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.label11.Location = new System.Drawing.Point(112, 83);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(196, 53);
     this.label11.TabIndex = 101;
     this.label11.Text = "Reception";
     this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label9
     //
     this.label9.BackColor = System.Drawing.Color.WhiteSmoke;
     this.label9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label9.Location = new System.Drawing.Point(8, 77);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(94, 197);
     this.label9.TabIndex = 99;
     this.label9.Text = "Hall";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label1.Location = new System.Drawing.Point(6, 283);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(221, 62);
     this.label1.TabIndex = 97;
     this.label1.Text = "Main Entrance";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // room125Button
     //
     this.room125Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room125Button.Location = new System.Drawing.Point(564, 314);
     this.room125Button.Name = "room125Button";
     this.room125Button.Size = new System.Drawing.Size(62, 30);
     this.room125Button.TabIndex = 96;
     this.room125Button.Text = "125";
     this.room125Button.UseVisualStyleBackColor = true;
     this.room125Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room124Button
     //
     this.room124Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room124Button.Location = new System.Drawing.Point(565, 279);
     this.room124Button.Name = "room124Button";
     this.room124Button.Size = new System.Drawing.Size(62, 30);
     this.room124Button.TabIndex = 95;
     this.room124Button.Text = "124";
     this.room124Button.UseVisualStyleBackColor = true;
     this.room124Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room118Button
     //
     this.room118Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room118Button.Location = new System.Drawing.Point(564, 41);
     this.room118Button.Name = "room118Button";
     this.room118Button.Size = new System.Drawing.Size(62, 30);
     this.room118Button.TabIndex = 94;
     this.room118Button.Text = "118";
     this.room118Button.UseVisualStyleBackColor = true;
     this.room118Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room109Button
     //
     this.room109Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room109Button.Location = new System.Drawing.Point(564, 5);
     this.room109Button.Name = "room109Button";
     this.room109Button.Size = new System.Drawing.Size(62, 30);
     this.room109Button.TabIndex = 93;
     this.room109Button.Text = "109";
     this.room109Button.UseVisualStyleBackColor = true;
     this.room109Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room126Button
     //
     this.room126Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room126Button.Location = new System.Drawing.Point(498, 314);
     this.room126Button.Name = "room126Button";
     this.room126Button.Size = new System.Drawing.Size(62, 30);
     this.room126Button.TabIndex = 92;
     this.room126Button.Text = "126";
     this.room126Button.UseVisualStyleBackColor = true;
     this.room126Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room127Button
     //
     this.room127Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room127Button.Location = new System.Drawing.Point(432, 314);
     this.room127Button.Name = "room127Button";
     this.room127Button.Size = new System.Drawing.Size(62, 30);
     this.room127Button.TabIndex = 91;
     this.room127Button.Text = "127";
     this.room127Button.UseVisualStyleBackColor = true;
     this.room127Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room128Button
     //
     this.room128Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room128Button.Location = new System.Drawing.Point(366, 314);
     this.room128Button.Name = "room128Button";
     this.room128Button.Size = new System.Drawing.Size(62, 30);
     this.room128Button.TabIndex = 90;
     this.room128Button.Text = "128";
     this.room128Button.UseVisualStyleBackColor = true;
     this.room128Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room123Button
     //
     this.room123Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room123Button.Location = new System.Drawing.Point(499, 279);
     this.room123Button.Name = "room123Button";
     this.room123Button.Size = new System.Drawing.Size(62, 30);
     this.room123Button.TabIndex = 89;
     this.room123Button.Text = "123";
     this.room123Button.UseVisualStyleBackColor = true;
     this.room123Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room122Button
     //
     this.room122Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room122Button.Location = new System.Drawing.Point(433, 279);
     this.room122Button.Name = "room122Button";
     this.room122Button.Size = new System.Drawing.Size(62, 30);
     this.room122Button.TabIndex = 88;
     this.room122Button.Text = "122";
     this.room122Button.UseVisualStyleBackColor = true;
     this.room122Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room121Button
     //
     this.room121Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room121Button.Location = new System.Drawing.Point(367, 279);
     this.room121Button.Name = "room121Button";
     this.room121Button.Size = new System.Drawing.Size(62, 30);
     this.room121Button.TabIndex = 87;
     this.room121Button.Text = "121";
     this.room121Button.UseVisualStyleBackColor = true;
     this.room121Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room117Button
     //
     this.room117Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room117Button.Location = new System.Drawing.Point(498, 41);
     this.room117Button.Name = "room117Button";
     this.room117Button.Size = new System.Drawing.Size(62, 30);
     this.room117Button.TabIndex = 86;
     this.room117Button.Text = "117";
     this.room117Button.UseVisualStyleBackColor = true;
     this.room117Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room116Button
     //
     this.room116Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room116Button.Location = new System.Drawing.Point(432, 41);
     this.room116Button.Name = "room116Button";
     this.room116Button.Size = new System.Drawing.Size(62, 30);
     this.room116Button.TabIndex = 85;
     this.room116Button.Text = "116";
     this.room116Button.UseVisualStyleBackColor = true;
     this.room116Button.Click += new System.EventHandler(this.Room_Click);
     //
     // rom115Button
     //
     this.rom115Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rom115Button.Location = new System.Drawing.Point(366, 41);
     this.rom115Button.Name = "rom115Button";
     this.rom115Button.Size = new System.Drawing.Size(62, 30);
     this.rom115Button.TabIndex = 84;
     this.rom115Button.Text = "115";
     this.rom115Button.UseVisualStyleBackColor = true;
     this.rom115Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room108Button
     //
     this.room108Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room108Button.Location = new System.Drawing.Point(498, 5);
     this.room108Button.Name = "room108Button";
     this.room108Button.Size = new System.Drawing.Size(62, 30);
     this.room108Button.TabIndex = 83;
     this.room108Button.Text = "108";
     this.room108Button.UseVisualStyleBackColor = true;
     this.room108Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room107Button
     //
     this.room107Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room107Button.Location = new System.Drawing.Point(432, 5);
     this.room107Button.Name = "room107Button";
     this.room107Button.Size = new System.Drawing.Size(62, 30);
     this.room107Button.TabIndex = 82;
     this.room107Button.Text = "107";
     this.room107Button.UseVisualStyleBackColor = true;
     this.room107Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room106Button
     //
     this.room106Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room106Button.Location = new System.Drawing.Point(366, 5);
     this.room106Button.Name = "room106Button";
     this.room106Button.Size = new System.Drawing.Size(62, 30);
     this.room106Button.TabIndex = 81;
     this.room106Button.Text = "106";
     this.room106Button.UseVisualStyleBackColor = true;
     this.room106Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room129Button
     //
     this.room129Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room129Button.Location = new System.Drawing.Point(300, 314);
     this.room129Button.Name = "room129Button";
     this.room129Button.Size = new System.Drawing.Size(62, 30);
     this.room129Button.TabIndex = 79;
     this.room129Button.Text = "129";
     this.room129Button.UseVisualStyleBackColor = true;
     this.room129Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room130Button
     //
     this.room130Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room130Button.Location = new System.Drawing.Point(232, 314);
     this.room130Button.Name = "room130Button";
     this.room130Button.Size = new System.Drawing.Size(62, 30);
     this.room130Button.TabIndex = 78;
     this.room130Button.Text = "130";
     this.room130Button.UseVisualStyleBackColor = true;
     this.room130Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room120Button
     //
     this.room120Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room120Button.Location = new System.Drawing.Point(301, 279);
     this.room120Button.Name = "room120Button";
     this.room120Button.Size = new System.Drawing.Size(62, 30);
     this.room120Button.TabIndex = 74;
     this.room120Button.Text = "120";
     this.room120Button.UseVisualStyleBackColor = true;
     this.room120Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room119Button
     //
     this.room119Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room119Button.Location = new System.Drawing.Point(233, 279);
     this.room119Button.Name = "room119Button";
     this.room119Button.Size = new System.Drawing.Size(62, 30);
     this.room119Button.TabIndex = 73;
     this.room119Button.Text = "119";
     this.room119Button.UseVisualStyleBackColor = true;
     this.room119Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room114Button
     //
     this.room114Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room114Button.Location = new System.Drawing.Point(300, 41);
     this.room114Button.Name = "room114Button";
     this.room114Button.Size = new System.Drawing.Size(62, 30);
     this.room114Button.TabIndex = 63;
     this.room114Button.Text = "114";
     this.room114Button.UseVisualStyleBackColor = true;
     this.room114Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room113Button
     //
     this.room113Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room113Button.Location = new System.Drawing.Point(201, 41);
     this.room113Button.Name = "room113Button";
     this.room113Button.Size = new System.Drawing.Size(62, 30);
     this.room113Button.TabIndex = 62;
     this.room113Button.Text = "113";
     this.room113Button.UseVisualStyleBackColor = true;
     this.room113Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room112Button
     //
     this.room112Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room112Button.Location = new System.Drawing.Point(135, 41);
     this.room112Button.Name = "room112Button";
     this.room112Button.Size = new System.Drawing.Size(62, 30);
     this.room112Button.TabIndex = 61;
     this.room112Button.Text = "112";
     this.room112Button.UseVisualStyleBackColor = true;
     this.room112Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room111Button
     //
     this.room111Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room111Button.Location = new System.Drawing.Point(69, 41);
     this.room111Button.Name = "room111Button";
     this.room111Button.Size = new System.Drawing.Size(62, 30);
     this.room111Button.TabIndex = 60;
     this.room111Button.Text = "111";
     this.room111Button.UseVisualStyleBackColor = true;
     this.room111Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room110Button
     //
     this.room110Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room110Button.Location = new System.Drawing.Point(3, 41);
     this.room110Button.Name = "room110Button";
     this.room110Button.Size = new System.Drawing.Size(62, 30);
     this.room110Button.TabIndex = 59;
     this.room110Button.Text = "110";
     this.room110Button.UseVisualStyleBackColor = true;
     this.room110Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room105Button
     //
     this.room105Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room105Button.Location = new System.Drawing.Point(300, 5);
     this.room105Button.Name = "room105Button";
     this.room105Button.Size = new System.Drawing.Size(62, 30);
     this.room105Button.TabIndex = 58;
     this.room105Button.Text = "105";
     this.room105Button.UseVisualStyleBackColor = true;
     this.room105Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room104Button
     //
     this.room104Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room104Button.Location = new System.Drawing.Point(201, 5);
     this.room104Button.Name = "room104Button";
     this.room104Button.Size = new System.Drawing.Size(62, 30);
     this.room104Button.TabIndex = 57;
     this.room104Button.Text = "104";
     this.room104Button.UseVisualStyleBackColor = true;
     this.room104Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room102Button
     //
     this.room102Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room102Button.Location = new System.Drawing.Point(69, 5);
     this.room102Button.Name = "room102Button";
     this.room102Button.Size = new System.Drawing.Size(62, 30);
     this.room102Button.TabIndex = 56;
     this.room102Button.Text = "102";
     this.room102Button.UseVisualStyleBackColor = true;
     this.room102Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room103Button
     //
     this.room103Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room103Button.Location = new System.Drawing.Point(135, 5);
     this.room103Button.Name = "room103Button";
     this.room103Button.Size = new System.Drawing.Size(62, 30);
     this.room103Button.TabIndex = 55;
     this.room103Button.Text = "103";
     this.room103Button.UseVisualStyleBackColor = true;
     this.room103Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room101Button
     //
     this.room101Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room101Button.Location = new System.Drawing.Point(3, 5);
     this.room101Button.Name = "room101Button";
     this.room101Button.Size = new System.Drawing.Size(62, 30);
     this.room101Button.TabIndex = 54;
     this.room101Button.Text = "101";
     this.room101Button.UseVisualStyleBackColor = true;
     this.room101Button.Click += new System.EventHandler(this.Room_Click);
     //
     // label10
     //
     this.label10.BackColor = System.Drawing.Color.WhiteSmoke;
     this.label10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label10.Location = new System.Drawing.Point(108, 77);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(305, 197);
     this.label10.TabIndex = 100;
     this.label10.Text = "Lobby";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label18
     //
     this.label18.BackColor = System.Drawing.Color.WhiteSmoke;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.label18.Location = new System.Drawing.Point(261, 5);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(42, 66);
     this.label18.TabIndex = 107;
     this.label18.Text = "Stairs";
     this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.room272Button);
     this.tabPage2.Controls.Add(this.room263Button);
     this.tabPage2.Controls.Add(this.room271Button);
     this.tabPage2.Controls.Add(this.room270Button);
     this.tabPage2.Controls.Add(this.room269Button);
     this.tabPage2.Controls.Add(this.room262Button);
     this.tabPage2.Controls.Add(this.room261Button);
     this.tabPage2.Controls.Add(this.room260Button);
     this.tabPage2.Controls.Add(this.room268Button);
     this.tabPage2.Controls.Add(this.room267Button);
     this.tabPage2.Controls.Add(this.room266Button);
     this.tabPage2.Controls.Add(this.room265Button);
     this.tabPage2.Controls.Add(this.room264Button);
     this.tabPage2.Controls.Add(this.room259Button);
     this.tabPage2.Controls.Add(this.room258Button);
     this.tabPage2.Controls.Add(this.room256Button);
     this.tabPage2.Controls.Add(this.room257Button);
     this.tabPage2.Controls.Add(this.room255Button);
     this.tabPage2.Controls.Add(this.room254Button);
     this.tabPage2.Controls.Add(this.room245Button);
     this.tabPage2.Controls.Add(this.room253Button);
     this.tabPage2.Controls.Add(this.room252Button);
     this.tabPage2.Controls.Add(this.room251Button);
     this.tabPage2.Controls.Add(this.room244Button);
     this.tabPage2.Controls.Add(this.room243Button);
     this.tabPage2.Controls.Add(this.room242Button);
     this.tabPage2.Controls.Add(this.room250Button);
     this.tabPage2.Controls.Add(this.room249Button);
     this.tabPage2.Controls.Add(this.room248Button);
     this.tabPage2.Controls.Add(this.room247Button);
     this.tabPage2.Controls.Add(this.room246Button);
     this.tabPage2.Controls.Add(this.rom241Button);
     this.tabPage2.Controls.Add(this.room240Button);
     this.tabPage2.Controls.Add(this.room238Button);
     this.tabPage2.Controls.Add(this.room239Button);
     this.tabPage2.Controls.Add(this.rom237Button);
     this.tabPage2.Controls.Add(this.room236Button);
     this.tabPage2.Controls.Add(this.room227Button);
     this.tabPage2.Controls.Add(this.room235Button);
     this.tabPage2.Controls.Add(this.room234Button);
     this.tabPage2.Controls.Add(this.room233Button);
     this.tabPage2.Controls.Add(this.room226Button);
     this.tabPage2.Controls.Add(this.room225Button);
     this.tabPage2.Controls.Add(this.room224Button);
     this.tabPage2.Controls.Add(this.room232Button);
     this.tabPage2.Controls.Add(this.room231Button);
     this.tabPage2.Controls.Add(this.room230Button);
     this.tabPage2.Controls.Add(this.room229Button);
     this.tabPage2.Controls.Add(this.room228Button);
     this.tabPage2.Controls.Add(this.room223Button);
     this.tabPage2.Controls.Add(this.room222Button);
     this.tabPage2.Controls.Add(this.room220Button);
     this.tabPage2.Controls.Add(this.room221Button);
     this.tabPage2.Controls.Add(this.room219Button);
     this.tabPage2.Controls.Add(this.room218Button);
     this.tabPage2.Controls.Add(this.room209Button);
     this.tabPage2.Controls.Add(this.room217Button);
     this.tabPage2.Controls.Add(this.room216Button);
     this.tabPage2.Controls.Add(this.room215Button);
     this.tabPage2.Controls.Add(this.room208Button);
     this.tabPage2.Controls.Add(this.room207Button);
     this.tabPage2.Controls.Add(this.room206Button);
     this.tabPage2.Controls.Add(this.room214Button);
     this.tabPage2.Controls.Add(this.room213Button);
     this.tabPage2.Controls.Add(this.room212Button);
     this.tabPage2.Controls.Add(this.room211Button);
     this.tabPage2.Controls.Add(this.room210Button);
     this.tabPage2.Controls.Add(this.room205Button);
     this.tabPage2.Controls.Add(this.room204Button);
     this.tabPage2.Controls.Add(this.room202Button);
     this.tabPage2.Controls.Add(this.room203Button);
     this.tabPage2.Controls.Add(this.room201Button);
     this.tabPage2.Controls.Add(this.label19);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Margin = new System.Windows.Forms.Padding(2);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(2);
     this.tabPage2.Size = new System.Drawing.Size(631, 351);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "2nd Floor";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // room272Button
     //
     this.room272Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room272Button.Location = new System.Drawing.Point(566, 313);
     this.room272Button.Name = "room272Button";
     this.room272Button.Size = new System.Drawing.Size(62, 30);
     this.room272Button.TabIndex = 181;
     this.room272Button.Text = "272";
     this.room272Button.UseVisualStyleBackColor = true;
     this.room272Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room263Button
     //
     this.room263Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room263Button.Location = new System.Drawing.Point(566, 277);
     this.room263Button.Name = "room263Button";
     this.room263Button.Size = new System.Drawing.Size(62, 30);
     this.room263Button.TabIndex = 180;
     this.room263Button.Text = "263";
     this.room263Button.UseVisualStyleBackColor = true;
     this.room263Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room271Button
     //
     this.room271Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room271Button.Location = new System.Drawing.Point(500, 313);
     this.room271Button.Name = "room271Button";
     this.room271Button.Size = new System.Drawing.Size(62, 30);
     this.room271Button.TabIndex = 179;
     this.room271Button.Text = "271";
     this.room271Button.UseVisualStyleBackColor = true;
     this.room271Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room270Button
     //
     this.room270Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room270Button.Location = new System.Drawing.Point(434, 313);
     this.room270Button.Name = "room270Button";
     this.room270Button.Size = new System.Drawing.Size(62, 30);
     this.room270Button.TabIndex = 178;
     this.room270Button.Text = "270";
     this.room270Button.UseVisualStyleBackColor = true;
     this.room270Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room269Button
     //
     this.room269Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room269Button.Location = new System.Drawing.Point(368, 313);
     this.room269Button.Name = "room269Button";
     this.room269Button.Size = new System.Drawing.Size(62, 30);
     this.room269Button.TabIndex = 177;
     this.room269Button.Text = "269";
     this.room269Button.UseVisualStyleBackColor = true;
     this.room269Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room262Button
     //
     this.room262Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room262Button.Location = new System.Drawing.Point(500, 277);
     this.room262Button.Name = "room262Button";
     this.room262Button.Size = new System.Drawing.Size(62, 30);
     this.room262Button.TabIndex = 176;
     this.room262Button.Text = "262";
     this.room262Button.UseVisualStyleBackColor = true;
     this.room262Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room261Button
     //
     this.room261Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room261Button.Location = new System.Drawing.Point(434, 277);
     this.room261Button.Name = "room261Button";
     this.room261Button.Size = new System.Drawing.Size(62, 30);
     this.room261Button.TabIndex = 175;
     this.room261Button.Text = "261";
     this.room261Button.UseVisualStyleBackColor = true;
     this.room261Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room260Button
     //
     this.room260Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room260Button.Location = new System.Drawing.Point(368, 277);
     this.room260Button.Name = "room260Button";
     this.room260Button.Size = new System.Drawing.Size(62, 30);
     this.room260Button.TabIndex = 174;
     this.room260Button.Text = "260";
     this.room260Button.UseVisualStyleBackColor = true;
     this.room260Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room268Button
     //
     this.room268Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room268Button.Location = new System.Drawing.Point(302, 313);
     this.room268Button.Name = "room268Button";
     this.room268Button.Size = new System.Drawing.Size(62, 30);
     this.room268Button.TabIndex = 173;
     this.room268Button.Text = "268";
     this.room268Button.UseVisualStyleBackColor = true;
     this.room268Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room267Button
     //
     this.room267Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room267Button.Location = new System.Drawing.Point(203, 313);
     this.room267Button.Name = "room267Button";
     this.room267Button.Size = new System.Drawing.Size(62, 30);
     this.room267Button.TabIndex = 172;
     this.room267Button.Text = "267";
     this.room267Button.UseVisualStyleBackColor = true;
     this.room267Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room266Button
     //
     this.room266Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room266Button.Location = new System.Drawing.Point(137, 313);
     this.room266Button.Name = "room266Button";
     this.room266Button.Size = new System.Drawing.Size(62, 30);
     this.room266Button.TabIndex = 171;
     this.room266Button.Text = "266";
     this.room266Button.UseVisualStyleBackColor = true;
     this.room266Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room265Button
     //
     this.room265Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room265Button.Location = new System.Drawing.Point(71, 313);
     this.room265Button.Name = "room265Button";
     this.room265Button.Size = new System.Drawing.Size(62, 30);
     this.room265Button.TabIndex = 170;
     this.room265Button.Text = "265";
     this.room265Button.UseVisualStyleBackColor = true;
     this.room265Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room264Button
     //
     this.room264Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room264Button.Location = new System.Drawing.Point(5, 313);
     this.room264Button.Name = "room264Button";
     this.room264Button.Size = new System.Drawing.Size(62, 30);
     this.room264Button.TabIndex = 169;
     this.room264Button.Text = "264";
     this.room264Button.UseVisualStyleBackColor = true;
     this.room264Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room259Button
     //
     this.room259Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room259Button.Location = new System.Drawing.Point(302, 277);
     this.room259Button.Name = "room259Button";
     this.room259Button.Size = new System.Drawing.Size(62, 30);
     this.room259Button.TabIndex = 168;
     this.room259Button.Text = "259";
     this.room259Button.UseVisualStyleBackColor = true;
     this.room259Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room258Button
     //
     this.room258Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room258Button.Location = new System.Drawing.Point(203, 277);
     this.room258Button.Name = "room258Button";
     this.room258Button.Size = new System.Drawing.Size(62, 30);
     this.room258Button.TabIndex = 167;
     this.room258Button.Text = "258";
     this.room258Button.UseVisualStyleBackColor = true;
     this.room258Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room256Button
     //
     this.room256Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room256Button.Location = new System.Drawing.Point(71, 277);
     this.room256Button.Name = "room256Button";
     this.room256Button.Size = new System.Drawing.Size(62, 30);
     this.room256Button.TabIndex = 166;
     this.room256Button.Text = "256";
     this.room256Button.UseVisualStyleBackColor = true;
     this.room256Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room257Button
     //
     this.room257Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room257Button.Location = new System.Drawing.Point(137, 277);
     this.room257Button.Name = "room257Button";
     this.room257Button.Size = new System.Drawing.Size(62, 30);
     this.room257Button.TabIndex = 165;
     this.room257Button.Text = "257";
     this.room257Button.UseVisualStyleBackColor = true;
     this.room257Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room255Button
     //
     this.room255Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room255Button.Location = new System.Drawing.Point(5, 277);
     this.room255Button.Name = "room255Button";
     this.room255Button.Size = new System.Drawing.Size(62, 30);
     this.room255Button.TabIndex = 164;
     this.room255Button.Text = "255";
     this.room255Button.UseVisualStyleBackColor = true;
     this.room255Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room254Button
     //
     this.room254Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room254Button.Location = new System.Drawing.Point(564, 227);
     this.room254Button.Name = "room254Button";
     this.room254Button.Size = new System.Drawing.Size(62, 30);
     this.room254Button.TabIndex = 162;
     this.room254Button.Text = "254";
     this.room254Button.UseVisualStyleBackColor = true;
     this.room254Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room245Button
     //
     this.room245Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room245Button.Location = new System.Drawing.Point(564, 191);
     this.room245Button.Name = "room245Button";
     this.room245Button.Size = new System.Drawing.Size(62, 30);
     this.room245Button.TabIndex = 161;
     this.room245Button.Text = "245";
     this.room245Button.UseVisualStyleBackColor = true;
     this.room245Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room253Button
     //
     this.room253Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room253Button.Location = new System.Drawing.Point(498, 227);
     this.room253Button.Name = "room253Button";
     this.room253Button.Size = new System.Drawing.Size(62, 30);
     this.room253Button.TabIndex = 160;
     this.room253Button.Text = "253";
     this.room253Button.UseVisualStyleBackColor = true;
     this.room253Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room252Button
     //
     this.room252Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room252Button.Location = new System.Drawing.Point(432, 227);
     this.room252Button.Name = "room252Button";
     this.room252Button.Size = new System.Drawing.Size(62, 30);
     this.room252Button.TabIndex = 159;
     this.room252Button.Text = "252";
     this.room252Button.UseVisualStyleBackColor = true;
     this.room252Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room251Button
     //
     this.room251Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room251Button.Location = new System.Drawing.Point(366, 227);
     this.room251Button.Name = "room251Button";
     this.room251Button.Size = new System.Drawing.Size(62, 30);
     this.room251Button.TabIndex = 158;
     this.room251Button.Text = "251";
     this.room251Button.UseVisualStyleBackColor = true;
     this.room251Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room244Button
     //
     this.room244Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room244Button.Location = new System.Drawing.Point(498, 191);
     this.room244Button.Name = "room244Button";
     this.room244Button.Size = new System.Drawing.Size(62, 30);
     this.room244Button.TabIndex = 157;
     this.room244Button.Text = "244";
     this.room244Button.UseVisualStyleBackColor = true;
     this.room244Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room243Button
     //
     this.room243Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room243Button.Location = new System.Drawing.Point(432, 191);
     this.room243Button.Name = "room243Button";
     this.room243Button.Size = new System.Drawing.Size(62, 30);
     this.room243Button.TabIndex = 156;
     this.room243Button.Text = "243";
     this.room243Button.UseVisualStyleBackColor = true;
     this.room243Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room242Button
     //
     this.room242Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room242Button.Location = new System.Drawing.Point(366, 191);
     this.room242Button.Name = "room242Button";
     this.room242Button.Size = new System.Drawing.Size(62, 30);
     this.room242Button.TabIndex = 155;
     this.room242Button.Text = "242";
     this.room242Button.UseVisualStyleBackColor = true;
     this.room242Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room250Button
     //
     this.room250Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room250Button.Location = new System.Drawing.Point(300, 227);
     this.room250Button.Name = "room250Button";
     this.room250Button.Size = new System.Drawing.Size(62, 30);
     this.room250Button.TabIndex = 154;
     this.room250Button.Text = "250";
     this.room250Button.UseVisualStyleBackColor = true;
     this.room250Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room249Button
     //
     this.room249Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room249Button.Location = new System.Drawing.Point(201, 227);
     this.room249Button.Name = "room249Button";
     this.room249Button.Size = new System.Drawing.Size(62, 30);
     this.room249Button.TabIndex = 153;
     this.room249Button.Text = "249";
     this.room249Button.UseVisualStyleBackColor = true;
     this.room249Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room248Button
     //
     this.room248Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room248Button.Location = new System.Drawing.Point(135, 227);
     this.room248Button.Name = "room248Button";
     this.room248Button.Size = new System.Drawing.Size(62, 30);
     this.room248Button.TabIndex = 152;
     this.room248Button.Text = "248";
     this.room248Button.UseVisualStyleBackColor = true;
     this.room248Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room247Button
     //
     this.room247Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room247Button.Location = new System.Drawing.Point(69, 227);
     this.room247Button.Name = "room247Button";
     this.room247Button.Size = new System.Drawing.Size(62, 30);
     this.room247Button.TabIndex = 151;
     this.room247Button.Text = "247";
     this.room247Button.UseVisualStyleBackColor = true;
     this.room247Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room246Button
     //
     this.room246Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room246Button.Location = new System.Drawing.Point(3, 227);
     this.room246Button.Name = "room246Button";
     this.room246Button.Size = new System.Drawing.Size(62, 30);
     this.room246Button.TabIndex = 150;
     this.room246Button.Text = "246";
     this.room246Button.UseVisualStyleBackColor = true;
     this.room246Button.Click += new System.EventHandler(this.Room_Click);
     //
     // rom241Button
     //
     this.rom241Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rom241Button.Location = new System.Drawing.Point(300, 191);
     this.rom241Button.Name = "rom241Button";
     this.rom241Button.Size = new System.Drawing.Size(62, 30);
     this.rom241Button.TabIndex = 149;
     this.rom241Button.Text = "241";
     this.rom241Button.UseVisualStyleBackColor = true;
     this.rom241Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room240Button
     //
     this.room240Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room240Button.Location = new System.Drawing.Point(201, 191);
     this.room240Button.Name = "room240Button";
     this.room240Button.Size = new System.Drawing.Size(62, 30);
     this.room240Button.TabIndex = 148;
     this.room240Button.Text = "240";
     this.room240Button.UseVisualStyleBackColor = true;
     this.room240Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room238Button
     //
     this.room238Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room238Button.Location = new System.Drawing.Point(69, 191);
     this.room238Button.Name = "room238Button";
     this.room238Button.Size = new System.Drawing.Size(62, 30);
     this.room238Button.TabIndex = 147;
     this.room238Button.Text = "238";
     this.room238Button.UseVisualStyleBackColor = true;
     this.room238Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room239Button
     //
     this.room239Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room239Button.Location = new System.Drawing.Point(135, 191);
     this.room239Button.Name = "room239Button";
     this.room239Button.Size = new System.Drawing.Size(62, 30);
     this.room239Button.TabIndex = 146;
     this.room239Button.Text = "239";
     this.room239Button.UseVisualStyleBackColor = true;
     this.room239Button.Click += new System.EventHandler(this.Room_Click);
     //
     // rom237Button
     //
     this.rom237Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rom237Button.Location = new System.Drawing.Point(3, 191);
     this.rom237Button.Name = "rom237Button";
     this.rom237Button.Size = new System.Drawing.Size(62, 30);
     this.rom237Button.TabIndex = 145;
     this.rom237Button.Text = "237";
     this.rom237Button.UseVisualStyleBackColor = true;
     this.rom237Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room236Button
     //
     this.room236Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room236Button.Location = new System.Drawing.Point(566, 134);
     this.room236Button.Name = "room236Button";
     this.room236Button.Size = new System.Drawing.Size(62, 30);
     this.room236Button.TabIndex = 144;
     this.room236Button.Text = "236";
     this.room236Button.UseVisualStyleBackColor = true;
     this.room236Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room227Button
     //
     this.room227Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room227Button.Location = new System.Drawing.Point(566, 98);
     this.room227Button.Name = "room227Button";
     this.room227Button.Size = new System.Drawing.Size(62, 30);
     this.room227Button.TabIndex = 143;
     this.room227Button.Text = "227";
     this.room227Button.UseVisualStyleBackColor = true;
     this.room227Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room235Button
     //
     this.room235Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room235Button.Location = new System.Drawing.Point(500, 134);
     this.room235Button.Name = "room235Button";
     this.room235Button.Size = new System.Drawing.Size(62, 30);
     this.room235Button.TabIndex = 142;
     this.room235Button.Text = "235";
     this.room235Button.UseVisualStyleBackColor = true;
     this.room235Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room234Button
     //
     this.room234Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room234Button.Location = new System.Drawing.Point(434, 134);
     this.room234Button.Name = "room234Button";
     this.room234Button.Size = new System.Drawing.Size(62, 30);
     this.room234Button.TabIndex = 141;
     this.room234Button.Text = "234";
     this.room234Button.UseVisualStyleBackColor = true;
     this.room234Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room233Button
     //
     this.room233Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room233Button.Location = new System.Drawing.Point(368, 134);
     this.room233Button.Name = "room233Button";
     this.room233Button.Size = new System.Drawing.Size(62, 30);
     this.room233Button.TabIndex = 140;
     this.room233Button.Text = "233";
     this.room233Button.UseVisualStyleBackColor = true;
     this.room233Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room226Button
     //
     this.room226Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room226Button.Location = new System.Drawing.Point(500, 98);
     this.room226Button.Name = "room226Button";
     this.room226Button.Size = new System.Drawing.Size(62, 30);
     this.room226Button.TabIndex = 139;
     this.room226Button.Text = "226";
     this.room226Button.UseVisualStyleBackColor = true;
     this.room226Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room225Button
     //
     this.room225Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room225Button.Location = new System.Drawing.Point(434, 98);
     this.room225Button.Name = "room225Button";
     this.room225Button.Size = new System.Drawing.Size(62, 30);
     this.room225Button.TabIndex = 138;
     this.room225Button.Text = "225";
     this.room225Button.UseVisualStyleBackColor = true;
     this.room225Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room224Button
     //
     this.room224Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room224Button.Location = new System.Drawing.Point(368, 98);
     this.room224Button.Name = "room224Button";
     this.room224Button.Size = new System.Drawing.Size(62, 30);
     this.room224Button.TabIndex = 137;
     this.room224Button.Text = "224";
     this.room224Button.UseVisualStyleBackColor = true;
     this.room224Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room232Button
     //
     this.room232Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room232Button.Location = new System.Drawing.Point(302, 134);
     this.room232Button.Name = "room232Button";
     this.room232Button.Size = new System.Drawing.Size(62, 30);
     this.room232Button.TabIndex = 136;
     this.room232Button.Text = "232";
     this.room232Button.UseVisualStyleBackColor = true;
     this.room232Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room231Button
     //
     this.room231Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room231Button.Location = new System.Drawing.Point(203, 134);
     this.room231Button.Name = "room231Button";
     this.room231Button.Size = new System.Drawing.Size(62, 30);
     this.room231Button.TabIndex = 135;
     this.room231Button.Text = "231";
     this.room231Button.UseVisualStyleBackColor = true;
     this.room231Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room230Button
     //
     this.room230Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room230Button.Location = new System.Drawing.Point(137, 134);
     this.room230Button.Name = "room230Button";
     this.room230Button.Size = new System.Drawing.Size(62, 30);
     this.room230Button.TabIndex = 134;
     this.room230Button.Text = "230";
     this.room230Button.UseVisualStyleBackColor = true;
     this.room230Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room229Button
     //
     this.room229Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room229Button.Location = new System.Drawing.Point(71, 134);
     this.room229Button.Name = "room229Button";
     this.room229Button.Size = new System.Drawing.Size(62, 30);
     this.room229Button.TabIndex = 133;
     this.room229Button.Text = "229";
     this.room229Button.UseVisualStyleBackColor = true;
     this.room229Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room228Button
     //
     this.room228Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room228Button.Location = new System.Drawing.Point(5, 134);
     this.room228Button.Name = "room228Button";
     this.room228Button.Size = new System.Drawing.Size(62, 30);
     this.room228Button.TabIndex = 132;
     this.room228Button.Text = "228";
     this.room228Button.UseVisualStyleBackColor = true;
     this.room228Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room223Button
     //
     this.room223Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room223Button.Location = new System.Drawing.Point(302, 98);
     this.room223Button.Name = "room223Button";
     this.room223Button.Size = new System.Drawing.Size(62, 30);
     this.room223Button.TabIndex = 131;
     this.room223Button.Text = "223";
     this.room223Button.UseVisualStyleBackColor = true;
     this.room223Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room222Button
     //
     this.room222Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room222Button.Location = new System.Drawing.Point(203, 98);
     this.room222Button.Name = "room222Button";
     this.room222Button.Size = new System.Drawing.Size(62, 30);
     this.room222Button.TabIndex = 130;
     this.room222Button.Text = "222";
     this.room222Button.UseVisualStyleBackColor = true;
     this.room222Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room220Button
     //
     this.room220Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room220Button.Location = new System.Drawing.Point(71, 98);
     this.room220Button.Name = "room220Button";
     this.room220Button.Size = new System.Drawing.Size(62, 30);
     this.room220Button.TabIndex = 129;
     this.room220Button.Text = "220";
     this.room220Button.UseVisualStyleBackColor = true;
     this.room220Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room221Button
     //
     this.room221Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room221Button.Location = new System.Drawing.Point(137, 98);
     this.room221Button.Name = "room221Button";
     this.room221Button.Size = new System.Drawing.Size(62, 30);
     this.room221Button.TabIndex = 128;
     this.room221Button.Text = "221";
     this.room221Button.UseVisualStyleBackColor = true;
     this.room221Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room219Button
     //
     this.room219Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room219Button.Location = new System.Drawing.Point(5, 98);
     this.room219Button.Name = "room219Button";
     this.room219Button.Size = new System.Drawing.Size(62, 30);
     this.room219Button.TabIndex = 127;
     this.room219Button.Text = "219";
     this.room219Button.UseVisualStyleBackColor = true;
     this.room219Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room218Button
     //
     this.room218Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room218Button.Location = new System.Drawing.Point(566, 41);
     this.room218Button.Name = "room218Button";
     this.room218Button.Size = new System.Drawing.Size(62, 30);
     this.room218Button.TabIndex = 125;
     this.room218Button.Text = "218";
     this.room218Button.UseVisualStyleBackColor = true;
     this.room218Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room209Button
     //
     this.room209Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room209Button.Location = new System.Drawing.Point(566, 5);
     this.room209Button.Name = "room209Button";
     this.room209Button.Size = new System.Drawing.Size(62, 30);
     this.room209Button.TabIndex = 124;
     this.room209Button.Text = "209";
     this.room209Button.UseVisualStyleBackColor = true;
     this.room209Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room217Button
     //
     this.room217Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room217Button.Location = new System.Drawing.Point(500, 41);
     this.room217Button.Name = "room217Button";
     this.room217Button.Size = new System.Drawing.Size(62, 30);
     this.room217Button.TabIndex = 123;
     this.room217Button.Text = "217";
     this.room217Button.UseVisualStyleBackColor = true;
     this.room217Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room216Button
     //
     this.room216Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room216Button.Location = new System.Drawing.Point(434, 41);
     this.room216Button.Name = "room216Button";
     this.room216Button.Size = new System.Drawing.Size(62, 30);
     this.room216Button.TabIndex = 122;
     this.room216Button.Text = "216";
     this.room216Button.UseVisualStyleBackColor = true;
     this.room216Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room215Button
     //
     this.room215Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room215Button.Location = new System.Drawing.Point(368, 41);
     this.room215Button.Name = "room215Button";
     this.room215Button.Size = new System.Drawing.Size(62, 30);
     this.room215Button.TabIndex = 121;
     this.room215Button.Text = "215";
     this.room215Button.UseVisualStyleBackColor = true;
     this.room215Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room208Button
     //
     this.room208Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room208Button.Location = new System.Drawing.Point(500, 5);
     this.room208Button.Name = "room208Button";
     this.room208Button.Size = new System.Drawing.Size(62, 30);
     this.room208Button.TabIndex = 120;
     this.room208Button.Text = "208";
     this.room208Button.UseVisualStyleBackColor = true;
     this.room208Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room207Button
     //
     this.room207Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room207Button.Location = new System.Drawing.Point(434, 5);
     this.room207Button.Name = "room207Button";
     this.room207Button.Size = new System.Drawing.Size(62, 30);
     this.room207Button.TabIndex = 119;
     this.room207Button.Text = "207";
     this.room207Button.UseVisualStyleBackColor = true;
     this.room207Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room206Button
     //
     this.room206Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room206Button.Location = new System.Drawing.Point(368, 5);
     this.room206Button.Name = "room206Button";
     this.room206Button.Size = new System.Drawing.Size(62, 30);
     this.room206Button.TabIndex = 118;
     this.room206Button.Text = "206";
     this.room206Button.UseVisualStyleBackColor = true;
     this.room206Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room214Button
     //
     this.room214Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room214Button.Location = new System.Drawing.Point(302, 41);
     this.room214Button.Name = "room214Button";
     this.room214Button.Size = new System.Drawing.Size(62, 30);
     this.room214Button.TabIndex = 117;
     this.room214Button.Text = "214";
     this.room214Button.UseVisualStyleBackColor = true;
     this.room214Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room213Button
     //
     this.room213Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room213Button.Location = new System.Drawing.Point(203, 41);
     this.room213Button.Name = "room213Button";
     this.room213Button.Size = new System.Drawing.Size(62, 30);
     this.room213Button.TabIndex = 116;
     this.room213Button.Text = "213";
     this.room213Button.UseVisualStyleBackColor = true;
     this.room213Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room212Button
     //
     this.room212Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room212Button.Location = new System.Drawing.Point(137, 41);
     this.room212Button.Name = "room212Button";
     this.room212Button.Size = new System.Drawing.Size(62, 30);
     this.room212Button.TabIndex = 115;
     this.room212Button.Text = "212";
     this.room212Button.UseVisualStyleBackColor = true;
     this.room212Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room211Button
     //
     this.room211Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room211Button.Location = new System.Drawing.Point(71, 41);
     this.room211Button.Name = "room211Button";
     this.room211Button.Size = new System.Drawing.Size(62, 30);
     this.room211Button.TabIndex = 114;
     this.room211Button.Text = "211";
     this.room211Button.UseVisualStyleBackColor = true;
     this.room211Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room210Button
     //
     this.room210Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room210Button.Location = new System.Drawing.Point(5, 41);
     this.room210Button.Name = "room210Button";
     this.room210Button.Size = new System.Drawing.Size(62, 30);
     this.room210Button.TabIndex = 113;
     this.room210Button.Text = "210";
     this.room210Button.UseVisualStyleBackColor = true;
     this.room210Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room205Button
     //
     this.room205Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room205Button.Location = new System.Drawing.Point(302, 5);
     this.room205Button.Name = "room205Button";
     this.room205Button.Size = new System.Drawing.Size(62, 30);
     this.room205Button.TabIndex = 112;
     this.room205Button.Text = "205";
     this.room205Button.UseVisualStyleBackColor = true;
     this.room205Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room204Button
     //
     this.room204Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room204Button.Location = new System.Drawing.Point(203, 5);
     this.room204Button.Name = "room204Button";
     this.room204Button.Size = new System.Drawing.Size(62, 30);
     this.room204Button.TabIndex = 111;
     this.room204Button.Text = "204";
     this.room204Button.UseVisualStyleBackColor = true;
     this.room204Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room202Button
     //
     this.room202Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room202Button.Location = new System.Drawing.Point(71, 5);
     this.room202Button.Name = "room202Button";
     this.room202Button.Size = new System.Drawing.Size(62, 30);
     this.room202Button.TabIndex = 110;
     this.room202Button.Text = "202";
     this.room202Button.UseVisualStyleBackColor = true;
     this.room202Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room203Button
     //
     this.room203Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room203Button.Location = new System.Drawing.Point(137, 5);
     this.room203Button.Name = "room203Button";
     this.room203Button.Size = new System.Drawing.Size(62, 30);
     this.room203Button.TabIndex = 109;
     this.room203Button.Text = "203";
     this.room203Button.UseVisualStyleBackColor = true;
     this.room203Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room201Button
     //
     this.room201Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room201Button.Location = new System.Drawing.Point(5, 5);
     this.room201Button.Name = "room201Button";
     this.room201Button.Size = new System.Drawing.Size(62, 30);
     this.room201Button.TabIndex = 108;
     this.room201Button.Text = "201";
     this.room201Button.UseVisualStyleBackColor = true;
     this.room201Button.Click += new System.EventHandler(this.Room_Click);
     //
     // label19
     //
     this.label19.BackColor = System.Drawing.Color.WhiteSmoke;
     this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.label19.Location = new System.Drawing.Point(263, 5);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(42, 66);
     this.label19.TabIndex = 126;
     this.label19.Text = "Stairs";
     this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.label19.Click += new System.EventHandler(this.Room_Click);
     //
     // tabPage3
     //
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Margin = new System.Windows.Forms.Padding(2);
     this.tabPage3.Name = "tabPage3";
     this.tabPage3.Size = new System.Drawing.Size(631, 351);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text = "3rd Floor";
     this.tabPage3.UseVisualStyleBackColor = true;
     //
     // tabPage4
     //
     this.tabPage4.Location = new System.Drawing.Point(4, 22);
     this.tabPage4.Margin = new System.Windows.Forms.Padding(2);
     this.tabPage4.Name = "tabPage4";
     this.tabPage4.Size = new System.Drawing.Size(631, 351);
     this.tabPage4.TabIndex = 3;
     this.tabPage4.Text = "4th Floor";
     this.tabPage4.UseVisualStyleBackColor = true;
     //
     // tabPage5
     //
     this.tabPage5.Location = new System.Drawing.Point(4, 22);
     this.tabPage5.Margin = new System.Windows.Forms.Padding(2);
     this.tabPage5.Name = "tabPage5";
     this.tabPage5.Size = new System.Drawing.Size(631, 351);
     this.tabPage5.TabIndex = 4;
     this.tabPage5.Text = "5th Floor";
     this.tabPage5.UseVisualStyleBackColor = true;
     //
     // label16
     //
     this.label16.BackColor = System.Drawing.Color.SkyBlue;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.ForeColor = System.Drawing.Color.White;
     this.label16.Location = new System.Drawing.Point(486, 599);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(145, 65);
     this.label16.TabIndex = 106;
     this.label16.Text = "Booked";
     this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label15
     //
     this.label15.BackColor = System.Drawing.Color.MediumSeaGreen;
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.ForeColor = System.Drawing.Color.White;
     this.label15.Location = new System.Drawing.Point(335, 599);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(145, 65);
     this.label15.TabIndex = 105;
     this.label15.Text = "Available";
     this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label14
     //
     this.label14.BackColor = System.Drawing.Color.MediumSlateBlue;
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.ForeColor = System.Drawing.Color.White;
     this.label14.Location = new System.Drawing.Point(184, 599);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(145, 65);
     this.label14.TabIndex = 104;
     this.label14.Text = "Guest Checked-In";
     this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label13
     //
     this.label13.BackColor = System.Drawing.Color.Tomato;
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.Color.White;
     this.label13.Location = new System.Drawing.Point(33, 599);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(145, 65);
     this.label13.TabIndex = 103;
     this.label13.Text = "Check-out pending";
     this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label8
     //
     this.label8.BackColor = System.Drawing.Color.WhiteSmoke;
     this.label8.Location = new System.Drawing.Point(12, 582);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(634, 88);
     this.label8.TabIndex = 98;
     this.label8.Text = "Color Codes";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.checkOutDateTimePicker);
     this.groupBox1.Controls.Add(this.checkInDateTimePicker);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.checkAvailabilityButton);
     this.groupBox1.Controls.Add(this.clearButton);
     this.groupBox1.Controls.Add(this.roomLevelComboBox);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.roomTypeComboBox);
     this.groupBox1.Location = new System.Drawing.Point(255, 93);
     this.groupBox1.Margin = new System.Windows.Forms.Padding(2);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Padding = new System.Windows.Forms.Padding(2);
     this.groupBox1.Size = new System.Drawing.Size(391, 101);
     this.groupBox1.TabIndex = 94;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Check Availability";
     //
     // checkOutDateTimePicker
     //
     this.checkOutDateTimePicker.CustomFormat = "yyyy-MM-dd";
     this.checkOutDateTimePicker.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.checkOutDateTimePicker.Location = new System.Drawing.Point(61, 43);
     this.checkOutDateTimePicker.Margin = new System.Windows.Forms.Padding(2);
     this.checkOutDateTimePicker.Name = "checkOutDateTimePicker";
     this.checkOutDateTimePicker.Size = new System.Drawing.Size(99, 20);
     this.checkOutDateTimePicker.TabIndex = 103;
     this.checkOutDateTimePicker.Value = new System.DateTime(2012, 12, 5, 0, 0, 0, 0);
     //
     // checkInDateTimePicker
     //
     this.checkInDateTimePicker.CustomFormat = "yyyy-MM-dd";
     this.checkInDateTimePicker.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.checkInDateTimePicker.Location = new System.Drawing.Point(61, 19);
     this.checkInDateTimePicker.Margin = new System.Windows.Forms.Padding(2);
     this.checkInDateTimePicker.Name = "checkInDateTimePicker";
     this.checkInDateTimePicker.Size = new System.Drawing.Size(99, 20);
     this.checkInDateTimePicker.TabIndex = 102;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(5, 49);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(50, 13);
     this.label3.TabIndex = 93;
     this.label3.Text = "Date Out";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(5, 25);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(42, 13);
     this.label2.TabIndex = 92;
     this.label2.Text = "Date In";
     //
     // checkAvailabilityButton
     //
     this.checkAvailabilityButton.Location = new System.Drawing.Point(271, 68);
     this.checkAvailabilityButton.Name = "checkAvailabilityButton";
     this.checkAvailabilityButton.Size = new System.Drawing.Size(47, 26);
     this.checkAvailabilityButton.TabIndex = 100;
     this.checkAvailabilityButton.Text = "Check";
     this.checkAvailabilityButton.UseVisualStyleBackColor = true;
     this.checkAvailabilityButton.Click += new System.EventHandler(this.checkAvailabilityButton_Click);
     //
     // clearButton
     //
     this.clearButton.Location = new System.Drawing.Point(327, 68);
     this.clearButton.Name = "clearButton";
     this.clearButton.Size = new System.Drawing.Size(47, 26);
     this.clearButton.TabIndex = 101;
     this.clearButton.Text = "Clear";
     this.clearButton.UseVisualStyleBackColor = true;
     this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
     //
     // roomLevelComboBox
     //
     this.roomLevelComboBox.FormattingEnabled = true;
     this.roomLevelComboBox.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11"});
     this.roomLevelComboBox.Location = new System.Drawing.Point(275, 41);
     this.roomLevelComboBox.Name = "roomLevelComboBox";
     this.roomLevelComboBox.Size = new System.Drawing.Size(99, 21);
     this.roomLevelComboBox.TabIndex = 99;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(196, 22);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(62, 13);
     this.label4.TabIndex = 96;
     this.label4.Text = "Room Type";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(196, 49);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(64, 13);
     this.label5.TabIndex = 98;
     this.label5.Text = "Room Level";
     //
     // roomTypeComboBox
     //
     this.roomTypeComboBox.FormattingEnabled = true;
     this.roomTypeComboBox.Items.AddRange(new object[] {
     "Single",
     "Double",
     "King",
     "Luxery",
     "Presidential"});
     this.roomTypeComboBox.Location = new System.Drawing.Point(275, 14);
     this.roomTypeComboBox.Name = "roomTypeComboBox";
     this.roomTypeComboBox.Size = new System.Drawing.Size(99, 21);
     this.roomTypeComboBox.TabIndex = 97;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.clearNamesButton);
     this.groupBox2.Controls.Add(this.lastNameTextBox);
     this.groupBox2.Controls.Add(this.firstNameTextBox);
     this.groupBox2.Controls.Add(this.label7);
     this.groupBox2.Controls.Add(this.label6);
     this.groupBox2.Controls.Add(this.retrieveBookingButton);
     this.groupBox2.Location = new System.Drawing.Point(13, 93);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(237, 101);
     this.groupBox2.TabIndex = 96;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Retrieve Existing Booking";
     //
     // clearNamesButton
     //
     this.clearNamesButton.Location = new System.Drawing.Point(163, 68);
     this.clearNamesButton.Margin = new System.Windows.Forms.Padding(2);
     this.clearNamesButton.Name = "clearNamesButton";
     this.clearNamesButton.Size = new System.Drawing.Size(61, 27);
     this.clearNamesButton.TabIndex = 107;
     this.clearNamesButton.Text = "Clear";
     this.clearNamesButton.UseVisualStyleBackColor = true;
     this.clearNamesButton.Click += new System.EventHandler(this.clearNamesButton_Click);
     //
     // lastNameTextBox
     //
     this.lastNameTextBox.Location = new System.Drawing.Point(86, 43);
     this.lastNameTextBox.Name = "lastNameTextBox";
     this.lastNameTextBox.Size = new System.Drawing.Size(138, 20);
     this.lastNameTextBox.TabIndex = 106;
     //
     // firstNameTextBox
     //
     this.firstNameTextBox.Location = new System.Drawing.Point(86, 17);
     this.firstNameTextBox.Name = "firstNameTextBox";
     this.firstNameTextBox.Size = new System.Drawing.Size(138, 20);
     this.firstNameTextBox.TabIndex = 105;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(4, 50);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(58, 13);
     this.label7.TabIndex = 104;
     this.label7.Text = "Last Name";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(4, 24);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(57, 13);
     this.label6.TabIndex = 103;
     this.label6.Text = "First Name";
     //
     // retrieveBookingButton
     //
     this.retrieveBookingButton.Location = new System.Drawing.Point(98, 68);
     this.retrieveBookingButton.Margin = new System.Windows.Forms.Padding(2);
     this.retrieveBookingButton.Name = "retrieveBookingButton";
     this.retrieveBookingButton.Size = new System.Drawing.Size(61, 27);
     this.retrieveBookingButton.TabIndex = 102;
     this.retrieveBookingButton.Text = "Retrieve";
     this.retrieveBookingButton.UseVisualStyleBackColor = true;
     this.retrieveBookingButton.Click += new System.EventHandler(this.retrieveBookingButton_Click);
     //
     // pictureBox1
     //
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(13, 12);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(207, 75);
     this.pictureBox1.TabIndex = 97;
     this.pictureBox1.TabStop = false;
     //
     // label17
     //
     this.label17.BackColor = System.Drawing.SystemColors.Window;
     this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.Location = new System.Drawing.Point(12, 24);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(634, 63);
     this.label17.TabIndex = 98;
     this.label17.Text = "Conestoga Inn - Hotel Reservation System";
     this.label17.TextAlign = System.Drawing.ContentAlignment.BottomRight;
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.helpToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(661, 24);
     this.menuStrip1.TabIndex = 107;
     this.menuStrip1.Text = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.exitToolStripMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "&File";
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.exitToolStripMenuItem.Text = "E&xit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.viewHelpToolStripMenuItem,
     this.programmingManualToolStripMenuItem,
     this.aboutToolStripMenuItem});
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "&Help";
     //
     // viewHelpToolStripMenuItem
     //
     this.viewHelpToolStripMenuItem.Name = "viewHelpToolStripMenuItem";
     this.viewHelpToolStripMenuItem.Size = new System.Drawing.Size(204, 22);
     this.viewHelpToolStripMenuItem.Text = "View Help";
     this.viewHelpToolStripMenuItem.Click += new System.EventHandler(this.viewHelpToolStripMenuItem_Click);
     //
     // programmingManualToolStripMenuItem
     //
     this.programmingManualToolStripMenuItem.Name = "programmingManualToolStripMenuItem";
     this.programmingManualToolStripMenuItem.Size = new System.Drawing.Size(204, 22);
     this.programmingManualToolStripMenuItem.Text = "Programmer\'s Reference";
     this.programmingManualToolStripMenuItem.Click += new System.EventHandler(this.programmingManualToolStripMenuItem_Click);
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(204, 22);
     this.aboutToolStripMenuItem.Text = "&About";
     this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
     //
     // Welcome
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(661, 674);
     this.Controls.Add(this.menuStrip1);
     this.Controls.Add(this.label16);
     this.Controls.Add(this.label15);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.label14);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.label13);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.label17);
     this.Controls.Add(this.label8);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.MainMenuStrip = this.menuStrip1;
     this.MaximizeBox = false;
     this.Name = "Welcome";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Welcome - Conestoga Inn Hotel Reservation System";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Welcome_FormClosed);
     this.Load += new System.EventHandler(this.Welcome_Load);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 46
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panelBack = new System.Windows.Forms.Panel();
     this.tabControl1 = new DisksDB.UserInterface.ControlMyTab();
     this.tabPageCategory = new System.Windows.Forms.TabPage();
     this.panelCategoryIcon = new DisksDB.UserInterface.PanelIcon();
     this.labelCategoryName = new System.Windows.Forms.Label();
     this.tabPageBox = new System.Windows.Forms.TabPage();
     this.pictureBox4 = new System.Windows.Forms.PictureBox();
     this.pictureBox3 = new System.Windows.Forms.PictureBox();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.tabPageFolder = new System.Windows.Forms.TabPage();
     this.panelFolderIcon = new DisksDB.UserInterface.PanelIcon();
     this.labelFolderDate = new DisksDB.Language.Label();
     this.label6 = new DisksDB.Language.Label();
     this.labelFolderName = new System.Windows.Forms.Label();
     this.tabPageImage = new System.Windows.Forms.TabPage();
     this.panel1 = new System.Windows.Forms.Panel();
     this.pictureBoxImage = new System.Windows.Forms.PictureBox();
     this.tabPageDisk = new System.Windows.Forms.TabPage();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.labelCategoryDescription = new System.Windows.Forms.Label();
     this.panelBack.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPageCategory.SuspendLayout();
     this.tabPageBox.SuspendLayout();
     this.tabPageFolder.SuspendLayout();
     this.tabPageImage.SuspendLayout();
     this.panel1.SuspendLayout();
     this.tabPageDisk.SuspendLayout();
     this.SuspendLayout();
     //
     // panelBack
     //
     this.panelBack.BackColor = System.Drawing.SystemColors.Window;
     this.panelBack.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panelBack.Controls.Add(this.tabControl1);
     this.panelBack.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelBack.Location = new System.Drawing.Point(0, 0);
     this.panelBack.Name = "panelBack";
     this.panelBack.Size = new System.Drawing.Size(856, 421);
     this.panelBack.TabIndex = 0;
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
         | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.BackBrushColor = System.Drawing.Color.White;
     this.tabControl1.Controls.Add(this.tabPageCategory);
     this.tabControl1.Controls.Add(this.tabPageBox);
     this.tabControl1.Controls.Add(this.tabPageFolder);
     this.tabControl1.Controls.Add(this.tabPageImage);
     this.tabControl1.Controls.Add(this.tabPageDisk);
     this.tabControl1.Location = new System.Drawing.Point(0, -20);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(852, 436);
     this.tabControl1.TabIndex = 0;
     //
     // tabPageCategory
     //
     this.tabPageCategory.BackColor = System.Drawing.SystemColors.Window;
     this.tabPageCategory.Controls.Add(this.labelCategoryDescription);
     this.tabPageCategory.Controls.Add(this.panelCategoryIcon);
     this.tabPageCategory.Controls.Add(this.labelCategoryName);
     this.tabPageCategory.Location = new System.Drawing.Point(4, 25);
     this.tabPageCategory.Name = "tabPageCategory";
     this.tabPageCategory.Size = new System.Drawing.Size(844, 407);
     this.tabPageCategory.TabIndex = 0;
     this.tabPageCategory.Text = "Category";
     //
     // panelCategoryIcon
     //
     this.panelCategoryIcon.BackIcon = null;
     this.panelCategoryIcon.Location = new System.Drawing.Point(8, 8);
     this.panelCategoryIcon.Name = "panelCategoryIcon";
     this.panelCategoryIcon.Size = new System.Drawing.Size(32, 32);
     this.panelCategoryIcon.TabIndex = 11;
     //
     // labelCategoryName
     //
     this.labelCategoryName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.labelCategoryName.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelCategoryName.Location = new System.Drawing.Point(48, 16);
     this.labelCategoryName.Name = "labelCategoryName";
     this.labelCategoryName.Size = new System.Drawing.Size(784, 23);
     this.labelCategoryName.TabIndex = 8;
     //
     // tabPageBox
     //
     this.tabPageBox.AutoScroll = true;
     this.tabPageBox.BackColor = System.Drawing.SystemColors.Window;
     this.tabPageBox.Controls.Add(this.pictureBox4);
     this.tabPageBox.Controls.Add(this.pictureBox3);
     this.tabPageBox.Controls.Add(this.pictureBox2);
     this.tabPageBox.Controls.Add(this.label4);
     this.tabPageBox.Controls.Add(this.label3);
     this.tabPageBox.Location = new System.Drawing.Point(4, 25);
     this.tabPageBox.Name = "tabPageBox";
     this.tabPageBox.Size = new System.Drawing.Size(844, 407);
     this.tabPageBox.TabIndex = 1;
     this.tabPageBox.Text = "Box";
     //
     // pictureBox4
     //
     this.pictureBox4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.pictureBox4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pictureBox4.Location = new System.Drawing.Point(490, 488);
     this.pictureBox4.Name = "pictureBox4";
     this.pictureBox4.Size = new System.Drawing.Size(264, 240);
     this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox4.TabIndex = 4;
     this.pictureBox4.TabStop = false;
     //
     // pictureBox3
     //
     this.pictureBox3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.pictureBox3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pictureBox3.Location = new System.Drawing.Point(490, 264);
     this.pictureBox3.Name = "pictureBox3";
     this.pictureBox3.Size = new System.Drawing.Size(264, 216);
     this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox3.TabIndex = 3;
     this.pictureBox3.TabStop = false;
     //
     // pictureBox2
     //
     this.pictureBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.pictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pictureBox2.Location = new System.Drawing.Point(490, 16);
     this.pictureBox2.Name = "pictureBox2";
     this.pictureBox2.Size = new System.Drawing.Size(264, 240);
     this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox2.TabIndex = 2;
     this.pictureBox2.TabStop = false;
     //
     // label4
     //
     this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.label4.Location = new System.Drawing.Point(8, 32);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(474, 336);
     this.label4.TabIndex = 1;
     //
     // label3
     //
     this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.label3.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(8, 8);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(474, 23);
     this.label3.TabIndex = 0;
     //
     // tabPageFolder
     //
     this.tabPageFolder.BackColor = System.Drawing.SystemColors.Window;
     this.tabPageFolder.Controls.Add(this.panelFolderIcon);
     this.tabPageFolder.Controls.Add(this.labelFolderDate);
     this.tabPageFolder.Controls.Add(this.label6);
     this.tabPageFolder.Controls.Add(this.labelFolderName);
     this.tabPageFolder.Location = new System.Drawing.Point(4, 25);
     this.tabPageFolder.Name = "tabPageFolder";
     this.tabPageFolder.Size = new System.Drawing.Size(844, 407);
     this.tabPageFolder.TabIndex = 3;
     this.tabPageFolder.Text = "Folder";
     //
     // panelFolderIcon
     //
     this.panelFolderIcon.BackIcon = null;
     this.panelFolderIcon.Location = new System.Drawing.Point(8, 8);
     this.panelFolderIcon.Name = "panelFolderIcon";
     this.panelFolderIcon.Size = new System.Drawing.Size(32, 32);
     this.panelFolderIcon.TabIndex = 7;
     //
     // labelFolderDate
     //
     this.labelFolderDate.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.labelFolderDate.Location = new System.Drawing.Point(112, 48);
     this.labelFolderDate.Name = "labelFolderDate";
     this.labelFolderDate.Size = new System.Drawing.Size(720, 23);
     this.labelFolderDate.TabIndex = 3;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(8, 48);
     this.label6.Name = "label6";
     this.label6.TabIndex = 2;
     this.label6.Text = "Creation date:";
     //
     // labelFolderName
     //
     this.labelFolderName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.labelFolderName.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelFolderName.Location = new System.Drawing.Point(48, 16);
     this.labelFolderName.Name = "labelFolderName";
     this.labelFolderName.Size = new System.Drawing.Size(784, 23);
     this.labelFolderName.TabIndex = 1;
     //
     // tabPageImage
     //
     this.tabPageImage.Controls.Add(this.panel1);
     this.tabPageImage.Location = new System.Drawing.Point(4, 25);
     this.tabPageImage.Name = "tabPageImage";
     this.tabPageImage.Size = new System.Drawing.Size(844, 407);
     this.tabPageImage.TabIndex = 5;
     this.tabPageImage.Text = "Image";
     //
     // panel1
     //
     this.panel1.AutoScroll = true;
     this.panel1.BackColor = System.Drawing.SystemColors.Window;
     this.panel1.Controls.Add(this.pictureBoxImage);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(844, 407);
     this.panel1.TabIndex = 0;
     //
     // pictureBoxImage
     //
     this.pictureBoxImage.Location = new System.Drawing.Point(0, 0);
     this.pictureBoxImage.Name = "pictureBoxImage";
     this.pictureBoxImage.Size = new System.Drawing.Size(448, 296);
     this.pictureBoxImage.TabIndex = 0;
     this.pictureBoxImage.TabStop = false;
     //
     // tabPageDisk
     //
     this.tabPageDisk.BackColor = System.Drawing.SystemColors.Window;
     this.tabPageDisk.Controls.Add(this.pictureBox1);
     this.tabPageDisk.Controls.Add(this.label2);
     this.tabPageDisk.Controls.Add(this.label1);
     this.tabPageDisk.Location = new System.Drawing.Point(4, 25);
     this.tabPageDisk.Name = "tabPageDisk";
     this.tabPageDisk.Size = new System.Drawing.Size(844, 407);
     this.tabPageDisk.TabIndex = 2;
     this.tabPageDisk.Text = "Disk";
     //
     // pictureBox1
     //
     this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pictureBox1.Location = new System.Drawing.Point(488, 16);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(352, 352);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 2;
     this.pictureBox1.TabStop = false;
     //
     // label2
     //
     this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.label2.Location = new System.Drawing.Point(8, 40);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(464, 328);
     this.label2.TabIndex = 1;
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.label1.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(8, 8);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(464, 23);
     this.label1.TabIndex = 0;
     //
     // labelCategoryDescription
     //
     this.labelCategoryDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
         | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.labelCategoryDescription.Location = new System.Drawing.Point(8, 48);
     this.labelCategoryDescription.Name = "labelCategoryDescription";
     this.labelCategoryDescription.Size = new System.Drawing.Size(824, 352);
     this.labelCategoryDescription.TabIndex = 12;
     //
     // FormSummary
     //
     this.AllowRedocking = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(856, 421);
     this.Controls.Add(this.panelBack);
     this.DockableAreas = WeifenLuo.WinFormsUI.DockAreas.Document;
     this.Name = "FormSummary";
     this.TabText = "Summary";
     this.Text = "Summary";
     this.panelBack.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.tabPageCategory.ResumeLayout(false);
     this.tabPageBox.ResumeLayout(false);
     this.tabPageFolder.ResumeLayout(false);
     this.tabPageImage.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.tabPageDisk.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 47
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.tabPageStart = new System.Windows.Forms.TabPage();
     this.controlDonePage2 = new DisksDB.UserInterface.ControlDonePage();
     this.tabPageTargetDataBase = new System.Windows.Forms.TabPage();
     this.label2 = new DisksDB.Language.Label();
     this.label1 = new DisksDB.Language.Label();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.propertyGrid = new System.Windows.Forms.PropertyGrid();
     this.tabPageMigtationProgress = new System.Windows.Forms.TabPage();
     this.progressBarTotall = new System.Windows.Forms.ProgressBar();
     this.label3 = new System.Windows.Forms.Label();
     this.textBoxTransferLog = new System.Windows.Forms.TextBox();
     this.labelDisk = new System.Windows.Forms.Label();
     this.progressBarFilesDone = new System.Windows.Forms.ProgressBar();
     this.label4 = new DisksDB.Language.Label();
     this.tabPageDone = new System.Windows.Forms.TabPage();
     this.controlDonePage1 = new DisksDB.UserInterface.ControlDonePage();
     this.tabPageBegin = new System.Windows.Forms.TabPage();
     this.controlDonePage3 = new DisksDB.UserInterface.ControlDonePage();
     this.pagesPanel.SuspendLayout();
     this.tabPageStart.SuspendLayout();
     this.tabPageTargetDataBase.SuspendLayout();
     this.tabPageMigtationProgress.SuspendLayout();
     this.tabPageDone.SuspendLayout();
     this.tabPageBegin.SuspendLayout();
     this.SuspendLayout();
     //
     // pictureBox1
     //
     this.pictureBox1.Name = "pictureBox1";
     //
     // pagesPanel
     //
     this.pagesPanel.Controls.Add(this.tabPageStart);
     this.pagesPanel.Controls.Add(this.tabPageTargetDataBase);
     this.pagesPanel.Controls.Add(this.tabPageBegin);
     this.pagesPanel.Controls.Add(this.tabPageMigtationProgress);
     this.pagesPanel.Controls.Add(this.tabPageDone);
     this.pagesPanel.Name = "pagesPanel";
     //
     // tabPageStart
     //
     this.tabPageStart.Controls.Add(this.controlDonePage2);
     this.tabPageStart.Location = new System.Drawing.Point(4, 6);
     this.tabPageStart.Name = "tabPageStart";
     this.tabPageStart.Size = new System.Drawing.Size(332, 302);
     this.tabPageStart.TabIndex = 0;
     this.tabPageStart.Text = "tabPage1";
     //
     // controlDonePage2
     //
     this.controlDonePage2.BackColor = System.Drawing.Color.White;
     this.controlDonePage2.Comment = "Click Next to begin";
     this.controlDonePage2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.controlDonePage2.FinishText = "This wizzard will help you to copy your data to another database.";
     this.controlDonePage2.Location = new System.Drawing.Point(0, 0);
     this.controlDonePage2.Name = "controlDonePage2";
     this.controlDonePage2.Size = new System.Drawing.Size(332, 302);
     this.controlDonePage2.TabIndex = 0;
     this.controlDonePage2.Title = "Transfer DataBase";
     //
     // tabPageTargetDataBase
     //
     this.tabPageTargetDataBase.BackColor = System.Drawing.SystemColors.Window;
     this.tabPageTargetDataBase.Controls.Add(this.label2);
     this.tabPageTargetDataBase.Controls.Add(this.label1);
     this.tabPageTargetDataBase.Controls.Add(this.comboBox1);
     this.tabPageTargetDataBase.Controls.Add(this.propertyGrid);
     this.tabPageTargetDataBase.Location = new System.Drawing.Point(4, 5);
     this.tabPageTargetDataBase.Name = "tabPageTargetDataBase";
     this.tabPageTargetDataBase.Size = new System.Drawing.Size(332, 303);
     this.tabPageTargetDataBase.TabIndex = 1;
     //
     // label2
     //
     this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.label2.Location = new System.Drawing.Point(8, 280);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(312, 16);
     this.label2.TabIndex = 3;
     this.label2.Text = "Click \"Next\" to begin copying.";
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.label1.Location = new System.Drawing.Point(8, 8);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(312, 16);
     this.label1.TabIndex = 2;
     this.label1.Text = "Destination database";
     //
     // comboBox1
     //
     this.comboBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.Location = new System.Drawing.Point(8, 24);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(312, 21);
     this.comboBox1.TabIndex = 1;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.LAyerChanged);
     //
     // propertyGrid
     //
     this.propertyGrid.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
         | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.propertyGrid.CommandsBackColor = System.Drawing.SystemColors.Window;
     this.propertyGrid.CommandsVisibleIfAvailable = true;
     this.propertyGrid.HelpVisible = false;
     this.propertyGrid.LargeButtons = false;
     this.propertyGrid.LineColor = System.Drawing.SystemColors.ScrollBar;
     this.propertyGrid.Location = new System.Drawing.Point(8, 48);
     this.propertyGrid.Name = "propertyGrid";
     this.propertyGrid.Size = new System.Drawing.Size(312, 224);
     this.propertyGrid.TabIndex = 0;
     this.propertyGrid.Text = "propertyGrid1";
     this.propertyGrid.ToolbarVisible = false;
     this.propertyGrid.ViewBackColor = System.Drawing.SystemColors.Window;
     this.propertyGrid.ViewForeColor = System.Drawing.SystemColors.WindowText;
     //
     // tabPageMigtationProgress
     //
     this.tabPageMigtationProgress.BackColor = System.Drawing.SystemColors.Window;
     this.tabPageMigtationProgress.Controls.Add(this.progressBarTotall);
     this.tabPageMigtationProgress.Controls.Add(this.label3);
     this.tabPageMigtationProgress.Controls.Add(this.textBoxTransferLog);
     this.tabPageMigtationProgress.Controls.Add(this.labelDisk);
     this.tabPageMigtationProgress.Controls.Add(this.progressBarFilesDone);
     this.tabPageMigtationProgress.Controls.Add(this.label4);
     this.tabPageMigtationProgress.Location = new System.Drawing.Point(4, 6);
     this.tabPageMigtationProgress.Name = "tabPageMigtationProgress";
     this.tabPageMigtationProgress.Size = new System.Drawing.Size(332, 302);
     this.tabPageMigtationProgress.TabIndex = 2;
     //
     // progressBarTotall
     //
     this.progressBarTotall.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.progressBarTotall.Location = new System.Drawing.Point(8, 80);
     this.progressBarTotall.Name = "progressBarTotall";
     this.progressBarTotall.Size = new System.Drawing.Size(312, 16);
     this.progressBarTotall.TabIndex = 5;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(8, 104);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(312, 16);
     this.label3.TabIndex = 4;
     this.label3.Text = "Disk files:";
     //
     // textBoxTransferLog
     //
     this.textBoxTransferLog.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
         | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxTransferLog.Location = new System.Drawing.Point(8, 144);
     this.textBoxTransferLog.Multiline = true;
     this.textBoxTransferLog.Name = "textBoxTransferLog";
     this.textBoxTransferLog.ReadOnly = true;
     this.textBoxTransferLog.Size = new System.Drawing.Size(312, 151);
     this.textBoxTransferLog.TabIndex = 3;
     this.textBoxTransferLog.Text = "";
     //
     // labelDisk
     //
     this.labelDisk.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.labelDisk.Location = new System.Drawing.Point(8, 32);
     this.labelDisk.Name = "labelDisk";
     this.labelDisk.Size = new System.Drawing.Size(312, 40);
     this.labelDisk.TabIndex = 2;
     //
     // progressBarFilesDone
     //
     this.progressBarFilesDone.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.progressBarFilesDone.Location = new System.Drawing.Point(8, 120);
     this.progressBarFilesDone.Name = "progressBarFilesDone";
     this.progressBarFilesDone.Size = new System.Drawing.Size(312, 16);
     this.progressBarFilesDone.TabIndex = 1;
     //
     // label4
     //
     this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.label4.Location = new System.Drawing.Point(8, 8);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(312, 23);
     this.label4.TabIndex = 0;
     this.label4.Text = "Transferring database";
     //
     // tabPageDone
     //
     this.tabPageDone.Controls.Add(this.controlDonePage1);
     this.tabPageDone.Location = new System.Drawing.Point(4, 6);
     this.tabPageDone.Name = "tabPageDone";
     this.tabPageDone.Size = new System.Drawing.Size(332, 302);
     this.tabPageDone.TabIndex = 3;
     //
     // controlDonePage1
     //
     this.controlDonePage1.BackColor = System.Drawing.Color.White;
     this.controlDonePage1.Comment = "Click Finish to close this wizard";
     this.controlDonePage1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.controlDonePage1.FinishText = "Data Base migration has been successfully completed. You now can switch database " +
         "by using Tools->Options menu.";
     this.controlDonePage1.Location = new System.Drawing.Point(0, 0);
     this.controlDonePage1.Name = "controlDonePage1";
     this.controlDonePage1.Size = new System.Drawing.Size(332, 302);
     this.controlDonePage1.TabIndex = 1;
     this.controlDonePage1.Title = "Migration is completed";
     //
     // tabPageBegin
     //
     this.tabPageBegin.Controls.Add(this.controlDonePage3);
     this.tabPageBegin.Location = new System.Drawing.Point(4, 6);
     this.tabPageBegin.Name = "tabPageBegin";
     this.tabPageBegin.Size = new System.Drawing.Size(332, 302);
     this.tabPageBegin.TabIndex = 4;
     this.tabPageBegin.Text = "tabPageBegin";
     //
     // controlDonePage3
     //
     this.controlDonePage3.BackColor = System.Drawing.Color.White;
     this.controlDonePage3.Comment = "To continue click next";
     this.controlDonePage3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.controlDonePage3.FinishText = "Continuing removes all data on target database and adds new data from source data" +
         "base.";
     this.controlDonePage3.Location = new System.Drawing.Point(0, 0);
     this.controlDonePage3.Name = "controlDonePage3";
     this.controlDonePage3.Size = new System.Drawing.Size(332, 302);
     this.controlDonePage3.TabIndex = 0;
     this.controlDonePage3.Title = "Begin transfer";
     //
     // FormCopyDataBase
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(494, 350);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name = "FormCopyDataBase";
     this.Text = "Transfer DataBase";
     this.Load += new System.EventHandler(this.FormLoad);
     this.pagesPanel.ResumeLayout(false);
     this.tabPageStart.ResumeLayout(false);
     this.tabPageTargetDataBase.ResumeLayout(false);
     this.tabPageMigtationProgress.ResumeLayout(false);
     this.tabPageDone.ResumeLayout(false);
     this.tabPageBegin.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FM_EmptyBang));
     this.panel1 = new System.Windows.Forms.Panel();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tbp_zd = new System.Windows.Forms.TabPage();
     this.txbAuto_Navicert = new System.Windows.Forms.TextBox();
     this.panel4 = new System.Windows.Forms.Panel();
     this.msc_Auto = new AxMSCommLib.AxMSComm();
     this.btn_close = new System.Windows.Forms.Button();
     this.btn_no = new System.Windows.Forms.Button();
     this.btn_ok = new System.Windows.Forms.Button();
     this.label39 = new System.Windows.Forms.Label();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.label74 = new System.Windows.Forms.Label();
     this.panel9 = new System.Windows.Forms.Panel();
     this.lbbcarweigt = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.txtOperator = new System.Windows.Forms.TextBox();
     this.lblOperator = new System.Windows.Forms.Label();
     this.label41 = new System.Windows.Forms.Label();
     this.label40 = new System.Windows.Forms.Label();
     this.text_oldweight = new System.Windows.Forms.TextBox();
     this.txtbangtime = new System.Windows.Forms.TextBox();
     this.label80 = new System.Windows.Forms.Label();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.label72 = new System.Windows.Forms.Label();
     this.txtcarweight = new System.Windows.Forms.TextBox();
     this.label73 = new System.Windows.Forms.Label();
     this.label81 = new System.Windows.Forms.Label();
     this.txtmostweight = new System.Windows.Forms.TextBox();
     this.label82 = new System.Windows.Forms.Label();
     this.label83 = new System.Windows.Forms.Label();
     this.label84 = new System.Windows.Forms.Label();
     this.txtcarno = new System.Windows.Forms.TextBox();
     this.txtcartype = new System.Windows.Forms.TextBox();
     this.label89 = new System.Windows.Forms.Label();
     this.txtcarname = new System.Windows.Forms.TextBox();
     this.label9 = new System.Windows.Forms.Label();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.button1 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.button3 = new System.Windows.Forms.Button();
     this.label20 = new System.Windows.Forms.Label();
     this.panel5 = new System.Windows.Forms.Panel();
     this.label21 = new System.Windows.Forms.Label();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.label22 = new System.Windows.Forms.Label();
     this.label23 = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.label26 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.textBox3 = new System.Windows.Forms.TextBox();
     this.label28 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.label30 = new System.Windows.Forms.Label();
     this.textBox4 = new System.Windows.Forms.TextBox();
     this.label31 = new System.Windows.Forms.Label();
     this.textBox5 = new System.Windows.Forms.TextBox();
     this.label32 = new System.Windows.Forms.Label();
     this.textBox6 = new System.Windows.Forms.TextBox();
     this.label33 = new System.Windows.Forms.Label();
     this.textBox7 = new System.Windows.Forms.TextBox();
     this.label34 = new System.Windows.Forms.Label();
     this.textBox8 = new System.Windows.Forms.TextBox();
     this.label35 = new System.Windows.Forms.Label();
     this.textBox9 = new System.Windows.Forms.TextBox();
     this.textBox10 = new System.Windows.Forms.TextBox();
     this.label13 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.panel2 = new System.Windows.Forms.Panel();
     this.lb_CarWeight = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.sp_com = new System.IO.Ports.SerialPort(this.components);
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.tbownername = new System.Windows.Forms.TextBox();
     this.label53 = new System.Windows.Forms.Label();
     this.tbcartype = new System.Windows.Forms.TextBox();
     this.tbcarno = new System.Windows.Forms.TextBox();
     this.label48 = new System.Windows.Forms.Label();
     this.label47 = new System.Windows.Forms.Label();
     this.label46 = new System.Windows.Forms.Label();
     this.tbmostweight = new System.Windows.Forms.TextBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.label37 = new System.Windows.Forms.Label();
     this.tbcarweight = new System.Windows.Forms.TextBox();
     this.label36 = new System.Windows.Forms.Label();
     this.label43 = new System.Windows.Forms.Label();
     this.txbInvalidation = new System.Windows.Forms.TextBox();
     this.btnHanUpdate = new System.Windows.Forms.Button();
     this.label45 = new System.Windows.Forms.Label();
     this.label44 = new System.Windows.Forms.Label();
     this.tbbangtime = new System.Windows.Forms.TextBox();
     this.panel6 = new System.Windows.Forms.Panel();
     this.lbcarweight = new System.Windows.Forms.Label();
     this.label38 = new System.Windows.Forms.Label();
     this.btnok = new System.Windows.Forms.Button();
     this.btnno = new System.Windows.Forms.Button();
     this.btnexit = new System.Windows.Forms.Button();
     this.txt_ownername = new System.Windows.Forms.TextBox();
     this.label71 = new System.Windows.Forms.Label();
     this.txt_cartype = new System.Windows.Forms.TextBox();
     this.txt_carno = new System.Windows.Forms.TextBox();
     this.label66 = new System.Windows.Forms.Label();
     this.label65 = new System.Windows.Forms.Label();
     this.label64 = new System.Windows.Forms.Label();
     this.txt_mostweight = new System.Windows.Forms.TextBox();
     this.groupBox7 = new System.Windows.Forms.GroupBox();
     this.label55 = new System.Windows.Forms.Label();
     this.txt_carweight = new System.Windows.Forms.TextBox();
     this.label54 = new System.Windows.Forms.Label();
     this.label63 = new System.Windows.Forms.Label();
     this.label62 = new System.Windows.Forms.Label();
     this.txt_bangtime = new System.Windows.Forms.TextBox();
     this.panel8 = new System.Windows.Forms.Panel();
     this.lblcarweight = new System.Windows.Forms.Label();
     this.label56 = new System.Windows.Forms.Label();
     this.btnEnter = new System.Windows.Forms.Button();
     this.btncancel = new System.Windows.Forms.Button();
     this.btnclose = new System.Windows.Forms.Button();
     this.alarmSound = new ThirdLibrary.AlarmSound(this.components);
     this.panel1.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tbp_zd.SuspendLayout();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.msc_Auto)).BeginInit();
     this.groupBox2.SuspendLayout();
     this.panel9.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.panel5.SuspendLayout();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.tabControl1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(699, 468);
     this.panel1.TabIndex = 0;
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tbp_zd);
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Font = new System.Drawing.Font("宋体", 10.5F);
     this.tabControl1.Location = new System.Drawing.Point(0, 0);
     this.tabControl1.Multiline = true;
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(699, 468);
     this.tabControl1.TabIndex = 1;
     //
     // tbp_zd
     //
     this.tbp_zd.BackColor = System.Drawing.SystemColors.Control;
     this.tbp_zd.Controls.Add(this.txbAuto_Navicert);
     this.tbp_zd.Controls.Add(this.panel4);
     this.tbp_zd.Controls.Add(this.label39);
     this.tbp_zd.Controls.Add(this.groupBox2);
     this.tbp_zd.Controls.Add(this.groupBox1);
     this.tbp_zd.Location = new System.Drawing.Point(4, 24);
     this.tbp_zd.Name = "tbp_zd";
     this.tbp_zd.Size = new System.Drawing.Size(691, 440);
     this.tbp_zd.TabIndex = 3;
     this.tbp_zd.Text = "自动过磅";
     //
     // txbAuto_Navicert
     //
     this.txbAuto_Navicert.Location = new System.Drawing.Point(426, 281);
     this.txbAuto_Navicert.Name = "txbAuto_Navicert";
     this.txbAuto_Navicert.Size = new System.Drawing.Size(115, 23);
     this.txbAuto_Navicert.TabIndex = 25;
     this.txbAuto_Navicert.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txbAuto_Navicert_KeyDown);
     //
     // panel4
     //
     this.panel4.Controls.Add(this.msc_Auto);
     this.panel4.Controls.Add(this.btn_close);
     this.panel4.Controls.Add(this.btn_no);
     this.panel4.Controls.Add(this.btn_ok);
     this.panel4.Cursor = System.Windows.Forms.Cursors.Default;
     this.panel4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel4.Location = new System.Drawing.Point(0, 367);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(691, 73);
     this.panel4.TabIndex = 22;
     //
     // msc_Auto
     //
     this.msc_Auto.Enabled = true;
     this.msc_Auto.Location = new System.Drawing.Point(17, 22);
     this.msc_Auto.Name = "msc_Auto";
     this.msc_Auto.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("msc_Auto.OcxState")));
     this.msc_Auto.Size = new System.Drawing.Size(38, 38);
     this.msc_Auto.TabIndex = 3;
     this.msc_Auto.OnComm += new System.EventHandler(this.msc_Auto_OnComm);
     //
     // btn_close
     //
     this.btn_close.Location = new System.Drawing.Point(468, 37);
     this.btn_close.Name = "btn_close";
     this.btn_close.Size = new System.Drawing.Size(75, 23);
     this.btn_close.TabIndex = 2;
     this.btn_close.Text = "退出";
     this.btn_close.UseVisualStyleBackColor = true;
     this.btn_close.Click += new System.EventHandler(this.btn_close_Click);
     //
     // btn_no
     //
     this.btn_no.Location = new System.Drawing.Point(290, 37);
     this.btn_no.Name = "btn_no";
     this.btn_no.Size = new System.Drawing.Size(75, 23);
     this.btn_no.TabIndex = 1;
     this.btn_no.Text = "复位";
     this.btn_no.UseVisualStyleBackColor = true;
     this.btn_no.Click += new System.EventHandler(this.btn_no_Click);
     //
     // btn_ok
     //
     this.btn_ok.Enabled = false;
     this.btn_ok.Location = new System.Drawing.Point(103, 37);
     this.btn_ok.Name = "btn_ok";
     this.btn_ok.Size = new System.Drawing.Size(75, 23);
     this.btn_ok.TabIndex = 0;
     this.btn_ok.Text = "确定";
     this.btn_ok.UseVisualStyleBackColor = true;
     this.btn_ok.Click += new System.EventHandler(this.btn_ok_Click);
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.Font = new System.Drawing.Font("宋体", 10.5F);
     this.label39.ForeColor = System.Drawing.Color.Red;
     this.label39.Location = new System.Drawing.Point(343, 287);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(77, 14);
     this.label39.TabIndex = 24;
     this.label39.Text = "请刷准运卡";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.label74);
     this.groupBox2.Controls.Add(this.panel9);
     this.groupBox2.Location = new System.Drawing.Point(340, 9);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(345, 220);
     this.groupBox2.TabIndex = 21;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "磅秤信息";
     //
     // label74
     //
     this.label74.AutoSize = true;
     this.label74.Font = new System.Drawing.Font("黑体", 40F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label74.Location = new System.Drawing.Point(262, 93);
     this.label74.Name = "label74";
     this.label74.Size = new System.Drawing.Size(77, 54);
     this.label74.TabIndex = 15;
     this.label74.Text = "吨";
     //
     // panel9
     //
     this.panel9.BackColor = System.Drawing.Color.Black;
     this.panel9.Controls.Add(this.lbbcarweigt);
     this.panel9.Location = new System.Drawing.Point(6, 20);
     this.panel9.Name = "panel9";
     this.panel9.Size = new System.Drawing.Size(256, 190);
     this.panel9.TabIndex = 0;
     //
     // lbbcarweigt
     //
     this.lbbcarweigt.AutoSize = true;
     this.lbbcarweigt.Font = new System.Drawing.Font("宋体", 46F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lbbcarweigt.ForeColor = System.Drawing.Color.White;
     this.lbbcarweigt.Location = new System.Drawing.Point(51, 73);
     this.lbbcarweigt.Name = "lbbcarweigt";
     this.lbbcarweigt.Size = new System.Drawing.Size(155, 62);
     this.lbbcarweigt.TabIndex = 17;
     this.lbbcarweigt.Tag = "9999";
     this.lbbcarweigt.Text = "0.00";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.txtOperator);
     this.groupBox1.Controls.Add(this.lblOperator);
     this.groupBox1.Controls.Add(this.label41);
     this.groupBox1.Controls.Add(this.label40);
     this.groupBox1.Controls.Add(this.text_oldweight);
     this.groupBox1.Controls.Add(this.txtbangtime);
     this.groupBox1.Controls.Add(this.label80);
     this.groupBox1.Controls.Add(this.groupBox3);
     this.groupBox1.Controls.Add(this.label81);
     this.groupBox1.Controls.Add(this.txtmostweight);
     this.groupBox1.Controls.Add(this.label82);
     this.groupBox1.Controls.Add(this.label83);
     this.groupBox1.Controls.Add(this.label84);
     this.groupBox1.Controls.Add(this.txtcarno);
     this.groupBox1.Controls.Add(this.txtcartype);
     this.groupBox1.Controls.Add(this.label89);
     this.groupBox1.Controls.Add(this.txtcarname);
     this.groupBox1.Location = new System.Drawing.Point(17, 9);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(284, 307);
     this.groupBox1.TabIndex = 20;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "车辆信息";
     //
     // txtOperator
     //
     this.txtOperator.Enabled = false;
     this.txtOperator.Location = new System.Drawing.Point(110, 210);
     this.txtOperator.Name = "txtOperator";
     this.txtOperator.ReadOnly = true;
     this.txtOperator.Size = new System.Drawing.Size(150, 23);
     this.txtOperator.TabIndex = 176;
     //
     // lblOperator
     //
     this.lblOperator.AutoSize = true;
     this.lblOperator.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblOperator.Location = new System.Drawing.Point(53, 214);
     this.lblOperator.Name = "lblOperator";
     this.lblOperator.Size = new System.Drawing.Size(49, 14);
     this.lblOperator.TabIndex = 175;
     this.lblOperator.Text = "司磅员";
     //
     // label41
     //
     this.label41.AutoSize = true;
     this.label41.Location = new System.Drawing.Point(261, 124);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(21, 14);
     this.label41.TabIndex = 29;
     this.label41.Text = "吨";
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.Location = new System.Drawing.Point(39, 124);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(63, 14);
     this.label40.TabIndex = 28;
     this.label40.Text = "历史皮重";
     //
     // text_oldweight
     //
     this.text_oldweight.Enabled = false;
     this.text_oldweight.Location = new System.Drawing.Point(110, 120);
     this.text_oldweight.MaxLength = 20;
     this.text_oldweight.Name = "text_oldweight";
     this.text_oldweight.ReadOnly = true;
     this.text_oldweight.Size = new System.Drawing.Size(150, 23);
     this.text_oldweight.TabIndex = 27;
     //
     // txtbangtime
     //
     this.txtbangtime.BackColor = System.Drawing.Color.PowderBlue;
     this.txtbangtime.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.txtbangtime.Location = new System.Drawing.Point(111, 269);
     this.txtbangtime.Name = "txtbangtime";
     this.txtbangtime.ReadOnly = true;
     this.txtbangtime.Size = new System.Drawing.Size(150, 23);
     this.txtbangtime.TabIndex = 26;
     //
     // label80
     //
     this.label80.AutoSize = true;
     this.label80.Location = new System.Drawing.Point(261, 246);
     this.label80.Name = "label80";
     this.label80.Size = new System.Drawing.Size(21, 14);
     this.label80.TabIndex = 21;
     this.label80.Text = "吨";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.label72);
     this.groupBox3.Controls.Add(this.txtcarweight);
     this.groupBox3.Controls.Add(this.label73);
     this.groupBox3.Location = new System.Drawing.Point(6, 149);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(255, 45);
     this.groupBox3.TabIndex = 23;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "电子秤数据";
     //
     // label72
     //
     this.label72.AutoSize = true;
     this.label72.Location = new System.Drawing.Point(207, 20);
     this.label72.Name = "label72";
     this.label72.Size = new System.Drawing.Size(21, 14);
     this.label72.TabIndex = 20;
     this.label72.Text = "吨";
     //
     // txtcarweight
     //
     this.txtcarweight.BackColor = System.Drawing.Color.PowderBlue;
     this.txtcarweight.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.txtcarweight.ForeColor = System.Drawing.SystemColors.InfoText;
     this.txtcarweight.Location = new System.Drawing.Point(101, 17);
     this.txtcarweight.Name = "txtcarweight";
     this.txtcarweight.ReadOnly = true;
     this.txtcarweight.Size = new System.Drawing.Size(100, 23);
     this.txtcarweight.TabIndex = 21;
     this.txtcarweight.Text = "0.00";
     //
     // label73
     //
     this.label73.AutoSize = true;
     this.label73.Location = new System.Drawing.Point(32, 20);
     this.label73.Name = "label73";
     this.label73.Size = new System.Drawing.Size(63, 14);
     this.label73.TabIndex = 19;
     this.label73.Text = "空车重量";
     //
     // label81
     //
     this.label81.AutoSize = true;
     this.label81.Location = new System.Drawing.Point(40, 273);
     this.label81.Name = "label81";
     this.label81.Size = new System.Drawing.Size(63, 14);
     this.label81.TabIndex = 18;
     this.label81.Text = "过磅时间";
     //
     // txtmostweight
     //
     this.txtmostweight.Enabled = false;
     this.txtmostweight.Location = new System.Drawing.Point(111, 241);
     this.txtmostweight.MaxLength = 9;
     this.txtmostweight.Name = "txtmostweight";
     this.txtmostweight.ReadOnly = true;
     this.txtmostweight.Size = new System.Drawing.Size(150, 23);
     this.txtmostweight.TabIndex = 7;
     //
     // label82
     //
     this.label82.AutoSize = true;
     this.label82.Location = new System.Drawing.Point(40, 96);
     this.label82.Name = "label82";
     this.label82.Size = new System.Drawing.Size(63, 14);
     this.label82.TabIndex = 15;
     this.label82.Text = "车主姓名";
     //
     // label83
     //
     this.label83.AutoSize = true;
     this.label83.Location = new System.Drawing.Point(54, 40);
     this.label83.Name = "label83";
     this.label83.Size = new System.Drawing.Size(49, 14);
     this.label83.TabIndex = 8;
     this.label83.Text = "车牌号";
     //
     // label84
     //
     this.label84.AutoSize = true;
     this.label84.Location = new System.Drawing.Point(12, 244);
     this.label84.Name = "label84";
     this.label84.Size = new System.Drawing.Size(91, 14);
     this.label84.TabIndex = 14;
     this.label84.Text = "重车最高限量";
     //
     // txtcarno
     //
     this.txtcarno.Enabled = false;
     this.txtcarno.Location = new System.Drawing.Point(111, 36);
     this.txtcarno.MaxLength = 40;
     this.txtcarno.Name = "txtcarno";
     this.txtcarno.ReadOnly = true;
     this.txtcarno.Size = new System.Drawing.Size(150, 23);
     this.txtcarno.TabIndex = 0;
     //
     // txtcartype
     //
     this.txtcartype.Enabled = false;
     this.txtcartype.Location = new System.Drawing.Point(111, 64);
     this.txtcartype.MaxLength = 20;
     this.txtcartype.Name = "txtcartype";
     this.txtcartype.ReadOnly = true;
     this.txtcartype.Size = new System.Drawing.Size(150, 23);
     this.txtcartype.TabIndex = 1;
     //
     // label89
     //
     this.label89.AutoSize = true;
     this.label89.Location = new System.Drawing.Point(54, 67);
     this.label89.Name = "label89";
     this.label89.Size = new System.Drawing.Size(49, 14);
     this.label89.TabIndex = 9;
     this.label89.Text = "车型号";
     //
     // txtcarname
     //
     this.txtcarname.Enabled = false;
     this.txtcarname.Location = new System.Drawing.Point(111, 92);
     this.txtcarname.MaxLength = 20;
     this.txtcarname.Name = "txtcarname";
     this.txtcarname.ReadOnly = true;
     this.txtcarname.Size = new System.Drawing.Size(150, 23);
     this.txtcarname.TabIndex = 2;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(209, 36);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(17, 12);
     this.label9.TabIndex = 20;
     this.label9.Text = "吨";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(103, 33);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(100, 21);
     this.textBox1.TabIndex = 19;
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(32, 36);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(65, 12);
     this.label19.TabIndex = 19;
     this.label19.Text = "空车重量:";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(271, 36);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 2;
     this.button1.Text = "退出";
     this.button1.UseVisualStyleBackColor = true;
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(189, 37);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(75, 23);
     this.button2.TabIndex = 1;
     this.button2.Text = "复位";
     this.button2.UseVisualStyleBackColor = true;
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(108, 37);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(75, 23);
     this.button3.TabIndex = 0;
     this.button3.Text = "确定";
     this.button3.UseVisualStyleBackColor = true;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Font = new System.Drawing.Font("黑体", 40F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label20.Location = new System.Drawing.Point(262, 93);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(77, 54);
     this.label20.TabIndex = 15;
     this.label20.Text = "吨";
     //
     // panel5
     //
     this.panel5.BackColor = System.Drawing.Color.Black;
     this.panel5.Controls.Add(this.label21);
     this.panel5.Location = new System.Drawing.Point(6, 20);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(256, 190);
     this.panel5.TabIndex = 0;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Font = new System.Drawing.Font("黑体", 40F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label21.ForeColor = System.Drawing.Color.White;
     this.label21.Location = new System.Drawing.Point(46, 73);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(185, 54);
     this.label21.TabIndex = 17;
     this.label21.Text = "33.687";
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(111, 269);
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(123, 21);
     this.textBox2.TabIndex = 26;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.ForeColor = System.Drawing.Color.Red;
     this.label22.Location = new System.Drawing.Point(255, 240);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(11, 12);
     this.label22.TabIndex = 25;
     this.label22.Text = "*";
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.ForeColor = System.Drawing.Color.Red;
     this.label23.Location = new System.Drawing.Point(239, 80);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(11, 12);
     this.label23.TabIndex = 24;
     this.label23.Text = "*";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.ForeColor = System.Drawing.Color.Red;
     this.label24.Location = new System.Drawing.Point(239, 49);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(11, 12);
     this.label24.TabIndex = 23;
     this.label24.Text = "*";
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.ForeColor = System.Drawing.Color.Red;
     this.label25.Location = new System.Drawing.Point(239, 17);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(11, 12);
     this.label25.TabIndex = 22;
     this.label25.Text = "*";
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(239, 240);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(17, 12);
     this.label26.TabIndex = 21;
     this.label26.Text = "吨";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(40, 272);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(65, 12);
     this.label27.TabIndex = 18;
     this.label27.Text = "过磅时间:";
     //
     // textBox3
     //
     this.textBox3.Location = new System.Drawing.Point(111, 237);
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new System.Drawing.Size(123, 21);
     this.textBox3.TabIndex = 16;
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(40, 80);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(65, 12);
     this.label28.TabIndex = 15;
     this.label28.Text = "车主姓名:";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(52, 16);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(53, 12);
     this.label29.TabIndex = 8;
     this.label29.Text = "车牌号:";
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Location = new System.Drawing.Point(16, 240);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(89, 12);
     this.label30.TabIndex = 14;
     this.label30.Text = "重车最高限量:";
     //
     // textBox4
     //
     this.textBox4.Location = new System.Drawing.Point(111, 13);
     this.textBox4.MaxLength = 40;
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new System.Drawing.Size(123, 21);
     this.textBox4.TabIndex = 0;
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Location = new System.Drawing.Point(28, 208);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(77, 12);
     this.label31.TabIndex = 13;
     this.label31.Text = "驾驶员电话:";
     //
     // textBox5
     //
     this.textBox5.Location = new System.Drawing.Point(111, 45);
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new System.Drawing.Size(123, 21);
     this.textBox5.TabIndex = 1;
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Location = new System.Drawing.Point(16, 176);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(89, 12);
     this.label32.TabIndex = 12;
     this.label32.Text = "驾驶员身份证:";
     //
     // textBox6
     //
     this.textBox6.Location = new System.Drawing.Point(111, 141);
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new System.Drawing.Size(123, 21);
     this.textBox6.TabIndex = 2;
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Location = new System.Drawing.Point(40, 144);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(65, 12);
     this.label33.TabIndex = 11;
     this.label33.Text = "车主电话:";
     //
     // textBox7
     //
     this.textBox7.Location = new System.Drawing.Point(111, 109);
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new System.Drawing.Size(123, 21);
     this.textBox7.TabIndex = 3;
     //
     // label34
     //
     this.label34.AutoSize = true;
     this.label34.Location = new System.Drawing.Point(28, 112);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(77, 12);
     this.label34.TabIndex = 10;
     this.label34.Text = "车主身份证:";
     //
     // textBox8
     //
     this.textBox8.Location = new System.Drawing.Point(111, 173);
     this.textBox8.Name = "textBox8";
     this.textBox8.Size = new System.Drawing.Size(123, 21);
     this.textBox8.TabIndex = 4;
     //
     // label35
     //
     this.label35.AutoSize = true;
     this.label35.Location = new System.Drawing.Point(52, 49);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(53, 12);
     this.label35.TabIndex = 9;
     this.label35.Text = "车型号:";
     //
     // textBox9
     //
     this.textBox9.Location = new System.Drawing.Point(111, 205);
     this.textBox9.Name = "textBox9";
     this.textBox9.Size = new System.Drawing.Size(123, 21);
     this.textBox9.TabIndex = 5;
     //
     // textBox10
     //
     this.textBox10.Location = new System.Drawing.Point(111, 77);
     this.textBox10.Name = "textBox10";
     this.textBox10.Size = new System.Drawing.Size(123, 21);
     this.textBox10.TabIndex = 6;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(209, 36);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(17, 12);
     this.label13.TabIndex = 20;
     this.label13.Text = "吨";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(32, 36);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(65, 12);
     this.label12.TabIndex = 19;
     this.label12.Text = "空车重量:";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("黑体", 40F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label8.Location = new System.Drawing.Point(262, 93);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(77, 54);
     this.label8.TabIndex = 15;
     this.label8.Text = "吨";
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Black;
     this.panel2.Controls.Add(this.lb_CarWeight);
     this.panel2.Location = new System.Drawing.Point(6, 20);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(256, 190);
     this.panel2.TabIndex = 0;
     //
     // lb_CarWeight
     //
     this.lb_CarWeight.AutoSize = true;
     this.lb_CarWeight.Font = new System.Drawing.Font("黑体", 40F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lb_CarWeight.ForeColor = System.Drawing.Color.White;
     this.lb_CarWeight.Location = new System.Drawing.Point(46, 73);
     this.lb_CarWeight.Name = "lb_CarWeight";
     this.lb_CarWeight.Size = new System.Drawing.Size(185, 54);
     this.lb_CarWeight.TabIndex = 17;
     this.lb_CarWeight.Text = "33.687";
     //
     // label18
     //
     this.label18.Location = new System.Drawing.Point(0, 0);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(100, 23);
     this.label18.TabIndex = 0;
     //
     // label17
     //
     this.label17.Location = new System.Drawing.Point(0, 0);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(100, 23);
     this.label17.TabIndex = 0;
     //
     // label16
     //
     this.label16.Location = new System.Drawing.Point(0, 0);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(100, 23);
     this.label16.TabIndex = 0;
     //
     // label15
     //
     this.label15.Location = new System.Drawing.Point(0, 0);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(100, 23);
     this.label15.TabIndex = 0;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(239, 240);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(17, 12);
     this.label14.TabIndex = 21;
     this.label14.Text = "吨";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(40, 272);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(65, 12);
     this.label11.TabIndex = 18;
     this.label11.Text = "过磅时间:";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(40, 80);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(65, 12);
     this.label10.TabIndex = 15;
     this.label10.Text = "车主姓名:";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(52, 16);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(53, 12);
     this.label1.TabIndex = 8;
     this.label1.Text = "车牌号:";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(16, 240);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(89, 12);
     this.label7.TabIndex = 14;
     this.label7.Text = "重车最高限量:";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(28, 208);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(77, 12);
     this.label6.TabIndex = 13;
     this.label6.Text = "驾驶员电话:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(16, 176);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(89, 12);
     this.label5.TabIndex = 12;
     this.label5.Text = "驾驶员身份证:";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(40, 144);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(65, 12);
     this.label4.TabIndex = 11;
     this.label4.Text = "车主电话:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(28, 112);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(77, 12);
     this.label3.TabIndex = 10;
     this.label3.Text = "车主身份证:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(52, 49);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(53, 12);
     this.label2.TabIndex = 9;
     this.label2.Text = "车型号:";
     //
     // tbownername
     //
     this.tbownername.Location = new System.Drawing.Point(111, 73);
     this.tbownername.MaxLength = 20;
     this.tbownername.Name = "tbownername";
     this.tbownername.Size = new System.Drawing.Size(150, 21);
     this.tbownername.TabIndex = 2;
     //
     // label53
     //
     this.label53.AutoSize = true;
     this.label53.Location = new System.Drawing.Point(54, 48);
     this.label53.Name = "label53";
     this.label53.Size = new System.Drawing.Size(49, 14);
     this.label53.TabIndex = 9;
     //
     // tbcartype
     //
     this.tbcartype.Location = new System.Drawing.Point(111, 45);
     this.tbcartype.MaxLength = 20;
     this.tbcartype.Name = "tbcartype";
     this.tbcartype.Size = new System.Drawing.Size(150, 21);
     this.tbcartype.TabIndex = 1;
     //
     // tbcarno
     //
     this.tbcarno.Location = new System.Drawing.Point(111, 17);
     this.tbcarno.MaxLength = 40;
     this.tbcarno.Name = "tbcarno";
     this.tbcarno.Size = new System.Drawing.Size(150, 21);
     this.tbcarno.TabIndex = 0;
     //
     // label48
     //
     this.label48.AutoSize = true;
     this.label48.Location = new System.Drawing.Point(12, 244);
     this.label48.Name = "label48";
     this.label48.Size = new System.Drawing.Size(91, 14);
     this.label48.TabIndex = 14;
     //
     // label47
     //
     this.label47.AutoSize = true;
     this.label47.Location = new System.Drawing.Point(54, 21);
     this.label47.Name = "label47";
     this.label47.Size = new System.Drawing.Size(49, 14);
     this.label47.TabIndex = 8;
     //
     // label46
     //
     this.label46.AutoSize = true;
     this.label46.Location = new System.Drawing.Point(40, 77);
     this.label46.Name = "label46";
     this.label46.Size = new System.Drawing.Size(63, 14);
     this.label46.TabIndex = 15;
     //
     // tbmostweight
     //
     this.tbmostweight.Location = new System.Drawing.Point(111, 241);
     this.tbmostweight.MaxLength = 9;
     this.tbmostweight.Name = "tbmostweight";
     this.tbmostweight.Size = new System.Drawing.Size(150, 21);
     this.tbmostweight.TabIndex = 7;
     //
     // groupBox4
     //
     this.groupBox4.Location = new System.Drawing.Point(15, 115);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(269, 81);
     this.groupBox4.TabIndex = 23;
     this.groupBox4.TabStop = false;
     //
     // label37
     //
     this.label37.AutoSize = true;
     this.label37.Location = new System.Drawing.Point(32, 29);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(63, 14);
     this.label37.TabIndex = 19;
     //
     // tbcarweight
     //
     this.tbcarweight.Location = new System.Drawing.Point(103, 26);
     this.tbcarweight.MaxLength = 9;
     this.tbcarweight.Name = "tbcarweight";
     this.tbcarweight.Size = new System.Drawing.Size(68, 21);
     this.tbcarweight.TabIndex = 8;
     //
     // label36
     //
     this.label36.AutoSize = true;
     this.label36.Location = new System.Drawing.Point(177, 29);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(21, 14);
     this.label36.TabIndex = 20;
     //
     // label43
     //
     this.label43.AutoSize = true;
     this.label43.Location = new System.Drawing.Point(32, 57);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(63, 14);
     this.label43.TabIndex = 23;
     //
     // txbInvalidation
     //
     this.txbInvalidation.Location = new System.Drawing.Point(103, 53);
     this.txbInvalidation.MaxLength = 200;
     this.txbInvalidation.Name = "txbInvalidation";
     this.txbInvalidation.Size = new System.Drawing.Size(159, 21);
     this.txbInvalidation.TabIndex = 24;
     //
     // btnHanUpdate
     //
     this.btnHanUpdate.Location = new System.Drawing.Point(204, 24);
     this.btnHanUpdate.Name = "btnHanUpdate";
     this.btnHanUpdate.Size = new System.Drawing.Size(52, 23);
     this.btnHanUpdate.TabIndex = 28;
     this.btnHanUpdate.Text = "刷新";
     this.btnHanUpdate.UseVisualStyleBackColor = true;
     //
     // label45
     //
     this.label45.AutoSize = true;
     this.label45.Location = new System.Drawing.Point(40, 273);
     this.label45.Name = "label45";
     this.label45.Size = new System.Drawing.Size(63, 14);
     this.label45.TabIndex = 18;
     //
     // label44
     //
     this.label44.AutoSize = true;
     this.label44.Location = new System.Drawing.Point(261, 246);
     this.label44.Name = "label44";
     this.label44.Size = new System.Drawing.Size(21, 14);
     this.label44.TabIndex = 21;
     //
     // tbbangtime
     //
     this.tbbangtime.Location = new System.Drawing.Point(111, 269);
     this.tbbangtime.Name = "tbbangtime";
     this.tbbangtime.ReadOnly = true;
     this.tbbangtime.Size = new System.Drawing.Size(150, 21);
     this.tbbangtime.TabIndex = 26;
     //
     // panel6
     //
     this.panel6.BackColor = System.Drawing.Color.Black;
     this.panel6.Location = new System.Drawing.Point(6, 20);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(256, 190);
     this.panel6.TabIndex = 0;
     //
     // lbcarweight
     //
     this.lbcarweight.AutoSize = true;
     this.lbcarweight.Font = new System.Drawing.Font("宋体", 46F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lbcarweight.ForeColor = System.Drawing.Color.White;
     this.lbcarweight.Location = new System.Drawing.Point(51, 73);
     this.lbcarweight.Name = "lbcarweight";
     this.lbcarweight.Size = new System.Drawing.Size(155, 62);
     this.lbcarweight.TabIndex = 17;
     this.lbcarweight.Tag = "9999";
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Font = new System.Drawing.Font("黑体", 40F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label38.Location = new System.Drawing.Point(262, 93);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(77, 54);
     this.label38.TabIndex = 15;
     //
     // btnok
     //
     this.btnok.Location = new System.Drawing.Point(103, 37);
     this.btnok.Name = "btnok";
     this.btnok.Size = new System.Drawing.Size(75, 23);
     this.btnok.TabIndex = 0;
     this.btnok.Text = "确定";
     this.btnok.UseVisualStyleBackColor = true;
     //
     // btnno
     //
     this.btnno.Location = new System.Drawing.Point(297, 37);
     this.btnno.Name = "btnno";
     this.btnno.Size = new System.Drawing.Size(75, 23);
     this.btnno.TabIndex = 1;
     this.btnno.Text = "复位";
     this.btnno.UseVisualStyleBackColor = true;
     //
     // btnexit
     //
     this.btnexit.Location = new System.Drawing.Point(468, 37);
     this.btnexit.Name = "btnexit";
     this.btnexit.Size = new System.Drawing.Size(75, 23);
     this.btnexit.TabIndex = 2;
     this.btnexit.Text = "退出";
     this.btnexit.UseVisualStyleBackColor = true;
     //
     // txt_ownername
     //
     this.txt_ownername.Location = new System.Drawing.Point(111, 73);
     this.txt_ownername.MaxLength = 20;
     this.txt_ownername.Name = "txt_ownername";
     this.txt_ownername.Size = new System.Drawing.Size(150, 21);
     this.txt_ownername.TabIndex = 2;
     //
     // label71
     //
     this.label71.AutoSize = true;
     this.label71.Location = new System.Drawing.Point(54, 48);
     this.label71.Name = "label71";
     this.label71.Size = new System.Drawing.Size(49, 14);
     this.label71.TabIndex = 9;
     //
     // txt_cartype
     //
     this.txt_cartype.Enabled = false;
     this.txt_cartype.Location = new System.Drawing.Point(111, 45);
     this.txt_cartype.MaxLength = 20;
     this.txt_cartype.Name = "txt_cartype";
     this.txt_cartype.Size = new System.Drawing.Size(150, 21);
     this.txt_cartype.TabIndex = 1;
     //
     // txt_carno
     //
     this.txt_carno.Enabled = false;
     this.txt_carno.Location = new System.Drawing.Point(111, 17);
     this.txt_carno.MaxLength = 40;
     this.txt_carno.Name = "txt_carno";
     this.txt_carno.Size = new System.Drawing.Size(150, 21);
     this.txt_carno.TabIndex = 0;
     //
     // label66
     //
     this.label66.AutoSize = true;
     this.label66.Location = new System.Drawing.Point(12, 244);
     this.label66.Name = "label66";
     this.label66.Size = new System.Drawing.Size(91, 14);
     this.label66.TabIndex = 14;
     //
     // label65
     //
     this.label65.AutoSize = true;
     this.label65.Location = new System.Drawing.Point(54, 21);
     this.label65.Name = "label65";
     this.label65.Size = new System.Drawing.Size(49, 14);
     this.label65.TabIndex = 8;
     //
     // label64
     //
     this.label64.AutoSize = true;
     this.label64.Location = new System.Drawing.Point(40, 77);
     this.label64.Name = "label64";
     this.label64.Size = new System.Drawing.Size(63, 14);
     this.label64.TabIndex = 15;
     //
     // txt_mostweight
     //
     this.txt_mostweight.Enabled = false;
     this.txt_mostweight.Location = new System.Drawing.Point(111, 241);
     this.txt_mostweight.MaxLength = 9;
     this.txt_mostweight.Name = "txt_mostweight";
     this.txt_mostweight.Size = new System.Drawing.Size(150, 21);
     this.txt_mostweight.TabIndex = 7;
     //
     // groupBox7
     //
     this.groupBox7.Location = new System.Drawing.Point(1, 117);
     this.groupBox7.Name = "groupBox7";
     this.groupBox7.Size = new System.Drawing.Size(260, 81);
     this.groupBox7.TabIndex = 23;
     this.groupBox7.TabStop = false;
     //
     // label55
     //
     this.label55.AutoSize = true;
     this.label55.Location = new System.Drawing.Point(32, 29);
     this.label55.Name = "label55";
     this.label55.Size = new System.Drawing.Size(63, 14);
     this.label55.TabIndex = 19;
     //
     // txt_carweight
     //
     this.txt_carweight.Location = new System.Drawing.Point(103, 26);
     this.txt_carweight.MaxLength = 9;
     this.txt_carweight.Name = "txt_carweight";
     this.txt_carweight.Size = new System.Drawing.Size(100, 21);
     this.txt_carweight.TabIndex = 9;
     //
     // label54
     //
     this.label54.AutoSize = true;
     this.label54.Location = new System.Drawing.Point(209, 29);
     this.label54.Name = "label54";
     this.label54.Size = new System.Drawing.Size(21, 14);
     this.label54.TabIndex = 20;
     //
     // label63
     //
     this.label63.AutoSize = true;
     this.label63.Location = new System.Drawing.Point(40, 273);
     this.label63.Name = "label63";
     this.label63.Size = new System.Drawing.Size(63, 14);
     this.label63.TabIndex = 18;
     //
     // label62
     //
     this.label62.AutoSize = true;
     this.label62.Location = new System.Drawing.Point(261, 246);
     this.label62.Name = "label62";
     this.label62.Size = new System.Drawing.Size(21, 14);
     this.label62.TabIndex = 21;
     //
     // txt_bangtime
     //
     this.txt_bangtime.Enabled = false;
     this.txt_bangtime.Location = new System.Drawing.Point(111, 269);
     this.txt_bangtime.MaxLength = 40;
     this.txt_bangtime.Name = "txt_bangtime";
     this.txt_bangtime.Size = new System.Drawing.Size(150, 21);
     this.txt_bangtime.TabIndex = 8;
     //
     // panel8
     //
     this.panel8.BackColor = System.Drawing.Color.Black;
     this.panel8.Location = new System.Drawing.Point(6, 20);
     this.panel8.Name = "panel8";
     this.panel8.Size = new System.Drawing.Size(256, 190);
     this.panel8.TabIndex = 0;
     //
     // lblcarweight
     //
     this.lblcarweight.AutoSize = true;
     this.lblcarweight.Font = new System.Drawing.Font("宋体", 46F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblcarweight.ForeColor = System.Drawing.Color.White;
     this.lblcarweight.Location = new System.Drawing.Point(51, 73);
     this.lblcarweight.Name = "lblcarweight";
     this.lblcarweight.Size = new System.Drawing.Size(155, 62);
     this.lblcarweight.TabIndex = 17;
     this.lblcarweight.Tag = "9999";
     //
     // label56
     //
     this.label56.AutoSize = true;
     this.label56.Font = new System.Drawing.Font("黑体", 40F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label56.Location = new System.Drawing.Point(262, 93);
     this.label56.Name = "label56";
     this.label56.Size = new System.Drawing.Size(77, 54);
     this.label56.TabIndex = 15;
     //
     // btnEnter
     //
     this.btnEnter.Enabled = false;
     this.btnEnter.Location = new System.Drawing.Point(103, 37);
     this.btnEnter.Name = "btnEnter";
     this.btnEnter.Size = new System.Drawing.Size(75, 23);
     this.btnEnter.TabIndex = 0;
     this.btnEnter.Text = "确定";
     this.btnEnter.UseVisualStyleBackColor = true;
     //
     // btncancel
     //
     this.btncancel.Location = new System.Drawing.Point(297, 37);
     this.btncancel.Name = "btncancel";
     this.btncancel.Size = new System.Drawing.Size(75, 23);
     this.btncancel.TabIndex = 1;
     this.btncancel.Text = "复位";
     this.btncancel.UseVisualStyleBackColor = true;
     //
     // btnclose
     //
     this.btnclose.Location = new System.Drawing.Point(468, 37);
     this.btnclose.Name = "btnclose";
     this.btnclose.Size = new System.Drawing.Size(75, 23);
     this.btnclose.TabIndex = 2;
     this.btnclose.Text = "退出";
     this.btnclose.UseVisualStyleBackColor = true;
     //
     // FM_EmptyBang
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(699, 468);
     this.Controls.Add(this.panel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.Name = "FM_EmptyBang";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "空车过磅";
     this.Load += new System.EventHandler(this.FM_EmptyBang_Load);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FM_EmptyBang_FormClosing);
     this.panel1.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.tbp_zd.ResumeLayout(false);
     this.tbp_zd.PerformLayout();
     this.panel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.msc_Auto)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.panel9.ResumeLayout(false);
     this.panel9.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.panel5.ResumeLayout(false);
     this.panel5.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.grpSQL = new System.Windows.Forms.GroupBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.grpParameters = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.dataGridView2 = new System.Windows.Forms.DataGridView();
     this.Name_Input = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.dataGridView3 = new System.Windows.Forms.DataGridView();
     this.Name_Out = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.grpSqlResult = new System.Windows.Forms.GroupBox();
     this.dgvTest = new System.Windows.Forms.DataGridView();
     this.button1 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.tvTables = new System.Windows.Forms.TreeView();
     this.label1 = new System.Windows.Forms.Label();
     this.cmbDataName = new System.Windows.Forms.ComboBox();
     this.groupBox2.SuspendLayout();
     this.grpParameters.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView3)).BeginInit();
     this.grpSqlResult.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvTest)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // grpSQL
     //
     this.grpSQL.Location = new System.Drawing.Point(264, 16);
     this.grpSQL.Name = "grpSQL";
     this.grpSQL.Size = new System.Drawing.Size(522, 128);
     this.grpSQL.TabIndex = 0;
     this.grpSQL.TabStop = false;
     this.grpSQL.Text = "SQL Statment";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.grpParameters);
     this.groupBox2.Location = new System.Drawing.Point(264, 287);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(522, 220);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Parameters";
     //
     // grpParameters
     //
     this.grpParameters.Controls.Add(this.tabPage1);
     this.grpParameters.Controls.Add(this.tabPage2);
     this.grpParameters.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grpParameters.Location = new System.Drawing.Point(3, 16);
     this.grpParameters.Name = "grpParameters";
     this.grpParameters.SelectedIndex = 0;
     this.grpParameters.Size = new System.Drawing.Size(516, 201);
     this.grpParameters.TabIndex = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.dataGridView2);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(508, 175);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Input Parameter";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // dataGridView2
     //
     this.dataGridView2.BackgroundColor = System.Drawing.SystemColors.ActiveBorder;
     this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Name_Input});
     this.dataGridView2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataGridView2.Location = new System.Drawing.Point(3, 3);
     this.dataGridView2.Name = "dataGridView2";
     this.dataGridView2.Size = new System.Drawing.Size(502, 169);
     this.dataGridView2.TabIndex = 1;
     //
     // Name_Input
     //
     this.Name_Input.HeaderText = "Name";
     this.Name_Input.Name = "Name_Input";
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.dataGridView3);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size = new System.Drawing.Size(380, 175);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "Output Parameter";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // dataGridView3
     //
     this.dataGridView3.BackgroundColor = System.Drawing.SystemColors.ControlLightLight;
     this.dataGridView3.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView3.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Name_Out});
     this.dataGridView3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataGridView3.Location = new System.Drawing.Point(3, 3);
     this.dataGridView3.Name = "dataGridView3";
     this.dataGridView3.Size = new System.Drawing.Size(532, 77);
     this.dataGridView3.TabIndex = 1;
     //
     // Name_Out
     //
     this.Name_Out.HeaderText = "Name";
     this.Name_Out.Name = "Name_Out";
     //
     // grpSqlResult
     //
     this.grpSqlResult.Controls.Add(this.dgvTest);
     this.grpSqlResult.Location = new System.Drawing.Point(264, 153);
     this.grpSqlResult.Name = "grpSqlResult";
     this.grpSqlResult.Size = new System.Drawing.Size(522, 128);
     this.grpSqlResult.TabIndex = 2;
     this.grpSqlResult.TabStop = false;
     this.grpSqlResult.Text = "Test ";
     //
     // dgvTest
     //
     this.dgvTest.BackgroundColor = System.Drawing.SystemColors.Control;
     this.dgvTest.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvTest.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvTest.Location = new System.Drawing.Point(3, 16);
     this.dgvTest.Name = "dgvTest";
     this.dgvTest.Size = new System.Drawing.Size(516, 109);
     this.dgvTest.TabIndex = 0;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(678, 536);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(59, 23);
     this.button1.TabIndex = 3;
     this.button1.Text = "&Test";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // button2
     //
     this.button2.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.button2.Location = new System.Drawing.Point(739, 536);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(59, 23);
     this.button2.TabIndex = 4;
     this.button2.Text = "&Save";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.cmbDataName);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.tvTables);
     this.groupBox1.Controls.Add(this.groupBox2);
     this.groupBox1.Controls.Add(this.grpSqlResult);
     this.groupBox1.Controls.Add(this.grpSQL);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(795, 518);
     this.groupBox1.TabIndex = 5;
     this.groupBox1.TabStop = false;
     //
     // tvTables
     //
     this.tvTables.Location = new System.Drawing.Point(6, 39);
     this.tvTables.Name = "tvTables";
     this.tvTables.Size = new System.Drawing.Size(252, 461);
     this.tvTables.TabIndex = 3;
     this.tvTables.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.tvTables_ItemDrag);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(7, 16);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(64, 13);
     this.label1.TabIndex = 4;
     this.label1.Text = "Data Name:";
     //
     // cmbDataName
     //
     this.cmbDataName.FormattingEnabled = true;
     this.cmbDataName.Location = new System.Drawing.Point(83, 12);
     this.cmbDataName.Name = "cmbDataName";
     this.cmbDataName.Size = new System.Drawing.Size(175, 21);
     this.cmbDataName.TabIndex = 5;
     this.cmbDataName.SelectedIndexChanged += new System.EventHandler(this.cmbDataName_SelectedIndexChanged);
     //
     // FrmConfugurationQuery
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(816, 568);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.button1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FrmConfugurationQuery";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "SQL Query statement";
     this.groupBox2.ResumeLayout(false);
     this.grpParameters.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit();
     this.tabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView3)).EndInit();
     this.grpSqlResult.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvTest)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmOptions));
     this.tbrMain = new System.Windows.Forms.ToolStrip();
     this.tbrMainSave = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.tbrMainClose = new System.Windows.Forms.ToolStripButton();
     this.tabPageIGenForms = new System.Windows.Forms.TabPage();
     this.chkFormsCompileOnLoad = new System.Windows.Forms.CheckBox();
     this.chkFormsPersistValues = new System.Windows.Forms.CheckBox();
     this.chkShowSpaceInsteadOfPeriod = new System.Windows.Forms.CheckBox();
     this.chkMakeLabelsOpaque = new System.Windows.Forms.CheckBox();
     this.chkShowCommas = new System.Windows.Forms.CheckBox();
     this.lblNumberOfDecimalPlaces = new System.Windows.Forms.Label();
     this.nudNumberOfDecimalPlaces = new System.Windows.Forms.NumericUpDown();
     this.chkSuppressZeroFields = new System.Windows.Forms.CheckBox();
     this.tabPageSQLOptions = new System.Windows.Forms.TabPage();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.cboSchemas = new System.Windows.Forms.ComboBox();
     this.label1 = new System.Windows.Forms.Label();
     this.chkWrapSumWithCoalesce = new System.Windows.Forms.CheckBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.label18 = new System.Windows.Forms.Label();
     this.txtSQLErrorThreshold = new System.Windows.Forms.TextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.rdbSortByFieldName = new System.Windows.Forms.RadioButton();
     this.rdbSortByFieldOrder = new System.Windows.Forms.RadioButton();
     this.tabPageImportExportOptions = new System.Windows.Forms.TabPage();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.chkExportAskAtRuntime = new System.Windows.Forms.CheckBox();
     this.label5 = new System.Windows.Forms.Label();
     this.cboExportSeparator = new System.Windows.Forms.ComboBox();
     this.label6 = new System.Windows.Forms.Label();
     this.cboExportDelimiter = new System.Windows.Forms.ComboBox();
     this.chkExportFirstRowHasFieldNames = new System.Windows.Forms.CheckBox();
     this.grpOptions = new System.Windows.Forms.GroupBox();
     this.chkImportAskAtRuntime = new System.Windows.Forms.CheckBox();
     this.label4 = new System.Windows.Forms.Label();
     this.cboImportSeparator = new System.Windows.Forms.ComboBox();
     this.label3 = new System.Windows.Forms.Label();
     this.cboImportDelimiter = new System.Windows.Forms.ComboBox();
     this.chkImportFirstRowHasFieldNames = new System.Windows.Forms.CheckBox();
     this.tabPageGeneral = new System.Windows.Forms.TabPage();
     this.groupBox7 = new System.Windows.Forms.GroupBox();
     this.label16 = new System.Windows.Forms.Label();
     this.lblColorForInvalidValue = new System.Windows.Forms.Label();
     this.cboColorForInvalidValue = new System.Windows.Forms.ComboBox();
     this.label14 = new System.Windows.Forms.Label();
     this.chkShowCaptionsOnToolbars = new System.Windows.Forms.CheckBox();
     this.grpGeneralSave = new System.Windows.Forms.GroupBox();
     this.chkConfirmOnTabClose = new System.Windows.Forms.CheckBox();
     this.chkAutoSaveOnClose = new System.Windows.Forms.CheckBox();
     this.tabPageAdmin = new System.Windows.Forms.TabPage();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.btnTestMainConnection = new System.Windows.Forms.Button();
     this.btnBuildMainConnection = new System.Windows.Forms.Button();
     this.txtMainConnection = new System.Windows.Forms.TextBox();
     this.cboMainDatabaseSystems = new System.Windows.Forms.ComboBox();
     this.label12 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.btnTestBaseConnection = new System.Windows.Forms.Button();
     this.btnBuildBaseConnection = new System.Windows.Forms.Button();
     this.txtBaseConnection = new System.Windows.Forms.TextBox();
     this.cboBaseDatabaseSystems = new System.Windows.Forms.ComboBox();
     this.label8 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.picWallpaper = new System.Windows.Forms.PictureBox();
     this.btnFind = new System.Windows.Forms.Button();
     this.label9 = new System.Windows.Forms.Label();
     this.txtWallpaper = new System.Windows.Forms.TextBox();
     this.tabOptions = new System.Windows.Forms.TabControl();
     this.tabPageVariables = new System.Windows.Forms.TabPage();
     this.dgvVariables = new System.Windows.Forms.DataGridView();
     this.VariableName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.VariableValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tabPageSymbolics = new System.Windows.Forms.TabPage();
     this.dgvSymbolics = new System.Windows.Forms.DataGridView();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tbrMain.SuspendLayout();
     this.tabPageIGenForms.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.nudNumberOfDecimalPlaces)).BeginInit();
     this.tabPageSQLOptions.SuspendLayout();
     this.groupBox6.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.tabPageImportExportOptions.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.grpOptions.SuspendLayout();
     this.tabPageGeneral.SuspendLayout();
     this.groupBox7.SuspendLayout();
     this.grpGeneralSave.SuspendLayout();
     this.tabPageAdmin.SuspendLayout();
     this.groupBox5.SuspendLayout();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picWallpaper)).BeginInit();
     this.tabOptions.SuspendLayout();
     this.tabPageVariables.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvVariables)).BeginInit();
     this.tabPageSymbolics.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvSymbolics)).BeginInit();
     this.SuspendLayout();
     //
     // tbrMain
     //
     this.tbrMain.BackColor = System.Drawing.Color.Silver;
     this.tbrMain.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.tbrMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tbrMainSave,
     this.toolStripSeparator1,
     this.tbrMainClose});
     this.tbrMain.Location = new System.Drawing.Point(0, 0);
     this.tbrMain.Name = "tbrMain";
     this.tbrMain.Size = new System.Drawing.Size(844, 38);
     this.tbrMain.TabIndex = 46;
     this.tbrMain.Text = "toolStrip1";
     //
     // tbrMainSave
     //
     this.tbrMainSave.Image = ((System.Drawing.Image)(resources.GetObject("tbrMainSave.Image")));
     this.tbrMainSave.ImageTransparentColor = System.Drawing.Color.White;
     this.tbrMainSave.Name = "tbrMainSave";
     this.tbrMainSave.Size = new System.Drawing.Size(35, 35);
     this.tbrMainSave.Text = "Save";
     this.tbrMainSave.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.tbrMainSave.Click += new System.EventHandler(this.tbrMainSave_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 38);
     //
     // tbrMainClose
     //
     this.tbrMainClose.Image = ((System.Drawing.Image)(resources.GetObject("tbrMainClose.Image")));
     this.tbrMainClose.ImageTransparentColor = System.Drawing.Color.White;
     this.tbrMainClose.Name = "tbrMainClose";
     this.tbrMainClose.Size = new System.Drawing.Size(40, 35);
     this.tbrMainClose.Text = "Close";
     this.tbrMainClose.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.tbrMainClose.Click += new System.EventHandler(this.tbrMainClose_Click);
     //
     // tabPageIGenForms
     //
     this.tabPageIGenForms.Controls.Add(this.chkFormsCompileOnLoad);
     this.tabPageIGenForms.Controls.Add(this.chkFormsPersistValues);
     this.tabPageIGenForms.Controls.Add(this.chkShowSpaceInsteadOfPeriod);
     this.tabPageIGenForms.Controls.Add(this.chkMakeLabelsOpaque);
     this.tabPageIGenForms.Controls.Add(this.chkShowCommas);
     this.tabPageIGenForms.Controls.Add(this.lblNumberOfDecimalPlaces);
     this.tabPageIGenForms.Controls.Add(this.nudNumberOfDecimalPlaces);
     this.tabPageIGenForms.Controls.Add(this.chkSuppressZeroFields);
     this.tabPageIGenForms.Location = new System.Drawing.Point(4, 26);
     this.tabPageIGenForms.Name = "tabPageIGenForms";
     this.tabPageIGenForms.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageIGenForms.Size = new System.Drawing.Size(819, 462);
     this.tabPageIGenForms.TabIndex = 6;
     this.tabPageIGenForms.Text = "Forms";
     this.tabPageIGenForms.UseVisualStyleBackColor = true;
     //
     // chkFormsCompileOnLoad
     //
     this.chkFormsCompileOnLoad.AutoSize = true;
     this.chkFormsCompileOnLoad.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkFormsCompileOnLoad.Location = new System.Drawing.Point(201, 264);
     this.chkFormsCompileOnLoad.Name = "chkFormsCompileOnLoad";
     this.chkFormsCompileOnLoad.Size = new System.Drawing.Size(170, 22);
     this.chkFormsCompileOnLoad.TabIndex = 6;
     this.chkFormsCompileOnLoad.Text = "Compile form on load";
     this.chkFormsCompileOnLoad.UseVisualStyleBackColor = true;
     //
     // chkFormsPersistValues
     //
     this.chkFormsPersistValues.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkFormsPersistValues.Location = new System.Drawing.Point(18, 225);
     this.chkFormsPersistValues.Name = "chkFormsPersistValues";
     this.chkFormsPersistValues.Size = new System.Drawing.Size(353, 22);
     this.chkFormsPersistValues.TabIndex = 5;
     this.chkFormsPersistValues.Text = "Load previously saved values when running forms";
     this.chkFormsPersistValues.UseVisualStyleBackColor = true;
     //
     // chkShowSpaceInsteadOfPeriod
     //
     this.chkShowSpaceInsteadOfPeriod.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkShowSpaceInsteadOfPeriod.Location = new System.Drawing.Point(149, 111);
     this.chkShowSpaceInsteadOfPeriod.Name = "chkShowSpaceInsteadOfPeriod";
     this.chkShowSpaceInsteadOfPeriod.Size = new System.Drawing.Size(222, 22);
     this.chkShowSpaceInsteadOfPeriod.TabIndex = 2;
     this.chkShowSpaceInsteadOfPeriod.Text = "Show space instead of period";
     this.chkShowSpaceInsteadOfPeriod.UseVisualStyleBackColor = true;
     //
     // chkMakeLabelsOpaque
     //
     this.chkMakeLabelsOpaque.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkMakeLabelsOpaque.Location = new System.Drawing.Point(212, 187);
     this.chkMakeLabelsOpaque.Name = "chkMakeLabelsOpaque";
     this.chkMakeLabelsOpaque.Size = new System.Drawing.Size(159, 22);
     this.chkMakeLabelsOpaque.TabIndex = 4;
     this.chkMakeLabelsOpaque.Text = "Make labels opaque";
     this.chkMakeLabelsOpaque.UseVisualStyleBackColor = true;
     //
     // chkShowCommas
     //
     this.chkShowCommas.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkShowCommas.Location = new System.Drawing.Point(133, 149);
     this.chkShowCommas.Name = "chkShowCommas";
     this.chkShowCommas.Size = new System.Drawing.Size(238, 22);
     this.chkShowCommas.TabIndex = 3;
     this.chkShowCommas.Text = "Show commas in numeric fields";
     this.chkShowCommas.UseVisualStyleBackColor = true;
     //
     // lblNumberOfDecimalPlaces
     //
     this.lblNumberOfDecimalPlaces.AutoSize = true;
     this.lblNumberOfDecimalPlaces.Location = new System.Drawing.Point(29, 74);
     this.lblNumberOfDecimalPlaces.Name = "lblNumberOfDecimalPlaces";
     this.lblNumberOfDecimalPlaces.Size = new System.Drawing.Size(261, 18);
     this.lblNumberOfDecimalPlaces.TabIndex = 2;
     this.lblNumberOfDecimalPlaces.Text = "Number of decimals on numeric fields:";
     //
     // nudNumberOfDecimalPlaces
     //
     this.nudNumberOfDecimalPlaces.Location = new System.Drawing.Point(307, 71);
     this.nudNumberOfDecimalPlaces.Name = "nudNumberOfDecimalPlaces";
     this.nudNumberOfDecimalPlaces.Size = new System.Drawing.Size(64, 24);
     this.nudNumberOfDecimalPlaces.TabIndex = 1;
     //
     // chkSuppressZeroFields
     //
     this.chkSuppressZeroFields.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkSuppressZeroFields.Location = new System.Drawing.Point(194, 33);
     this.chkSuppressZeroFields.Name = "chkSuppressZeroFields";
     this.chkSuppressZeroFields.Size = new System.Drawing.Size(177, 22);
     this.chkSuppressZeroFields.TabIndex = 0;
     this.chkSuppressZeroFields.Text = "Suppress Zero Fields";
     this.chkSuppressZeroFields.UseVisualStyleBackColor = true;
     //
     // tabPageSQLOptions
     //
     this.tabPageSQLOptions.Controls.Add(this.groupBox6);
     this.tabPageSQLOptions.Controls.Add(this.groupBox3);
     this.tabPageSQLOptions.Controls.Add(this.groupBox2);
     this.tabPageSQLOptions.Location = new System.Drawing.Point(4, 26);
     this.tabPageSQLOptions.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.tabPageSQLOptions.Name = "tabPageSQLOptions";
     this.tabPageSQLOptions.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.tabPageSQLOptions.Size = new System.Drawing.Size(819, 462);
     this.tabPageSQLOptions.TabIndex = 2;
     this.tabPageSQLOptions.Text = "SQL Options";
     this.tabPageSQLOptions.UseVisualStyleBackColor = true;
     //
     // groupBox6
     //
     this.groupBox6.Controls.Add(this.cboSchemas);
     this.groupBox6.Controls.Add(this.label1);
     this.groupBox6.Controls.Add(this.chkWrapSumWithCoalesce);
     this.groupBox6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.8F);
     this.groupBox6.ForeColor = System.Drawing.Color.Blue;
     this.groupBox6.Location = new System.Drawing.Point(9, 9);
     this.groupBox6.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.groupBox6.Name = "groupBox6";
     this.groupBox6.Padding = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.groupBox6.Size = new System.Drawing.Size(632, 169);
     this.groupBox6.TabIndex = 36;
     this.groupBox6.TabStop = false;
     this.groupBox6.Text = "SQL Defaults";
     //
     // cboSchemas
     //
     this.cboSchemas.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboSchemas.ForeColor = System.Drawing.SystemColors.ControlText;
     this.cboSchemas.FormattingEnabled = true;
     this.cboSchemas.Items.AddRange(new object[] {
     ",",
     ";",
     "tab",
     "~",
     "|"});
     this.cboSchemas.Location = new System.Drawing.Point(144, 73);
     this.cboSchemas.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.cboSchemas.Name = "cboSchemas";
     this.cboSchemas.Size = new System.Drawing.Size(343, 25);
     this.cboSchemas.TabIndex = 22;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F);
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location = new System.Drawing.Point(13, 76);
     this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(112, 17);
     this.label1.TabIndex = 21;
     this.label1.Text = "Default Schema:";
     //
     // chkWrapSumWithCoalesce
     //
     this.chkWrapSumWithCoalesce.AutoSize = true;
     this.chkWrapSumWithCoalesce.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkWrapSumWithCoalesce.ForeColor = System.Drawing.Color.Black;
     this.chkWrapSumWithCoalesce.Location = new System.Drawing.Point(15, 32);
     this.chkWrapSumWithCoalesce.Name = "chkWrapSumWithCoalesce";
     this.chkWrapSumWithCoalesce.Size = new System.Drawing.Size(280, 22);
     this.chkWrapSumWithCoalesce.TabIndex = 7;
     this.chkWrapSumWithCoalesce.Text = "Wrap SUM functions with COALESCE";
     this.chkWrapSumWithCoalesce.UseVisualStyleBackColor = true;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.label18);
     this.groupBox3.Controls.Add(this.txtSQLErrorThreshold);
     this.groupBox3.Controls.Add(this.label17);
     this.groupBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.8F);
     this.groupBox3.ForeColor = System.Drawing.Color.Blue;
     this.groupBox3.Location = new System.Drawing.Point(9, 326);
     this.groupBox3.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Padding = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.groupBox3.Size = new System.Drawing.Size(632, 86);
     this.groupBox3.TabIndex = 35;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Error Handling";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F);
     this.label18.ForeColor = System.Drawing.Color.Black;
     this.label18.Location = new System.Drawing.Point(196, 42);
     this.label18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(333, 17);
     this.label18.TabIndex = 21;
     this.label18.Text = "(Number of SQL errors at which to stop processing)";
     //
     // txtSQLErrorThreshold
     //
     this.txtSQLErrorThreshold.Location = new System.Drawing.Point(108, 37);
     this.txtSQLErrorThreshold.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.txtSQLErrorThreshold.Name = "txtSQLErrorThreshold";
     this.txtSQLErrorThreshold.Size = new System.Drawing.Size(80, 24);
     this.txtSQLErrorThreshold.TabIndex = 19;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F);
     this.label17.ForeColor = System.Drawing.Color.Black;
     this.label17.Location = new System.Drawing.Point(12, 42);
     this.label17.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(76, 17);
     this.label17.TabIndex = 20;
     this.label17.Text = "Threshold:";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.rdbSortByFieldName);
     this.groupBox2.Controls.Add(this.rdbSortByFieldOrder);
     this.groupBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.8F);
     this.groupBox2.ForeColor = System.Drawing.Color.Blue;
     this.groupBox2.Location = new System.Drawing.Point(9, 210);
     this.groupBox2.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Padding = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.groupBox2.Size = new System.Drawing.Size(632, 86);
     this.groupBox2.TabIndex = 34;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Field Name Sort";
     //
     // rdbSortByFieldName
     //
     this.rdbSortByFieldName.AutoSize = true;
     this.rdbSortByFieldName.Checked = true;
     this.rdbSortByFieldName.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F);
     this.rdbSortByFieldName.ForeColor = System.Drawing.SystemColors.ControlText;
     this.rdbSortByFieldName.Location = new System.Drawing.Point(16, 34);
     this.rdbSortByFieldName.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.rdbSortByFieldName.Name = "rdbSortByFieldName";
     this.rdbSortByFieldName.Size = new System.Drawing.Size(140, 21);
     this.rdbSortByFieldName.TabIndex = 7;
     this.rdbSortByFieldName.TabStop = true;
     this.rdbSortByFieldName.Text = "Sort by field name";
     this.rdbSortByFieldName.UseVisualStyleBackColor = true;
     //
     // rdbSortByFieldOrder
     //
     this.rdbSortByFieldOrder.AutoSize = true;
     this.rdbSortByFieldOrder.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F);
     this.rdbSortByFieldOrder.ForeColor = System.Drawing.SystemColors.ControlText;
     this.rdbSortByFieldOrder.Location = new System.Drawing.Point(290, 34);
     this.rdbSortByFieldOrder.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.rdbSortByFieldOrder.Name = "rdbSortByFieldOrder";
     this.rdbSortByFieldOrder.Size = new System.Drawing.Size(139, 21);
     this.rdbSortByFieldOrder.TabIndex = 6;
     this.rdbSortByFieldOrder.Text = "Sort by field order";
     this.rdbSortByFieldOrder.UseVisualStyleBackColor = true;
     //
     // tabPageImportExportOptions
     //
     this.tabPageImportExportOptions.Controls.Add(this.groupBox1);
     this.tabPageImportExportOptions.Controls.Add(this.grpOptions);
     this.tabPageImportExportOptions.Location = new System.Drawing.Point(4, 26);
     this.tabPageImportExportOptions.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.tabPageImportExportOptions.Name = "tabPageImportExportOptions";
     this.tabPageImportExportOptions.Padding = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.tabPageImportExportOptions.Size = new System.Drawing.Size(819, 462);
     this.tabPageImportExportOptions.TabIndex = 1;
     this.tabPageImportExportOptions.Text = "Import/Export Options";
     this.tabPageImportExportOptions.UseVisualStyleBackColor = true;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.chkExportAskAtRuntime);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.cboExportSeparator);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.cboExportDelimiter);
     this.groupBox1.Controls.Add(this.chkExportFirstRowHasFieldNames);
     this.groupBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.8F);
     this.groupBox1.ForeColor = System.Drawing.Color.Blue;
     this.groupBox1.Location = new System.Drawing.Point(8, 135);
     this.groupBox1.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Padding = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.groupBox1.Size = new System.Drawing.Size(632, 100);
     this.groupBox1.TabIndex = 33;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Export Defaults";
     //
     // chkExportAskAtRuntime
     //
     this.chkExportAskAtRuntime.AutoSize = true;
     this.chkExportAskAtRuntime.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkExportAskAtRuntime.ForeColor = System.Drawing.SystemColors.ControlText;
     this.chkExportAskAtRuntime.Location = new System.Drawing.Point(9, 67);
     this.chkExportAskAtRuntime.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.chkExportAskAtRuntime.Name = "chkExportAskAtRuntime";
     this.chkExportAskAtRuntime.Size = new System.Drawing.Size(206, 21);
     this.chkExportAskAtRuntime.TabIndex = 24;
     this.chkExportAskAtRuntime.Text = "Ask for file names at runtime";
     this.chkExportAskAtRuntime.UseVisualStyleBackColor = true;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label5.Location = new System.Drawing.Point(408, 36);
     this.label5.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(75, 17);
     this.label5.TabIndex = 23;
     this.label5.Text = "Separator:";
     //
     // cboExportSeparator
     //
     this.cboExportSeparator.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboExportSeparator.ForeColor = System.Drawing.SystemColors.ControlText;
     this.cboExportSeparator.FormattingEnabled = true;
     this.cboExportSeparator.Items.AddRange(new object[] {
     "\'",
     "\""});
     this.cboExportSeparator.Location = new System.Drawing.Point(512, 32);
     this.cboExportSeparator.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.cboExportSeparator.Name = "cboExportSeparator";
     this.cboExportSeparator.Size = new System.Drawing.Size(80, 25);
     this.cboExportSeparator.TabIndex = 22;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label6.Location = new System.Drawing.Point(228, 36);
     this.label6.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(67, 17);
     this.label6.TabIndex = 21;
     this.label6.Text = "Delimiter:";
     //
     // cboExportDelimiter
     //
     this.cboExportDelimiter.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboExportDelimiter.ForeColor = System.Drawing.SystemColors.ControlText;
     this.cboExportDelimiter.FormattingEnabled = true;
     this.cboExportDelimiter.Items.AddRange(new object[] {
     ",",
     ";",
     "tab",
     "~",
     "|"});
     this.cboExportDelimiter.Location = new System.Drawing.Point(324, 32);
     this.cboExportDelimiter.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.cboExportDelimiter.Name = "cboExportDelimiter";
     this.cboExportDelimiter.Size = new System.Drawing.Size(80, 25);
     this.cboExportDelimiter.TabIndex = 20;
     //
     // chkExportFirstRowHasFieldNames
     //
     this.chkExportFirstRowHasFieldNames.AutoSize = true;
     this.chkExportFirstRowHasFieldNames.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkExportFirstRowHasFieldNames.ForeColor = System.Drawing.SystemColors.ControlText;
     this.chkExportFirstRowHasFieldNames.Location = new System.Drawing.Point(9, 34);
     this.chkExportFirstRowHasFieldNames.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.chkExportFirstRowHasFieldNames.Name = "chkExportFirstRowHasFieldNames";
     this.chkExportFirstRowHasFieldNames.Size = new System.Drawing.Size(183, 21);
     this.chkExportFirstRowHasFieldNames.TabIndex = 19;
     this.chkExportFirstRowHasFieldNames.Text = "First row has field names";
     this.chkExportFirstRowHasFieldNames.UseVisualStyleBackColor = true;
     //
     // grpOptions
     //
     this.grpOptions.Controls.Add(this.chkImportAskAtRuntime);
     this.grpOptions.Controls.Add(this.label4);
     this.grpOptions.Controls.Add(this.cboImportSeparator);
     this.grpOptions.Controls.Add(this.label3);
     this.grpOptions.Controls.Add(this.cboImportDelimiter);
     this.grpOptions.Controls.Add(this.chkImportFirstRowHasFieldNames);
     this.grpOptions.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.8F);
     this.grpOptions.ForeColor = System.Drawing.Color.Blue;
     this.grpOptions.Location = new System.Drawing.Point(8, 15);
     this.grpOptions.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.grpOptions.Name = "grpOptions";
     this.grpOptions.Padding = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.grpOptions.Size = new System.Drawing.Size(632, 103);
     this.grpOptions.TabIndex = 32;
     this.grpOptions.TabStop = false;
     this.grpOptions.Text = "Import Defaults";
     //
     // chkImportAskAtRuntime
     //
     this.chkImportAskAtRuntime.AutoSize = true;
     this.chkImportAskAtRuntime.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkImportAskAtRuntime.ForeColor = System.Drawing.SystemColors.ControlText;
     this.chkImportAskAtRuntime.Location = new System.Drawing.Point(9, 67);
     this.chkImportAskAtRuntime.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.chkImportAskAtRuntime.Name = "chkImportAskAtRuntime";
     this.chkImportAskAtRuntime.Size = new System.Drawing.Size(167, 21);
     this.chkImportAskAtRuntime.TabIndex = 24;
     this.chkImportAskAtRuntime.Text = "Ask for files at runtime";
     this.chkImportAskAtRuntime.UseVisualStyleBackColor = true;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label4.Location = new System.Drawing.Point(408, 36);
     this.label4.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(75, 17);
     this.label4.TabIndex = 23;
     this.label4.Text = "Separator:";
     //
     // cboImportSeparator
     //
     this.cboImportSeparator.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboImportSeparator.ForeColor = System.Drawing.SystemColors.ControlText;
     this.cboImportSeparator.FormattingEnabled = true;
     this.cboImportSeparator.Items.AddRange(new object[] {
     "\'",
     "\""});
     this.cboImportSeparator.Location = new System.Drawing.Point(512, 30);
     this.cboImportSeparator.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.cboImportSeparator.Name = "cboImportSeparator";
     this.cboImportSeparator.Size = new System.Drawing.Size(80, 25);
     this.cboImportSeparator.TabIndex = 22;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label3.Location = new System.Drawing.Point(228, 35);
     this.label3.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(67, 17);
     this.label3.TabIndex = 21;
     this.label3.Text = "Delimiter:";
     //
     // cboImportDelimiter
     //
     this.cboImportDelimiter.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboImportDelimiter.ForeColor = System.Drawing.SystemColors.ControlText;
     this.cboImportDelimiter.FormattingEnabled = true;
     this.cboImportDelimiter.Items.AddRange(new object[] {
     ",",
     ";",
     "tab",
     "~",
     "|"});
     this.cboImportDelimiter.Location = new System.Drawing.Point(324, 30);
     this.cboImportDelimiter.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.cboImportDelimiter.Name = "cboImportDelimiter";
     this.cboImportDelimiter.Size = new System.Drawing.Size(80, 25);
     this.cboImportDelimiter.TabIndex = 20;
     //
     // chkImportFirstRowHasFieldNames
     //
     this.chkImportFirstRowHasFieldNames.AutoSize = true;
     this.chkImportFirstRowHasFieldNames.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkImportFirstRowHasFieldNames.ForeColor = System.Drawing.SystemColors.ControlText;
     this.chkImportFirstRowHasFieldNames.Location = new System.Drawing.Point(9, 34);
     this.chkImportFirstRowHasFieldNames.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.chkImportFirstRowHasFieldNames.Name = "chkImportFirstRowHasFieldNames";
     this.chkImportFirstRowHasFieldNames.Size = new System.Drawing.Size(183, 21);
     this.chkImportFirstRowHasFieldNames.TabIndex = 19;
     this.chkImportFirstRowHasFieldNames.Text = "First row has field names";
     this.chkImportFirstRowHasFieldNames.UseVisualStyleBackColor = true;
     //
     // tabPageGeneral
     //
     this.tabPageGeneral.Controls.Add(this.groupBox7);
     this.tabPageGeneral.Controls.Add(this.grpGeneralSave);
     this.tabPageGeneral.Location = new System.Drawing.Point(4, 26);
     this.tabPageGeneral.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.tabPageGeneral.Name = "tabPageGeneral";
     this.tabPageGeneral.Size = new System.Drawing.Size(819, 462);
     this.tabPageGeneral.TabIndex = 3;
     this.tabPageGeneral.Text = "General";
     this.tabPageGeneral.UseVisualStyleBackColor = true;
     //
     // groupBox7
     //
     this.groupBox7.Controls.Add(this.label16);
     this.groupBox7.Controls.Add(this.lblColorForInvalidValue);
     this.groupBox7.Controls.Add(this.cboColorForInvalidValue);
     this.groupBox7.Controls.Add(this.label14);
     this.groupBox7.Controls.Add(this.chkShowCaptionsOnToolbars);
     this.groupBox7.ForeColor = System.Drawing.Color.Blue;
     this.groupBox7.Location = new System.Drawing.Point(10, 138);
     this.groupBox7.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.groupBox7.Name = "groupBox7";
     this.groupBox7.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.groupBox7.Size = new System.Drawing.Size(632, 246);
     this.groupBox7.TabIndex = 5;
     this.groupBox7.TabStop = false;
     this.groupBox7.Text = "Display";
     //
     // label16
     //
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
     this.label16.ForeColor = System.Drawing.Color.Black;
     this.label16.Location = new System.Drawing.Point(289, 117);
     this.label16.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(106, 21);
     this.label16.TabIndex = 24;
     this.label16.Text = "Color Preview:";
     this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.label16.Visible = false;
     //
     // lblColorForInvalidValue
     //
     this.lblColorForInvalidValue.Location = new System.Drawing.Point(403, 117);
     this.lblColorForInvalidValue.Name = "lblColorForInvalidValue";
     this.lblColorForInvalidValue.Size = new System.Drawing.Size(149, 21);
     this.lblColorForInvalidValue.TabIndex = 23;
     //
     // cboColorForInvalidValue
     //
     this.cboColorForInvalidValue.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboColorForInvalidValue.FormattingEnabled = true;
     this.cboColorForInvalidValue.Location = new System.Drawing.Point(292, 79);
     this.cboColorForInvalidValue.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.cboColorForInvalidValue.Name = "cboColorForInvalidValue";
     this.cboColorForInvalidValue.Size = new System.Drawing.Size(260, 25);
     this.cboColorForInvalidValue.TabIndex = 22;
     this.cboColorForInvalidValue.Visible = false;
     this.cboColorForInvalidValue.SelectedIndexChanged += new System.EventHandler(this.cboColorForInvalidValue_SelectedIndexChanged);
     //
     // label14
     //
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F);
     this.label14.ForeColor = System.Drawing.Color.Black;
     this.label14.Location = new System.Drawing.Point(17, 84);
     this.label14.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(266, 21);
     this.label14.TabIndex = 21;
     this.label14.Text = "Highlight Color for Invalid Values:";
     this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.label14.Visible = false;
     //
     // chkShowCaptionsOnToolbars
     //
     this.chkShowCaptionsOnToolbars.AutoSize = true;
     this.chkShowCaptionsOnToolbars.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F);
     this.chkShowCaptionsOnToolbars.ForeColor = System.Drawing.SystemColors.ControlText;
     this.chkShowCaptionsOnToolbars.Location = new System.Drawing.Point(20, 33);
     this.chkShowCaptionsOnToolbars.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.chkShowCaptionsOnToolbars.Name = "chkShowCaptionsOnToolbars";
     this.chkShowCaptionsOnToolbars.Size = new System.Drawing.Size(193, 21);
     this.chkShowCaptionsOnToolbars.TabIndex = 0;
     this.chkShowCaptionsOnToolbars.Text = "Show captions on toolbars";
     this.chkShowCaptionsOnToolbars.UseVisualStyleBackColor = true;
     //
     // grpGeneralSave
     //
     this.grpGeneralSave.Controls.Add(this.chkConfirmOnTabClose);
     this.grpGeneralSave.Controls.Add(this.chkAutoSaveOnClose);
     this.grpGeneralSave.ForeColor = System.Drawing.Color.Blue;
     this.grpGeneralSave.Location = new System.Drawing.Point(10, 6);
     this.grpGeneralSave.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.grpGeneralSave.Name = "grpGeneralSave";
     this.grpGeneralSave.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.grpGeneralSave.Size = new System.Drawing.Size(632, 120);
     this.grpGeneralSave.TabIndex = 4;
     this.grpGeneralSave.TabStop = false;
     this.grpGeneralSave.Text = "Saving";
     //
     // chkConfirmOnTabClose
     //
     this.chkConfirmOnTabClose.AutoSize = true;
     this.chkConfirmOnTabClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F);
     this.chkConfirmOnTabClose.ForeColor = System.Drawing.SystemColors.ControlText;
     this.chkConfirmOnTabClose.Location = new System.Drawing.Point(20, 33);
     this.chkConfirmOnTabClose.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.chkConfirmOnTabClose.Name = "chkConfirmOnTabClose";
     this.chkConfirmOnTabClose.Size = new System.Drawing.Size(324, 21);
     this.chkConfirmOnTabClose.TabIndex = 1;
     this.chkConfirmOnTabClose.Text = "Confirm on Tab close even if no changes made";
     this.chkConfirmOnTabClose.UseVisualStyleBackColor = true;
     //
     // chkAutoSaveOnClose
     //
     this.chkAutoSaveOnClose.AutoSize = true;
     this.chkAutoSaveOnClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F);
     this.chkAutoSaveOnClose.ForeColor = System.Drawing.SystemColors.ControlText;
     this.chkAutoSaveOnClose.Location = new System.Drawing.Point(20, 72);
     this.chkAutoSaveOnClose.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.chkAutoSaveOnClose.Name = "chkAutoSaveOnClose";
     this.chkAutoSaveOnClose.Size = new System.Drawing.Size(147, 21);
     this.chkAutoSaveOnClose.TabIndex = 2;
     this.chkAutoSaveOnClose.Text = "Auto save on close";
     this.chkAutoSaveOnClose.UseVisualStyleBackColor = true;
     //
     // tabPageAdmin
     //
     this.tabPageAdmin.Controls.Add(this.groupBox5);
     this.tabPageAdmin.Controls.Add(this.groupBox4);
     this.tabPageAdmin.Controls.Add(this.picWallpaper);
     this.tabPageAdmin.Controls.Add(this.btnFind);
     this.tabPageAdmin.Controls.Add(this.label9);
     this.tabPageAdmin.Controls.Add(this.txtWallpaper);
     this.tabPageAdmin.Location = new System.Drawing.Point(4, 26);
     this.tabPageAdmin.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.tabPageAdmin.Name = "tabPageAdmin";
     this.tabPageAdmin.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.tabPageAdmin.Size = new System.Drawing.Size(819, 462);
     this.tabPageAdmin.TabIndex = 4;
     this.tabPageAdmin.Text = "Admin";
     this.tabPageAdmin.UseVisualStyleBackColor = true;
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.btnTestMainConnection);
     this.groupBox5.Controls.Add(this.btnBuildMainConnection);
     this.groupBox5.Controls.Add(this.txtMainConnection);
     this.groupBox5.Controls.Add(this.cboMainDatabaseSystems);
     this.groupBox5.Controls.Add(this.label12);
     this.groupBox5.Controls.Add(this.label13);
     this.groupBox5.ForeColor = System.Drawing.Color.Blue;
     this.groupBox5.Location = new System.Drawing.Point(8, 103);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(791, 74);
     this.groupBox5.TabIndex = 23;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Main Data Connection";
     //
     // btnTestMainConnection
     //
     this.btnTestMainConnection.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnTestMainConnection.ForeColor = System.Drawing.Color.Black;
     this.btnTestMainConnection.Location = new System.Drawing.Point(724, 26);
     this.btnTestMainConnection.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.btnTestMainConnection.Name = "btnTestMainConnection";
     this.btnTestMainConnection.Size = new System.Drawing.Size(60, 34);
     this.btnTestMainConnection.TabIndex = 22;
     this.btnTestMainConnection.Text = "Test";
     this.btnTestMainConnection.UseVisualStyleBackColor = true;
     this.btnTestMainConnection.Click += new System.EventHandler(this.btnTestMainConnection_Click);
     //
     // btnBuildMainConnection
     //
     this.btnBuildMainConnection.Enabled = false;
     this.btnBuildMainConnection.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnBuildMainConnection.ForeColor = System.Drawing.Color.Black;
     this.btnBuildMainConnection.Location = new System.Drawing.Point(731, 40);
     this.btnBuildMainConnection.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.btnBuildMainConnection.Name = "btnBuildMainConnection";
     this.btnBuildMainConnection.Size = new System.Drawing.Size(60, 34);
     this.btnBuildMainConnection.TabIndex = 5;
     this.btnBuildMainConnection.Text = "Build";
     this.btnBuildMainConnection.UseVisualStyleBackColor = true;
     this.btnBuildMainConnection.Visible = false;
     //
     // txtMainConnection
     //
     this.txtMainConnection.Location = new System.Drawing.Point(317, 28);
     this.txtMainConnection.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.txtMainConnection.Name = "txtMainConnection";
     this.txtMainConnection.Size = new System.Drawing.Size(399, 24);
     this.txtMainConnection.TabIndex = 4;
     //
     // cboMainDatabaseSystems
     //
     this.cboMainDatabaseSystems.FormattingEnabled = true;
     this.cboMainDatabaseSystems.Location = new System.Drawing.Point(71, 23);
     this.cboMainDatabaseSystems.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.cboMainDatabaseSystems.Name = "cboMainDatabaseSystems";
     this.cboMainDatabaseSystems.Size = new System.Drawing.Size(122, 25);
     this.cboMainDatabaseSystems.TabIndex = 3;
     //
     // label12
     //
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F);
     this.label12.ForeColor = System.Drawing.Color.Black;
     this.label12.Location = new System.Drawing.Point(2, 33);
     this.label12.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(68, 21);
     this.label12.TabIndex = 20;
     this.label12.Text = "DBMS:";
     this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F);
     this.label13.ForeColor = System.Drawing.Color.Black;
     this.label13.Location = new System.Drawing.Point(211, 33);
     this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(83, 17);
     this.label13.TabIndex = 18;
     this.label13.Text = "Connection:";
     this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.btnTestBaseConnection);
     this.groupBox4.Controls.Add(this.btnBuildBaseConnection);
     this.groupBox4.Controls.Add(this.txtBaseConnection);
     this.groupBox4.Controls.Add(this.cboBaseDatabaseSystems);
     this.groupBox4.Controls.Add(this.label8);
     this.groupBox4.Controls.Add(this.label7);
     this.groupBox4.ForeColor = System.Drawing.Color.Blue;
     this.groupBox4.Location = new System.Drawing.Point(8, 23);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(791, 74);
     this.groupBox4.TabIndex = 22;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "IGenFuels Application (Base) Connection";
     //
     // btnTestBaseConnection
     //
     this.btnTestBaseConnection.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnTestBaseConnection.ForeColor = System.Drawing.Color.Black;
     this.btnTestBaseConnection.Location = new System.Drawing.Point(724, 25);
     this.btnTestBaseConnection.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.btnTestBaseConnection.Name = "btnTestBaseConnection";
     this.btnTestBaseConnection.Size = new System.Drawing.Size(60, 34);
     this.btnTestBaseConnection.TabIndex = 21;
     this.btnTestBaseConnection.Text = "Test";
     this.btnTestBaseConnection.UseVisualStyleBackColor = true;
     this.btnTestBaseConnection.Click += new System.EventHandler(this.btnTestBaseConnection_Click);
     //
     // btnBuildBaseConnection
     //
     this.btnBuildBaseConnection.Enabled = false;
     this.btnBuildBaseConnection.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnBuildBaseConnection.ForeColor = System.Drawing.Color.Black;
     this.btnBuildBaseConnection.Location = new System.Drawing.Point(731, 40);
     this.btnBuildBaseConnection.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.btnBuildBaseConnection.Name = "btnBuildBaseConnection";
     this.btnBuildBaseConnection.Size = new System.Drawing.Size(60, 34);
     this.btnBuildBaseConnection.TabIndex = 2;
     this.btnBuildBaseConnection.Text = "Build";
     this.btnBuildBaseConnection.UseVisualStyleBackColor = true;
     this.btnBuildBaseConnection.Visible = false;
     //
     // txtBaseConnection
     //
     this.txtBaseConnection.Location = new System.Drawing.Point(317, 27);
     this.txtBaseConnection.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.txtBaseConnection.Name = "txtBaseConnection";
     this.txtBaseConnection.Size = new System.Drawing.Size(399, 24);
     this.txtBaseConnection.TabIndex = 1;
     //
     // cboBaseDatabaseSystems
     //
     this.cboBaseDatabaseSystems.FormattingEnabled = true;
     this.cboBaseDatabaseSystems.Location = new System.Drawing.Point(71, 24);
     this.cboBaseDatabaseSystems.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.cboBaseDatabaseSystems.Name = "cboBaseDatabaseSystems";
     this.cboBaseDatabaseSystems.Size = new System.Drawing.Size(122, 25);
     this.cboBaseDatabaseSystems.TabIndex = 0;
     //
     // label8
     //
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F);
     this.label8.ForeColor = System.Drawing.Color.Black;
     this.label8.Location = new System.Drawing.Point(2, 33);
     this.label8.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(68, 21);
     this.label8.TabIndex = 20;
     this.label8.Text = "DBMS:";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F);
     this.label7.ForeColor = System.Drawing.Color.Black;
     this.label7.Location = new System.Drawing.Point(211, 33);
     this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(83, 17);
     this.label7.TabIndex = 18;
     this.label7.Text = "Connection:";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // picWallpaper
     //
     this.picWallpaper.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.picWallpaper.Location = new System.Drawing.Point(70, 222);
     this.picWallpaper.Name = "picWallpaper";
     this.picWallpaper.Size = new System.Drawing.Size(574, 208);
     this.picWallpaper.TabIndex = 21;
     this.picWallpaper.TabStop = false;
     //
     // btnFind
     //
     this.btnFind.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnFind.Location = new System.Drawing.Point(732, 186);
     this.btnFind.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.btnFind.Name = "btnFind";
     this.btnFind.Size = new System.Drawing.Size(60, 34);
     this.btnFind.TabIndex = 7;
     this.btnFind.Text = "Find";
     this.btnFind.UseVisualStyleBackColor = true;
     this.btnFind.Click += new System.EventHandler(this.btnFind_Click);
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F);
     this.label9.Location = new System.Drawing.Point(14, 196);
     this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(76, 17);
     this.label9.TabIndex = 19;
     this.label9.Text = "Wallpaper:";
     //
     // txtWallpaper
     //
     this.txtWallpaper.Location = new System.Drawing.Point(111, 192);
     this.txtWallpaper.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.txtWallpaper.Name = "txtWallpaper";
     this.txtWallpaper.Size = new System.Drawing.Size(613, 24);
     this.txtWallpaper.TabIndex = 6;
     //
     // tabOptions
     //
     this.tabOptions.Controls.Add(this.tabPageAdmin);
     this.tabOptions.Controls.Add(this.tabPageGeneral);
     this.tabOptions.Controls.Add(this.tabPageImportExportOptions);
     this.tabOptions.Controls.Add(this.tabPageSQLOptions);
     this.tabOptions.Controls.Add(this.tabPageIGenForms);
     this.tabOptions.Controls.Add(this.tabPageVariables);
     this.tabOptions.Controls.Add(this.tabPageSymbolics);
     this.tabOptions.Location = new System.Drawing.Point(4, 63);
     this.tabOptions.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.tabOptions.Name = "tabOptions";
     this.tabOptions.SelectedIndex = 0;
     this.tabOptions.Size = new System.Drawing.Size(827, 492);
     this.tabOptions.TabIndex = 4;
     //
     // tabPageVariables
     //
     this.tabPageVariables.Controls.Add(this.dgvVariables);
     this.tabPageVariables.Location = new System.Drawing.Point(4, 26);
     this.tabPageVariables.Name = "tabPageVariables";
     this.tabPageVariables.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageVariables.Size = new System.Drawing.Size(819, 462);
     this.tabPageVariables.TabIndex = 7;
     this.tabPageVariables.Text = "Variables";
     this.tabPageVariables.UseVisualStyleBackColor = true;
     //
     // dgvVariables
     //
     this.dgvVariables.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvVariables.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.VariableName,
     this.VariableValue});
     this.dgvVariables.Location = new System.Drawing.Point(6, 6);
     this.dgvVariables.Name = "dgvVariables";
     this.dgvVariables.Size = new System.Drawing.Size(807, 450);
     this.dgvVariables.TabIndex = 0;
     //
     // VariableName
     //
     this.VariableName.HeaderText = "Name";
     this.VariableName.Name = "VariableName";
     this.VariableName.Width = 200;
     //
     // VariableValue
     //
     this.VariableValue.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.VariableValue.HeaderText = "Value";
     this.VariableValue.Name = "VariableValue";
     //
     // tabPageSymbolics
     //
     this.tabPageSymbolics.Controls.Add(this.dgvSymbolics);
     this.tabPageSymbolics.Location = new System.Drawing.Point(4, 26);
     this.tabPageSymbolics.Name = "tabPageSymbolics";
     this.tabPageSymbolics.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageSymbolics.Size = new System.Drawing.Size(819, 462);
     this.tabPageSymbolics.TabIndex = 8;
     this.tabPageSymbolics.Text = "Symbolics";
     this.tabPageSymbolics.UseVisualStyleBackColor = true;
     //
     // dgvSymbolics
     //
     this.dgvSymbolics.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvSymbolics.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewTextBoxColumn1,
     this.dataGridViewTextBoxColumn2});
     this.dgvSymbolics.Location = new System.Drawing.Point(6, 6);
     this.dgvSymbolics.Name = "dgvSymbolics";
     this.dgvSymbolics.Size = new System.Drawing.Size(807, 450);
     this.dgvSymbolics.TabIndex = 1;
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.HeaderText = "Name";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.Width = 200;
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.dataGridViewTextBoxColumn2.HeaderText = "Value";
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     //
     // frmOptions
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(844, 570);
     this.Controls.Add(this.tbrMain);
     this.Controls.Add(this.tabOptions);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmOptions";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.Text = "Configuration Settings";
     this.tbrMain.ResumeLayout(false);
     this.tbrMain.PerformLayout();
     this.tabPageIGenForms.ResumeLayout(false);
     this.tabPageIGenForms.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.nudNumberOfDecimalPlaces)).EndInit();
     this.tabPageSQLOptions.ResumeLayout(false);
     this.groupBox6.ResumeLayout(false);
     this.groupBox6.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.tabPageImportExportOptions.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.grpOptions.ResumeLayout(false);
     this.grpOptions.PerformLayout();
     this.tabPageGeneral.ResumeLayout(false);
     this.groupBox7.ResumeLayout(false);
     this.groupBox7.PerformLayout();
     this.grpGeneralSave.ResumeLayout(false);
     this.grpGeneralSave.PerformLayout();
     this.tabPageAdmin.ResumeLayout(false);
     this.tabPageAdmin.PerformLayout();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picWallpaper)).EndInit();
     this.tabOptions.ResumeLayout(false);
     this.tabPageVariables.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvVariables)).EndInit();
     this.tabPageSymbolics.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvSymbolics)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 51
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmRss));
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tbRSSFeeds = new System.Windows.Forms.TabPage();
     this.tbCategories = new System.Windows.Forms.TabPage();
     this.tbTools = new System.Windows.Forms.TabPage();
     this.tbTest = new System.Windows.Forms.TabPage();
     this.tpUpdateData = new System.Windows.Forms.TabPage();
     this.ucNews = new RSSFeeds.UCRSSFeeds();
     this.ucCat = new RSSFeeds.UCCategories();
     this.ucTools1 = new RSSFeeds.UCTools();
     this.ucTest1 = new RSSFeeds.UCTest();
     this.ucUpdateD = new RSSFeeds.UCUpdateData();
     this.tabControl1.SuspendLayout();
     this.tbRSSFeeds.SuspendLayout();
     this.tbCategories.SuspendLayout();
     this.tbTools.SuspendLayout();
     this.tbTest.SuspendLayout();
     this.tpUpdateData.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tbRSSFeeds);
     this.tabControl1.Controls.Add(this.tbCategories);
     this.tabControl1.Controls.Add(this.tpUpdateData);
     this.tabControl1.Controls.Add(this.tbTools);
     this.tabControl1.Controls.Add(this.tbTest);
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location = new System.Drawing.Point(0, 0);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(754, 410);
     this.tabControl1.TabIndex = 8;
     //
     // tbRSSFeeds
     //
     this.tbRSSFeeds.Controls.Add(this.ucNews);
     this.tbRSSFeeds.Location = new System.Drawing.Point(4, 22);
     this.tbRSSFeeds.Name = "tbRSSFeeds";
     this.tbRSSFeeds.Padding = new System.Windows.Forms.Padding(3);
     this.tbRSSFeeds.Size = new System.Drawing.Size(746, 384);
     this.tbRSSFeeds.TabIndex = 0;
     this.tbRSSFeeds.Text = "Новини";
     this.tbRSSFeeds.UseVisualStyleBackColor = true;
     //
     // tbCategories
     //
     this.tbCategories.Controls.Add(this.ucCat);
     this.tbCategories.Location = new System.Drawing.Point(4, 22);
     this.tbCategories.Name = "tbCategories";
     this.tbCategories.Size = new System.Drawing.Size(746, 384);
     this.tbCategories.TabIndex = 2;
     this.tbCategories.Text = "Категории";
     this.tbCategories.UseVisualStyleBackColor = true;
     //
     // tbTools
     //
     this.tbTools.Controls.Add(this.ucTools1);
     this.tbTools.Location = new System.Drawing.Point(4, 22);
     this.tbTools.Name = "tbTools";
     this.tbTools.Size = new System.Drawing.Size(746, 384);
     this.tbTools.TabIndex = 3;
     this.tbTools.Text = "Tools";
     this.tbTools.UseVisualStyleBackColor = true;
     //
     // tbTest
     //
     this.tbTest.Controls.Add(this.ucTest1);
     this.tbTest.Location = new System.Drawing.Point(4, 22);
     this.tbTest.Name = "tbTest";
     this.tbTest.Padding = new System.Windows.Forms.Padding(3);
     this.tbTest.Size = new System.Drawing.Size(746, 384);
     this.tbTest.TabIndex = 1;
     this.tbTest.Text = "Test";
     this.tbTest.UseVisualStyleBackColor = true;
     //
     // tpUpdateData
     //
     this.tpUpdateData.Controls.Add(this.ucUpdateD);
     this.tpUpdateData.Location = new System.Drawing.Point(4, 22);
     this.tpUpdateData.Name = "tpUpdateData";
     this.tpUpdateData.Size = new System.Drawing.Size(746, 384);
     this.tpUpdateData.TabIndex = 4;
     this.tpUpdateData.Text = "Update";
     this.tpUpdateData.UseVisualStyleBackColor = true;
     //
     // ucNews
     //
     this.ucNews.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ucNews.Location = new System.Drawing.Point(3, 3);
     this.ucNews.Name = "ucNews";
     this.ucNews.Size = new System.Drawing.Size(740, 378);
     this.ucNews.TabIndex = 0;
     //
     // ucCat
     //
     this.ucCat.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ucCat.Location = new System.Drawing.Point(0, 0);
     this.ucCat.Name = "ucCat";
     this.ucCat.Size = new System.Drawing.Size(746, 384);
     this.ucCat.TabIndex = 0;
     //
     // ucTools1
     //
     this.ucTools1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ucTools1.Location = new System.Drawing.Point(0, 0);
     this.ucTools1.Name = "ucTools1";
     this.ucTools1.Size = new System.Drawing.Size(746, 384);
     this.ucTools1.TabIndex = 0;
     //
     // ucTest1
     //
     this.ucTest1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ucTest1.Location = new System.Drawing.Point(3, 3);
     this.ucTest1.Name = "ucTest1";
     this.ucTest1.Size = new System.Drawing.Size(740, 378);
     this.ucTest1.TabIndex = 0;
     //
     // ucUpdateD
     //
     this.ucUpdateD.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ucUpdateD.Location = new System.Drawing.Point(0, 0);
     this.ucUpdateD.Name = "ucUpdateD";
     this.ucUpdateD.Size = new System.Drawing.Size(746, 384);
     this.ucUpdateD.TabIndex = 0;
     //
     // frmRss
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(754, 410);
     this.Controls.Add(this.tabControl1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmRss";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "RSS News";
     this.tabControl1.ResumeLayout(false);
     this.tbRSSFeeds.ResumeLayout(false);
     this.tbCategories.ResumeLayout(false);
     this.tbTools.ResumeLayout(false);
     this.tbTest.ResumeLayout(false);
     this.tpUpdateData.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 52
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     ZForge.Controls.XPTable.Models.DataSourceColumnBinder dataSourceColumnBinder1 = new ZForge.Controls.XPTable.Models.DataSourceColumnBinder();
     this.panelTop = new System.Windows.Forms.Panel();
     this.labelTop = new System.Windows.Forms.Label();
     this.panelBottom = new System.Windows.Forms.Panel();
     this.buttonOk = new System.Windows.Forms.Button();
     this.panelMain = new System.Windows.Forms.Panel();
     this.tabControl = new System.Windows.Forms.TabControl();
     this.tabPagePlugInList = new System.Windows.Forms.TabPage();
     this.tablePlugIns = new ZForge.Controls.XPTable.Models.Table();
     this.panelTop.SuspendLayout();
     this.panelBottom.SuspendLayout();
     this.panelMain.SuspendLayout();
     this.tabControl.SuspendLayout();
     this.tabPagePlugInList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tablePlugIns)).BeginInit();
     this.SuspendLayout();
     //
     // panelTop
     //
     this.panelTop.Controls.Add(this.labelTop);
     this.panelTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelTop.Location = new System.Drawing.Point(0, 0);
     this.panelTop.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.panelTop.Name = "panelTop";
     this.panelTop.Size = new System.Drawing.Size(527, 35);
     this.panelTop.TabIndex = 0;
     //
     // labelTop
     //
     this.labelTop.AutoSize = true;
     this.labelTop.Font = new System.Drawing.Font("Microsoft YaHei", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelTop.Location = new System.Drawing.Point(3, 10);
     this.labelTop.Name = "labelTop";
     this.labelTop.Size = new System.Drawing.Size(92, 17);
     this.labelTop.TabIndex = 0;
     this.labelTop.Text = "已安装的插件:";
     //
     // panelBottom
     //
     this.panelBottom.Controls.Add(this.buttonOk);
     this.panelBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelBottom.Location = new System.Drawing.Point(0, 297);
     this.panelBottom.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.panelBottom.Name = "panelBottom";
     this.panelBottom.Size = new System.Drawing.Size(527, 73);
     this.panelBottom.TabIndex = 1;
     //
     // buttonOk
     //
     this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.buttonOk.Image = global::ZForge.Motion.Forms.Properties.Resources.ok;
     this.buttonOk.Location = new System.Drawing.Point(214, 7);
     this.buttonOk.Name = "buttonOk";
     this.buttonOk.Size = new System.Drawing.Size(86, 47);
     this.buttonOk.TabIndex = 0;
     this.buttonOk.Text = "关闭";
     this.buttonOk.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.buttonOk.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.buttonOk.UseVisualStyleBackColor = true;
     //
     // panelMain
     //
     this.panelMain.Controls.Add(this.tabControl);
     this.panelMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelMain.Location = new System.Drawing.Point(0, 35);
     this.panelMain.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.panelMain.Name = "panelMain";
     this.panelMain.Size = new System.Drawing.Size(527, 262);
     this.panelMain.TabIndex = 2;
     //
     // tabControl
     //
     this.tabControl.Controls.Add(this.tabPagePlugInList);
     this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl.Location = new System.Drawing.Point(0, 0);
     this.tabControl.Name = "tabControl";
     this.tabControl.SelectedIndex = 0;
     this.tabControl.Size = new System.Drawing.Size(527, 262);
     this.tabControl.TabIndex = 0;
     //
     // tabPagePlugInList
     //
     this.tabPagePlugInList.Controls.Add(this.tablePlugIns);
     this.tabPagePlugInList.Location = new System.Drawing.Point(4, 26);
     this.tabPagePlugInList.Name = "tabPagePlugInList";
     this.tabPagePlugInList.Padding = new System.Windows.Forms.Padding(3);
     this.tabPagePlugInList.Size = new System.Drawing.Size(519, 232);
     this.tabPagePlugInList.TabIndex = 0;
     this.tabPagePlugInList.Text = "插件列表";
     this.tabPagePlugInList.UseVisualStyleBackColor = true;
     //
     // tablePlugIns
     //
     this.tablePlugIns.BorderColor = System.Drawing.Color.Black;
     this.tablePlugIns.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.tablePlugIns.DataMember = null;
     this.tablePlugIns.DataSourceColumnBinder = dataSourceColumnBinder1;
     this.tablePlugIns.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tablePlugIns.FullRowSelect = true;
     this.tablePlugIns.HeaderFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tablePlugIns.Location = new System.Drawing.Point(3, 3);
     this.tablePlugIns.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.tablePlugIns.Name = "tablePlugIns";
     this.tablePlugIns.Size = new System.Drawing.Size(513, 226);
     this.tablePlugIns.TabIndex = 1;
     this.tablePlugIns.TopIndex = -1;
     this.tablePlugIns.TopItem = null;
     this.tablePlugIns.UnfocusedBorderColor = System.Drawing.Color.Black;
     //
     // PlugInForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(527, 370);
     this.Controls.Add(this.panelMain);
     this.Controls.Add(this.panelBottom);
     this.Controls.Add(this.panelTop);
     this.Font = new System.Drawing.Font("Microsoft YaHei", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name = "PlugInForm";
     this.ShowInTaskbar = false;
     this.Text = "插件浏览";
     this.panelTop.ResumeLayout(false);
     this.panelTop.PerformLayout();
     this.panelBottom.ResumeLayout(false);
     this.panelMain.ResumeLayout(false);
     this.tabControl.ResumeLayout(false);
     this.tabPagePlugInList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tablePlugIns)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 53
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.CancelBtn = new System.Windows.Forms.Button();
     this.SaveBtn = new System.Windows.Forms.Button();
     this.QuickSettingsBtn = new System.Windows.Forms.Button();
     this.RequestSettingsbtn = new System.Windows.Forms.Button();
     this.OptionTabControl = new System.Windows.Forms.TabControl();
     this.GameTab = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel8 = new System.Windows.Forms.TableLayoutPanel();
     this.SkinList = new System.Windows.Forms.ComboBox();
     this.label4 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.Antialias = new System.Windows.Forms.NumericUpDown();
     this.EnableSleeveLoading = new System.Windows.Forms.CheckBox();
     this.tableLayoutPanel7 = new System.Windows.Forms.TableLayoutPanel();
     this.AutoPlacing = new System.Windows.Forms.CheckBox();
     this.RandomPlacing = new System.Windows.Forms.CheckBox();
     this.Fullscreen = new System.Windows.Forms.CheckBox();
     this.Enabled3d = new System.Windows.Forms.CheckBox();
     this.EnableMusic = new System.Windows.Forms.CheckBox();
     this.AutoChain = new System.Windows.Forms.CheckBox();
     this.EnableSound = new System.Windows.Forms.CheckBox();
     this.NoDelay = new System.Windows.Forms.CheckBox();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.tableLayoutPanel6 = new System.Windows.Forms.TableLayoutPanel();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.FontSize = new System.Windows.Forms.NumericUpDown();
     this.GameFont = new System.Windows.Forms.ComboBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.tableLayoutPanel9 = new System.Windows.Forms.TableLayoutPanel();
     this.Username = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.DefualtDeck = new System.Windows.Forms.ComboBox();
     this.label5 = new System.Windows.Forms.Label();
     this.accountTab = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel10 = new System.Windows.Forms.TableLayoutPanel();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.tableLayoutPanel11 = new System.Windows.Forms.TableLayoutPanel();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
     this.UpdatePassword = new System.Windows.Forms.Button();
     this.currentPassword = new System.Windows.Forms.TextBox();
     this.newPassword = new System.Windows.Forms.TextBox();
     this.confirmPassword = new System.Windows.Forms.TextBox();
     this.tableLayoutPanel1.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.OptionTabControl.SuspendLayout();
     this.GameTab.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.tableLayoutPanel4.SuspendLayout();
     this.tableLayoutPanel8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Antialias)).BeginInit();
     this.tableLayoutPanel7.SuspendLayout();
     this.tableLayoutPanel3.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.tableLayoutPanel5.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.tableLayoutPanel6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.FontSize)).BeginInit();
     this.groupBox4.SuspendLayout();
     this.tableLayoutPanel9.SuspendLayout();
     this.accountTab.SuspendLayout();
     this.tableLayoutPanel10.SuspendLayout();
     this.groupBox5.SuspendLayout();
     this.tableLayoutPanel11.SuspendLayout();
     this.flowLayoutPanel2.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 1;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel1, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.OptionTabControl, 0, 0);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 2;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(608, 362);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Controls.Add(this.CancelBtn);
     this.flowLayoutPanel1.Controls.Add(this.SaveBtn);
     this.flowLayoutPanel1.Controls.Add(this.QuickSettingsBtn);
     this.flowLayoutPanel1.Controls.Add(this.RequestSettingsbtn);
     this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(3, 330);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(602, 29);
     this.flowLayoutPanel1.TabIndex = 7;
     //
     // CancelBtn
     //
     this.CancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.CancelBtn.Location = new System.Drawing.Point(524, 3);
     this.CancelBtn.Name = "CancelBtn";
     this.CancelBtn.Size = new System.Drawing.Size(75, 23);
     this.CancelBtn.TabIndex = 1;
     this.CancelBtn.Text = "Cancel";
     this.CancelBtn.UseVisualStyleBackColor = true;
     //
     // SaveBtn
     //
     this.SaveBtn.Location = new System.Drawing.Point(443, 3);
     this.SaveBtn.Name = "SaveBtn";
     this.SaveBtn.Size = new System.Drawing.Size(75, 23);
     this.SaveBtn.TabIndex = 0;
     this.SaveBtn.Text = "Save";
     this.SaveBtn.UseVisualStyleBackColor = true;
     this.SaveBtn.Click += new System.EventHandler(this.SaveBtn_Click);
     //
     // QuickSettingsBtn
     //
     this.QuickSettingsBtn.Location = new System.Drawing.Point(327, 3);
     this.QuickSettingsBtn.Name = "QuickSettingsBtn";
     this.QuickSettingsBtn.Size = new System.Drawing.Size(110, 23);
     this.QuickSettingsBtn.TabIndex = 5;
     this.QuickSettingsBtn.Text = "Quick Host Settings";
     this.QuickSettingsBtn.UseVisualStyleBackColor = true;
     this.QuickSettingsBtn.Click += new System.EventHandler(this.QuickSettingsBtn_Click);
     //
     // RequestSettingsbtn
     //
     this.RequestSettingsbtn.Location = new System.Drawing.Point(206, 3);
     this.RequestSettingsbtn.Name = "RequestSettingsbtn";
     this.RequestSettingsbtn.Size = new System.Drawing.Size(115, 23);
     this.RequestSettingsbtn.TabIndex = 2;
     this.RequestSettingsbtn.Text = "Request Settings";
     this.RequestSettingsbtn.UseVisualStyleBackColor = true;
     this.RequestSettingsbtn.Click += new System.EventHandler(this.RequestSettingsbtn_Click);
     //
     // OptionTabControl
     //
     this.OptionTabControl.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
     this.OptionTabControl.Controls.Add(this.GameTab);
     this.OptionTabControl.Controls.Add(this.accountTab);
     this.OptionTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.OptionTabControl.Location = new System.Drawing.Point(3, 3);
     this.OptionTabControl.Name = "OptionTabControl";
     this.OptionTabControl.SelectedIndex = 0;
     this.OptionTabControl.Size = new System.Drawing.Size(602, 321);
     this.OptionTabControl.TabIndex = 8;
     //
     // GameTab
     //
     this.GameTab.Controls.Add(this.tableLayoutPanel2);
     this.GameTab.Location = new System.Drawing.Point(4, 25);
     this.GameTab.Name = "GameTab";
     this.GameTab.Padding = new System.Windows.Forms.Padding(3);
     this.GameTab.Size = new System.Drawing.Size(594, 292);
     this.GameTab.TabIndex = 0;
     this.GameTab.Text = "Game Settings";
     this.GameTab.UseVisualStyleBackColor = true;
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.ColumnCount = 1;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel2.Controls.Add(this.groupBox2, 0, 1);
     this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel3, 0, 0);
     this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel2.Name = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 2;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 150F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 125F));
     this.tableLayoutPanel2.Size = new System.Drawing.Size(588, 286);
     this.tableLayoutPanel2.TabIndex = 2;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.tableLayoutPanel4);
     this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.Location = new System.Drawing.Point(3, 153);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(582, 130);
     this.groupBox2.TabIndex = 5;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Game Settings";
     //
     // tableLayoutPanel4
     //
     this.tableLayoutPanel4.ColumnCount = 2;
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel4.Controls.Add(this.tableLayoutPanel8, 0, 0);
     this.tableLayoutPanel4.Controls.Add(this.tableLayoutPanel7, 0, 0);
     this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel4.Location = new System.Drawing.Point(3, 16);
     this.tableLayoutPanel4.Name = "tableLayoutPanel4";
     this.tableLayoutPanel4.RowCount = 1;
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel4.Size = new System.Drawing.Size(576, 111);
     this.tableLayoutPanel4.TabIndex = 0;
     //
     // tableLayoutPanel8
     //
     this.tableLayoutPanel8.ColumnCount = 2;
     this.tableLayoutPanel8.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel8.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel8.Controls.Add(this.SkinList, 1, 2);
     this.tableLayoutPanel8.Controls.Add(this.label4, 0, 2);
     this.tableLayoutPanel8.Controls.Add(this.label6, 0, 1);
     this.tableLayoutPanel8.Controls.Add(this.Antialias, 1, 1);
     this.tableLayoutPanel8.Controls.Add(this.EnableSleeveLoading, 0, 0);
     this.tableLayoutPanel8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel8.Location = new System.Drawing.Point(291, 3);
     this.tableLayoutPanel8.Name = "tableLayoutPanel8";
     this.tableLayoutPanel8.RowCount = 3;
     this.tableLayoutPanel8.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel8.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel8.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel8.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel8.Size = new System.Drawing.Size(282, 105);
     this.tableLayoutPanel8.TabIndex = 2;
     //
     // SkinList
     //
     this.SkinList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.SkinList.FormattingEnabled = true;
     this.SkinList.Items.AddRange(new object[] {
     "Default"});
     this.SkinList.Location = new System.Drawing.Point(144, 67);
     this.SkinList.Name = "SkinList";
     this.SkinList.Size = new System.Drawing.Size(135, 21);
     this.SkinList.TabIndex = 6;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.label4.Location = new System.Drawing.Point(3, 50);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(135, 55);
     this.label4.TabIndex = 7;
     this.label4.Text = "Skin";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label6
     //
     this.label6.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(47, 31);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(46, 13);
     this.label6.TabIndex = 4;
     this.label6.Text = "Antialias";
     //
     // Antialias
     //
     this.Antialias.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Antialias.Location = new System.Drawing.Point(144, 28);
     this.Antialias.Maximum = new decimal(new int[] {
     32,
     0,
     0,
     0});
     this.Antialias.Name = "Antialias";
     this.Antialias.ReadOnly = true;
     this.Antialias.Size = new System.Drawing.Size(135, 20);
     this.Antialias.TabIndex = 5;
     this.Antialias.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // EnableSleeveLoading
     //
     this.EnableSleeveLoading.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.EnableSleeveLoading.AutoSize = true;
     this.EnableSleeveLoading.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.EnableSleeveLoading.Location = new System.Drawing.Point(18, 4);
     this.EnableSleeveLoading.Name = "EnableSleeveLoading";
     this.EnableSleeveLoading.Size = new System.Drawing.Size(120, 17);
     this.EnableSleeveLoading.TabIndex = 8;
     this.EnableSleeveLoading.Text = "Enable User Covers";
     this.EnableSleeveLoading.UseVisualStyleBackColor = true;
     //
     // tableLayoutPanel7
     //
     this.tableLayoutPanel7.ColumnCount = 2;
     this.tableLayoutPanel7.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel7.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel7.Controls.Add(this.AutoPlacing, 0, 0);
     this.tableLayoutPanel7.Controls.Add(this.RandomPlacing, 1, 0);
     this.tableLayoutPanel7.Controls.Add(this.Fullscreen, 1, 3);
     this.tableLayoutPanel7.Controls.Add(this.Enabled3d, 0, 3);
     this.tableLayoutPanel7.Controls.Add(this.EnableMusic, 1, 2);
     this.tableLayoutPanel7.Controls.Add(this.AutoChain, 0, 1);
     this.tableLayoutPanel7.Controls.Add(this.EnableSound, 0, 2);
     this.tableLayoutPanel7.Controls.Add(this.NoDelay, 1, 1);
     this.tableLayoutPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel7.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel7.Name = "tableLayoutPanel7";
     this.tableLayoutPanel7.RowCount = 4;
     this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel7.Size = new System.Drawing.Size(282, 105);
     this.tableLayoutPanel7.TabIndex = 1;
     //
     // AutoPlacing
     //
     this.AutoPlacing.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.AutoPlacing.AutoSize = true;
     this.AutoPlacing.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.AutoPlacing.Location = new System.Drawing.Point(27, 4);
     this.AutoPlacing.Name = "AutoPlacing";
     this.AutoPlacing.Size = new System.Drawing.Size(111, 17);
     this.AutoPlacing.TabIndex = 3;
     this.AutoPlacing.Text = "Auto Card Placing";
     this.AutoPlacing.UseVisualStyleBackColor = true;
     //
     // RandomPlacing
     //
     this.RandomPlacing.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.RandomPlacing.AutoSize = true;
     this.RandomPlacing.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.RandomPlacing.Location = new System.Drawing.Point(150, 4);
     this.RandomPlacing.Name = "RandomPlacing";
     this.RandomPlacing.Size = new System.Drawing.Size(129, 17);
     this.RandomPlacing.TabIndex = 4;
     this.RandomPlacing.Text = "Random Card Placing";
     this.RandomPlacing.UseVisualStyleBackColor = true;
     //
     // Fullscreen
     //
     this.Fullscreen.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.Fullscreen.AutoSize = true;
     this.Fullscreen.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.Fullscreen.Location = new System.Drawing.Point(187, 81);
     this.Fullscreen.Name = "Fullscreen";
     this.Fullscreen.Size = new System.Drawing.Size(92, 17);
     this.Fullscreen.TabIndex = 3;
     this.Fullscreen.Text = "Fullscreen      ";
     this.Fullscreen.UseVisualStyleBackColor = true;
     //
     // Enabled3d
     //
     this.Enabled3d.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.Enabled3d.AutoSize = true;
     this.Enabled3d.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.Enabled3d.Location = new System.Drawing.Point(43, 81);
     this.Enabled3d.Name = "Enabled3d";
     this.Enabled3d.Size = new System.Drawing.Size(95, 17);
     this.Enabled3d.TabIndex = 2;
     this.Enabled3d.Text = "Enable Directx";
     this.Enabled3d.UseVisualStyleBackColor = true;
     //
     // EnableMusic
     //
     this.EnableMusic.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.EnableMusic.AutoSize = true;
     this.EnableMusic.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.EnableMusic.Location = new System.Drawing.Point(189, 54);
     this.EnableMusic.Name = "EnableMusic";
     this.EnableMusic.Size = new System.Drawing.Size(90, 17);
     this.EnableMusic.TabIndex = 1;
     this.EnableMusic.Text = "Enable Music";
     this.EnableMusic.UseVisualStyleBackColor = true;
     //
     // AutoChain
     //
     this.AutoChain.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.AutoChain.AutoSize = true;
     this.AutoChain.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.AutoChain.Location = new System.Drawing.Point(31, 29);
     this.AutoChain.Name = "AutoChain";
     this.AutoChain.Size = new System.Drawing.Size(107, 17);
     this.AutoChain.TabIndex = 5;
     this.AutoChain.Text = "Auto Chain Order";
     this.AutoChain.UseVisualStyleBackColor = true;
     //
     // EnableSound
     //
     this.EnableSound.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.EnableSound.AutoSize = true;
     this.EnableSound.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.EnableSound.Location = new System.Drawing.Point(45, 54);
     this.EnableSound.Name = "EnableSound";
     this.EnableSound.Size = new System.Drawing.Size(93, 17);
     this.EnableSound.TabIndex = 0;
     this.EnableSound.Text = "Enable Sound";
     this.EnableSound.UseVisualStyleBackColor = true;
     //
     // NoDelay
     //
     this.NoDelay.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.NoDelay.AutoSize = true;
     this.NoDelay.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.NoDelay.Location = new System.Drawing.Point(164, 29);
     this.NoDelay.Name = "NoDelay";
     this.NoDelay.Size = new System.Drawing.Size(115, 17);
     this.NoDelay.TabIndex = 6;
     this.NoDelay.Text = "No Delay for Chain";
     this.NoDelay.UseVisualStyleBackColor = true;
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.ColumnCount = 1;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel3.Controls.Add(this.groupBox1, 0, 0);
     this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel3.Name = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 1;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 144F));
     this.tableLayoutPanel3.Size = new System.Drawing.Size(582, 144);
     this.tableLayoutPanel3.TabIndex = 4;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.tableLayoutPanel5);
     this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox1.Location = new System.Drawing.Point(3, 3);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(576, 138);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "User Settings";
     //
     // tableLayoutPanel5
     //
     this.tableLayoutPanel5.ColumnCount = 2;
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel5.Controls.Add(this.groupBox3, 0, 0);
     this.tableLayoutPanel5.Controls.Add(this.groupBox4, 1, 0);
     this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel5.Location = new System.Drawing.Point(3, 16);
     this.tableLayoutPanel5.Name = "tableLayoutPanel5";
     this.tableLayoutPanel5.RowCount = 1;
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel5.Size = new System.Drawing.Size(570, 119);
     this.tableLayoutPanel5.TabIndex = 0;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.tableLayoutPanel6);
     this.groupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox3.Location = new System.Drawing.Point(3, 3);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(279, 113);
     this.groupBox3.TabIndex = 7;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Font Settings";
     //
     // tableLayoutPanel6
     //
     this.tableLayoutPanel6.ColumnCount = 2;
     this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel6.Controls.Add(this.label3, 0, 1);
     this.tableLayoutPanel6.Controls.Add(this.label2, 0, 0);
     this.tableLayoutPanel6.Controls.Add(this.FontSize, 1, 0);
     this.tableLayoutPanel6.Controls.Add(this.GameFont, 1, 1);
     this.tableLayoutPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel6.Location = new System.Drawing.Point(3, 16);
     this.tableLayoutPanel6.Name = "tableLayoutPanel6";
     this.tableLayoutPanel6.RowCount = 3;
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 29F));
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 21F));
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel6.Size = new System.Drawing.Size(273, 94);
     this.tableLayoutPanel6.TabIndex = 2;
     //
     // label3
     //
     this.label3.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(38, 33);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(59, 13);
     this.label3.TabIndex = 6;
     this.label3.Text = "Game Font";
     //
     // label2
     //
     this.label2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(42, 8);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(51, 13);
     this.label2.TabIndex = 4;
     this.label2.Text = "Font Size";
     //
     // FontSize
     //
     this.FontSize.Dock = System.Windows.Forms.DockStyle.Fill;
     this.FontSize.Location = new System.Drawing.Point(139, 3);
     this.FontSize.Maximum = new decimal(new int[] {
     32,
     0,
     0,
     0});
     this.FontSize.Name = "FontSize";
     this.FontSize.ReadOnly = true;
     this.FontSize.Size = new System.Drawing.Size(131, 20);
     this.FontSize.TabIndex = 5;
     this.FontSize.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // GameFont
     //
     this.GameFont.Dock = System.Windows.Forms.DockStyle.Fill;
     this.GameFont.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.GameFont.FormattingEnabled = true;
     this.GameFont.Items.AddRange(new object[] {
     "simhei.ttf"});
     this.GameFont.Location = new System.Drawing.Point(139, 32);
     this.GameFont.Name = "GameFont";
     this.GameFont.Size = new System.Drawing.Size(131, 21);
     this.GameFont.TabIndex = 7;
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.tableLayoutPanel9);
     this.groupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox4.Location = new System.Drawing.Point(288, 3);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(279, 113);
     this.groupBox4.TabIndex = 8;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Launcher Settings";
     //
     // tableLayoutPanel9
     //
     this.tableLayoutPanel9.ColumnCount = 2;
     this.tableLayoutPanel9.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel9.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel9.Controls.Add(this.Username, 1, 0);
     this.tableLayoutPanel9.Controls.Add(this.label1, 0, 0);
     this.tableLayoutPanel9.Controls.Add(this.DefualtDeck, 1, 1);
     this.tableLayoutPanel9.Controls.Add(this.label5, 0, 1);
     this.tableLayoutPanel9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel9.Location = new System.Drawing.Point(3, 16);
     this.tableLayoutPanel9.Name = "tableLayoutPanel9";
     this.tableLayoutPanel9.RowCount = 3;
     this.tableLayoutPanel9.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel9.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel9.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
     this.tableLayoutPanel9.Size = new System.Drawing.Size(273, 94);
     this.tableLayoutPanel9.TabIndex = 2;
     //
     // Username
     //
     this.Username.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.Username.Location = new System.Drawing.Point(139, 3);
     this.Username.Name = "Username";
     this.Username.Size = new System.Drawing.Size(131, 20);
     this.Username.TabIndex = 0;
     //
     // label1
     //
     this.label1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(22, 6);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(92, 13);
     this.label1.TabIndex = 2;
     this.label1.Text = "Default Username";
     //
     // DefualtDeck
     //
     this.DefualtDeck.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.DefualtDeck.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.DefualtDeck.FormattingEnabled = true;
     this.DefualtDeck.Location = new System.Drawing.Point(139, 29);
     this.DefualtDeck.Name = "DefualtDeck";
     this.DefualtDeck.Size = new System.Drawing.Size(131, 21);
     this.DefualtDeck.TabIndex = 3;
     //
     // label5
     //
     this.label5.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(33, 33);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(70, 13);
     this.label5.TabIndex = 4;
     this.label5.Text = "Default Deck";
     //
     // accountTab
     //
     this.accountTab.Controls.Add(this.tableLayoutPanel10);
     this.accountTab.Location = new System.Drawing.Point(4, 25);
     this.accountTab.Name = "accountTab";
     this.accountTab.Padding = new System.Windows.Forms.Padding(3);
     this.accountTab.Size = new System.Drawing.Size(594, 292);
     this.accountTab.TabIndex = 1;
     this.accountTab.Text = "Account Settings";
     this.accountTab.UseVisualStyleBackColor = true;
     //
     // tableLayoutPanel10
     //
     this.tableLayoutPanel10.ColumnCount = 2;
     this.tableLayoutPanel10.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel10.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel10.Controls.Add(this.groupBox5, 0, 0);
     this.tableLayoutPanel10.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel10.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel10.Name = "tableLayoutPanel10";
     this.tableLayoutPanel10.RowCount = 1;
     this.tableLayoutPanel10.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel10.Size = new System.Drawing.Size(588, 286);
     this.tableLayoutPanel10.TabIndex = 0;
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.tableLayoutPanel11);
     this.groupBox5.Location = new System.Drawing.Point(3, 3);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(288, 129);
     this.groupBox5.TabIndex = 0;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Update Password";
     //
     // tableLayoutPanel11
     //
     this.tableLayoutPanel11.ColumnCount = 2;
     this.tableLayoutPanel11.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 36.87943F));
     this.tableLayoutPanel11.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 63.12057F));
     this.tableLayoutPanel11.Controls.Add(this.label7, 0, 0);
     this.tableLayoutPanel11.Controls.Add(this.label8, 0, 1);
     this.tableLayoutPanel11.Controls.Add(this.label9, 0, 2);
     this.tableLayoutPanel11.Controls.Add(this.flowLayoutPanel2, 1, 3);
     this.tableLayoutPanel11.Controls.Add(this.currentPassword, 1, 0);
     this.tableLayoutPanel11.Controls.Add(this.newPassword, 1, 1);
     this.tableLayoutPanel11.Controls.Add(this.confirmPassword, 1, 2);
     this.tableLayoutPanel11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel11.Location = new System.Drawing.Point(3, 16);
     this.tableLayoutPanel11.Name = "tableLayoutPanel11";
     this.tableLayoutPanel11.RowCount = 5;
     this.tableLayoutPanel11.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel11.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel11.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel11.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 38F));
     this.tableLayoutPanel11.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel11.Size = new System.Drawing.Size(282, 110);
     this.tableLayoutPanel11.TabIndex = 0;
     //
     // label7
     //
     this.label7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.label7.Location = new System.Drawing.Point(3, 0);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(97, 25);
     this.label7.TabIndex = 0;
     this.label7.Text = "Current Password";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label8
     //
     this.label8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.label8.Location = new System.Drawing.Point(3, 25);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(97, 25);
     this.label8.TabIndex = 1;
     this.label8.Text = "New Password";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label9
     //
     this.label9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.label9.Location = new System.Drawing.Point(3, 50);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(97, 25);
     this.label9.TabIndex = 2;
     this.label9.Text = "Confirm Password";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // flowLayoutPanel2
     //
     this.flowLayoutPanel2.Controls.Add(this.UpdatePassword);
     this.flowLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel2.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel2.Location = new System.Drawing.Point(106, 78);
     this.flowLayoutPanel2.Name = "flowLayoutPanel2";
     this.flowLayoutPanel2.Size = new System.Drawing.Size(173, 32);
     this.flowLayoutPanel2.TabIndex = 3;
     //
     // UpdatePassword
     //
     this.UpdatePassword.Location = new System.Drawing.Point(78, 3);
     this.UpdatePassword.Name = "UpdatePassword";
     this.UpdatePassword.Size = new System.Drawing.Size(92, 23);
     this.UpdatePassword.TabIndex = 0;
     this.UpdatePassword.Text = "Update";
     this.UpdatePassword.UseVisualStyleBackColor = true;
     this.UpdatePassword.Click += new System.EventHandler(this.UpdatePassword_Click);
     //
     // currentPassword
     //
     this.currentPassword.Dock = System.Windows.Forms.DockStyle.Fill;
     this.currentPassword.Location = new System.Drawing.Point(106, 3);
     this.currentPassword.MaxLength = 15;
     this.currentPassword.Name = "currentPassword";
     this.currentPassword.Size = new System.Drawing.Size(173, 20);
     this.currentPassword.TabIndex = 4;
     this.currentPassword.UseSystemPasswordChar = true;
     //
     // newPassword
     //
     this.newPassword.Dock = System.Windows.Forms.DockStyle.Fill;
     this.newPassword.Location = new System.Drawing.Point(106, 28);
     this.newPassword.MaxLength = 15;
     this.newPassword.Name = "newPassword";
     this.newPassword.Size = new System.Drawing.Size(173, 20);
     this.newPassword.TabIndex = 5;
     this.newPassword.UseSystemPasswordChar = true;
     //
     // confirmPassword
     //
     this.confirmPassword.Dock = System.Windows.Forms.DockStyle.Fill;
     this.confirmPassword.Location = new System.Drawing.Point(106, 53);
     this.confirmPassword.MaxLength = 15;
     this.confirmPassword.Name = "confirmPassword";
     this.confirmPassword.Size = new System.Drawing.Size(173, 20);
     this.confirmPassword.TabIndex = 6;
     this.confirmPassword.UseSystemPasswordChar = true;
     //
     // Settings
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
     this.ClientSize = new System.Drawing.Size(608, 362);
     this.ControlBox = false;
     this.Controls.Add(this.tableLayoutPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name = "Settings";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Options";
     this.tableLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.OptionTabControl.ResumeLayout(false);
     this.GameTab.ResumeLayout(false);
     this.tableLayoutPanel2.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.tableLayoutPanel4.ResumeLayout(false);
     this.tableLayoutPanel8.ResumeLayout(false);
     this.tableLayoutPanel8.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Antialias)).EndInit();
     this.tableLayoutPanel7.ResumeLayout(false);
     this.tableLayoutPanel7.PerformLayout();
     this.tableLayoutPanel3.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.tableLayoutPanel5.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.tableLayoutPanel6.ResumeLayout(false);
     this.tableLayoutPanel6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.FontSize)).EndInit();
     this.groupBox4.ResumeLayout(false);
     this.tableLayoutPanel9.ResumeLayout(false);
     this.tableLayoutPanel9.PerformLayout();
     this.accountTab.ResumeLayout(false);
     this.tableLayoutPanel10.ResumeLayout(false);
     this.groupBox5.ResumeLayout(false);
     this.tableLayoutPanel11.ResumeLayout(false);
     this.tableLayoutPanel11.PerformLayout();
     this.flowLayoutPanel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 54
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Help));
     this.helpTabs = new System.Windows.Forms.TabControl();
     this.tabHowToPlay = new System.Windows.Forms.TabPage();
     this.label1 = new System.Windows.Forms.Label();
     this.tabSolvingTips = new System.Windows.Forms.TabPage();
     this.sudokuLink = new System.Windows.Forms.LinkLabel();
     this.lblSolvingTips = new System.Windows.Forms.Label();
     this.tabAbout = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
     this.labelProductName = new System.Windows.Forms.Label();
     this.labelVersion = new System.Windows.Forms.Label();
     this.labelCopyright = new System.Windows.Forms.Label();
     this.labelCompanyName = new System.Windows.Forms.Label();
     this.textBoxDescription = new System.Windows.Forms.TextBox();
     this.helpTabs.SuspendLayout();
     this.tabHowToPlay.SuspendLayout();
     this.tabSolvingTips.SuspendLayout();
     this.tabAbout.SuspendLayout();
     this.tableLayoutPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // helpTabs
     //
     this.helpTabs.Controls.Add(this.tabHowToPlay);
     this.helpTabs.Controls.Add(this.tabSolvingTips);
     this.helpTabs.Controls.Add(this.tabAbout);
     this.helpTabs.Location = new System.Drawing.Point(0, 0);
     this.helpTabs.Name = "helpTabs";
     this.helpTabs.SelectedIndex = 0;
     this.helpTabs.Size = new System.Drawing.Size(371, 352);
     this.helpTabs.TabIndex = 0;
     //
     // tabHowToPlay
     //
     this.tabHowToPlay.Controls.Add(this.label1);
     this.tabHowToPlay.Location = new System.Drawing.Point(4, 22);
     this.tabHowToPlay.Name = "tabHowToPlay";
     this.tabHowToPlay.Padding = new System.Windows.Forms.Padding(3);
     this.tabHowToPlay.Size = new System.Drawing.Size(363, 326);
     this.tabHowToPlay.TabIndex = 0;
     this.tabHowToPlay.Text = "How To Play Sudoku";
     this.tabHowToPlay.UseVisualStyleBackColor = true;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(7, 8);
     this.label1.MaximumSize = new System.Drawing.Size(350, 350);
     this.label1.MinimumSize = new System.Drawing.Size(350, 0);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(350, 299);
     this.label1.TabIndex = 0;
     this.label1.Text = resources.GetString("label1.Text");
     //
     // tabSolvingTips
     //
     this.tabSolvingTips.Controls.Add(this.sudokuLink);
     this.tabSolvingTips.Controls.Add(this.lblSolvingTips);
     this.tabSolvingTips.Location = new System.Drawing.Point(4, 22);
     this.tabSolvingTips.Name = "tabSolvingTips";
     this.tabSolvingTips.Padding = new System.Windows.Forms.Padding(3);
     this.tabSolvingTips.Size = new System.Drawing.Size(363, 326);
     this.tabSolvingTips.TabIndex = 1;
     this.tabSolvingTips.Text = "Solving Tips";
     this.tabSolvingTips.UseVisualStyleBackColor = true;
     //
     // sudokuLink
     //
     this.sudokuLink.AutoSize = true;
     this.sudokuLink.Cursor = System.Windows.Forms.Cursors.Hand;
     this.sudokuLink.LinkArea = new System.Windows.Forms.LinkArea(28, 26);
     this.sudokuLink.Location = new System.Drawing.Point(7, 150);
     this.sudokuLink.Name = "sudokuLink";
     this.sudokuLink.Size = new System.Drawing.Size(284, 17);
     this.sudokuLink.TabIndex = 5;
     this.sudokuLink.TabStop = true;
     this.sudokuLink.Text = "For more information, visit Wikipedia\'s page on Sudoku.";
     this.sudokuLink.UseCompatibleTextRendering = true;
     //
     // lblSolvingTips
     //
     this.lblSolvingTips.AutoEllipsis = true;
     this.lblSolvingTips.AutoSize = true;
     this.lblSolvingTips.Location = new System.Drawing.Point(5, 8);
     this.lblSolvingTips.MaximumSize = new System.Drawing.Size(355, 355);
     this.lblSolvingTips.Name = "lblSolvingTips";
     this.lblSolvingTips.Size = new System.Drawing.Size(354, 130);
     this.lblSolvingTips.TabIndex = 4;
     this.lblSolvingTips.Text = resources.GetString("lblSolvingTips.Text");
     //
     // tabAbout
     //
     this.tabAbout.Controls.Add(this.tableLayoutPanel);
     this.tabAbout.Location = new System.Drawing.Point(4, 22);
     this.tabAbout.Name = "tabAbout";
     this.tabAbout.Padding = new System.Windows.Forms.Padding(3);
     this.tabAbout.Size = new System.Drawing.Size(363, 326);
     this.tabAbout.TabIndex = 2;
     this.tabAbout.Text = "About Sudoku";
     this.tabAbout.UseVisualStyleBackColor = true;
     //
     // tableLayoutPanel
     //
     this.tableLayoutPanel.ColumnCount = 1;
     this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel.Controls.Add(this.labelProductName, 0, 0);
     this.tableLayoutPanel.Controls.Add(this.labelVersion, 0, 1);
     this.tableLayoutPanel.Controls.Add(this.labelCopyright, 0, 2);
     this.tableLayoutPanel.Controls.Add(this.labelCompanyName, 0, 3);
     this.tableLayoutPanel.Controls.Add(this.textBoxDescription, 0, 4);
     this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel.Name = "tableLayoutPanel";
     this.tableLayoutPanel.RowCount = 5;
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 4.746835F));
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5.063291F));
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 4.43038F));
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.39241F));
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 74.36709F));
     this.tableLayoutPanel.Size = new System.Drawing.Size(357, 320);
     this.tableLayoutPanel.TabIndex = 1;
     //
     // labelProductName
     //
     this.labelProductName.Dock = System.Windows.Forms.DockStyle.Fill;
     this.labelProductName.Location = new System.Drawing.Point(6, 0);
     this.labelProductName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
     this.labelProductName.MaximumSize = new System.Drawing.Size(0, 17);
     this.labelProductName.Name = "labelProductName";
     this.labelProductName.Size = new System.Drawing.Size(348, 15);
     this.labelProductName.TabIndex = 19;
     this.labelProductName.Text = "Bo\'s Sudoku Game";
     this.labelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelVersion
     //
     this.labelVersion.Dock = System.Windows.Forms.DockStyle.Fill;
     this.labelVersion.Location = new System.Drawing.Point(6, 15);
     this.labelVersion.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
     this.labelVersion.MaximumSize = new System.Drawing.Size(0, 17);
     this.labelVersion.Name = "labelVersion";
     this.labelVersion.Size = new System.Drawing.Size(348, 16);
     this.labelVersion.TabIndex = 0;
     this.labelVersion.Text = "Version 1.0";
     this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelCopyright
     //
     this.labelCopyright.Dock = System.Windows.Forms.DockStyle.Fill;
     this.labelCopyright.Location = new System.Drawing.Point(6, 31);
     this.labelCopyright.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
     this.labelCopyright.MaximumSize = new System.Drawing.Size(0, 17);
     this.labelCopyright.Name = "labelCopyright";
     this.labelCopyright.Size = new System.Drawing.Size(348, 14);
     this.labelCopyright.TabIndex = 21;
     this.labelCopyright.Text = "Copyright © Bodaniel Jeanes, 2006";
     this.labelCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelCompanyName
     //
     this.labelCompanyName.Dock = System.Windows.Forms.DockStyle.Fill;
     this.labelCompanyName.Location = new System.Drawing.Point(6, 45);
     this.labelCompanyName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
     this.labelCompanyName.MaximumSize = new System.Drawing.Size(0, 17);
     this.labelCompanyName.Name = "labelCompanyName";
     this.labelCompanyName.Size = new System.Drawing.Size(348, 17);
     this.labelCompanyName.TabIndex = 22;
     this.labelCompanyName.Text = "bjeanes.com";
     this.labelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // textBoxDescription
     //
     this.textBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxDescription.Location = new System.Drawing.Point(3, 84);
     this.textBoxDescription.Multiline = true;
     this.textBoxDescription.Name = "textBoxDescription";
     this.textBoxDescription.ReadOnly = true;
     this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.textBoxDescription.Size = new System.Drawing.Size(351, 233);
     this.textBoxDescription.TabIndex = 23;
     this.textBoxDescription.TabStop = false;
     this.textBoxDescription.Text = resources.GetString("textBoxDescription.Text");
     //
     // Help
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(367, 348);
     this.Controls.Add(this.helpTabs);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "Help";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Help";
     this.Load += new System.EventHandler(this.Help_Load);
     this.helpTabs.ResumeLayout(false);
     this.tabHowToPlay.ResumeLayout(false);
     this.tabHowToPlay.PerformLayout();
     this.tabSolvingTips.ResumeLayout(false);
     this.tabSolvingTips.PerformLayout();
     this.tabAbout.ResumeLayout(false);
     this.tableLayoutPanel.ResumeLayout(false);
     this.tableLayoutPanel.PerformLayout();
     this.ResumeLayout(false);
 }
Ejemplo n.º 55
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmOcupacion));
     this.tbcOcupacion = new System.Windows.Forms.TabControl();
     this.tbpBuscar = new System.Windows.Forms.TabPage();
     this.btnEliminar = new System.Windows.Forms.Button();
     this.btnActivar = new System.Windows.Forms.Button();
     this.btnSalir = new System.Windows.Forms.Button();
     this.btnVer = new System.Windows.Forms.Button();
     this.btnModificar = new System.Windows.Forms.Button();
     this.btnNuevo = new System.Windows.Forms.Button();
     this.dgvOcupaciones = new System.Windows.Forms.DataGridView();
     this.ColId = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColNombre = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colEstado = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gbxCriterios = new System.Windows.Forms.GroupBox();
     this.cboEstadoBuscar = new System.Windows.Forms.ComboBox();
     this.lblEstado = new System.Windows.Forms.Label();
     this.txtNombreBuscar = new SistemaCentroSalud.Controles.cuTextBox();
     this.lblNombreBuscar = new System.Windows.Forms.Label();
     this.tbpDetalle = new System.Windows.Forms.TabPage();
     this.btnGuardar = new System.Windows.Forms.Button();
     this.btnCancelar = new System.Windows.Forms.Button();
     this.gbxInformacion = new System.Windows.Forms.GroupBox();
     this.rtxtDescripcionDetalle = new SistemaCentroSalud.Controles.cuRichTextBox();
     this.lblDescripcionDetalle = new System.Windows.Forms.Label();
     this.txtNombreDetalle = new SistemaCentroSalud.Controles.cuTextBox();
     this.lblNombreDetalle = new System.Windows.Forms.Label();
     this.tbcOcupacion.SuspendLayout();
     this.tbpBuscar.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvOcupaciones)).BeginInit();
     this.gbxCriterios.SuspendLayout();
     this.tbpDetalle.SuspendLayout();
     this.gbxInformacion.SuspendLayout();
     this.SuspendLayout();
     //
     // tbcOcupacion
     //
     this.tbcOcupacion.Controls.Add(this.tbpBuscar);
     this.tbcOcupacion.Controls.Add(this.tbpDetalle);
     this.tbcOcupacion.Location = new System.Drawing.Point(1, 0);
     this.tbcOcupacion.Name = "tbcOcupacion";
     this.tbcOcupacion.SelectedIndex = 0;
     this.tbcOcupacion.Size = new System.Drawing.Size(467, 263);
     this.tbcOcupacion.TabIndex = 3;
     this.tbcOcupacion.Selecting += new System.Windows.Forms.TabControlCancelEventHandler(this.tbcOcupacion_Selecting);
     this.tbcOcupacion.SelectedIndexChanged += new System.EventHandler(this.tbcOcupacion_SelectedIndexChanged);
     //
     // tbpBuscar
     //
     this.tbpBuscar.Controls.Add(this.btnEliminar);
     this.tbpBuscar.Controls.Add(this.btnActivar);
     this.tbpBuscar.Controls.Add(this.btnSalir);
     this.tbpBuscar.Controls.Add(this.btnVer);
     this.tbpBuscar.Controls.Add(this.btnModificar);
     this.tbpBuscar.Controls.Add(this.btnNuevo);
     this.tbpBuscar.Controls.Add(this.dgvOcupaciones);
     this.tbpBuscar.Controls.Add(this.gbxCriterios);
     this.tbpBuscar.Location = new System.Drawing.Point(4, 22);
     this.tbpBuscar.Name = "tbpBuscar";
     this.tbpBuscar.Padding = new System.Windows.Forms.Padding(3);
     this.tbpBuscar.Size = new System.Drawing.Size(459, 237);
     this.tbpBuscar.TabIndex = 0;
     this.tbpBuscar.Text = "Buscar";
     this.tbpBuscar.UseVisualStyleBackColor = true;
     //
     // btnEliminar
     //
     this.btnEliminar.Image = ((System.Drawing.Image)(resources.GetObject("btnEliminar.Image")));
     this.btnEliminar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnEliminar.Location = new System.Drawing.Point(279, 206);
     this.btnEliminar.Name = "btnEliminar";
     this.btnEliminar.Size = new System.Drawing.Size(75, 23);
     this.btnEliminar.TabIndex = 6;
     this.btnEliminar.Text = "Eliminar";
     this.btnEliminar.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnEliminar.UseVisualStyleBackColor = true;
     this.btnEliminar.Click += new System.EventHandler(this.btnEliminar_Click);
     //
     // btnActivar
     //
     this.btnActivar.Image = ((System.Drawing.Image)(resources.GetObject("btnActivar.Image")));
     this.btnActivar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnActivar.Location = new System.Drawing.Point(279, 206);
     this.btnActivar.Name = "btnActivar";
     this.btnActivar.Size = new System.Drawing.Size(75, 23);
     this.btnActivar.TabIndex = 6;
     this.btnActivar.Text = "Activar";
     this.btnActivar.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnActivar.UseVisualStyleBackColor = true;
     this.btnActivar.Visible = false;
     this.btnActivar.Click += new System.EventHandler(this.btnActivar_Click);
     //
     // btnSalir
     //
     this.btnSalir.Image = ((System.Drawing.Image)(resources.GetObject("btnSalir.Image")));
     this.btnSalir.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnSalir.Location = new System.Drawing.Point(376, 206);
     this.btnSalir.Name = "btnSalir";
     this.btnSalir.Size = new System.Drawing.Size(75, 23);
     this.btnSalir.TabIndex = 7;
     this.btnSalir.Text = "Salir";
     this.btnSalir.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnSalir.UseVisualStyleBackColor = true;
     this.btnSalir.Click += new System.EventHandler(this.btnSalir_Click);
     //
     // btnVer
     //
     this.btnVer.Image = ((System.Drawing.Image)(resources.GetObject("btnVer.Image")));
     this.btnVer.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnVer.Location = new System.Drawing.Point(99, 206);
     this.btnVer.Name = "btnVer";
     this.btnVer.Size = new System.Drawing.Size(75, 23);
     this.btnVer.TabIndex = 4;
     this.btnVer.Text = "Ver";
     this.btnVer.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnVer.UseVisualStyleBackColor = true;
     this.btnVer.Click += new System.EventHandler(this.btnVer_Click);
     //
     // btnModificar
     //
     this.btnModificar.Image = ((System.Drawing.Image)(resources.GetObject("btnModificar.Image")));
     this.btnModificar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnModificar.Location = new System.Drawing.Point(190, 206);
     this.btnModificar.Name = "btnModificar";
     this.btnModificar.Size = new System.Drawing.Size(75, 23);
     this.btnModificar.TabIndex = 5;
     this.btnModificar.Text = "Modificar";
     this.btnModificar.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnModificar.UseVisualStyleBackColor = true;
     this.btnModificar.Click += new System.EventHandler(this.btnModificar_Click);
     //
     // btnNuevo
     //
     this.btnNuevo.Image = ((System.Drawing.Image)(resources.GetObject("btnNuevo.Image")));
     this.btnNuevo.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnNuevo.Location = new System.Drawing.Point(8, 206);
     this.btnNuevo.Name = "btnNuevo";
     this.btnNuevo.Size = new System.Drawing.Size(75, 23);
     this.btnNuevo.TabIndex = 3;
     this.btnNuevo.Text = "Nuevo";
     this.btnNuevo.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnNuevo.UseVisualStyleBackColor = true;
     this.btnNuevo.Click += new System.EventHandler(this.btnNuevo_Click);
     //
     // dgvOcupaciones
     //
     this.dgvOcupaciones.AllowUserToAddRows = false;
     this.dgvOcupaciones.AllowUserToDeleteRows = false;
     this.dgvOcupaciones.AllowUserToResizeRows = false;
     this.dgvOcupaciones.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvOcupaciones.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.ColId,
     this.ColNombre,
     this.colEstado});
     this.dgvOcupaciones.Location = new System.Drawing.Point(6, 99);
     this.dgvOcupaciones.MultiSelect = false;
     this.dgvOcupaciones.Name = "dgvOcupaciones";
     this.dgvOcupaciones.ReadOnly = true;
     this.dgvOcupaciones.RowHeadersVisible = false;
     this.dgvOcupaciones.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvOcupaciones.Size = new System.Drawing.Size(443, 101);
     this.dgvOcupaciones.TabIndex = 2;
     this.dgvOcupaciones.SelectionChanged += new System.EventHandler(this.dgvOcupaciones_SelectionChanged);
     //
     // ColId
     //
     this.ColId.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.ColId.HeaderText = "Id";
     this.ColId.Name = "ColId";
     this.ColId.ReadOnly = true;
     this.ColId.Visible = false;
     //
     // ColNombre
     //
     this.ColNombre.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.ColNombre.HeaderText = "Nombre";
     this.ColNombre.Name = "ColNombre";
     this.ColNombre.ReadOnly = true;
     //
     // colEstado
     //
     this.colEstado.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.colEstado.HeaderText = "Estado";
     this.colEstado.Name = "colEstado";
     this.colEstado.ReadOnly = true;
     //
     // gbxCriterios
     //
     this.gbxCriterios.Controls.Add(this.cboEstadoBuscar);
     this.gbxCriterios.Controls.Add(this.lblEstado);
     this.gbxCriterios.Controls.Add(this.txtNombreBuscar);
     this.gbxCriterios.Controls.Add(this.lblNombreBuscar);
     this.gbxCriterios.Location = new System.Drawing.Point(6, 6);
     this.gbxCriterios.Name = "gbxCriterios";
     this.gbxCriterios.Size = new System.Drawing.Size(443, 87);
     this.gbxCriterios.TabIndex = 0;
     this.gbxCriterios.TabStop = false;
     this.gbxCriterios.Text = "Criterios de Búsqueda";
     //
     // cboEstadoBuscar
     //
     this.cboEstadoBuscar.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboEstadoBuscar.FormattingEnabled = true;
     this.cboEstadoBuscar.Items.AddRange(new object[] {
     "TODOS",
     "ACTIVO",
     "INACTIVO"});
     this.cboEstadoBuscar.Location = new System.Drawing.Point(298, 22);
     this.cboEstadoBuscar.Name = "cboEstadoBuscar";
     this.cboEstadoBuscar.Size = new System.Drawing.Size(121, 21);
     this.cboEstadoBuscar.TabIndex = 2;
     this.cboEstadoBuscar.SelectedIndexChanged += new System.EventHandler(this.buscarCriterios);
     //
     // lblEstado
     //
     this.lblEstado.AutoSize = true;
     this.lblEstado.Location = new System.Drawing.Point(249, 25);
     this.lblEstado.Name = "lblEstado";
     this.lblEstado.Size = new System.Drawing.Size(43, 13);
     this.lblEstado.TabIndex = 4;
     this.lblEstado.Text = "Estado:";
     //
     // txtNombreBuscar
     //
     this.txtNombreBuscar.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtNombreBuscar.Location = new System.Drawing.Point(84, 22);
     this.txtNombreBuscar.MaxLength = 50;
     this.txtNombreBuscar.Name = "txtNombreBuscar";
     this.txtNombreBuscar.Size = new System.Drawing.Size(133, 20);
     this.txtNombreBuscar.Solo_Lectura = SistemaCentroSalud.Controles.cuTextBox.SoloLectura.falso;
     this.txtNombreBuscar.TabIndex = 1;
     this.txtNombreBuscar.TipoCajaTexto = SistemaCentroSalud.Controles.cuTextBox.TipoTextBox.Letras;
     this.txtNombreBuscar.TextChanged += new System.EventHandler(this.buscarCriterios);
     //
     // lblNombreBuscar
     //
     this.lblNombreBuscar.AutoSize = true;
     this.lblNombreBuscar.Location = new System.Drawing.Point(6, 25);
     this.lblNombreBuscar.Name = "lblNombreBuscar";
     this.lblNombreBuscar.Size = new System.Drawing.Size(47, 13);
     this.lblNombreBuscar.TabIndex = 0;
     this.lblNombreBuscar.Text = "Nombre:";
     //
     // tbpDetalle
     //
     this.tbpDetalle.Controls.Add(this.btnGuardar);
     this.tbpDetalle.Controls.Add(this.btnCancelar);
     this.tbpDetalle.Controls.Add(this.gbxInformacion);
     this.tbpDetalle.Location = new System.Drawing.Point(4, 22);
     this.tbpDetalle.Name = "tbpDetalle";
     this.tbpDetalle.Padding = new System.Windows.Forms.Padding(3);
     this.tbpDetalle.Size = new System.Drawing.Size(459, 237);
     this.tbpDetalle.TabIndex = 1;
     this.tbpDetalle.Text = "Detalle";
     this.tbpDetalle.UseVisualStyleBackColor = true;
     //
     // btnGuardar
     //
     this.btnGuardar.Image = ((System.Drawing.Image)(resources.GetObject("btnGuardar.Image")));
     this.btnGuardar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnGuardar.Location = new System.Drawing.Point(374, 203);
     this.btnGuardar.Name = "btnGuardar";
     this.btnGuardar.Size = new System.Drawing.Size(75, 23);
     this.btnGuardar.TabIndex = 3;
     this.btnGuardar.Text = "Guardar";
     this.btnGuardar.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnGuardar.UseVisualStyleBackColor = true;
     this.btnGuardar.Click += new System.EventHandler(this.btnGuardar_Click);
     //
     // btnCancelar
     //
     this.btnCancelar.Image = ((System.Drawing.Image)(resources.GetObject("btnCancelar.Image")));
     this.btnCancelar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCancelar.Location = new System.Drawing.Point(287, 203);
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Size = new System.Drawing.Size(75, 23);
     this.btnCancelar.TabIndex = 4;
     this.btnCancelar.Text = "Cancelar";
     this.btnCancelar.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnCancelar.UseVisualStyleBackColor = true;
     this.btnCancelar.Click += new System.EventHandler(this.btnCancelar_Click);
     //
     // gbxInformacion
     //
     this.gbxInformacion.Controls.Add(this.rtxtDescripcionDetalle);
     this.gbxInformacion.Controls.Add(this.lblDescripcionDetalle);
     this.gbxInformacion.Controls.Add(this.txtNombreDetalle);
     this.gbxInformacion.Controls.Add(this.lblNombreDetalle);
     this.gbxInformacion.Location = new System.Drawing.Point(8, 6);
     this.gbxInformacion.Name = "gbxInformacion";
     this.gbxInformacion.Size = new System.Drawing.Size(441, 187);
     this.gbxInformacion.TabIndex = 0;
     this.gbxInformacion.TabStop = false;
     this.gbxInformacion.Text = "Información";
     //
     // rtxtDescripcionDetalle
     //
     this.rtxtDescripcionDetalle.Location = new System.Drawing.Point(9, 81);
     this.rtxtDescripcionDetalle.MaxLength = 500;
     this.rtxtDescripcionDetalle.Name = "rtxtDescripcionDetalle";
     this.rtxtDescripcionDetalle.Size = new System.Drawing.Size(426, 96);
     this.rtxtDescripcionDetalle.Solo_Lectura = SistemaCentroSalud.Controles.cuRichTextBox.SoloLectura.falso;
     this.rtxtDescripcionDetalle.TabIndex = 2;
     this.rtxtDescripcionDetalle.Text = "";
     //
     // lblDescripcionDetalle
     //
     this.lblDescripcionDetalle.AutoSize = true;
     this.lblDescripcionDetalle.Location = new System.Drawing.Point(6, 65);
     this.lblDescripcionDetalle.Name = "lblDescripcionDetalle";
     this.lblDescripcionDetalle.Size = new System.Drawing.Size(66, 13);
     this.lblDescripcionDetalle.TabIndex = 4;
     this.lblDescripcionDetalle.Text = "Descripción:";
     //
     // txtNombreDetalle
     //
     this.txtNombreDetalle.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtNombreDetalle.Location = new System.Drawing.Point(9, 32);
     this.txtNombreDetalle.MaxLength = 50;
     this.txtNombreDetalle.Name = "txtNombreDetalle";
     this.txtNombreDetalle.Size = new System.Drawing.Size(139, 20);
     this.txtNombreDetalle.Solo_Lectura = SistemaCentroSalud.Controles.cuTextBox.SoloLectura.falso;
     this.txtNombreDetalle.TabIndex = 1;
     this.txtNombreDetalle.TipoCajaTexto = SistemaCentroSalud.Controles.cuTextBox.TipoTextBox.Letras;
     //
     // lblNombreDetalle
     //
     this.lblNombreDetalle.AutoSize = true;
     this.lblNombreDetalle.Location = new System.Drawing.Point(6, 16);
     this.lblNombreDetalle.Name = "lblNombreDetalle";
     this.lblNombreDetalle.Size = new System.Drawing.Size(47, 13);
     this.lblNombreDetalle.TabIndex = 0;
     this.lblNombreDetalle.Text = "Nombre:";
     //
     // frmOcupacion
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(465, 261);
     this.Controls.Add(this.tbcOcupacion);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.Name = "frmOcupacion";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Ocupación";
     this.Load += new System.EventHandler(this.frmOcupacion_Load);
     this.tbcOcupacion.ResumeLayout(false);
     this.tbpBuscar.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvOcupaciones)).EndInit();
     this.gbxCriterios.ResumeLayout(false);
     this.gbxCriterios.PerformLayout();
     this.tbpDetalle.ResumeLayout(false);
     this.gbxInformacion.ResumeLayout(false);
     this.gbxInformacion.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmRolePermission));
     this.imageList = new System.Windows.Forms.ImageList(this.components);
     this.btnPaste = new System.Windows.Forms.Button();
     this.btnCopy = new System.Windows.Forms.Button();
     this.btnClearPermission = new System.Windows.Forms.Button();
     this.ucRole = new DotNet.WinForm.Common.WinControls.UCRoleSelect();
     this.lblParentReq = new System.Windows.Forms.Label();
     this.lblParent = new System.Windows.Forms.Label();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel3 = new System.Windows.Forms.Panel();
     this.tcModule = new System.Windows.Forms.TabControl();
     this.tpModule = new System.Windows.Forms.TabPage();
     this.tvModule = new System.Windows.Forms.TreeView();
     this.splitter2 = new System.Windows.Forms.Splitter();
     this.splitter1 = new System.Windows.Forms.Splitter();
     this.panel4 = new System.Windows.Forms.Panel();
     this.tcPermissionItem = new System.Windows.Forms.TabControl();
     this.tpPermissionItem = new System.Windows.Forms.TabPage();
     this.tvPermissionItem = new System.Windows.Forms.TreeView();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.panel1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.tcModule.SuspendLayout();
     this.tpModule.SuspendLayout();
     this.panel4.SuspendLayout();
     this.tcPermissionItem.SuspendLayout();
     this.tpPermissionItem.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // imageList
     //
     this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList.Images.SetKeyName(0, "");
     this.imageList.Images.SetKeyName(1, "");
     this.imageList.Images.SetKeyName(2, "");
     this.imageList.Images.SetKeyName(3, "");
     this.imageList.Images.SetKeyName(4, "");
     this.imageList.Images.SetKeyName(5, "");
     this.imageList.Images.SetKeyName(6, "");
     this.imageList.Images.SetKeyName(7, "");
     this.imageList.Images.SetKeyName(8, "");
     this.imageList.Images.SetKeyName(9, "");
     this.imageList.Images.SetKeyName(10, "");
     this.imageList.Images.SetKeyName(11, "");
     this.imageList.Images.SetKeyName(12, "");
     this.imageList.Images.SetKeyName(13, "");
     this.imageList.Images.SetKeyName(14, "");
     this.imageList.Images.SetKeyName(15, "icon_messenger1.gif");
     this.imageList.Images.SetKeyName(16, "icon_messenger0.gif");
     this.imageList.Images.SetKeyName(17, "icon_messenger2.gif");
     this.imageList.Images.SetKeyName(18, "icon_messenger3.gif");
     this.imageList.Images.SetKeyName(19, "icon_messenger4.gif");
     this.imageList.Images.SetKeyName(20, "icon_messenger5.gif");
     this.imageList.Images.SetKeyName(21, "icon_messenger6.gif");
     //
     // btnPaste
     //
     this.btnPaste.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPaste.AutoSize = true;
     this.btnPaste.Enabled = false;
     this.btnPaste.Location = new System.Drawing.Point(313, 3);
     this.btnPaste.Name = "btnPaste";
     this.btnPaste.Size = new System.Drawing.Size(102, 23);
     this.btnPaste.TabIndex = 2;
     this.btnPaste.Text = "粘贴权限";
     this.btnPaste.UseVisualStyleBackColor = true;
     this.btnPaste.Click += new System.EventHandler(this.btnPaste_Click);
     //
     // btnCopy
     //
     this.btnCopy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCopy.AutoSize = true;
     this.btnCopy.Enabled = false;
     this.btnCopy.Location = new System.Drawing.Point(205, 3);
     this.btnCopy.Name = "btnCopy";
     this.btnCopy.Size = new System.Drawing.Size(102, 23);
     this.btnCopy.TabIndex = 1;
     this.btnCopy.Text = "复制权限";
     this.btnCopy.UseVisualStyleBackColor = true;
     this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click);
     //
     // btnClearPermission
     //
     this.btnClearPermission.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClearPermission.AutoSize = true;
     this.btnClearPermission.Enabled = false;
     this.btnClearPermission.Location = new System.Drawing.Point(97, 3);
     this.btnClearPermission.Name = "btnClearPermission";
     this.btnClearPermission.Size = new System.Drawing.Size(102, 23);
     this.btnClearPermission.TabIndex = 0;
     this.btnClearPermission.Text = "清除权限(&C)";
     this.btnClearPermission.UseVisualStyleBackColor = true;
     this.btnClearPermission.Click += new System.EventHandler(this.btnClearPermission_Click);
     //
     // ucRole
     //
     this.ucRole.AllowNull = false;
     this.ucRole.AllowSelect = false;
     this.ucRole.Location = new System.Drawing.Point(122, 11);
     this.ucRole.MultiSelect = false;
     this.ucRole.Name = "ucRole";
     this.ucRole.OpenId = "";
     this.ucRole.PermissionItemScopeCode = "";
     this.ucRole.RemoveIds = null;
     this.ucRole.SelectedFullName = "";
     this.ucRole.SelectedId = "";
     this.ucRole.SelectedIds = null;
     this.ucRole.ShowRoleOnly = true;
     this.ucRole.Size = new System.Drawing.Size(227, 22);
     this.ucRole.TabIndex = 4;
     //
     // lblParentReq
     //
     this.lblParentReq.AutoSize = true;
     this.lblParentReq.ForeColor = System.Drawing.Color.Red;
     this.lblParentReq.Location = new System.Drawing.Point(353, 16);
     this.lblParentReq.Name = "lblParentReq";
     this.lblParentReq.Size = new System.Drawing.Size(11, 12);
     this.lblParentReq.TabIndex = 5;
     this.lblParentReq.Text = "*";
     //
     // lblParent
     //
     this.lblParent.Location = new System.Drawing.Point(13, 15);
     this.lblParent.Name = "lblParent";
     this.lblParent.Size = new System.Drawing.Size(110, 12);
     this.lblParent.TabIndex = 3;
     this.lblParent.Text = "角色(&R):";
     this.lblParent.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.panel1.Controls.Add(this.panel3);
     this.panel1.Controls.Add(this.splitter2);
     this.panel1.Controls.Add(this.splitter1);
     this.panel1.Controls.Add(this.panel4);
     this.panel1.Location = new System.Drawing.Point(6, 39);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(794, 488);
     this.panel1.TabIndex = 36;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.tcModule);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(3, 0);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(418, 488);
     this.panel3.TabIndex = 1;
     //
     // tcModule
     //
     this.tcModule.Controls.Add(this.tpModule);
     this.tcModule.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcModule.Location = new System.Drawing.Point(0, 0);
     this.tcModule.MinimumSize = new System.Drawing.Size(100, 100);
     this.tcModule.Name = "tcModule";
     this.tcModule.SelectedIndex = 0;
     this.tcModule.Size = new System.Drawing.Size(418, 488);
     this.tcModule.TabIndex = 0;
     //
     // tpModule
     //
     this.tpModule.Controls.Add(this.tvModule);
     this.tpModule.Location = new System.Drawing.Point(4, 22);
     this.tpModule.Name = "tpModule";
     this.tpModule.Padding = new System.Windows.Forms.Padding(3);
     this.tpModule.Size = new System.Drawing.Size(410, 462);
     this.tpModule.TabIndex = 0;
     this.tpModule.Text = "菜单访问权限";
     this.tpModule.UseVisualStyleBackColor = true;
     //
     // tvModule
     //
     this.tvModule.AllowDrop = true;
     this.tvModule.CheckBoxes = true;
     this.tvModule.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tvModule.Enabled = false;
     this.tvModule.ImageIndex = 0;
     this.tvModule.ImageList = this.imageList;
     this.tvModule.Location = new System.Drawing.Point(3, 3);
     this.tvModule.Name = "tvModule";
     this.tvModule.SelectedImageIndex = 0;
     this.tvModule.Size = new System.Drawing.Size(404, 456);
     this.tvModule.TabIndex = 0;
     this.tvModule.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tvModule_AfterCheck);
     this.tvModule.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.tvModule_NodeMouseClick);
     //
     // splitter2
     //
     this.splitter2.Dock = System.Windows.Forms.DockStyle.Right;
     this.splitter2.Location = new System.Drawing.Point(421, 0);
     this.splitter2.Name = "splitter2";
     this.splitter2.Size = new System.Drawing.Size(3, 488);
     this.splitter2.TabIndex = 2;
     this.splitter2.TabStop = false;
     //
     // splitter1
     //
     this.splitter1.Location = new System.Drawing.Point(0, 0);
     this.splitter1.Name = "splitter1";
     this.splitter1.Size = new System.Drawing.Size(3, 488);
     this.splitter1.TabIndex = 3;
     this.splitter1.TabStop = false;
     //
     // panel4
     //
     this.panel4.Controls.Add(this.tcPermissionItem);
     this.panel4.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel4.Location = new System.Drawing.Point(424, 0);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(370, 488);
     this.panel4.TabIndex = 2;
     //
     // tcPermissionItem
     //
     this.tcPermissionItem.Controls.Add(this.tpPermissionItem);
     this.tcPermissionItem.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPermissionItem.Location = new System.Drawing.Point(0, 0);
     this.tcPermissionItem.MinimumSize = new System.Drawing.Size(100, 100);
     this.tcPermissionItem.Name = "tcPermissionItem";
     this.tcPermissionItem.SelectedIndex = 0;
     this.tcPermissionItem.Size = new System.Drawing.Size(370, 488);
     this.tcPermissionItem.TabIndex = 0;
     //
     // tpPermissionItem
     //
     this.tpPermissionItem.Controls.Add(this.tvPermissionItem);
     this.tpPermissionItem.Location = new System.Drawing.Point(4, 22);
     this.tpPermissionItem.Name = "tpPermissionItem";
     this.tpPermissionItem.Padding = new System.Windows.Forms.Padding(3);
     this.tpPermissionItem.Size = new System.Drawing.Size(362, 462);
     this.tpPermissionItem.TabIndex = 0;
     this.tpPermissionItem.Text = "拥有操作权限";
     this.tpPermissionItem.UseVisualStyleBackColor = true;
     //
     // tvPermissionItem
     //
     this.tvPermissionItem.AllowDrop = true;
     this.tvPermissionItem.CheckBoxes = true;
     this.tvPermissionItem.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tvPermissionItem.Enabled = false;
     this.tvPermissionItem.HotTracking = true;
     this.tvPermissionItem.ImageIndex = 0;
     this.tvPermissionItem.ImageList = this.imageList;
     this.tvPermissionItem.Location = new System.Drawing.Point(3, 3);
     this.tvPermissionItem.Margin = new System.Windows.Forms.Padding(0, 3, 0, 3);
     this.tvPermissionItem.Name = "tvPermissionItem";
     this.tvPermissionItem.SelectedImageIndex = 0;
     this.tvPermissionItem.Size = new System.Drawing.Size(356, 456);
     this.tvPermissionItem.TabIndex = 0;
     this.tvPermissionItem.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tvPermissionItem_AfterCheck);
     this.tvPermissionItem.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.tvPermissionItem_NodeMouseClick);
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Controls.Add(this.btnPaste);
     this.flowLayoutPanel1.Controls.Add(this.btnCopy);
     this.flowLayoutPanel1.Controls.Add(this.btnClearPermission);
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(382, 8);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(418, 30);
     this.flowLayoutPanel1.TabIndex = 37;
     //
     // FrmRolePermission
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(806, 568);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.ucRole);
     this.Controls.Add(this.lblParentReq);
     this.Controls.Add(this.lblParent);
     this.Name = "FrmRolePermission";
     this.Text = "角色权限设置";
     this.panel1.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.tcModule.ResumeLayout(false);
     this.tpModule.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     this.tcPermissionItem.ResumeLayout(false);
     this.tpPermissionItem.ResumeLayout(false);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 57
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用主键编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnSave = new System.Windows.Forms.Button();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tpUser = new System.Windows.Forms.TabPage();
     this.grpRequestAnAccount = new System.Windows.Forms.GroupBox();
     this.ucSubCompany = new DotNet.WinForm.Common.WinControls.UCOrganizeSelect();
     this.lblSubCompany = new System.Windows.Forms.Label();
     this.txtCode = new System.Windows.Forms.TextBox();
     this.lblCode = new System.Windows.Forms.Label();
     this.txtMobile = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.ucWorkgroup = new DotNet.WinForm.Common.WinControls.UCOrganizeSelect();
     this.lblWorkgroup = new System.Windows.Forms.Label();
     this.ucDepartment = new DotNet.WinForm.Common.WinControls.UCOrganizeSelect();
     this.ucCompany = new DotNet.WinForm.Common.WinControls.UCOrganizeSelect();
     this.txtEmail = new System.Windows.Forms.TextBox();
     this.lblE_mail = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.txtDescription = new System.Windows.Forms.TextBox();
     this.lblDescription = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.lblUserNameReq = new System.Windows.Forms.Label();
     this.lblDepartment = new System.Windows.Forms.Label();
     this.lblCompanyName = new System.Windows.Forms.Label();
     this.cmbRole = new System.Windows.Forms.ComboBox();
     this.lblRole = new System.Windows.Forms.Label();
     this.txtRealName = new System.Windows.Forms.TextBox();
     this.chbEnabled = new System.Windows.Forms.CheckBox();
     this.txtUserName = new System.Windows.Forms.TextBox();
     this.lblRealName = new System.Windows.Forms.Label();
     this.lblUserName = new System.Windows.Forms.Label();
     this.tpUserOrganize = new System.Windows.Forms.TabPage();
     this.btnRemove = new System.Windows.Forms.Button();
     this.grdUserOrganize = new System.Windows.Forms.DataGridView();
     this.colSelected = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colCompanyName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colDepartmentName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWorkgroupName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colRoleName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btnAddToOrganize = new System.Windows.Forms.Button();
     this.btnInvertSelect = new System.Windows.Forms.Button();
     this.btnSelectAll = new System.Windows.Forms.Button();
     this.btnSetPassword = new System.Windows.Forms.Button();
     this.btnLikeAdd = new System.Windows.Forms.Button();
     this.tabControl1.SuspendLayout();
     this.tpUser.SuspendLayout();
     this.grpRequestAnAccount.SuspendLayout();
     this.tpUserOrganize.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdUserOrganize)).BeginInit();
     this.SuspendLayout();
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(490, 463);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 4;
     this.btnCancel.Text = "取消";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     this.btnSave.Location = new System.Drawing.Point(363, 463);
     this.btnSave.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(124, 23);
     this.btnSave.TabIndex = 3;
     this.btnSave.Text = "更新用户(&R)";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.Controls.Add(this.tpUser);
     this.tabControl1.Controls.Add(this.tpUserOrganize);
     this.tabControl1.Location = new System.Drawing.Point(8, 11);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(558, 446);
     this.tabControl1.TabIndex = 0;
     //
     // tpUser
     //
     this.tpUser.BackColor = System.Drawing.SystemColors.Control;
     this.tpUser.Controls.Add(this.grpRequestAnAccount);
     this.tpUser.Location = new System.Drawing.Point(4, 22);
     this.tpUser.Name = "tpUser";
     this.tpUser.Padding = new System.Windows.Forms.Padding(3);
     this.tpUser.Size = new System.Drawing.Size(550, 420);
     this.tpUser.TabIndex = 0;
     this.tpUser.Text = "用户信息";
     //
     // grpRequestAnAccount
     //
     this.grpRequestAnAccount.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.grpRequestAnAccount.Controls.Add(this.ucSubCompany);
     this.grpRequestAnAccount.Controls.Add(this.lblSubCompany);
     this.grpRequestAnAccount.Controls.Add(this.txtCode);
     this.grpRequestAnAccount.Controls.Add(this.lblCode);
     this.grpRequestAnAccount.Controls.Add(this.txtMobile);
     this.grpRequestAnAccount.Controls.Add(this.label2);
     this.grpRequestAnAccount.Controls.Add(this.ucWorkgroup);
     this.grpRequestAnAccount.Controls.Add(this.lblWorkgroup);
     this.grpRequestAnAccount.Controls.Add(this.ucDepartment);
     this.grpRequestAnAccount.Controls.Add(this.ucCompany);
     this.grpRequestAnAccount.Controls.Add(this.txtEmail);
     this.grpRequestAnAccount.Controls.Add(this.lblE_mail);
     this.grpRequestAnAccount.Controls.Add(this.label4);
     this.grpRequestAnAccount.Controls.Add(this.txtDescription);
     this.grpRequestAnAccount.Controls.Add(this.lblDescription);
     this.grpRequestAnAccount.Controls.Add(this.label1);
     this.grpRequestAnAccount.Controls.Add(this.lblUserNameReq);
     this.grpRequestAnAccount.Controls.Add(this.lblDepartment);
     this.grpRequestAnAccount.Controls.Add(this.lblCompanyName);
     this.grpRequestAnAccount.Controls.Add(this.cmbRole);
     this.grpRequestAnAccount.Controls.Add(this.lblRole);
     this.grpRequestAnAccount.Controls.Add(this.txtRealName);
     this.grpRequestAnAccount.Controls.Add(this.chbEnabled);
     this.grpRequestAnAccount.Controls.Add(this.txtUserName);
     this.grpRequestAnAccount.Controls.Add(this.lblRealName);
     this.grpRequestAnAccount.Controls.Add(this.lblUserName);
     this.grpRequestAnAccount.Location = new System.Drawing.Point(9, 9);
     this.grpRequestAnAccount.Name = "grpRequestAnAccount";
     this.grpRequestAnAccount.Size = new System.Drawing.Size(531, 400);
     this.grpRequestAnAccount.TabIndex = 0;
     this.grpRequestAnAccount.TabStop = false;
     this.grpRequestAnAccount.Text = "用户";
     //
     // ucSubCompany
     //
     this.ucSubCompany.AllowNull = true;
     this.ucSubCompany.AllowSelect = true;
     this.ucSubCompany.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.ucSubCompany.AutoSize = true;
     this.ucSubCompany.CanEdit = false;
     this.ucSubCompany.CheckMove = false;
     this.ucSubCompany.Location = new System.Drawing.Point(116, 217);
     this.ucSubCompany.MultiSelect = false;
     this.ucSubCompany.Name = "ucSubCompany";
     this.ucSubCompany.OpenId = "";
     this.ucSubCompany.PermissionItemScopeCode = "";
     this.ucSubCompany.SelectedFullName = "";
     this.ucSubCompany.SelectedId = "";
     this.ucSubCompany.Size = new System.Drawing.Size(383, 23);
     this.ucSubCompany.TabIndex = 17;
     //
     // lblSubCompany
     //
     this.lblSubCompany.Location = new System.Drawing.Point(4, 221);
     this.lblSubCompany.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.lblSubCompany.Name = "lblSubCompany";
     this.lblSubCompany.Size = new System.Drawing.Size(106, 12);
     this.lblSubCompany.TabIndex = 16;
     this.lblSubCompany.Text = "所在分支机构:";
     this.lblSubCompany.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtCode
     //
     this.txtCode.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCode.Location = new System.Drawing.Point(116, 76);
     this.txtCode.MaxLength = 50;
     this.txtCode.Name = "txtCode";
     this.txtCode.Size = new System.Drawing.Size(384, 21);
     this.txtCode.TabIndex = 6;
     //
     // lblCode
     //
     this.lblCode.Location = new System.Drawing.Point(4, 78);
     this.lblCode.Name = "lblCode";
     this.lblCode.Size = new System.Drawing.Size(106, 12);
     this.lblCode.TabIndex = 5;
     this.lblCode.Text = "工号(编号):";
     this.lblCode.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtMobile
     //
     this.txtMobile.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtMobile.Location = new System.Drawing.Point(116, 108);
     this.txtMobile.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
     this.txtMobile.MaxLength = 50;
     this.txtMobile.Name = "txtMobile";
     this.txtMobile.Size = new System.Drawing.Size(383, 21);
     this.txtMobile.TabIndex = 8;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(4, 111);
     this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(106, 12);
     this.label2.TabIndex = 7;
     this.label2.Text = "手机(&M):";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // ucWorkgroup
     //
     this.ucWorkgroup.AllowNull = true;
     this.ucWorkgroup.AllowSelect = true;
     this.ucWorkgroup.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.ucWorkgroup.AutoSize = true;
     this.ucWorkgroup.CanEdit = false;
     this.ucWorkgroup.CheckMove = false;
     this.ucWorkgroup.Location = new System.Drawing.Point(116, 275);
     this.ucWorkgroup.MultiSelect = false;
     this.ucWorkgroup.Name = "ucWorkgroup";
     this.ucWorkgroup.OpenId = "";
     this.ucWorkgroup.PermissionItemScopeCode = "";
     this.ucWorkgroup.SelectedFullName = "";
     this.ucWorkgroup.SelectedId = "";
     this.ucWorkgroup.Size = new System.Drawing.Size(383, 23);
     this.ucWorkgroup.TabIndex = 21;
     //
     // lblWorkgroup
     //
     this.lblWorkgroup.Location = new System.Drawing.Point(4, 278);
     this.lblWorkgroup.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.lblWorkgroup.Name = "lblWorkgroup";
     this.lblWorkgroup.Size = new System.Drawing.Size(106, 12);
     this.lblWorkgroup.TabIndex = 20;
     this.lblWorkgroup.Text = "所在工作组:";
     this.lblWorkgroup.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // ucDepartment
     //
     this.ucDepartment.AllowNull = true;
     this.ucDepartment.AllowSelect = true;
     this.ucDepartment.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.ucDepartment.AutoSize = true;
     this.ucDepartment.CanEdit = false;
     this.ucDepartment.CheckMove = false;
     this.ucDepartment.Location = new System.Drawing.Point(116, 247);
     this.ucDepartment.MultiSelect = false;
     this.ucDepartment.Name = "ucDepartment";
     this.ucDepartment.OpenId = "";
     this.ucDepartment.PermissionItemScopeCode = "";
     this.ucDepartment.SelectedFullName = "";
     this.ucDepartment.SelectedId = "";
     this.ucDepartment.Size = new System.Drawing.Size(383, 23);
     this.ucDepartment.TabIndex = 19;
     //
     // ucCompany
     //
     this.ucCompany.AllowNull = true;
     this.ucCompany.AllowSelect = true;
     this.ucCompany.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.ucCompany.AutoSize = true;
     this.ucCompany.CanEdit = false;
     this.ucCompany.CheckMove = false;
     this.ucCompany.Location = new System.Drawing.Point(116, 190);
     this.ucCompany.MultiSelect = false;
     this.ucCompany.Name = "ucCompany";
     this.ucCompany.OpenId = "";
     this.ucCompany.PermissionItemScopeCode = "";
     this.ucCompany.SelectedFullName = "";
     this.ucCompany.SelectedId = "";
     this.ucCompany.Size = new System.Drawing.Size(383, 23);
     this.ucCompany.TabIndex = 14;
     //
     // txtEmail
     //
     this.txtEmail.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtEmail.Location = new System.Drawing.Point(116, 135);
     this.txtEmail.MaxLength = 100;
     this.txtEmail.Name = "txtEmail";
     this.txtEmail.Size = new System.Drawing.Size(384, 21);
     this.txtEmail.TabIndex = 10;
     //
     // lblE_mail
     //
     this.lblE_mail.Location = new System.Drawing.Point(4, 138);
     this.lblE_mail.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.lblE_mail.Name = "lblE_mail";
     this.lblE_mail.Size = new System.Drawing.Size(106, 12);
     this.lblE_mail.TabIndex = 9;
     this.lblE_mail.Text = "E_mail(&E):";
     this.lblE_mail.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label4
     //
     this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label4.AutoSize = true;
     this.label4.ForeColor = System.Drawing.Color.Red;
     this.label4.Location = new System.Drawing.Point(509, 196);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(11, 12);
     this.label4.TabIndex = 15;
     this.label4.Text = "*";
     //
     // txtDescription
     //
     this.txtDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtDescription.Location = new System.Drawing.Point(116, 332);
     this.txtDescription.Margin = new System.Windows.Forms.Padding(4);
     this.txtDescription.MaxLength = 200;
     this.txtDescription.Multiline = true;
     this.txtDescription.Name = "txtDescription";
     this.txtDescription.Size = new System.Drawing.Size(384, 57);
     this.txtDescription.TabIndex = 24;
     //
     // lblDescription
     //
     this.lblDescription.Location = new System.Drawing.Point(4, 332);
     this.lblDescription.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblDescription.Name = "lblDescription";
     this.lblDescription.Size = new System.Drawing.Size(106, 12);
     this.lblDescription.TabIndex = 23;
     this.lblDescription.Text = "描述(&D):";
     this.lblDescription.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label1.AutoSize = true;
     this.label1.ForeColor = System.Drawing.Color.Red;
     this.label1.Location = new System.Drawing.Point(509, 51);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(11, 12);
     this.label1.TabIndex = 5;
     this.label1.Text = "*";
     //
     // lblUserNameReq
     //
     this.lblUserNameReq.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblUserNameReq.AutoSize = true;
     this.lblUserNameReq.ForeColor = System.Drawing.Color.Red;
     this.lblUserNameReq.Location = new System.Drawing.Point(509, 24);
     this.lblUserNameReq.Name = "lblUserNameReq";
     this.lblUserNameReq.Size = new System.Drawing.Size(11, 12);
     this.lblUserNameReq.TabIndex = 2;
     this.lblUserNameReq.Text = "*";
     //
     // lblDepartment
     //
     this.lblDepartment.Location = new System.Drawing.Point(4, 250);
     this.lblDepartment.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.lblDepartment.Name = "lblDepartment";
     this.lblDepartment.Size = new System.Drawing.Size(106, 12);
     this.lblDepartment.TabIndex = 18;
     this.lblDepartment.Text = "所在部门:";
     this.lblDepartment.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblCompanyName
     //
     this.lblCompanyName.Location = new System.Drawing.Point(4, 193);
     this.lblCompanyName.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.lblCompanyName.Name = "lblCompanyName";
     this.lblCompanyName.Size = new System.Drawing.Size(106, 12);
     this.lblCompanyName.TabIndex = 13;
     this.lblCompanyName.Text = "所在单位:";
     this.lblCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cmbRole
     //
     this.cmbRole.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbRole.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbRole.Location = new System.Drawing.Point(116, 163);
     this.cmbRole.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
     this.cmbRole.Name = "cmbRole";
     this.cmbRole.Size = new System.Drawing.Size(384, 20);
     this.cmbRole.TabIndex = 12;
     //
     // lblRole
     //
     this.lblRole.Location = new System.Drawing.Point(4, 166);
     this.lblRole.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.lblRole.Name = "lblRole";
     this.lblRole.Size = new System.Drawing.Size(106, 12);
     this.lblRole.TabIndex = 11;
     this.lblRole.Text = "默认角色(&R):";
     this.lblRole.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtRealName
     //
     this.txtRealName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtRealName.Location = new System.Drawing.Point(116, 47);
     this.txtRealName.MaxLength = 50;
     this.txtRealName.Name = "txtRealName";
     this.txtRealName.Size = new System.Drawing.Size(384, 21);
     this.txtRealName.TabIndex = 4;
     this.txtRealName.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.txtRealName_MouseDoubleClick);
     //
     // chbEnabled
     //
     this.chbEnabled.AutoSize = true;
     this.chbEnabled.Location = new System.Drawing.Point(116, 309);
     this.chbEnabled.Name = "chbEnabled";
     this.chbEnabled.Size = new System.Drawing.Size(48, 16);
     this.chbEnabled.TabIndex = 22;
     this.chbEnabled.Text = "有效";
     //
     // txtUserName
     //
     this.txtUserName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtUserName.Location = new System.Drawing.Point(116, 19);
     this.txtUserName.MaxLength = 50;
     this.txtUserName.Name = "txtUserName";
     this.txtUserName.Size = new System.Drawing.Size(384, 21);
     this.txtUserName.TabIndex = 1;
     //
     // lblRealName
     //
     this.lblRealName.Location = new System.Drawing.Point(4, 50);
     this.lblRealName.Name = "lblRealName";
     this.lblRealName.Size = new System.Drawing.Size(106, 12);
     this.lblRealName.TabIndex = 3;
     this.lblRealName.Text = "姓名(&N):";
     this.lblRealName.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblUserName
     //
     this.lblUserName.Location = new System.Drawing.Point(4, 22);
     this.lblUserName.Name = "lblUserName";
     this.lblUserName.Size = new System.Drawing.Size(106, 12);
     this.lblUserName.TabIndex = 0;
     this.lblUserName.Text = "用户名(&U):";
     this.lblUserName.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // tpUserOrganize
     //
     this.tpUserOrganize.BackColor = System.Drawing.SystemColors.Control;
     this.tpUserOrganize.Controls.Add(this.btnRemove);
     this.tpUserOrganize.Controls.Add(this.grdUserOrganize);
     this.tpUserOrganize.Controls.Add(this.btnAddToOrganize);
     this.tpUserOrganize.Controls.Add(this.btnInvertSelect);
     this.tpUserOrganize.Controls.Add(this.btnSelectAll);
     this.tpUserOrganize.Location = new System.Drawing.Point(4, 22);
     this.tpUserOrganize.Name = "tpUserOrganize";
     this.tpUserOrganize.Padding = new System.Windows.Forms.Padding(3);
     this.tpUserOrganize.Size = new System.Drawing.Size(550, 420);
     this.tpUserOrganize.TabIndex = 1;
     this.tpUserOrganize.Text = "兼任职务";
     //
     // btnRemove
     //
     this.btnRemove.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRemove.Enabled = false;
     this.btnRemove.Location = new System.Drawing.Point(449, 393);
     this.btnRemove.Name = "btnRemove";
     this.btnRemove.Size = new System.Drawing.Size(95, 23);
     this.btnRemove.TabIndex = 11;
     this.btnRemove.Text = "移除(&R)";
     this.btnRemove.UseVisualStyleBackColor = true;
     this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click);
     //
     // grdUserOrganize
     //
     this.grdUserOrganize.AllowUserToAddRows = false;
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.AliceBlue;
     this.grdUserOrganize.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.grdUserOrganize.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.grdUserOrganize.BackgroundColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     this.grdUserOrganize.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.grdUserOrganize.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdUserOrganize.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colSelected,
     this.colCompanyName,
     this.colDepartmentName,
     this.colWorkgroupName,
     this.colRoleName});
     this.grdUserOrganize.Location = new System.Drawing.Point(6, 6);
     this.grdUserOrganize.MultiSelect = false;
     this.grdUserOrganize.Name = "grdUserOrganize";
     this.grdUserOrganize.RowTemplate.Height = 23;
     this.grdUserOrganize.Size = new System.Drawing.Size(538, 384);
     this.grdUserOrganize.TabIndex = 4;
     //
     // colSelected
     //
     this.colSelected.DataPropertyName = "Selected";
     this.colSelected.Frozen = true;
     this.colSelected.HeaderText = "选择";
     this.colSelected.Name = "colSelected";
     this.colSelected.Width = 50;
     //
     // colCompanyName
     //
     this.colCompanyName.DataPropertyName = "CompanyName";
     this.colCompanyName.FillWeight = 90F;
     this.colCompanyName.HeaderText = "公司";
     this.colCompanyName.MaxInputLength = 50;
     this.colCompanyName.Name = "colCompanyName";
     this.colCompanyName.ReadOnly = true;
     this.colCompanyName.Width = 90;
     //
     // colDepartmentName
     //
     this.colDepartmentName.DataPropertyName = "DepartmentName";
     this.colDepartmentName.FillWeight = 200F;
     this.colDepartmentName.HeaderText = "部门";
     this.colDepartmentName.MaxInputLength = 50;
     this.colDepartmentName.Name = "colDepartmentName";
     this.colDepartmentName.ReadOnly = true;
     //
     // colWorkgroupName
     //
     this.colWorkgroupName.DataPropertyName = "WorkgroupName";
     this.colWorkgroupName.FillWeight = 90F;
     this.colWorkgroupName.HeaderText = "工作组";
     this.colWorkgroupName.MaxInputLength = 90;
     this.colWorkgroupName.Name = "colWorkgroupName";
     this.colWorkgroupName.ReadOnly = true;
     this.colWorkgroupName.Width = 90;
     //
     // colRoleName
     //
     this.colRoleName.DataPropertyName = "RoleName";
     this.colRoleName.FillWeight = 120F;
     this.colRoleName.HeaderText = "职务";
     this.colRoleName.MaxInputLength = 50;
     this.colRoleName.Name = "colRoleName";
     this.colRoleName.Width = 120;
     //
     // btnAddToOrganize
     //
     this.btnAddToOrganize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAddToOrganize.Location = new System.Drawing.Point(342, 394);
     this.btnAddToOrganize.Name = "btnAddToOrganize";
     this.btnAddToOrganize.Size = new System.Drawing.Size(101, 23);
     this.btnAddToOrganize.TabIndex = 10;
     this.btnAddToOrganize.Text = "添加兼任(&D)...";
     this.btnAddToOrganize.UseVisualStyleBackColor = true;
     this.btnAddToOrganize.Click += new System.EventHandler(this.btnAddToOrganize_Click);
     //
     // btnInvertSelect
     //
     this.btnInvertSelect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnInvertSelect.Enabled = false;
     this.btnInvertSelect.Location = new System.Drawing.Point(115, 393);
     this.btnInvertSelect.Name = "btnInvertSelect";
     this.btnInvertSelect.Size = new System.Drawing.Size(105, 23);
     this.btnInvertSelect.TabIndex = 9;
     this.btnInvertSelect.Text = "反选";
     this.btnInvertSelect.UseVisualStyleBackColor = true;
     this.btnInvertSelect.Click += new System.EventHandler(this.btnInvertSelect_Click);
     //
     // btnSelectAll
     //
     this.btnSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSelectAll.Enabled = false;
     this.btnSelectAll.Location = new System.Drawing.Point(4, 393);
     this.btnSelectAll.Name = "btnSelectAll";
     this.btnSelectAll.Size = new System.Drawing.Size(105, 23);
     this.btnSelectAll.TabIndex = 8;
     this.btnSelectAll.Text = "全选";
     this.btnSelectAll.UseVisualStyleBackColor = true;
     this.btnSelectAll.Click += new System.EventHandler(this.btnSelectAll_Click);
     //
     // btnSetPassword
     //
     this.btnSetPassword.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSetPassword.Enabled = false;
     this.btnSetPassword.Location = new System.Drawing.Point(8, 463);
     this.btnSetPassword.Name = "btnSetPassword";
     this.btnSetPassword.Size = new System.Drawing.Size(115, 23);
     this.btnSetPassword.TabIndex = 1;
     this.btnSetPassword.Text = "设置密码(&S)...";
     this.btnSetPassword.Click += new System.EventHandler(this.btnSetPassword_Click);
     //
     // btnLikeAdd
     //
     this.btnLikeAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnLikeAdd.Location = new System.Drawing.Point(128, 463);
     this.btnLikeAdd.Name = "btnLikeAdd";
     this.btnLikeAdd.Size = new System.Drawing.Size(113, 23);
     this.btnLikeAdd.TabIndex = 2;
     this.btnLikeAdd.Text = "类似添加(&A)";
     this.btnLikeAdd.UseVisualStyleBackColor = true;
     this.btnLikeAdd.Click += new System.EventHandler(this.btnLikeAdd_Click);
     //
     // FrmAccountEdit
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(573, 490);
     this.Controls.Add(this.btnLikeAdd);
     this.Controls.Add(this.btnSetPassword);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.tabControl1);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.HelpButton = true;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FrmAccountEdit";
     this.Padding = new System.Windows.Forms.Padding(8);
     this.Text = "编辑用户";
     this.tabControl1.ResumeLayout(false);
     this.tpUser.ResumeLayout(false);
     this.grpRequestAnAccount.ResumeLayout(false);
     this.grpRequestAnAccount.PerformLayout();
     this.tpUserOrganize.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdUserOrganize)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 58
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.addTravelogueNoteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.openExistingShipFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.createNewShipDataFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editCurrentShipsDataFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.createEmptyNoteFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
     this.skinTypeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.noneToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.elegantToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.blackPearlToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exactToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.zolderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.reportsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cargoManifestToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.summaryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.detailToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cargoHistoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.travelogueRSSFeedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.showJumpMapToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.stStatus = new System.Windows.Forms.ToolStripStatusLabel();
     this.sbImperialDate = new System.Windows.Forms.ToolStripStatusLabel();
     this.sbCredits = new System.Windows.Forms.ToolStripStatusLabel();
     this.sbCurrentWorld = new System.Windows.Forms.ToolStripStatusLabel();
     this.sbVersion = new System.Windows.Forms.ToolStripStatusLabel();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.tabInfo = new System.Windows.Forms.TabControl();
     this.tabPage3 = new System.Windows.Forms.TabPage();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.label6 = new System.Windows.Forms.Label();
     this.lbTradeCodes = new System.Windows.Forms.ListBox();
     this.label7 = new System.Windows.Forms.Label();
     this.lbBases = new System.Windows.Forms.ListBox();
     this.lblAlliance = new System.Windows.Forms.Label();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.lvData = new System.Windows.Forms.ListView();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.tabPage4 = new System.Windows.Forms.TabPage();
     this.edNotes = new System.Windows.Forms.TextBox();
     this.tabPage6 = new System.Windows.Forms.TabPage();
     this.edNPC = new System.Windows.Forms.TextBox();
     this.tabPage5 = new System.Windows.Forms.TabPage();
     this.lvAvailableCargo = new System.Windows.Forms.ListView();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader6 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader5 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader20 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader22 = new System.Windows.Forms.ColumnHeader();
     this.panel1 = new System.Windows.Forms.Panel();
     this.btnBuy = new System.Windows.Forms.Button();
     this.btnPassengers = new System.Windows.Forms.Button();
     this.btnGenerateCargo = new System.Windows.Forms.Button();
     this.tabPage7 = new System.Windows.Forms.TabPage();
     this.tvTravelogue = new System.Windows.Forms.TreeView();
     this.tabPage8 = new System.Windows.Forms.TabPage();
     this.tabControl2 = new System.Windows.Forms.TabControl();
     this.tabPage9 = new System.Windows.Forms.TabPage();
     this.lvShipCargo = new System.Windows.Forms.ListView();
     this.columnHeader10 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader7 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader8 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader9 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader15 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader16 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader19 = new System.Windows.Forms.ColumnHeader();
     this.cmShipCargo = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.sellCheckedCargosToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.detaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.detailedManifestReportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.tabPage10 = new System.Windows.Forms.TabPage();
     this.lvSold = new System.Windows.Forms.ListView();
     this.columnHeader11 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader12 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader13 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader17 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader14 = new System.Windows.Forms.ColumnHeader();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.label13 = new System.Windows.Forms.Label();
     this.lblShipName = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.lblManPowJump = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.lblCargo = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.lblCredits = new System.Windows.Forms.Label();
     this.lblShipFileName = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.tabPageJumpRange = new System.Windows.Forms.TabPage();
     this.lvJ6 = new System.Windows.Forms.ListView();
     this.columnHeader18 = new System.Windows.Forms.ColumnHeader();
     this.tabPage11 = new System.Windows.Forms.TabPage();
     this.webBrowser1 = new System.Windows.Forms.WebBrowser();
     this.lblSEC = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.ckLimit = new System.Windows.Forms.CheckBox();
     this.btnJump = new System.Windows.Forms.Button();
     this.cbWorlds = new System.Windows.Forms.ComboBox();
     this.cmWorld = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.showSystemToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.jumpToThisSystemToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.groupBox9 = new System.Windows.Forms.GroupBox();
     this.lblShipData = new System.Windows.Forms.Label();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.lblPortModifier = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.lblTLModifier = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.lblCustomTrade = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.lblMTTrade = new System.Windows.Forms.Label();
     this.lblT5Trade = new System.Windows.Forms.Label();
     this.lblCTTrade = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.skinCrafterLight1 = new DMSoft.SkinCrafterLight();
     this.menuStrip1.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.tabInfo.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.tabPage4.SuspendLayout();
     this.tabPage6.SuspendLayout();
     this.tabPage5.SuspendLayout();
     this.panel1.SuspendLayout();
     this.tabPage7.SuspendLayout();
     this.tabPage8.SuspendLayout();
     this.tabControl2.SuspendLayout();
     this.tabPage9.SuspendLayout();
     this.cmShipCargo.SuspendLayout();
     this.tabPage10.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.tabPageJumpRange.SuspendLayout();
     this.tabPage11.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.cmWorld.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox9.SuspendLayout();
     this.groupBox6.SuspendLayout();
     this.groupBox5.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.reportsToolStripMenuItem,
     this.aboutToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(605, 24);
     this.menuStrip1.TabIndex = 0;
     this.menuStrip1.Text = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.addTravelogueNoteToolStripMenuItem,
     this.openExistingShipFileToolStripMenuItem,
     this.createNewShipDataFileToolStripMenuItem,
     this.editCurrentShipsDataFileToolStripMenuItem,
     this.createEmptyNoteFileToolStripMenuItem,
     this.toolStripMenuItem1,
     this.skinTypeToolStripMenuItem,
     this.toolStripMenuItem2,
     this.exitToolStripMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 20);
     this.fileToolStripMenuItem.Text = "File";
     //
     // addTravelogueNoteToolStripMenuItem
     //
     this.addTravelogueNoteToolStripMenuItem.Name = "addTravelogueNoteToolStripMenuItem";
     this.addTravelogueNoteToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
     this.addTravelogueNoteToolStripMenuItem.Text = "add travelogue note";
     this.addTravelogueNoteToolStripMenuItem.Click += new System.EventHandler(this.addTravelogueNoteToolStripMenuItem_Click);
     //
     // openExistingShipFileToolStripMenuItem
     //
     this.openExistingShipFileToolStripMenuItem.Name = "openExistingShipFileToolStripMenuItem";
     this.openExistingShipFileToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
     this.openExistingShipFileToolStripMenuItem.Text = "open existing ship file";
     this.openExistingShipFileToolStripMenuItem.Click += new System.EventHandler(this.openExistingShipFileToolStripMenuItem_Click);
     //
     // createNewShipDataFileToolStripMenuItem
     //
     this.createNewShipDataFileToolStripMenuItem.Name = "createNewShipDataFileToolStripMenuItem";
     this.createNewShipDataFileToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
     this.createNewShipDataFileToolStripMenuItem.Text = "create new ship data file";
     this.createNewShipDataFileToolStripMenuItem.Click += new System.EventHandler(this.createNewShipDataFileToolStripMenuItem_Click);
     //
     // editCurrentShipsDataFileToolStripMenuItem
     //
     this.editCurrentShipsDataFileToolStripMenuItem.Name = "editCurrentShipsDataFileToolStripMenuItem";
     this.editCurrentShipsDataFileToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
     this.editCurrentShipsDataFileToolStripMenuItem.Text = "edit current ship\'s data file";
     this.editCurrentShipsDataFileToolStripMenuItem.Click += new System.EventHandler(this.editCurrentShipsDataFileToolStripMenuItem_Click);
     //
     // createEmptyNoteFileToolStripMenuItem
     //
     this.createEmptyNoteFileToolStripMenuItem.Enabled = false;
     this.createEmptyNoteFileToolStripMenuItem.Name = "createEmptyNoteFileToolStripMenuItem";
     this.createEmptyNoteFileToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
     this.createEmptyNoteFileToolStripMenuItem.Text = "create empty note file";
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(209, 6);
     //
     // skinTypeToolStripMenuItem
     //
     this.skinTypeToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.noneToolStripMenuItem,
     this.elegantToolStripMenuItem,
     this.blackPearlToolStripMenuItem,
     this.exactToolStripMenuItem,
     this.zolderToolStripMenuItem});
     this.skinTypeToolStripMenuItem.Name = "skinTypeToolStripMenuItem";
     this.skinTypeToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
     this.skinTypeToolStripMenuItem.Text = "Skin type";
     //
     // noneToolStripMenuItem
     //
     this.noneToolStripMenuItem.Name = "noneToolStripMenuItem";
     this.noneToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
     this.noneToolStripMenuItem.Text = "None";
     this.noneToolStripMenuItem.Click += new System.EventHandler(this.noneToolStripMenuItem_Click);
     //
     // elegantToolStripMenuItem
     //
     this.elegantToolStripMenuItem.Name = "elegantToolStripMenuItem";
     this.elegantToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
     this.elegantToolStripMenuItem.Text = "Elegant";
     this.elegantToolStripMenuItem.Click += new System.EventHandler(this.elegantToolStripMenuItem_Click);
     //
     // blackPearlToolStripMenuItem
     //
     this.blackPearlToolStripMenuItem.Name = "blackPearlToolStripMenuItem";
     this.blackPearlToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
     this.blackPearlToolStripMenuItem.Text = "Black Pearl";
     this.blackPearlToolStripMenuItem.Click += new System.EventHandler(this.blackPearlToolStripMenuItem_Click);
     //
     // exactToolStripMenuItem
     //
     this.exactToolStripMenuItem.Name = "exactToolStripMenuItem";
     this.exactToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
     this.exactToolStripMenuItem.Text = "Exact";
     this.exactToolStripMenuItem.Click += new System.EventHandler(this.exactToolStripMenuItem_Click);
     //
     // zolderToolStripMenuItem
     //
     this.zolderToolStripMenuItem.Name = "zolderToolStripMenuItem";
     this.zolderToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
     this.zolderToolStripMenuItem.Text = "Zolder";
     this.zolderToolStripMenuItem.Click += new System.EventHandler(this.zolderToolStripMenuItem_Click);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(209, 6);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
     this.exitToolStripMenuItem.Text = "Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // reportsToolStripMenuItem
     //
     this.reportsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.cargoManifestToolStripMenuItem,
     this.cargoHistoryToolStripMenuItem,
     this.travelogueRSSFeedToolStripMenuItem,
     this.showJumpMapToolStripMenuItem});
     this.reportsToolStripMenuItem.Name = "reportsToolStripMenuItem";
     this.reportsToolStripMenuItem.Size = new System.Drawing.Size(57, 20);
     this.reportsToolStripMenuItem.Text = "Reports";
     //
     // cargoManifestToolStripMenuItem
     //
     this.cargoManifestToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.summaryToolStripMenuItem,
     this.detailToolStripMenuItem});
     this.cargoManifestToolStripMenuItem.Name = "cargoManifestToolStripMenuItem";
     this.cargoManifestToolStripMenuItem.Size = new System.Drawing.Size(188, 22);
     this.cargoManifestToolStripMenuItem.Text = "Cargo manifest";
     //
     // summaryToolStripMenuItem
     //
     this.summaryToolStripMenuItem.Name = "summaryToolStripMenuItem";
     this.summaryToolStripMenuItem.Size = new System.Drawing.Size(129, 22);
     this.summaryToolStripMenuItem.Text = "Summary";
     this.summaryToolStripMenuItem.Click += new System.EventHandler(this.summaryToolStripMenuItem_Click);
     //
     // detailToolStripMenuItem
     //
     this.detailToolStripMenuItem.Name = "detailToolStripMenuItem";
     this.detailToolStripMenuItem.Size = new System.Drawing.Size(129, 22);
     this.detailToolStripMenuItem.Text = "Detail";
     this.detailToolStripMenuItem.Click += new System.EventHandler(this.detailToolStripMenuItem_Click);
     //
     // cargoHistoryToolStripMenuItem
     //
     this.cargoHistoryToolStripMenuItem.Name = "cargoHistoryToolStripMenuItem";
     this.cargoHistoryToolStripMenuItem.Size = new System.Drawing.Size(188, 22);
     this.cargoHistoryToolStripMenuItem.Text = "Cargo history";
     this.cargoHistoryToolStripMenuItem.Click += new System.EventHandler(this.cargoHistoryToolStripMenuItem_Click);
     //
     // travelogueRSSFeedToolStripMenuItem
     //
     this.travelogueRSSFeedToolStripMenuItem.Name = "travelogueRSSFeedToolStripMenuItem";
     this.travelogueRSSFeedToolStripMenuItem.Size = new System.Drawing.Size(188, 22);
     this.travelogueRSSFeedToolStripMenuItem.Text = "Travelogue RSS Feed";
     this.travelogueRSSFeedToolStripMenuItem.Click += new System.EventHandler(this.travelogueRSSFeedToolStripMenuItem_Click);
     //
     // showJumpMapToolStripMenuItem
     //
     this.showJumpMapToolStripMenuItem.Name = "showJumpMapToolStripMenuItem";
     this.showJumpMapToolStripMenuItem.Size = new System.Drawing.Size(188, 22);
     this.showJumpMapToolStripMenuItem.Text = "show jump map";
     this.showJumpMapToolStripMenuItem.Click += new System.EventHandler(this.showJumpMapToolStripMenuItem_Click);
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(48, 20);
     this.aboutToolStripMenuItem.Text = "About";
     this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.stStatus,
     this.sbImperialDate,
     this.sbCredits,
     this.sbCurrentWorld,
     this.sbVersion});
     this.statusStrip1.Location = new System.Drawing.Point(0, 571);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(605, 22);
     this.statusStrip1.TabIndex = 1;
     this.statusStrip1.Text = "statusStrip1";
     //
     // stStatus
     //
     this.stStatus.Name = "stStatus";
     this.stStatus.Size = new System.Drawing.Size(101, 17);
     this.stStatus.Text = "initializing system...";
     //
     // sbImperialDate
     //
     this.sbImperialDate.Name = "sbImperialDate";
     this.sbImperialDate.Size = new System.Drawing.Size(75, 17);
     this.sbImperialDate.Text = "Imperial Date:";
     //
     // sbCredits
     //
     this.sbCredits.Name = "sbCredits";
     this.sbCredits.Size = new System.Drawing.Size(18, 17);
     this.sbCredits.Text = "Cr";
     //
     // sbCurrentWorld
     //
     this.sbCurrentWorld.Name = "sbCurrentWorld";
     this.sbCurrentWorld.Size = new System.Drawing.Size(53, 17);
     this.sbCurrentWorld.Text = "nowhere!";
     //
     // sbVersion
     //
     this.sbVersion.Name = "sbVersion";
     this.sbVersion.Size = new System.Drawing.Size(58, 17);
     this.sbVersion.Text = "<version>";
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location = new System.Drawing.Point(0, 24);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(605, 547);
     this.tabControl1.TabIndex = 2;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.groupBox2);
     this.tabPage1.Controls.Add(this.groupBox1);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(597, 521);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Worlds and Cargos";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.tabInfo);
     this.groupBox2.Controls.Add(this.lblSEC);
     this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.Location = new System.Drawing.Point(3, 86);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(591, 432);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Current World Data";
     //
     // tabInfo
     //
     this.tabInfo.Controls.Add(this.tabPage3);
     this.tabInfo.Controls.Add(this.tabPage4);
     this.tabInfo.Controls.Add(this.tabPage6);
     this.tabInfo.Controls.Add(this.tabPage5);
     this.tabInfo.Controls.Add(this.tabPage7);
     this.tabInfo.Controls.Add(this.tabPage8);
     this.tabInfo.Controls.Add(this.tabPageJumpRange);
     this.tabInfo.Controls.Add(this.tabPage11);
     this.tabInfo.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.tabInfo.Location = new System.Drawing.Point(3, 46);
     this.tabInfo.Name = "tabInfo";
     this.tabInfo.SelectedIndex = 0;
     this.tabInfo.Size = new System.Drawing.Size(585, 383);
     this.tabInfo.TabIndex = 1;
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.splitContainer1);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name = "tabPage3";
     this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage3.Size = new System.Drawing.Size(577, 357);
     this.tabPage3.TabIndex = 0;
     this.tabPage3.Text = "World Data";
     this.tabPage3.UseVisualStyleBackColor = true;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(3, 3);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.tableLayoutPanel2);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.lvData);
     this.splitContainer1.Size = new System.Drawing.Size(571, 351);
     this.splitContainer1.SplitterDistance = 190;
     this.splitContainer1.TabIndex = 0;
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.ColumnCount = 1;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel2.Controls.Add(this.label6, 0, 0);
     this.tableLayoutPanel2.Controls.Add(this.lbTradeCodes, 0, 1);
     this.tableLayoutPanel2.Controls.Add(this.label7, 0, 2);
     this.tableLayoutPanel2.Controls.Add(this.lbBases, 0, 3);
     this.tableLayoutPanel2.Controls.Add(this.lblAlliance, 0, 4);
     this.tableLayoutPanel2.Controls.Add(this.pictureBox1, 0, 5);
     this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel2.Name = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 6;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 60F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 40F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 80F));
     this.tableLayoutPanel2.Size = new System.Drawing.Size(190, 351);
     this.tableLayoutPanel2.TabIndex = 0;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(3, 0);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(68, 13);
     this.label6.TabIndex = 0;
     this.label6.Text = "Trade Codes";
     //
     // lbTradeCodes
     //
     this.lbTradeCodes.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lbTradeCodes.FormattingEnabled = true;
     this.lbTradeCodes.Location = new System.Drawing.Point(3, 23);
     this.lbTradeCodes.Name = "lbTradeCodes";
     this.lbTradeCodes.Size = new System.Drawing.Size(184, 108);
     this.lbTradeCodes.TabIndex = 1;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(3, 134);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(36, 13);
     this.label7.TabIndex = 2;
     this.label7.Text = "Bases";
     //
     // lbBases
     //
     this.lbBases.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lbBases.FormattingEnabled = true;
     this.lbBases.Location = new System.Drawing.Point(3, 157);
     this.lbBases.Name = "lbBases";
     this.lbBases.Size = new System.Drawing.Size(184, 69);
     this.lbBases.TabIndex = 3;
     //
     // lblAlliance
     //
     this.lblAlliance.AutoSize = true;
     this.lblAlliance.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAlliance.Location = new System.Drawing.Point(3, 230);
     this.lblAlliance.Name = "lblAlliance";
     this.lblAlliance.Size = new System.Drawing.Size(80, 20);
     this.lblAlliance.TabIndex = 4;
     this.lblAlliance.Text = "<alliance>";
     //
     // pictureBox1
     //
     this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.pictureBox1.Location = new System.Drawing.Point(3, 273);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(184, 75);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.pictureBox1.TabIndex = 5;
     this.pictureBox1.TabStop = false;
     //
     // lvData
     //
     this.lvData.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2});
     this.lvData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lvData.Location = new System.Drawing.Point(0, 0);
     this.lvData.Name = "lvData";
     this.lvData.Size = new System.Drawing.Size(377, 351);
     this.lvData.TabIndex = 7;
     this.lvData.UseCompatibleStateImageBehavior = false;
     this.lvData.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Data";
     this.columnHeader1.Width = 100;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Description";
     this.columnHeader2.Width = 234;
     //
     // tabPage4
     //
     this.tabPage4.Controls.Add(this.edNotes);
     this.tabPage4.Location = new System.Drawing.Point(4, 22);
     this.tabPage4.Name = "tabPage4";
     this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage4.Size = new System.Drawing.Size(577, 357);
     this.tabPage4.TabIndex = 1;
     this.tabPage4.Text = "System Notes";
     this.tabPage4.UseVisualStyleBackColor = true;
     //
     // edNotes
     //
     this.edNotes.AcceptsReturn = true;
     this.edNotes.AcceptsTab = true;
     this.edNotes.Dock = System.Windows.Forms.DockStyle.Fill;
     this.edNotes.Location = new System.Drawing.Point(3, 3);
     this.edNotes.Multiline = true;
     this.edNotes.Name = "edNotes";
     this.edNotes.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.edNotes.Size = new System.Drawing.Size(571, 351);
     this.edNotes.TabIndex = 0;
     //
     // tabPage6
     //
     this.tabPage6.Controls.Add(this.edNPC);
     this.tabPage6.Location = new System.Drawing.Point(4, 22);
     this.tabPage6.Name = "tabPage6";
     this.tabPage6.Size = new System.Drawing.Size(577, 357);
     this.tabPage6.TabIndex = 3;
     this.tabPage6.Text = "NPC Notes";
     this.tabPage6.UseVisualStyleBackColor = true;
     //
     // edNPC
     //
     this.edNPC.Dock = System.Windows.Forms.DockStyle.Fill;
     this.edNPC.Location = new System.Drawing.Point(0, 0);
     this.edNPC.Multiline = true;
     this.edNPC.Name = "edNPC";
     this.edNPC.Size = new System.Drawing.Size(577, 357);
     this.edNPC.TabIndex = 0;
     //
     // tabPage5
     //
     this.tabPage5.Controls.Add(this.lvAvailableCargo);
     this.tabPage5.Controls.Add(this.panel1);
     this.tabPage5.Location = new System.Drawing.Point(4, 22);
     this.tabPage5.Name = "tabPage5";
     this.tabPage5.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage5.Size = new System.Drawing.Size(577, 357);
     this.tabPage5.TabIndex = 2;
     this.tabPage5.Text = "Trade";
     this.tabPage5.UseVisualStyleBackColor = true;
     //
     // lvAvailableCargo
     //
     this.lvAvailableCargo.CheckBoxes = true;
     this.lvAvailableCargo.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader3,
     this.columnHeader4,
     this.columnHeader6,
     this.columnHeader5,
     this.columnHeader20,
     this.columnHeader22});
     this.lvAvailableCargo.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lvAvailableCargo.Location = new System.Drawing.Point(3, 56);
     this.lvAvailableCargo.Name = "lvAvailableCargo";
     this.lvAvailableCargo.Size = new System.Drawing.Size(571, 298);
     this.lvAvailableCargo.TabIndex = 1;
     this.lvAvailableCargo.UseCompatibleStateImageBehavior = false;
     this.lvAvailableCargo.View = System.Windows.Forms.View.Details;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Cargo Code";
     this.columnHeader3.Width = 162;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "Cost";
     this.columnHeader4.Width = 46;
     //
     // columnHeader6
     //
     this.columnHeader6.Text = "Tons";
     this.columnHeader6.Width = 49;
     //
     // columnHeader5
     //
     this.columnHeader5.Text = "Description";
     this.columnHeader5.Width = 222;
     //
     // columnHeader20
     //
     this.columnHeader20.Text = "basecost";
     this.columnHeader20.Width = 0;
     //
     // columnHeader22
     //
     this.columnHeader22.Text = "avmod";
     this.columnHeader22.Width = 0;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.btnBuy);
     this.panel1.Controls.Add(this.btnPassengers);
     this.panel1.Controls.Add(this.btnGenerateCargo);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(3, 3);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(571, 53);
     this.panel1.TabIndex = 0;
     //
     // btnBuy
     //
     this.btnBuy.Location = new System.Drawing.Point(403, 14);
     this.btnBuy.Name = "btnBuy";
     this.btnBuy.Size = new System.Drawing.Size(75, 23);
     this.btnBuy.TabIndex = 2;
     this.btnBuy.Text = "buy!";
     this.toolTip1.SetToolTip(this.btnBuy, "purchase checked items");
     this.btnBuy.UseVisualStyleBackColor = true;
     this.btnBuy.Click += new System.EventHandler(this.btnBuy_Click);
     //
     // btnPassengers
     //
     this.btnPassengers.Location = new System.Drawing.Point(161, 14);
     this.btnPassengers.Name = "btnPassengers";
     this.btnPassengers.Size = new System.Drawing.Size(236, 23);
     this.btnPassengers.TabIndex = 1;
     this.btnPassengers.Text = "check for passengers (on day leaving only)";
     this.btnPassengers.UseVisualStyleBackColor = true;
     this.btnPassengers.Click += new System.EventHandler(this.btnPassengers_Click);
     //
     // btnGenerateCargo
     //
     this.btnGenerateCargo.Location = new System.Drawing.Point(12, 14);
     this.btnGenerateCargo.Name = "btnGenerateCargo";
     this.btnGenerateCargo.Size = new System.Drawing.Size(143, 23);
     this.btnGenerateCargo.TabIndex = 0;
     this.btnGenerateCargo.Text = "check for cargo";
     this.btnGenerateCargo.UseVisualStyleBackColor = true;
     this.btnGenerateCargo.Click += new System.EventHandler(this.btnGenerateCargo_Click);
     //
     // tabPage7
     //
     this.tabPage7.Controls.Add(this.tvTravelogue);
     this.tabPage7.Location = new System.Drawing.Point(4, 22);
     this.tabPage7.Name = "tabPage7";
     this.tabPage7.Size = new System.Drawing.Size(577, 357);
     this.tabPage7.TabIndex = 4;
     this.tabPage7.Text = "Travelogue";
     this.tabPage7.UseVisualStyleBackColor = true;
     //
     // tvTravelogue
     //
     this.tvTravelogue.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tvTravelogue.Location = new System.Drawing.Point(0, 0);
     this.tvTravelogue.Name = "tvTravelogue";
     this.tvTravelogue.Size = new System.Drawing.Size(577, 357);
     this.tvTravelogue.TabIndex = 0;
     //
     // tabPage8
     //
     this.tabPage8.Controls.Add(this.tabControl2);
     this.tabPage8.Controls.Add(this.tableLayoutPanel1);
     this.tabPage8.Controls.Add(this.lblShipFileName);
     this.tabPage8.Controls.Add(this.label12);
     this.tabPage8.Location = new System.Drawing.Point(4, 22);
     this.tabPage8.Name = "tabPage8";
     this.tabPage8.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage8.Size = new System.Drawing.Size(577, 357);
     this.tabPage8.TabIndex = 5;
     this.tabPage8.Text = "Ship Info";
     this.tabPage8.UseVisualStyleBackColor = true;
     //
     // tabControl2
     //
     this.tabControl2.Controls.Add(this.tabPage9);
     this.tabControl2.Controls.Add(this.tabPage10);
     this.tabControl2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.tabControl2.Location = new System.Drawing.Point(3, 146);
     this.tabControl2.Name = "tabControl2";
     this.tabControl2.SelectedIndex = 0;
     this.tabControl2.Size = new System.Drawing.Size(571, 208);
     this.tabControl2.TabIndex = 4;
     //
     // tabPage9
     //
     this.tabPage9.Controls.Add(this.lvShipCargo);
     this.tabPage9.Location = new System.Drawing.Point(4, 22);
     this.tabPage9.Name = "tabPage9";
     this.tabPage9.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage9.Size = new System.Drawing.Size(563, 182);
     this.tabPage9.TabIndex = 0;
     this.tabPage9.Text = "Current Cargo";
     this.tabPage9.UseVisualStyleBackColor = true;
     //
     // lvShipCargo
     //
     this.lvShipCargo.CheckBoxes = true;
     this.lvShipCargo.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader10,
     this.columnHeader7,
     this.columnHeader8,
     this.columnHeader9,
     this.columnHeader15,
     this.columnHeader16,
     this.columnHeader19});
     this.lvShipCargo.ContextMenuStrip = this.cmShipCargo;
     this.lvShipCargo.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lvShipCargo.Location = new System.Drawing.Point(3, 3);
     this.lvShipCargo.Name = "lvShipCargo";
     this.lvShipCargo.Size = new System.Drawing.Size(557, 176);
     this.lvShipCargo.TabIndex = 0;
     this.lvShipCargo.UseCompatibleStateImageBehavior = false;
     this.lvShipCargo.View = System.Windows.Forms.View.Details;
     //
     // columnHeader10
     //
     this.columnHeader10.Text = "Description";
     this.columnHeader10.Width = 161;
     //
     // columnHeader7
     //
     this.columnHeader7.Text = "Cargo code";
     this.columnHeader7.Width = 166;
     //
     // columnHeader8
     //
     this.columnHeader8.Text = "Cost";
     this.columnHeader8.Width = 44;
     //
     // columnHeader9
     //
     this.columnHeader9.Text = "Tons";
     this.columnHeader9.Width = 47;
     //
     // columnHeader15
     //
     this.columnHeader15.Text = "Date";
     //
     // columnHeader16
     //
     this.columnHeader16.Text = "Origination";
     //
     // columnHeader19
     //
     this.columnHeader19.Text = "ID";
     //
     // cmShipCargo
     //
     this.cmShipCargo.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.sellCheckedCargosToolStripMenuItem,
     this.detaToolStripMenuItem,
     this.detailedManifestReportToolStripMenuItem});
     this.cmShipCargo.Name = "cmShipCargo";
     this.cmShipCargo.Size = new System.Drawing.Size(206, 70);
     //
     // sellCheckedCargosToolStripMenuItem
     //
     this.sellCheckedCargosToolStripMenuItem.Name = "sellCheckedCargosToolStripMenuItem";
     this.sellCheckedCargosToolStripMenuItem.Size = new System.Drawing.Size(205, 22);
     this.sellCheckedCargosToolStripMenuItem.Text = "sell checked cargos";
     this.sellCheckedCargosToolStripMenuItem.Click += new System.EventHandler(this.sellCheckedCargosToolStripMenuItem_Click);
     //
     // detaToolStripMenuItem
     //
     this.detaToolStripMenuItem.Name = "detaToolStripMenuItem";
     this.detaToolStripMenuItem.Size = new System.Drawing.Size(205, 22);
     this.detaToolStripMenuItem.Text = "summary manifest report";
     this.detaToolStripMenuItem.Click += new System.EventHandler(this.detaToolStripMenuItem_Click);
     //
     // detailedManifestReportToolStripMenuItem
     //
     this.detailedManifestReportToolStripMenuItem.Name = "detailedManifestReportToolStripMenuItem";
     this.detailedManifestReportToolStripMenuItem.Size = new System.Drawing.Size(205, 22);
     this.detailedManifestReportToolStripMenuItem.Text = "detailed manifest report";
     this.detailedManifestReportToolStripMenuItem.Click += new System.EventHandler(this.detailedManifestReportToolStripMenuItem_Click);
     //
     // tabPage10
     //
     this.tabPage10.Controls.Add(this.lvSold);
     this.tabPage10.Location = new System.Drawing.Point(4, 22);
     this.tabPage10.Name = "tabPage10";
     this.tabPage10.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage10.Size = new System.Drawing.Size(563, 182);
     this.tabPage10.TabIndex = 1;
     this.tabPage10.Text = "Sold Cargo";
     this.tabPage10.UseVisualStyleBackColor = true;
     //
     // lvSold
     //
     this.lvSold.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader11,
     this.columnHeader12,
     this.columnHeader13,
     this.columnHeader17,
     this.columnHeader14});
     this.lvSold.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lvSold.Location = new System.Drawing.Point(3, 3);
     this.lvSold.Name = "lvSold";
     this.lvSold.Size = new System.Drawing.Size(557, 176);
     this.lvSold.TabIndex = 0;
     this.lvSold.UseCompatibleStateImageBehavior = false;
     this.lvSold.View = System.Windows.Forms.View.Details;
     //
     // columnHeader11
     //
     this.columnHeader11.Text = "Code";
     this.columnHeader11.Width = 84;
     //
     // columnHeader12
     //
     this.columnHeader12.Text = "Description";
     this.columnHeader12.Width = 156;
     //
     // columnHeader13
     //
     this.columnHeader13.Text = "Cost";
     //
     // columnHeader17
     //
     this.columnHeader17.Text = "Date";
     //
     // columnHeader14
     //
     this.columnHeader14.Text = "Sold Location";
     this.columnHeader14.Width = 165;
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 2;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 28.5124F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 71.4876F));
     this.tableLayoutPanel1.Controls.Add(this.label13, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.lblShipName, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.label14, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.lblManPowJump, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.label15, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.lblCargo, 1, 2);
     this.tableLayoutPanel1.Controls.Add(this.label16, 0, 3);
     this.tableLayoutPanel1.Controls.Add(this.lblCredits, 1, 3);
     this.tableLayoutPanel1.Location = new System.Drawing.Point(9, 37);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 4;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(484, 103);
     this.tableLayoutPanel1.TabIndex = 3;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(3, 0);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(59, 13);
     this.label13.TabIndex = 0;
     this.label13.Text = "Ship Name";
     //
     // lblShipName
     //
     this.lblShipName.AutoSize = true;
     this.lblShipName.Location = new System.Drawing.Point(141, 0);
     this.lblShipName.Name = "lblShipName";
     this.lblShipName.Size = new System.Drawing.Size(36, 13);
     this.lblShipName.TabIndex = 1;
     this.lblShipName.Text = "<info>";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(3, 27);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(84, 13);
     this.label14.TabIndex = 2;
     this.label14.Text = "Man/Pow/Jump";
     //
     // lblManPowJump
     //
     this.lblManPowJump.AutoSize = true;
     this.lblManPowJump.Location = new System.Drawing.Point(141, 27);
     this.lblManPowJump.Name = "lblManPowJump";
     this.lblManPowJump.Size = new System.Drawing.Size(36, 13);
     this.lblManPowJump.TabIndex = 3;
     this.lblManPowJump.Text = "<info>";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(3, 54);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(35, 13);
     this.label15.TabIndex = 4;
     this.label15.Text = "Cargo";
     //
     // lblCargo
     //
     this.lblCargo.AutoSize = true;
     this.lblCargo.Location = new System.Drawing.Point(141, 54);
     this.lblCargo.Name = "lblCargo";
     this.lblCargo.Size = new System.Drawing.Size(36, 13);
     this.lblCargo.TabIndex = 5;
     this.lblCargo.Text = "<info>";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(3, 81);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(39, 13);
     this.label16.TabIndex = 6;
     this.label16.Text = "Credits";
     //
     // lblCredits
     //
     this.lblCredits.AutoSize = true;
     this.lblCredits.Location = new System.Drawing.Point(141, 81);
     this.lblCredits.Name = "lblCredits";
     this.lblCredits.Size = new System.Drawing.Size(36, 13);
     this.lblCredits.TabIndex = 7;
     this.lblCredits.Text = "<info>";
     //
     // lblShipFileName
     //
     this.lblShipFileName.AutoSize = true;
     this.lblShipFileName.Location = new System.Drawing.Point(59, 13);
     this.lblShipFileName.Name = "lblShipFileName";
     this.lblShipFileName.Size = new System.Drawing.Size(36, 13);
     this.lblShipFileName.TabIndex = 1;
     this.lblShipFileName.Text = "<info>";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(6, 13);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(47, 13);
     this.label12.TabIndex = 0;
     this.label12.Text = "Ship file:";
     //
     // tabPageJumpRange
     //
     this.tabPageJumpRange.Controls.Add(this.lvJ6);
     this.tabPageJumpRange.Location = new System.Drawing.Point(4, 22);
     this.tabPageJumpRange.Name = "tabPageJumpRange";
     this.tabPageJumpRange.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageJumpRange.Size = new System.Drawing.Size(577, 357);
     this.tabPageJumpRange.TabIndex = 6;
     this.tabPageJumpRange.Text = "Jump 6 Systems";
     this.tabPageJumpRange.UseVisualStyleBackColor = true;
     //
     // lvJ6
     //
     this.lvJ6.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader18});
     this.lvJ6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lvJ6.Font = new System.Drawing.Font("Courier New", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lvJ6.Location = new System.Drawing.Point(3, 3);
     this.lvJ6.Name = "lvJ6";
     this.lvJ6.Size = new System.Drawing.Size(571, 351);
     this.lvJ6.TabIndex = 0;
     this.lvJ6.UseCompatibleStateImageBehavior = false;
     this.lvJ6.View = System.Windows.Forms.View.Details;
     this.lvJ6.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lvJ6_MouseDoubleClick);
     //
     // columnHeader18
     //
     this.columnHeader18.Text = "System";
     this.columnHeader18.Width = 533;
     //
     // tabPage11
     //
     this.tabPage11.Controls.Add(this.webBrowser1);
     this.tabPage11.Location = new System.Drawing.Point(4, 22);
     this.tabPage11.Name = "tabPage11";
     this.tabPage11.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage11.Size = new System.Drawing.Size(577, 357);
     this.tabPage11.TabIndex = 7;
     this.tabPage11.Text = "TravellerMap";
     this.tabPage11.UseVisualStyleBackColor = true;
     //
     // webBrowser1
     //
     this.webBrowser1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.webBrowser1.Location = new System.Drawing.Point(3, 3);
     this.webBrowser1.MinimumSize = new System.Drawing.Size(20, 20);
     this.webBrowser1.Name = "webBrowser1";
     this.webBrowser1.Size = new System.Drawing.Size(571, 351);
     this.webBrowser1.TabIndex = 0;
     //
     // lblSEC
     //
     this.lblSEC.AutoSize = true;
     this.lblSEC.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSEC.Location = new System.Drawing.Point(3, 20);
     this.lblSEC.Name = "lblSEC";
     this.lblSEC.Size = new System.Drawing.Size(173, 18);
     this.lblSEC.TabIndex = 0;
     this.lblSEC.Text = "<no current location set>";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.ckLimit);
     this.groupBox1.Controls.Add(this.btnJump);
     this.groupBox1.Controls.Add(this.cbWorlds);
     this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupBox1.Location = new System.Drawing.Point(3, 3);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(591, 83);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Jump to new system";
     //
     // ckLimit
     //
     this.ckLimit.AutoSize = true;
     this.ckLimit.Location = new System.Drawing.Point(350, 52);
     this.ckLimit.Name = "ckLimit";
     this.ckLimit.Size = new System.Drawing.Size(157, 17);
     this.ckLimit.TabIndex = 3;
     this.ckLimit.Text = "show ONLY worlds in range";
     this.ckLimit.UseVisualStyleBackColor = true;
     this.ckLimit.CheckStateChanged += new System.EventHandler(this.ckLimit_CheckStateChanged);
     //
     // btnJump
     //
     this.btnJump.Location = new System.Drawing.Point(205, 48);
     this.btnJump.Name = "btnJump";
     this.btnJump.Size = new System.Drawing.Size(75, 23);
     this.btnJump.TabIndex = 1;
     this.btnJump.Text = "jump";
     this.btnJump.UseVisualStyleBackColor = true;
     this.btnJump.Click += new System.EventHandler(this.btnJump_Click);
     //
     // cbWorlds
     //
     this.cbWorlds.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.cbWorlds.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.cbWorlds.ContextMenuStrip = this.cmWorld;
     this.cbWorlds.Cursor = System.Windows.Forms.Cursors.Default;
     this.cbWorlds.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cbWorlds.FormattingEnabled = true;
     this.cbWorlds.Location = new System.Drawing.Point(3, 19);
     this.cbWorlds.Name = "cbWorlds";
     this.cbWorlds.Size = new System.Drawing.Size(569, 23);
     this.cbWorlds.TabIndex = 0;
     this.toolTip1.SetToolTip(this.cbWorlds, "world system");
     //
     // cmWorld
     //
     this.cmWorld.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.showSystemToolStripMenuItem,
     this.jumpToThisSystemToolStripMenuItem});
     this.cmWorld.Name = "cmWorld";
     this.cmWorld.Size = new System.Drawing.Size(179, 48);
     //
     // showSystemToolStripMenuItem
     //
     this.showSystemToolStripMenuItem.Name = "showSystemToolStripMenuItem";
     this.showSystemToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.showSystemToolStripMenuItem.Text = "show system";
     this.showSystemToolStripMenuItem.Click += new System.EventHandler(this.showSystemToolStripMenuItem_Click);
     //
     // jumpToThisSystemToolStripMenuItem
     //
     this.jumpToThisSystemToolStripMenuItem.Name = "jumpToThisSystemToolStripMenuItem";
     this.jumpToThisSystemToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.jumpToThisSystemToolStripMenuItem.Text = "jump to this system";
     this.jumpToThisSystemToolStripMenuItem.Click += new System.EventHandler(this.jumpToThisSystemToolStripMenuItem_Click);
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.groupBox4);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size = new System.Drawing.Size(597, 521);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "Settings";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // groupBox4
     //
     this.groupBox4.BackColor = System.Drawing.Color.Transparent;
     this.groupBox4.Controls.Add(this.groupBox9);
     this.groupBox4.Controls.Add(this.groupBox6);
     this.groupBox4.Controls.Add(this.groupBox5);
     this.groupBox4.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupBox4.Location = new System.Drawing.Point(3, 3);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(591, 290);
     this.groupBox4.TabIndex = 1;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "System Files";
     //
     // groupBox9
     //
     this.groupBox9.Controls.Add(this.lblShipData);
     this.groupBox9.Location = new System.Drawing.Point(9, 227);
     this.groupBox9.Name = "groupBox9";
     this.groupBox9.Size = new System.Drawing.Size(487, 35);
     this.groupBox9.TabIndex = 8;
     this.groupBox9.TabStop = false;
     this.groupBox9.Text = "Ship\'s Data File";
     //
     // lblShipData
     //
     this.lblShipData.AutoSize = true;
     this.lblShipData.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblShipData.Location = new System.Drawing.Point(15, 16);
     this.lblShipData.Name = "lblShipData";
     this.lblShipData.Size = new System.Drawing.Size(2, 15);
     this.lblShipData.TabIndex = 5;
     //
     // groupBox6
     //
     this.groupBox6.Controls.Add(this.lblPortModifier);
     this.groupBox6.Controls.Add(this.label5);
     this.groupBox6.Controls.Add(this.lblTLModifier);
     this.groupBox6.Controls.Add(this.label4);
     this.groupBox6.Location = new System.Drawing.Point(9, 141);
     this.groupBox6.Name = "groupBox6";
     this.groupBox6.Size = new System.Drawing.Size(487, 80);
     this.groupBox6.TabIndex = 6;
     this.groupBox6.TabStop = false;
     this.groupBox6.Text = "GURPS WTN Data Files";
     //
     // lblPortModifier
     //
     this.lblPortModifier.AutoSize = true;
     this.lblPortModifier.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblPortModifier.Location = new System.Drawing.Point(123, 49);
     this.lblPortModifier.Name = "lblPortModifier";
     this.lblPortModifier.Size = new System.Drawing.Size(2, 15);
     this.lblPortModifier.TabIndex = 6;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(12, 51);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(95, 13);
     this.label5.TabIndex = 5;
     this.label5.Text = "Port Modifier Data:";
     //
     // lblTLModifier
     //
     this.lblTLModifier.AutoSize = true;
     this.lblTLModifier.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblTLModifier.Location = new System.Drawing.Point(123, 26);
     this.lblTLModifier.Name = "lblTLModifier";
     this.lblTLModifier.Size = new System.Drawing.Size(2, 15);
     this.lblTLModifier.TabIndex = 4;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(12, 26);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(89, 13);
     this.label4.TabIndex = 0;
     this.label4.Text = "TL Modifier Data:";
     //
     // groupBox5
     //
     this.groupBox5.BackColor = System.Drawing.Color.Transparent;
     this.groupBox5.Controls.Add(this.lblCustomTrade);
     this.groupBox5.Controls.Add(this.label9);
     this.groupBox5.Controls.Add(this.lblMTTrade);
     this.groupBox5.Controls.Add(this.lblT5Trade);
     this.groupBox5.Controls.Add(this.lblCTTrade);
     this.groupBox5.Controls.Add(this.label3);
     this.groupBox5.Controls.Add(this.label2);
     this.groupBox5.Controls.Add(this.label1);
     this.groupBox5.Location = new System.Drawing.Point(9, 16);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(487, 119);
     this.groupBox5.TabIndex = 0;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Trade Classification Data Files";
     //
     // lblCustomTrade
     //
     this.lblCustomTrade.AutoSize = true;
     this.lblCustomTrade.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblCustomTrade.Location = new System.Drawing.Point(126, 96);
     this.lblCustomTrade.Name = "lblCustomTrade";
     this.lblCustomTrade.Size = new System.Drawing.Size(2, 15);
     this.lblCustomTrade.TabIndex = 7;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(15, 98);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(45, 13);
     this.label9.TabIndex = 6;
     this.label9.Text = "Custom:";
     //
     // lblMTTrade
     //
     this.lblMTTrade.AutoSize = true;
     this.lblMTTrade.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblMTTrade.Location = new System.Drawing.Point(126, 73);
     this.lblMTTrade.Name = "lblMTTrade";
     this.lblMTTrade.Size = new System.Drawing.Size(2, 15);
     this.lblMTTrade.TabIndex = 5;
     //
     // lblT5Trade
     //
     this.lblT5Trade.AutoSize = true;
     this.lblT5Trade.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblT5Trade.Location = new System.Drawing.Point(126, 49);
     this.lblT5Trade.Name = "lblT5Trade";
     this.lblT5Trade.Size = new System.Drawing.Size(2, 15);
     this.lblT5Trade.TabIndex = 4;
     //
     // lblCTTrade
     //
     this.lblCTTrade.AutoSize = true;
     this.lblCTTrade.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblCTTrade.Location = new System.Drawing.Point(126, 25);
     this.lblCTTrade.Name = "lblCTTrade";
     this.lblCTTrade.Size = new System.Drawing.Size(2, 15);
     this.lblCTTrade.TabIndex = 3;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(15, 75);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(104, 13);
     this.label3.TabIndex = 2;
     this.label3.Text = "Mongoose Traveller:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(15, 49);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(67, 13);
     this.label2.TabIndex = 1;
     this.label2.Text = "T5 Traveller:";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(15, 25);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(87, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Classic Traveller:";
     //
     // skinCrafterLight1
     //
     this.skinCrafterLight1.Skin = DMSoft.Skinset.None;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(605, 593);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.menuStrip1);
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "Form1";
     this.Text = "Traveller";
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.tabInfo.ResumeLayout(false);
     this.tabPage3.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.tableLayoutPanel2.ResumeLayout(false);
     this.tableLayoutPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.tabPage4.ResumeLayout(false);
     this.tabPage4.PerformLayout();
     this.tabPage6.ResumeLayout(false);
     this.tabPage6.PerformLayout();
     this.tabPage5.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.tabPage7.ResumeLayout(false);
     this.tabPage8.ResumeLayout(false);
     this.tabPage8.PerformLayout();
     this.tabControl2.ResumeLayout(false);
     this.tabPage9.ResumeLayout(false);
     this.cmShipCargo.ResumeLayout(false);
     this.tabPage10.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     this.tabPageJumpRange.ResumeLayout(false);
     this.tabPage11.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.cmWorld.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.groupBox4.ResumeLayout(false);
     this.groupBox9.ResumeLayout(false);
     this.groupBox9.PerformLayout();
     this.groupBox6.ResumeLayout(false);
     this.groupBox6.PerformLayout();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("齿轮轴");
     System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("齿轮");
     System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("第一级", new System.Windows.Forms.TreeNode[] {
     treeNode1,
     treeNode2});
     System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("齿轮轴");
     System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("齿轮");
     System.Windows.Forms.TreeNode treeNode6 = new System.Windows.Forms.TreeNode("第二级", new System.Windows.Forms.TreeNode[] {
     treeNode4,
     treeNode5});
     System.Windows.Forms.TreeNode treeNode7 = new System.Windows.Forms.TreeNode("齿轮轴");
     System.Windows.Forms.TreeNode treeNode8 = new System.Windows.Forms.TreeNode("齿轮");
     System.Windows.Forms.TreeNode treeNode9 = new System.Windows.Forms.TreeNode("第三级", new System.Windows.Forms.TreeNode[] {
     treeNode7,
     treeNode8});
     System.Windows.Forms.TreeNode treeNode10 = new System.Windows.Forms.TreeNode("输出轴");
     System.Windows.Forms.TreeNode treeNode11 = new System.Windows.Forms.TreeNode("装配");
     System.Windows.Forms.TreeNode treeNode12 = new System.Windows.Forms.TreeNode("减速器", new System.Windows.Forms.TreeNode[] {
     treeNode3,
     treeNode6,
     treeNode9,
     treeNode10,
     treeNode11});
     this.btForceForm = new System.Windows.Forms.Button();
     this.treeView1 = new System.Windows.Forms.TreeView();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.splitContainer4 = new System.Windows.Forms.SplitContainer();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.button7 = new System.Windows.Forms.Button();
     this.btKeyForm = new System.Windows.Forms.Button();
     this.button3 = new System.Windows.Forms.Button();
     this.button1 = new System.Windows.Forms.Button();
     this.btInterferenceForm = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.btQuit = new System.Windows.Forms.Button();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.splitContainer3 = new System.Windows.Forms.SplitContainer();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.tabPage3 = new System.Windows.Forms.TabPage();
     this.tabPage4 = new System.Windows.Forms.TabPage();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer4)).BeginInit();
     this.splitContainer4.Panel1.SuspendLayout();
     this.splitContainer4.Panel2.SuspendLayout();
     this.splitContainer4.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).BeginInit();
     this.splitContainer3.Panel1.SuspendLayout();
     this.splitContainer3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // btForceForm
     //
     this.btForceForm.Location = new System.Drawing.Point(41, 38);
     this.btForceForm.Name = "btForceForm";
     this.btForceForm.Size = new System.Drawing.Size(107, 23);
     this.btForceForm.TabIndex = 0;
     this.btForceForm.Text = "轴承受力计算";
     this.btForceForm.UseVisualStyleBackColor = true;
     this.btForceForm.Click += new System.EventHandler(this.btForceForm_Click);
     //
     // treeView1
     //
     this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeView1.Location = new System.Drawing.Point(0, 0);
     this.treeView1.Name = "treeView1";
     treeNode1.Name = "节点2";
     treeNode1.Text = "齿轮轴";
     treeNode2.Name = "节点3";
     treeNode2.Text = "齿轮";
     treeNode3.Name = "节点1";
     treeNode3.Text = "第一级";
     treeNode4.Name = "节点5";
     treeNode4.Text = "齿轮轴";
     treeNode5.Name = "节点6";
     treeNode5.Text = "齿轮";
     treeNode6.Name = "节点4";
     treeNode6.Text = "第二级";
     treeNode7.Name = "节点8";
     treeNode7.Text = "齿轮轴";
     treeNode8.Name = "节点9";
     treeNode8.Text = "齿轮";
     treeNode9.Name = "节点7";
     treeNode9.Text = "第三级";
     treeNode10.Name = "节点10";
     treeNode10.Text = "输出轴";
     treeNode11.Name = "节点11";
     treeNode11.Text = "装配";
     treeNode12.Name = "节点0";
     treeNode12.Text = "减速器";
     this.treeView1.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
     treeNode12});
     this.treeView1.Size = new System.Drawing.Size(126, 555);
     this.treeView1.TabIndex = 4;
     this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Controls.Add(this.tabPage4);
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location = new System.Drawing.Point(0, 0);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(770, 555);
     this.tabControl1.TabIndex = 5;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.splitContainer2);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(762, 529);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "齿轮轴设计";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // splitContainer2
     //
     this.splitContainer2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(3, 3);
     this.splitContainer2.Name = "splitContainer2";
     this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.pictureBox1);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.splitContainer4);
     this.splitContainer2.Size = new System.Drawing.Size(756, 523);
     this.splitContainer2.SplitterDistance = 161;
     this.splitContainer2.TabIndex = 3;
     //
     // pictureBox1
     //
     this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox1.Location = new System.Drawing.Point(0, 0);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(754, 159);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     //
     // splitContainer4
     //
     this.splitContainer4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.splitContainer4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer4.Location = new System.Drawing.Point(0, 0);
     this.splitContainer4.Name = "splitContainer4";
     //
     // splitContainer4.Panel1
     //
     this.splitContainer4.Panel1.Controls.Add(this.groupBox2);
     //
     // splitContainer4.Panel2
     //
     this.splitContainer4.Panel2.Controls.Add(this.groupBox1);
     this.splitContainer4.Panel2.Controls.Add(this.btQuit);
     this.splitContainer4.Size = new System.Drawing.Size(756, 358);
     this.splitContainer4.SplitterDistance = 252;
     this.splitContainer4.TabIndex = 4;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.button7);
     this.groupBox2.Controls.Add(this.btKeyForm);
     this.groupBox2.Controls.Add(this.button3);
     this.groupBox2.Controls.Add(this.button1);
     this.groupBox2.Controls.Add(this.btInterferenceForm);
     this.groupBox2.Controls.Add(this.button2);
     this.groupBox2.Controls.Add(this.btForceForm);
     this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.Location = new System.Drawing.Point(0, 0);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(250, 356);
     this.groupBox2.TabIndex = 3;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "受力分析";
     //
     // button7
     //
     this.button7.Location = new System.Drawing.Point(41, 250);
     this.button7.Name = "button7";
     this.button7.Size = new System.Drawing.Size(75, 23);
     this.button7.TabIndex = 19;
     this.button7.Text = "轴承计算";
     this.button7.UseVisualStyleBackColor = true;
     this.button7.Click += new System.EventHandler(this.button7_Click);
     //
     // btKeyForm
     //
     this.btKeyForm.Location = new System.Drawing.Point(41, 197);
     this.btKeyForm.Name = "btKeyForm";
     this.btKeyForm.Size = new System.Drawing.Size(75, 23);
     this.btKeyForm.TabIndex = 18;
     this.btKeyForm.Text = "键计算";
     this.btKeyForm.UseVisualStyleBackColor = true;
     this.btKeyForm.Click += new System.EventHandler(this.btKeyForm_Click);
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(154, 164);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(75, 23);
     this.button3.TabIndex = 17;
     this.button3.Text = "过盈计算2";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Visible = false;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(154, 126);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 17;
     this.button1.Text = "过盈计算1";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Visible = false;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // btInterferenceForm
     //
     this.btInterferenceForm.Location = new System.Drawing.Point(41, 144);
     this.btInterferenceForm.Name = "btInterferenceForm";
     this.btInterferenceForm.Size = new System.Drawing.Size(75, 23);
     this.btInterferenceForm.TabIndex = 17;
     this.btInterferenceForm.Text = "过盈计算";
     this.btInterferenceForm.UseVisualStyleBackColor = true;
     this.btInterferenceForm.Click += new System.EventHandler(this.btInterferenceForm_Click);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(41, 91);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(107, 23);
     this.button2.TabIndex = 16;
     this.button2.Text = "轴强度计算";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.comboBox1);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.textBox1);
     this.groupBox1.Location = new System.Drawing.Point(65, 23);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(169, 111);
     this.groupBox1.TabIndex = 2;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "键槽";
     //
     // comboBox1
     //
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location = new System.Drawing.Point(64, 47);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(92, 20);
     this.comboBox1.TabIndex = 2;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(6, 56);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(35, 12);
     this.label2.TabIndex = 1;
     this.label2.Text = "键长L";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(6, 26);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(35, 12);
     this.label1.TabIndex = 1;
     this.label1.Text = "键宽b";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(64, 20);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(92, 21);
     this.textBox1.TabIndex = 0;
     //
     // btQuit
     //
     this.btQuit.Location = new System.Drawing.Point(95, 164);
     this.btQuit.Name = "btQuit";
     this.btQuit.Size = new System.Drawing.Size(75, 23);
     this.btQuit.TabIndex = 1;
     this.btQuit.Text = "返回首页";
     this.btQuit.UseVisualStyleBackColor = true;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.splitContainer3);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size = new System.Drawing.Size(762, 529);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "齿轮设计";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // splitContainer3
     //
     this.splitContainer3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer3.Location = new System.Drawing.Point(3, 3);
     this.splitContainer3.Name = "splitContainer3";
     this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer3.Panel1
     //
     this.splitContainer3.Panel1.Controls.Add(this.pictureBox2);
     this.splitContainer3.Size = new System.Drawing.Size(756, 523);
     this.splitContainer3.SplitterDistance = 192;
     this.splitContainer3.TabIndex = 0;
     //
     // pictureBox2
     //
     this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox2.Location = new System.Drawing.Point(0, 0);
     this.pictureBox2.Name = "pictureBox2";
     this.pictureBox2.Size = new System.Drawing.Size(754, 190);
     this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox2.TabIndex = 0;
     this.pictureBox2.TabStop = false;
     //
     // tabPage3
     //
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name = "tabPage3";
     this.tabPage3.Size = new System.Drawing.Size(762, 529);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text = "齿轮轴工程图";
     this.tabPage3.UseVisualStyleBackColor = true;
     //
     // tabPage4
     //
     this.tabPage4.Location = new System.Drawing.Point(4, 22);
     this.tabPage4.Name = "tabPage4";
     this.tabPage4.Size = new System.Drawing.Size(762, 529);
     this.tabPage4.TabIndex = 3;
     this.tabPage4.Text = "齿轮工程图";
     this.tabPage4.UseVisualStyleBackColor = true;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.treeView1);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.tabControl1);
     this.splitContainer1.Size = new System.Drawing.Size(900, 555);
     this.splitContainer1.SplitterDistance = 126;
     this.splitContainer1.TabIndex = 6;
     //
     // FrmDetailDesign
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(900, 555);
     this.Controls.Add(this.splitContainer1);
     this.Name = "FrmDetailDesign";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "详细设计";
     this.Load += new System.EventHandler(this.InputPartForm_Load_1);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
     this.splitContainer2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.splitContainer4.Panel1.ResumeLayout(false);
     this.splitContainer4.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer4)).EndInit();
     this.splitContainer4.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.tabPage2.ResumeLayout(false);
     this.splitContainer3.Panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).EndInit();
     this.splitContainer3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 60
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.toolStripPrincipal = new System.Windows.Forms.ToolStrip();
     this.btnNuevo = new System.Windows.Forms.ToolStripButton();
     this.btnGuardar = new System.Windows.Forms.ToolStripButton();
     this.btnEditar = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCancelar = new System.Windows.Forms.ToolStripButton();
     this.btnImprimir = new System.Windows.Forms.ToolStripButton();
     this.btnBuscar = new System.Windows.Forms.ToolStripButton();
     this.btnEliminar = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btnSalir = new System.Windows.Forms.ToolStripButton();
     this.tbControlPrincipal = new System.Windows.Forms.TabControl();
     this.tbpMaestro = new System.Windows.Forms.TabPage();
     this.toolStripPrincipal.SuspendLayout();
     this.tbControlPrincipal.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStripPrincipal
     //
     this.toolStripPrincipal.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStripPrincipal.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btnNuevo,
     this.btnGuardar,
     this.btnEditar,
     this.toolStripSeparator2,
     this.btnCancelar,
     this.btnImprimir,
     this.btnBuscar,
     this.btnEliminar,
     this.toolStripSeparator1,
     this.btnSalir});
     this.toolStripPrincipal.Location = new System.Drawing.Point(0, 0);
     this.toolStripPrincipal.Name = "toolStripPrincipal";
     this.toolStripPrincipal.Size = new System.Drawing.Size(875, 25);
     this.toolStripPrincipal.TabIndex = 1;
     this.toolStripPrincipal.Text = "Barra De Botones";
     //
     // btnNuevo
     //
     this.btnNuevo.Image = global::aPresentacion.Properties.Resources.add;
     this.btnNuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnNuevo.Name = "btnNuevo";
     this.btnNuevo.Size = new System.Drawing.Size(62, 22);
     this.btnNuevo.Text = "Nuevo";
     this.btnNuevo.ToolTipText = "Nuevo Registro";
     this.btnNuevo.Click += new System.EventHandler(this.btnNuevo_Click);
     //
     // btnGuardar
     //
     this.btnGuardar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnGuardar.Name = "btnGuardar";
     this.btnGuardar.Size = new System.Drawing.Size(53, 22);
     this.btnGuardar.Text = "Guardar";
     this.btnGuardar.ToolTipText = "Guardar Registro";
     //
     // btnEditar
     //
     this.btnEditar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnEditar.Name = "btnEditar";
     this.btnEditar.Size = new System.Drawing.Size(44, 22);
     this.btnEditar.Text = "Editar ";
     this.btnEditar.ToolTipText = "Editar Registro";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // btnCancelar
     //
     this.btnCancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Size = new System.Drawing.Size(57, 22);
     this.btnCancelar.Text = "Cancelar";
     this.btnCancelar.ToolTipText = "Cancelar Registro";
     //
     // btnImprimir
     //
     this.btnImprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnImprimir.Name = "btnImprimir";
     this.btnImprimir.Size = new System.Drawing.Size(57, 22);
     this.btnImprimir.Text = "Imprimir";
     //
     // btnBuscar
     //
     this.btnBuscar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnBuscar.Name = "btnBuscar";
     this.btnBuscar.Size = new System.Drawing.Size(46, 22);
     this.btnBuscar.Text = "Buscar";
     this.btnBuscar.ToolTipText = "Buscar Registro";
     //
     // btnEliminar
     //
     this.btnEliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnEliminar.Name = "btnEliminar";
     this.btnEliminar.Size = new System.Drawing.Size(54, 22);
     this.btnEliminar.Text = "Eliminar";
     this.btnEliminar.ToolTipText = "Eliminar Registro";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // btnSalir
     //
     this.btnSalir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnSalir.Name = "btnSalir";
     this.btnSalir.Size = new System.Drawing.Size(33, 22);
     this.btnSalir.Text = "Salir";
     this.btnSalir.Click += new System.EventHandler(this.btnSalir_Click);
     //
     // tbControlPrincipal
     //
     this.tbControlPrincipal.Controls.Add(this.tbpMaestro);
     this.tbControlPrincipal.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tbControlPrincipal.Location = new System.Drawing.Point(0, 25);
     this.tbControlPrincipal.Name = "tbControlPrincipal";
     this.tbControlPrincipal.SelectedIndex = 0;
     this.tbControlPrincipal.Size = new System.Drawing.Size(875, 416);
     this.tbControlPrincipal.TabIndex = 2;
     //
     // tbpMaestro
     //
     this.tbpMaestro.Location = new System.Drawing.Point(4, 22);
     this.tbpMaestro.Name = "tbpMaestro";
     this.tbpMaestro.Padding = new System.Windows.Forms.Padding(3);
     this.tbpMaestro.Size = new System.Drawing.Size(867, 390);
     this.tbpMaestro.TabIndex = 0;
     this.tbpMaestro.Text = "tbpMaestro";
     this.tbpMaestro.UseVisualStyleBackColor = true;
     //
     // FrmPlantilla
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(875, 441);
     this.Controls.Add(this.tbControlPrincipal);
     this.Controls.Add(this.toolStripPrincipal);
     this.Name = "FrmPlantilla";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Plantilla";
     this.Load += new System.EventHandler(this.FrmPlantilla_Load);
     this.toolStripPrincipal.ResumeLayout(false);
     this.toolStripPrincipal.PerformLayout();
     this.tbControlPrincipal.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }