示例#1
0
        } //setClipboard()

        /****************************************************************************
        *                                                                          *
        *    Common for to avoid redundant code (reporting errors,                 *
        *    convenient call, workaround for failing clipboard,                    *
        *    operations, etc.)                                                     *
        *                                                                          *
        *    Parameters:                                                           *
        *                                                                          *
        *      aStatusLabel                                                        *
        *                                                                          *
        *        A value of to null is allowed (used when error reporting          *
        *        is not required or possible).                                     *
        *                                                                          *
        *                                                                          *
        ****************************************************************************/
        public static void setClipboard3(
            string aClipboardStr,
            System.Windows.Forms.ToolStripStatusLabel aStatusLabel)
        {
            clipboardInfoStruct outclipboardInfo;

            outclipboardInfo.retries = -1;

            EditorOverflowApplication.setClipboard(
                aClipboardStr, out outclipboardInfo);

            int retries = outclipboardInfo.retries;

            if (retries > 0)
            {
                if (aStatusLabel != null) // It is called with nul from
                //                           the Markdown utility...
                {
                    aStatusLabel.Text =
                        retries.ToString() + " retries accessing the clipboard!";
                }
                else
                {
                    int peter2 = 2;
                }
            }
        } //setClipboard3()
示例#2
0
        /* Draws all the elements in this picture.
         *  CanvasExceeded Event is raised, if any of elements
         *  exceeds the canvas area */

        public void DrawAll(System.Drawing.Graphics g, System.Drawing.RectangleF r,
                            System.Windows.Forms.ToolStripStatusLabel tsLabel)
        {
            //if any element exceeds the canvasarea, this flag is set
            bool exceeded = false;

            g.DrawString("Picture Name: " + Name, new Font("Arial", 10),
                         Brushes.Red, new Point(0, 0));

            foreach (Utils.Element e in Elements)
            {
                e.Draw(g);

                //Did this element did not exceeded the canvas area
                if (!e.IsOnCanvas(r))
                {
                    exceeded = true;
                }
            }

            //Should event be raised?
            //if (exceeded && CanvasExceededEventHandler != null)
            //    CanvasExceededEventHandler(this, EventArgs.Empty);

            if (exceeded)
            {
                tsLabel.Text = "Canvas exceeded";
            }
            else
            {
                tsLabel.Text = "";
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.overlay = new System.Windows.Forms.PictureBox();
     this.btnStart = new System.Windows.Forms.Button();
     this.strip = new System.Windows.Forms.StatusStrip();
     this.status = new System.Windows.Forms.ToolStripStatusLabel();
     ((System.ComponentModel.ISupportInitialize)(this.overlay)).BeginInit();
     this.strip.SuspendLayout();
     this.SuspendLayout();
     //
     // overlay
     //
     this.overlay.Location = new System.Drawing.Point(13, 13);
     this.overlay.Name = "overlay";
     this.overlay.Size = new System.Drawing.Size(640, 480);
     this.overlay.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.overlay.TabIndex = 0;
     this.overlay.TabStop = false;
     //
     // btnStart
     //
     this.btnStart.Location = new System.Drawing.Point(660, 13);
     this.btnStart.Name = "btnStart";
     this.btnStart.Size = new System.Drawing.Size(130, 49);
     this.btnStart.TabIndex = 1;
     this.btnStart.Text = "Start Tracking";
     this.btnStart.UseVisualStyleBackColor = true;
     this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
     //
     // strip
     //
     this.strip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.status});
     this.strip.Location = new System.Drawing.Point(0, 507);
     this.strip.Name = "strip";
     this.strip.Size = new System.Drawing.Size(802, 22);
     this.strip.TabIndex = 2;
     this.strip.Text = "statusStrip1";
     //
     // status
     //
     this.status.Name = "status";
     this.status.Size = new System.Drawing.Size(0, 17);
     //
     // frmTrackMain
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(802, 529);
     this.Controls.Add(this.strip);
     this.Controls.Add(this.btnStart);
     this.Controls.Add(this.overlay);
     this.Name = "frmTrackMain";
     this.Text = "CMT Tracking Host Test";
     ((System.ComponentModel.ISupportInitialize)(this.overlay)).EndInit();
     this.strip.ResumeLayout(false);
     this.strip.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#4
0
 public DALDoubleM(System.Windows.Forms.ToolStripStatusLabel plbl, System.Windows.Forms.ToolStripProgressBar pPbar)
 {
     _sConnDM = "File Name = " + CommonDoubleM._DoubleMPath + "\\" + CommonDoubleM.udlDoubleM;
     //_sConnDM =  "File Name = " + Environment.CurrentDirectory + "\\" + CommonDoubleM.udlDoubleM +";Password=MM";
     _oConnDM       = new OleDbConnection(_sConnDM);
     _lblMsgDoubleM = plbl;
     _pBarDoubleM   = pPbar;
 }
示例#5
0
文件: Service.cs 项目: tw0r2/wms_rfid
 public static void InitializeService(System.Windows.Forms.Form _MainThreadForm, System.Windows.Forms.ToolStripStatusLabel _MainThreadFormStatusLabel, System.Windows.Forms.Timer _timer, Adapter[] _adapters)
 {
     MainThreadForm            = _MainThreadForm;
     MainThreadFormStatusLabel = _MainThreadFormStatusLabel;
     timer                 = _timer;
     adapters              = _adapters;
     ServiceStatusChanged += new CallBack(Service_ServiceStatusChanged);
 }
 /// <summary>
 /// Instantiates IpcTreeWebWindowThread.  Contains threaded IPC event listener
 /// that synchronizes Winform tree view, and displays or caches data from IPC event
 /// </summary>
 /// <param name="ipcType"></param>
 /// <param name="tsslStatus"></param>
 /// <param name="utilsBus"></param>
 /// <param name="func"></param>
 public IpcTreeWebWindowThread(string ipcType
     , System.Windows.Forms.ToolStripStatusLabel tsslStatus
     , Niawa.Utilities.UtilsServiceBus utilsBus
     , IpcTreeWebWindowFunctions func)
 {
     _ipcType = ipcType;
     _tsslStatus = tsslStatus;
     _utilsBus = utilsBus;
     _func = func;
 }
 public IpcWebWindowFunctions(string ipcEvent
         , IpcWebWindow window
         , System.Windows.Forms.ToolStripButton tsbMonitor
         , System.Windows.Forms.ToolStripStatusLabel tsslStatus)
 {
     _ipcEvent = ipcEvent;
     _window = window;
     _tsbMonitor = tsbMonitor;
     _browser = _window.WebBrowser1;
     _tsslStatus = tsslStatus;
 }
 public IpcWindowFunctions(string ipcEvent
         , IpcWindow window
         , System.Windows.Forms.ToolStripButton tsbMonitor
         , System.Windows.Forms.DataGridView dgvMonitor
         , System.Windows.Forms.ToolStripStatusLabel tsslStatus)
 {
     _ipcEvent = ipcEvent;
     _window = window;
     _tsbMonitor = tsbMonitor;
     _dgvMonitor = dgvMonitor;
     _tsslStatus = tsslStatus;
 }
        /// <summary>
        /// Instantiates an IpcEventThread
        /// </summary>
        /// <param name="ipcType"></param>
        /// <param name="treeModelController"></param>
        /// <param name="tsslStatus"></param>
        /// <param name="utilsBus"></param>
        public IpcEventTreeModelAdapterThread(string ipcType
            , Niawa.TreeModelNodeControls.TreeModelController treeModelController
            , System.Windows.Forms.ToolStripStatusLabel tsslStatus
            , Niawa.Utilities.UtilsServiceBus utilsBus
            , IpcEventTreeModelAdapter parentControl)
        {
            _treeModelController = treeModelController;
            _parentControl = parentControl;

            _ipcType = ipcType;
            _tsslStatus = tsslStatus;
            _utilsBus = utilsBus;
        }
示例#10
0
        //internal static void SetTestResultsCounters(
        public static void SetTestResultsCounters(
            TestResultTypes type,
            int count,
            ref int testResultsPassed,
            ref int testResultsFailed,
            ref int testResultsAll,
            System.Windows.Forms.ToolStripStatusLabel passed,
            System.Windows.Forms.ToolStripStatusLabel failed,
            System.Windows.Forms.ToolStripStatusLabel average,
            DateTime startTime)
        {
            switch (type)
            {
            case TestResultTypes.Passed:
                testResultsPassed += count;
                if (passed != null)
                {
                    passed.Text =
                        testResultsPassed.ToString();
                }
                break;

            case TestResultTypes.Failed:
                testResultsFailed += count;
                if (failed != null)
                {
                    failed.Text =
                        testResultsFailed.ToString();
                }
                break;

            case TestResultTypes.NotTested:

                break;

            case TestResultTypes.PassedWithBadSmell:

                break;

            default:
                //throw new Exception("Invalid value for TestResultTypes");case TestResultTypes.Passed:
                break;
            }
            testResultsAll++;
            string trps =
                (testResultsAll / (DateTime.Now - startTime).TotalSeconds).ToString();

            average.Text =
                trps.Substring(0, trps.IndexOf(".") + 2) +
                " trps";
        }
示例#11
0
 /// <summary>
 /// 获取主窗口中的控件
 /// </summary>
 /// <param name="pLabel">提示框</param>
 /// <param name="pProgress">进度条</param>
 /// <param name="pPanel">浮动面板</param>
 /// <param name="pPictureBox">主窗口中的图片</param>
 /// <param name="pForm">主窗口</param>
 /// <param name="pStatus">主窗口状态栏</param>
 public static void SetFrameworkControl(System.Windows.Forms.Form pForm,
                                        System.Windows.Forms.StatusStrip pStatus,
                                        System.Windows.Forms.ToolStripStatusLabel pLabel,
                                        System.Windows.Forms.ToolStripProgressBar pProgress,
                                        CP.WinFormsUI.Docking.DockPanel pPanel,
                                        System.Windows.Forms.ToolStripStatusLabel pCoor)
 {
     Program.gDockPane    = pPanel;
     Program.gStatusLabel = pLabel;
     Program.gProgressBar = pProgress;
     Program.gMainForm    = pForm;
     Program.gStatusStrip = pStatus;
     Program.gLabelCoor   = pCoor;
 }
示例#12
0
 public void RunJob(System.Windows.Forms.ListViewItem item, System.Windows.Forms.ToolStripStatusLabel status)
 {
     if (!isActive)
     {
         isActive = true;
         BackgroundWorker bw = new BackgroundWorker();
         bw.WorkerReportsProgress = true;
         bw.ProgressChanged      += new ProgressChangedEventHandler(RunJob_BackInfo);
         bw.DoWork += new DoWorkEventHandler(RunJob_RealJob);
         List <object> list = new List <object>();
         list.Add(item);
         list.Add(status);
         bw.RunWorkerAsync(list);
     }
 }
示例#13
0
            private void InitializeComponent()
            {
                this.toolStripStatusLabelEventName     = new System.Windows.Forms.ToolStripStatusLabel();
                this.toolStripStatusLabelEventDateTime = new System.Windows.Forms.ToolStripStatusLabel();
                this.toolStripStatusLabelEventDesc     = new System.Windows.Forms.ToolStripStatusLabel();

                SuspendLayout();
                //
                // m_statusStripMain
                //
                Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
                    this.toolStripStatusLabelEventName,
                    this.toolStripStatusLabelEventDateTime,
                    this.toolStripStatusLabelEventDesc
                });
                Location = new System.Drawing.Point(0, 694);
                Name     = "m_statusStripMain";
                Size     = new System.Drawing.Size(861, 22);
                TabIndex = 0;
                Text     = "statusStripMain";
                //
                // toolStripStatusLabelEventName
                //
                this.toolStripStatusLabelEventName.AutoSize  = false;
                this.toolStripStatusLabelEventName.Name      = "toolStripStatusLabelEventName";
                this.toolStripStatusLabelEventName.Size      = new System.Drawing.Size(120, 17);
                this.toolStripStatusLabelEventName.Text      = "Событие";
                this.toolStripStatusLabelEventName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
                //
                // toolStripStatusLabelEventDateTime
                //
                this.toolStripStatusLabelEventDateTime.AutoSize  = false;
                this.toolStripStatusLabelEventDateTime.Name      = "toolStripStatusLabelEventDateTime";
                this.toolStripStatusLabelEventDateTime.Size      = new System.Drawing.Size(120, 17);
                this.toolStripStatusLabelEventDateTime.Text      = "Дата/время";
                this.toolStripStatusLabelEventDateTime.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
                //
                // toolStripStatusLabelEventDesc
                //
                this.toolStripStatusLabelEventDesc.Name      = "toolStripStatusLabelEventDesc";
                this.toolStripStatusLabelEventDesc.Size      = new System.Drawing.Size(606, 17);
                this.toolStripStatusLabelEventDesc.Spring    = true;
                this.toolStripStatusLabelEventDesc.Text      = "Описание события";
                this.toolStripStatusLabelEventDesc.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;

                ResumeLayout(false);
                PerformLayout();
            }
示例#14
0
 /// <summary>
 /// 获取主窗口中的控件
 /// </summary>
 /// <param name="pLabel">提示框</param>
 /// <param name="pProgress">进度条</param>
 /// <param name="pPanel">浮动面板</param>
 /// <param name="pPictureBox">主窗口中的图片</param>
 /// <param name="pForm">主窗口</param>
 /// <param name="pStatus">主窗口状态栏</param>
 public static void SetFrameworkControl(System.Windows.Forms.Form pForm,
                                        System.Windows.Forms.Form pSplashForm,
                                        System.Windows.Forms.StatusStrip pStatus,
                                        System.Windows.Forms.ToolStripStatusLabel pLabel,
                                        System.Windows.Forms.ToolStripProgressBar pProgress,
                                        CP.WinFormsUI.Docking.DockPanel pPanel,
                                        System.Windows.Forms.ToolStripStatusLabel pCoor)
 {
     Globe.m_StatusLabel = pLabel;
     Globe.m_ProgressBar = pProgress;
     Globe.m_DockPane    = pPanel;
     Globe.m_StatusStrip = pStatus;
     Globe.m_MainForm    = pForm;
     Globe.m_SplashForm  = pSplashForm;
     m_LabelCoor         = pCoor;
 }
        /// <summary>
        /// Instantiates IpcTreeWebWindowFunctions.  Functions support IpcTreeWebWindow win form.
        /// </summary>
        /// <param name="ipcEvents"></param>
        /// <param name="window"></param>
        /// <param name="mdiWindow"></param>
        /// <param name="tsslStatus"></param>
        /// <param name="treeView"></param>
        public IpcTreeWebWindowFunctions(List<string> ipcEvents
                , IpcTreeWebWindow window
                , IpcEventMonitorContainer mdiWindow    
                , System.Windows.Forms.ToolStripStatusLabel tsslStatus
                , System.Windows.Forms.TreeView treeView)
        {
            _ipcEvents = ipcEvents;
            _window = window;
            _mdiWindow = mdiWindow;
            _tsslStatus = tsslStatus;
            _treeView = treeView;
            _treeModel = new FormFunctions.IpcTreeWebWindowTreeModel(_treeView, _window);

            //a thread for each IPC Type Reader
            threads = new SortedList<string, IpcTreeWebWindowThread>();
        }
        public NewEmployeeAssignment(DataTable plan,
                                    DataTable availableListOfEmpl, /* The list of all employee of production */
                                    List<EmployeeAssignment_ProrityTable> priorityList,
                                    System.Windows.Forms.ToolStripStatusLabel StatusLabel1,
                                    System.Windows.Forms.ToolStripProgressBar ProgressBar1,
                                    ref string InputCheckingResult)
        {
            _plan = plan;
            _availableEmpList = availableListOfEmpl;
            _priorityList = priorityList;
            _StatusLabel1 = StatusLabel1;
            _ProgressBar1 = ProgressBar1;

            LoadInternalData();

            Log(_availableEmpList, "_availableEmpList", ".csv", true);

            //Log the priority list
            LogInputPriortiyData(_priorityList, "_PrioirtyList", ".csv");

            InputCheckingResult = CheckInputData();

            DataTable test = GetAllPlanDataOfThisLine("HH02");
            DataTable test1 = GetListOfEmptyWstOfThisLine("HH02", "Shift_1");
            DataTable test2 = GetListOfEmptyWstOfThisLine("HH02", "Shift_2");
            DataTable test3 = GetListOfEmptyWstOfThisLine("HH02", "Shift_3");

            DataTable test4 = GetPlanDataOfThisLine("HH02", "Shift_1", WST_State.All);
            DataTable test5 = GetPlanDataOfThisLine("HH02", "Shift_2", WST_State.All);
            DataTable test6 = GetPlanDataOfThisLine("HH02", "Shift_3", WST_State.All);
            //DataTable test4 = GetAllPlanDataOfThisLine("HH02");

            if (test != null && test4 != null && test5 != null && test6 != null)
            {
                if (test.Rows.Count != (test4.Rows.Count + test5.Rows.Count + test6.Rows.Count ))
                {
                    //Log here.
                    int a = 0 ;
                }
            }

            //Nếu có một vài nhân viên đã được manual assign, remove những nhân viên này ra khỏi available list
            InputCheckingResult += CheckAndRemoveMEmployeeAssignedManually();
        }
        public BottomStatusBar(System.Windows.Forms.StatusStrip statusStrip,
                               System.Windows.Forms.ToolStripStatusLabel bottomLeft,
                               System.Windows.Forms.ToolStripStatusLabel bottomMiddleLeft,
                               System.Windows.Forms.ToolStripStatusLabel bottomMiddleRight,
                               System.Windows.Forms.ToolStripStatusLabel bottomRight)
        {
            _labels[0]      = bottomLeft;
            _labels[1]      = bottomMiddleLeft;
            _labels[2]      = bottomMiddleRight;
            _labels[3]      = bottomRight;
            _labels[3].Font = new Font(_labels[3].Font, FontStyle.Regular);

            foreach (var label in _labels)
            {
                if (label != null)
                {
                    label.Text = String.Empty;
                }
            }

            _tooltip = new CTRE.Phoenix.dotNET.Form.ToolTipContainer(statusStrip);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     components   = new System.ComponentModel.Container();
     updateTimer_ = new System.Windows.Forms.Timer(components);
     infoPn_      = new System.Windows.Forms.ToolStripStatusLabel();
     statePn_     = new System.Windows.Forms.ToolStripStatusLabel();
     timePn_      = new System.Windows.Forms.ToolStripStatusLabel();
     //
     // UpdateTimer
     //
     updateTimer_.Interval = 30000;
     updateTimer_.Tick    += new System.EventHandler(UpdateTimer_Tick);
     //
     // InfoPN
     //
     //this.InfoPN.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     //this.InfoPN.BorderStyle = System.Windows.Forms.StatusBarPanelBorderStyle.None;
     infoPn_.Width = 10;
     //
     // StatePN
     //
     //this.StatePN.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     statePn_.Width = 10;
     //
     // TimePN
     //
     //this.TimePN.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     timePn_.Width = 10;
     //
     // ServerStatusCtrl
     //
     Items.AddRange(new System.Windows.Forms.ToolStripStatusLabel[] {
         infoPn_,
         statePn_,
         timePn_
     });
 }
示例#19
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.splitContainer1       = new System.Windows.Forms.SplitContainer();
     this.splitContainer2       = new System.Windows.Forms.SplitContainer();
     this.splitContainer3       = new System.Windows.Forms.SplitContainer();
     this.treeView1             = new System.Windows.Forms.TreeView();
     this.propertyGrid1         = new System.Windows.Forms.PropertyGrid();
     this.toolStrip1            = new System.Windows.Forms.ToolStrip();
     this.toolStripSplitButton1 = new System.Windows.Forms.ToolStripSplitButton();
     this.vertexPointOverlayToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.wireframeOverlayToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.backfaceCullingToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.tbtn3DView                 = new System.Windows.Forms.ToolStripButton();
     this.tbtnUVView                 = new System.Windows.Forms.ToolStripButton();
     this.menuStrip1                 = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.loadToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1        = new System.Windows.Forms.ToolStripSeparator();
     this.exitToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.optionsToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.logWindowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.richTextBox1               = new System.Windows.Forms.RichTextBox();
     this.CaffFileContextMenu        = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.unloadToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.exportToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.vertexBatchContextStrip    = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.setDefaultTexCoordScaleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.textureContextStrip        = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.recropToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.dumpToXprToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.statusStrip1          = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
     this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.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.toolStrip1.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.CaffFileContextMenu.SuspendLayout();
     this.vertexBatchContextStrip.SuspendLayout();
     this.textureContextStrip.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // splitContainer1
     //
     this.splitContainer1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location    = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name        = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
     this.splitContainer1.Panel1.Controls.Add(this.menuStrip1);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.BackColor = System.Drawing.SystemColors.ActiveBorder;
     this.splitContainer1.Panel2.Controls.Add(this.richTextBox1);
     this.splitContainer1.Panel2Collapsed  = true;
     this.splitContainer1.Size             = new System.Drawing.Size(883, 511);
     this.splitContainer1.SplitterDistance = 388;
     this.splitContainer1.TabIndex         = 0;
     //
     // splitContainer2
     //
     this.splitContainer2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(0, 24);
     this.splitContainer2.Name     = "splitContainer2";
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.splitContainer3);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.toolStrip1);
     this.splitContainer2.Size             = new System.Drawing.Size(883, 487);
     this.splitContainer2.SplitterDistance = 294;
     this.splitContainer2.TabIndex         = 2;
     //
     // 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.treeView1);
     //
     // splitContainer3.Panel2
     //
     this.splitContainer3.Panel2.Controls.Add(this.propertyGrid1);
     this.splitContainer3.Size             = new System.Drawing.Size(294, 487);
     this.splitContainer3.SplitterDistance = 223;
     this.splitContainer3.TabIndex         = 0;
     //
     // treeView1
     //
     this.treeView1.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.treeView1.Location        = new System.Drawing.Point(0, 0);
     this.treeView1.Name            = "treeView1";
     this.treeView1.Size            = new System.Drawing.Size(294, 223);
     this.treeView1.TabIndex        = 0;
     this.treeView1.AfterSelect    += new System.Windows.Forms.TreeViewEventHandler(this.TreeView1AfterSelect);
     this.treeView1.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.TreeView1NodeMouseClick);
     //
     // propertyGrid1
     //
     this.propertyGrid1.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.propertyGrid1.LineColor = System.Drawing.SystemColors.ControlDark;
     this.propertyGrid1.Location  = new System.Drawing.Point(0, 0);
     this.propertyGrid1.Name      = "propertyGrid1";
     this.propertyGrid1.Size      = new System.Drawing.Size(294, 260);
     this.propertyGrid1.TabIndex  = 0;
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripSplitButton1,
         this.tbtn3DView,
         this.tbtnUVView
     });
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name     = "toolStrip1";
     this.toolStrip1.Size     = new System.Drawing.Size(585, 25);
     this.toolStrip1.TabIndex = 0;
     this.toolStrip1.Text     = "toolStrip1";
     //
     // toolStripSplitButton1
     //
     this.toolStripSplitButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.toolStripSplitButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.vertexPointOverlayToolStripMenuItem,
         this.wireframeOverlayToolStripMenuItem,
         this.backfaceCullingToolStripMenuItem
     });
     this.toolStripSplitButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripSplitButton1.Image")));
     this.toolStripSplitButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripSplitButton1.Name = "toolStripSplitButton1";
     this.toolStripSplitButton1.Size = new System.Drawing.Size(65, 22);
     this.toolStripSplitButton1.Text = "Options";
     //
     // vertexPointOverlayToolStripMenuItem
     //
     this.vertexPointOverlayToolStripMenuItem.CheckOnClick    = true;
     this.vertexPointOverlayToolStripMenuItem.Name            = "vertexPointOverlayToolStripMenuItem";
     this.vertexPointOverlayToolStripMenuItem.Size            = new System.Drawing.Size(179, 22);
     this.vertexPointOverlayToolStripMenuItem.Text            = "Vertex Point Overlay";
     this.vertexPointOverlayToolStripMenuItem.CheckedChanged += new System.EventHandler(this.VertexPointOverlayToolStripMenuItemCheckedChanged);
     //
     // wireframeOverlayToolStripMenuItem
     //
     this.wireframeOverlayToolStripMenuItem.CheckOnClick    = true;
     this.wireframeOverlayToolStripMenuItem.Name            = "wireframeOverlayToolStripMenuItem";
     this.wireframeOverlayToolStripMenuItem.Size            = new System.Drawing.Size(179, 22);
     this.wireframeOverlayToolStripMenuItem.Text            = "Wireframe Overlay";
     this.wireframeOverlayToolStripMenuItem.CheckedChanged += new System.EventHandler(this.WireframeOverlayToolStripMenuItemCheckedChanged);
     //
     // backfaceCullingToolStripMenuItem
     //
     this.backfaceCullingToolStripMenuItem.CheckOnClick    = true;
     this.backfaceCullingToolStripMenuItem.Name            = "backfaceCullingToolStripMenuItem";
     this.backfaceCullingToolStripMenuItem.Size            = new System.Drawing.Size(179, 22);
     this.backfaceCullingToolStripMenuItem.Text            = "Backface Culling";
     this.backfaceCullingToolStripMenuItem.CheckedChanged += new System.EventHandler(this.BackfaceCullingToolStripMenuItemCheckedChanged);
     //
     // tbtn3DView
     //
     this.tbtn3DView.Checked               = true;
     this.tbtn3DView.CheckOnClick          = true;
     this.tbtn3DView.CheckState            = System.Windows.Forms.CheckState.Checked;
     this.tbtn3DView.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.tbtn3DView.Image                 = ((System.Drawing.Image)(resources.GetObject("tbtn3DView.Image")));
     this.tbtn3DView.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tbtn3DView.Name            = "tbtn3DView";
     this.tbtn3DView.Size            = new System.Drawing.Size(25, 22);
     this.tbtn3DView.Text            = "3D";
     this.tbtn3DView.CheckedChanged += new System.EventHandler(this.Tbtn3DViewCheckedChanged);
     //
     // tbtnUVView
     //
     this.tbtnUVView.CheckOnClick          = true;
     this.tbtnUVView.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.tbtnUVView.Image                 = ((System.Drawing.Image)(resources.GetObject("tbtnUVView.Image")));
     this.tbtnUVView.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tbtnUVView.Name            = "tbtnUVView";
     this.tbtnUVView.Size            = new System.Drawing.Size(26, 22);
     this.tbtnUVView.Text            = "UV";
     this.tbtnUVView.CheckedChanged += new System.EventHandler(this.TbtnUVViewCheckedChanged);
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.fileToolStripMenuItem,
         this.optionsToolStripMenuItem
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Size     = new System.Drawing.Size(883, 24);
     this.menuStrip1.TabIndex = 3;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.loadToolStripMenuItem,
         this.toolStripSeparator1,
         this.exitToolStripMenuItem
     });
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "File";
     //
     // loadToolStripMenuItem
     //
     this.loadToolStripMenuItem.Name   = "loadToolStripMenuItem";
     this.loadToolStripMenuItem.Size   = new System.Drawing.Size(100, 22);
     this.loadToolStripMenuItem.Text   = "Load";
     this.loadToolStripMenuItem.Click += new System.EventHandler(this.LoadToolStripMenuItemClick);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(97, 6);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name   = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size   = new System.Drawing.Size(100, 22);
     this.exitToolStripMenuItem.Text   = "Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.ExitToolStripMenuItemClick);
     //
     // optionsToolStripMenuItem
     //
     this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.logWindowToolStripMenuItem
     });
     this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
     this.optionsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
     this.optionsToolStripMenuItem.Text = "Options";
     //
     // logWindowToolStripMenuItem
     //
     this.logWindowToolStripMenuItem.CheckOnClick    = true;
     this.logWindowToolStripMenuItem.Name            = "logWindowToolStripMenuItem";
     this.logWindowToolStripMenuItem.Size            = new System.Drawing.Size(141, 22);
     this.logWindowToolStripMenuItem.Text            = "Log Window";
     this.logWindowToolStripMenuItem.CheckedChanged += new System.EventHandler(this.LogWindowToolStripMenuItemCheckedChanged);
     //
     // richTextBox1
     //
     this.richTextBox1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.richTextBox1.Location = new System.Drawing.Point(0, 0);
     this.richTextBox1.Name     = "richTextBox1";
     this.richTextBox1.Size     = new System.Drawing.Size(150, 46);
     this.richTextBox1.TabIndex = 0;
     this.richTextBox1.Text     = "";
     //
     // CaffFileContextMenu
     //
     this.CaffFileContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.unloadToolStripMenuItem,
         this.exportToolStripMenuItem
     });
     this.CaffFileContextMenu.Name = "CaffFileContextMenu";
     this.CaffFileContextMenu.Size = new System.Drawing.Size(113, 48);
     //
     // unloadToolStripMenuItem
     //
     this.unloadToolStripMenuItem.Name   = "unloadToolStripMenuItem";
     this.unloadToolStripMenuItem.Size   = new System.Drawing.Size(112, 22);
     this.unloadToolStripMenuItem.Text   = "Unload";
     this.unloadToolStripMenuItem.Click += new System.EventHandler(this.UnloadToolStripMenuItemClick);
     //
     // exportToolStripMenuItem
     //
     this.exportToolStripMenuItem.Name   = "exportToolStripMenuItem";
     this.exportToolStripMenuItem.Size   = new System.Drawing.Size(112, 22);
     this.exportToolStripMenuItem.Text   = "Export";
     this.exportToolStripMenuItem.Click += new System.EventHandler(this.ExportToolStripMenuItemClick);
     //
     // vertexBatchContextStrip
     //
     this.vertexBatchContextStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.setDefaultTexCoordScaleToolStripMenuItem
     });
     this.vertexBatchContextStrip.Name = "contextMenuStrip1";
     this.vertexBatchContextStrip.Size = new System.Drawing.Size(215, 26);
     //
     // setDefaultTexCoordScaleToolStripMenuItem
     //
     this.setDefaultTexCoordScaleToolStripMenuItem.Name   = "setDefaultTexCoordScaleToolStripMenuItem";
     this.setDefaultTexCoordScaleToolStripMenuItem.Size   = new System.Drawing.Size(214, 22);
     this.setDefaultTexCoordScaleToolStripMenuItem.Text   = "Set Default TexCoord Scale";
     this.setDefaultTexCoordScaleToolStripMenuItem.Click += new System.EventHandler(this.SetDefaultTexCoordScaleToolStripMenuItemClick);
     //
     // textureContextStrip
     //
     this.textureContextStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.recropToolStripMenuItem,
         this.dumpToXprToolStripMenuItem
     });
     this.textureContextStrip.Name = "textureContextStrip";
     this.textureContextStrip.Size = new System.Drawing.Size(139, 48);
     //
     // recropToolStripMenuItem
     //
     this.recropToolStripMenuItem.Name   = "recropToolStripMenuItem";
     this.recropToolStripMenuItem.Size   = new System.Drawing.Size(138, 22);
     this.recropToolStripMenuItem.Text   = "Recrop";
     this.recropToolStripMenuItem.Click += new System.EventHandler(this.RecropToolStripMenuItemClick);
     //
     // dumpToXprToolStripMenuItem
     //
     this.dumpToXprToolStripMenuItem.Name   = "dumpToXprToolStripMenuItem";
     this.dumpToXprToolStripMenuItem.Size   = new System.Drawing.Size(138, 22);
     this.dumpToXprToolStripMenuItem.Text   = "DumpToXpr";
     this.dumpToXprToolStripMenuItem.Click += new System.EventHandler(this.DumpToXprToolStripMenuItemClick);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripStatusLabel2,
         this.toolStripStatusLabel1,
         this.toolStripProgressBar1
     });
     this.statusStrip1.Location = new System.Drawing.Point(0, 511);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Size     = new System.Drawing.Size(883, 22);
     this.statusStrip1.TabIndex = 3;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name     = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     this.toolStripStatusLabel1.Size     = new System.Drawing.Size(0, 17);
     this.toolStripStatusLabel1.Visible  = false;
     //
     // toolStripProgressBar1
     //
     this.toolStripProgressBar1.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.toolStripProgressBar1.Name      = "toolStripProgressBar1";
     this.toolStripProgressBar1.Size      = new System.Drawing.Size(100, 16);
     this.toolStripProgressBar1.Style     = System.Windows.Forms.ProgressBarStyle.Continuous;
     this.toolStripProgressBar1.Visible   = false;
     //
     // toolStripStatusLabel2
     //
     this.toolStripStatusLabel2.Name   = "toolStripStatusLabel2";
     this.toolStripStatusLabel2.Size   = new System.Drawing.Size(868, 17);
     this.toolStripStatusLabel2.Spring = true;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(883, 533);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.statusStrip1);
     this.Name         = "MainForm";
     this.Text         = "RareView";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainFormFormClosing);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.Panel2.PerformLayout();
     ((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.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.CaffFileContextMenu.ResumeLayout(false);
     this.vertexBatchContextStrip.ResumeLayout(false);
     this.textureContextStrip.ResumeLayout(false);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.tSeat = new System.Windows.Forms.ToolStripTextBox();
     this.payTool = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.orderTool = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel5 = new System.Windows.Forms.ToolStripLabel();
     this.toolTech = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.btnRoom = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel8 = new System.Windows.Forms.ToolStripLabel();
     this.toolAllOrder = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel4 = new System.Windows.Forms.ToolStripLabel();
     this.btnCashierTable = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel6 = new System.Windows.Forms.ToolStripLabel();
     this.btnDeposit = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel7 = new System.Windows.Forms.ToolStripLabel();
     this.toolMember = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolPreprint = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel9 = new System.Windows.Forms.ToolStripLabel();
     this.toolPwd = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel10 = new System.Windows.Forms.ToolStripLabel();
     this.toolWarn = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel11 = new System.Windows.Forms.ToolStripLabel();
     this.toolExit = new System.Windows.Forms.ToolStripButton();
     this.seatContext = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.CtxAddNote = new System.Windows.Forms.ToolStripMenuItem();
     this.CtxLock = new System.Windows.Forms.ToolStripMenuItem();
     this.CtxSop = new System.Windows.Forms.ToolStripMenuItem();
     this.CtxRepay = new System.Windows.Forms.ToolStripMenuItem();
     this.CtxReprint = new System.Windows.Forms.ToolStripMenuItem();
     this.unWarnTool = new System.Windows.Forms.ToolStripMenuItem();
     this.undoTransferTool = new System.Windows.Forms.ToolStripMenuItem();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.currentUser = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
     this.statusTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.aviTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.useTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.payTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.lockTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.stopTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.warnTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.depositTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
     this.statusStrip2 = new System.Windows.Forms.StatusStrip();
     this.LseatTotal = new System.Windows.Forms.ToolStripStatusLabel();
     this.seatTotal = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel20 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LseatAvi = new System.Windows.Forms.ToolStripStatusLabel();
     this.seatAvi = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel21 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LmoneyTotal = new System.Windows.Forms.ToolStripStatusLabel();
     this.moneyTotal = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel22 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LseatPaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.seatPaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel23 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LmoneyPaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.moneyPaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel24 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LseatUnpaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.seatUnpaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel25 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LmoneyUnpaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.moneyUnpaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.seatPanel = new System.Windows.Forms.Panel();
     this.toolStrip1.SuspendLayout();
     this.seatContext.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.statusStrip2.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(64, 64);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tSeat,
     this.payTool,
     this.toolStripLabel2,
     this.orderTool,
     this.toolStripLabel5,
     this.toolTech,
     this.toolStripLabel3,
     this.btnRoom,
     this.toolStripLabel8,
     this.toolAllOrder,
     this.toolStripLabel4,
     this.btnCashierTable,
     this.toolStripLabel6,
     this.btnDeposit,
     this.toolStripLabel7,
     this.toolMember,
     this.toolStripLabel1,
     this.toolPreprint,
     this.toolStripLabel9,
     this.toolPwd,
     this.toolStripLabel10,
     this.toolWarn,
     this.toolStripLabel11,
     this.toolExit});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(1370, 91);
     this.toolStrip1.TabIndex = 1;
     this.toolStrip1.Text = "toolStrip1";
     //
     // tSeat
     //
     this.tSeat.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.tSeat.Font = new System.Drawing.Font("微软雅黑", 28F);
     this.tSeat.Name = "tSeat";
     this.tSeat.Size = new System.Drawing.Size(100, 91);
     this.tSeat.Enter += new System.EventHandler(this.tSeat_Enter);
     //
     // payTool
     //
     this.payTool.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.payTool.Image = ((System.Drawing.Image)(resources.GetObject("payTool.Image")));
     this.payTool.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.payTool.Name = "payTool";
     this.payTool.Size = new System.Drawing.Size(70, 88);
     this.payTool.Text = "结账(F3)";
     this.payTool.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.payTool.Click += new System.EventHandler(this.payTool_Click);
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel2.Text = " ";
     //
     // orderTool
     //
     this.orderTool.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.orderTool.Image = ((System.Drawing.Image)(resources.GetObject("orderTool.Image")));
     this.orderTool.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.orderTool.Name = "orderTool";
     this.orderTool.Size = new System.Drawing.Size(100, 88);
     this.orderTool.Text = "消费录入(F2)";
     this.orderTool.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.orderTool.Click += new System.EventHandler(this.orderTool_Click);
     //
     // toolStripLabel5
     //
     this.toolStripLabel5.Name = "toolStripLabel5";
     this.toolStripLabel5.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel5.Text = " ";
     //
     // toolTech
     //
     this.toolTech.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.toolTech.Image = ((System.Drawing.Image)(resources.GetObject("toolTech.Image")));
     this.toolTech.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolTech.Name = "toolTech";
     this.toolTech.Size = new System.Drawing.Size(70, 88);
     this.toolTech.Text = "技师(F1)";
     this.toolTech.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolTech.Click += new System.EventHandler(this.toolTech_Click);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel3.Text = " ";
     //
     // btnRoom
     //
     this.btnRoom.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.btnRoom.Image = ((System.Drawing.Image)(resources.GetObject("btnRoom.Image")));
     this.btnRoom.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnRoom.Name = "btnRoom";
     this.btnRoom.Size = new System.Drawing.Size(70, 88);
     this.btnRoom.Text = "包房(F4)";
     this.btnRoom.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnRoom.Click += new System.EventHandler(this.btnRoom_Click);
     //
     // toolStripLabel8
     //
     this.toolStripLabel8.Name = "toolStripLabel8";
     this.toolStripLabel8.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel8.Text = " ";
     //
     // toolAllOrder
     //
     this.toolAllOrder.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.toolAllOrder.Image = ((System.Drawing.Image)(resources.GetObject("toolAllOrder.Image")));
     this.toolAllOrder.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolAllOrder.Name = "toolAllOrder";
     this.toolAllOrder.Size = new System.Drawing.Size(100, 88);
     this.toolAllOrder.Text = "录单汇总(F9)";
     this.toolAllOrder.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolAllOrder.Click += new System.EventHandler(this.toolAllOrder_Click);
     //
     // toolStripLabel4
     //
     this.toolStripLabel4.Name = "toolStripLabel4";
     this.toolStripLabel4.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel4.Text = " ";
     //
     // btnCashierTable
     //
     this.btnCashierTable.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.btnCashierTable.Image = ((System.Drawing.Image)(resources.GetObject("btnCashierTable.Image")));
     this.btnCashierTable.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCashierTable.Name = "btnCashierTable";
     this.btnCashierTable.Size = new System.Drawing.Size(100, 88);
     this.btnCashierTable.Text = "收银报表(F5)";
     this.btnCashierTable.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnCashierTable.Click += new System.EventHandler(this.btnCashierTable_Click);
     //
     // toolStripLabel6
     //
     this.toolStripLabel6.Name = "toolStripLabel6";
     this.toolStripLabel6.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel6.Text = " ";
     //
     // btnDeposit
     //
     this.btnDeposit.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.btnDeposit.Image = ((System.Drawing.Image)(resources.GetObject("btnDeposit.Image")));
     this.btnDeposit.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnDeposit.Name = "btnDeposit";
     this.btnDeposit.Size = new System.Drawing.Size(100, 88);
     this.btnDeposit.Text = "押金离场(F6)";
     this.btnDeposit.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnDeposit.Click += new System.EventHandler(this.btnDeposit_Click);
     //
     // toolStripLabel7
     //
     this.toolStripLabel7.Name = "toolStripLabel7";
     this.toolStripLabel7.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel7.Text = " ";
     //
     // toolMember
     //
     this.toolMember.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.toolMember.Image = ((System.Drawing.Image)(resources.GetObject("toolMember.Image")));
     this.toolMember.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolMember.Name = "toolMember";
     this.toolMember.Size = new System.Drawing.Size(100, 88);
     this.toolMember.Text = "会员管理(F7)";
     this.toolMember.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolMember.Click += new System.EventHandler(this.toolMember_Click);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(16, 88);
     this.toolStripLabel1.Text = "  ";
     //
     // toolPreprint
     //
     this.toolPreprint.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.toolPreprint.Image = ((System.Drawing.Image)(resources.GetObject("toolPreprint.Image")));
     this.toolPreprint.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolPreprint.Name = "toolPreprint";
     this.toolPreprint.Size = new System.Drawing.Size(100, 88);
     this.toolPreprint.Text = "预打账单(F8)";
     this.toolPreprint.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolPreprint.Click += new System.EventHandler(this.toolPreprint_Click);
     //
     // toolStripLabel9
     //
     this.toolStripLabel9.Name = "toolStripLabel9";
     this.toolStripLabel9.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel9.Text = " ";
     //
     // toolPwd
     //
     this.toolPwd.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.toolPwd.Image = ((System.Drawing.Image)(resources.GetObject("toolPwd.Image")));
     this.toolPwd.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolPwd.Name = "toolPwd";
     this.toolPwd.Size = new System.Drawing.Size(100, 88);
     this.toolPwd.Text = "修改密码(F9)";
     this.toolPwd.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolPwd.Click += new System.EventHandler(this.toolPwd_Click);
     //
     // toolStripLabel10
     //
     this.toolStripLabel10.Name = "toolStripLabel10";
     this.toolStripLabel10.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel10.Text = " ";
     //
     // toolWarn
     //
     this.toolWarn.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.toolWarn.Image = ((System.Drawing.Image)(resources.GetObject("toolWarn.Image")));
     this.toolWarn.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolWarn.Name = "toolWarn";
     this.toolWarn.Size = new System.Drawing.Size(70, 88);
     this.toolWarn.Text = "预定(F5)";
     this.toolWarn.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolWarn.Click += new System.EventHandler(this.toolWarn_Click);
     //
     // toolStripLabel11
     //
     this.toolStripLabel11.Name = "toolStripLabel11";
     this.toolStripLabel11.Size = new System.Drawing.Size(16, 88);
     this.toolStripLabel11.Text = "  ";
     //
     // toolExit
     //
     this.toolExit.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.toolExit.Image = ((System.Drawing.Image)(resources.GetObject("toolExit.Image")));
     this.toolExit.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolExit.Name = "toolExit";
     this.toolExit.Size = new System.Drawing.Size(96, 88);
     this.toolExit.Text = "退    出(ESC)";
     this.toolExit.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolExit.Click += new System.EventHandler(this.toolExit_Click);
     //
     // seatContext
     //
     this.seatContext.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.CtxAddNote,
     this.CtxLock,
     this.CtxSop,
     this.CtxRepay,
     this.CtxReprint,
     this.unWarnTool,
     this.undoTransferTool});
     this.seatContext.Name = "contextMenuStrip1";
     this.seatContext.Size = new System.Drawing.Size(130, 158);
     //
     // CtxAddNote
     //
     this.CtxAddNote.Name = "CtxAddNote";
     this.CtxAddNote.Size = new System.Drawing.Size(129, 22);
     this.CtxAddNote.Text = "添加备注";
     this.CtxAddNote.Click += new System.EventHandler(this.CtxAddNote_Click);
     //
     // CtxLock
     //
     this.CtxLock.Name = "CtxLock";
     this.CtxLock.Size = new System.Drawing.Size(129, 22);
     this.CtxLock.Text = "锁定/解锁";
     this.CtxLock.Click += new System.EventHandler(this.CtxLock_Click);
     //
     // CtxSop
     //
     this.CtxSop.Name = "CtxSop";
     this.CtxSop.Size = new System.Drawing.Size(129, 22);
     this.CtxSop.Text = "停用/启用";
     this.CtxSop.Click += new System.EventHandler(this.CtxSop_Click);
     //
     // CtxRepay
     //
     this.CtxRepay.Name = "CtxRepay";
     this.CtxRepay.Size = new System.Drawing.Size(129, 22);
     this.CtxRepay.Text = "重新结账";
     this.CtxRepay.Click += new System.EventHandler(this.CtxRepay_Click);
     //
     // CtxReprint
     //
     this.CtxReprint.Name = "CtxReprint";
     this.CtxReprint.Size = new System.Drawing.Size(129, 22);
     this.CtxReprint.Text = "重打账单";
     this.CtxReprint.Click += new System.EventHandler(this.CtxReprint_Click);
     //
     // unWarnTool
     //
     this.unWarnTool.Name = "unWarnTool";
     this.unWarnTool.Size = new System.Drawing.Size(129, 22);
     this.unWarnTool.Text = "解除警告";
     this.unWarnTool.Click += new System.EventHandler(this.unWarnTool_Click);
     //
     // undoTransferTool
     //
     this.undoTransferTool.Name = "undoTransferTool";
     this.undoTransferTool.Size = new System.Drawing.Size(129, 22);
     this.undoTransferTool.Text = "恢复转账";
     this.undoTransferTool.Click += new System.EventHandler(this.undoTransferTool_Click);
     //
     // statusStrip1
     //
     this.statusStrip1.Font = new System.Drawing.Font("微软雅黑", 12F);
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel1,
     this.currentUser,
     this.toolStripStatusLabel3,
     this.statusTip,
     this.aviTip,
     this.useTip,
     this.payTip,
     this.lockTip,
     this.stopTip,
     this.warnTip,
     this.depositTip,
     this.toolStripStatusLabel2});
     this.statusStrip1.Location = new System.Drawing.Point(0, 716);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(1370, 26);
     this.statusStrip1.TabIndex = 6;
     this.statusStrip1.TabStop = true;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(0, 21);
     //
     // currentUser
     //
     this.currentUser.Name = "currentUser";
     this.currentUser.Size = new System.Drawing.Size(171, 21);
     this.currentUser.Text = "toolStripStatusLabel2";
     //
     // toolStripStatusLabel3
     //
     this.toolStripStatusLabel3.Name = "toolStripStatusLabel3";
     this.toolStripStatusLabel3.Size = new System.Drawing.Size(20, 21);
     this.toolStripStatusLabel3.Text = "  ";
     //
     // statusTip
     //
     this.statusTip.Font = new System.Drawing.Font("宋体", 10F);
     this.statusTip.Name = "statusTip";
     this.statusTip.Size = new System.Drawing.Size(77, 21);
     this.statusTip.Text = "状态说明:";
     //
     // aviTip
     //
     this.aviTip.BackColor = System.Drawing.Color.White;
     this.aviTip.Font = new System.Drawing.Font("宋体", 10F);
     this.aviTip.Name = "aviTip";
     this.aviTip.Size = new System.Drawing.Size(84, 21);
     this.aviTip.Text = "   可用    ";
     //
     // useTip
     //
     this.useTip.BackColor = System.Drawing.Color.Cyan;
     this.useTip.Font = new System.Drawing.Font("宋体", 10F);
     this.useTip.Name = "useTip";
     this.useTip.Size = new System.Drawing.Size(63, 21);
     this.useTip.Text = "正在使用";
     //
     // payTip
     //
     this.payTip.BackColor = System.Drawing.Color.Gray;
     this.payTip.Font = new System.Drawing.Font("宋体", 10F);
     this.payTip.Name = "payTip";
     this.payTip.Size = new System.Drawing.Size(91, 21);
     this.payTip.Text = "    结账    ";
     //
     // lockTip
     //
     this.lockTip.BackColor = System.Drawing.Color.Orange;
     this.lockTip.Font = new System.Drawing.Font("宋体", 10F);
     this.lockTip.Name = "lockTip";
     this.lockTip.Size = new System.Drawing.Size(91, 21);
     this.lockTip.Text = "    锁定    ";
     //
     // stopTip
     //
     this.stopTip.BackColor = System.Drawing.Color.Red;
     this.stopTip.Name = "stopTip";
     this.stopTip.Size = new System.Drawing.Size(82, 21);
     this.stopTip.Text = "    停用    ";
     //
     // warnTip
     //
     this.warnTip.BackColor = System.Drawing.Color.Yellow;
     this.warnTip.Name = "warnTip";
     this.warnTip.Size = new System.Drawing.Size(74, 21);
     this.warnTip.Text = " 警告 ";
     //
     // depositTip
     //
     this.depositTip.BackColor = System.Drawing.Color.Violet;
     this.depositTip.Name = "depositTip";
     this.depositTip.Size = new System.Drawing.Size(74, 21);
     this.depositTip.Text = "押金离场";
     //
     // toolStripStatusLabel2
     //
     this.toolStripStatusLabel2.BackColor = System.Drawing.Color.CornflowerBlue;
     this.toolStripStatusLabel2.Name = "toolStripStatusLabel2";
     this.toolStripStatusLabel2.Size = new System.Drawing.Size(74, 21);
     this.toolStripStatusLabel2.Text = "重新结账";
     //
     // statusStrip2
     //
     this.statusStrip2.Font = new System.Drawing.Font("微软雅黑", 12F);
     this.statusStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.LseatTotal,
     this.seatTotal,
     this.toolStripStatusLabel20,
     this.LseatAvi,
     this.seatAvi,
     this.toolStripStatusLabel21,
     this.LmoneyTotal,
     this.moneyTotal,
     this.toolStripStatusLabel22,
     this.LseatPaid,
     this.seatPaid,
     this.toolStripStatusLabel23,
     this.LmoneyPaid,
     this.moneyPaid,
     this.toolStripStatusLabel24,
     this.LseatUnpaid,
     this.seatUnpaid,
     this.toolStripStatusLabel25,
     this.LmoneyUnpaid,
     this.moneyUnpaid});
     this.statusStrip2.Location = new System.Drawing.Point(0, 690);
     this.statusStrip2.Name = "statusStrip2";
     this.statusStrip2.Size = new System.Drawing.Size(1370, 26);
     this.statusStrip2.TabIndex = 7;
     this.statusStrip2.Text = "statusStrip2";
     //
     // LseatTotal
     //
     this.LseatTotal.Font = new System.Drawing.Font("宋体", 12F);
     this.LseatTotal.Name = "LseatTotal";
     this.LseatTotal.Size = new System.Drawing.Size(80, 21);
     this.LseatTotal.Text = "总台位数:";
     //
     // seatTotal
     //
     this.seatTotal.Font = new System.Drawing.Font("宋体", 12F);
     this.seatTotal.Name = "seatTotal";
     this.seatTotal.Size = new System.Drawing.Size(40, 21);
     this.seatTotal.Text = "7000";
     //
     // toolStripStatusLabel20
     //
     this.toolStripStatusLabel20.Name = "toolStripStatusLabel20";
     this.toolStripStatusLabel20.Size = new System.Drawing.Size(20, 21);
     this.toolStripStatusLabel20.Text = "  ";
     //
     // LseatAvi
     //
     this.LseatAvi.Font = new System.Drawing.Font("宋体", 12F);
     this.LseatAvi.Name = "LseatAvi";
     this.LseatAvi.Size = new System.Drawing.Size(96, 21);
     this.LseatAvi.Text = "空闲台位数:";
     //
     // seatAvi
     //
     this.seatAvi.Font = new System.Drawing.Font("宋体", 12F);
     this.seatAvi.Name = "seatAvi";
     this.seatAvi.Size = new System.Drawing.Size(32, 21);
     this.seatAvi.Text = "100";
     //
     // toolStripStatusLabel21
     //
     this.toolStripStatusLabel21.Name = "toolStripStatusLabel21";
     this.toolStripStatusLabel21.Size = new System.Drawing.Size(60, 21);
     this.toolStripStatusLabel21.Text = "          ";
     //
     // LmoneyTotal
     //
     this.LmoneyTotal.Font = new System.Drawing.Font("宋体", 12F);
     this.LmoneyTotal.Name = "LmoneyTotal";
     this.LmoneyTotal.Size = new System.Drawing.Size(80, 21);
     this.LmoneyTotal.Text = "合计消费:";
     //
     // moneyTotal
     //
     this.moneyTotal.Font = new System.Drawing.Font("宋体", 12F);
     this.moneyTotal.Name = "moneyTotal";
     this.moneyTotal.Size = new System.Drawing.Size(40, 21);
     this.moneyTotal.Text = "7000";
     //
     // toolStripStatusLabel22
     //
     this.toolStripStatusLabel22.Name = "toolStripStatusLabel22";
     this.toolStripStatusLabel22.Size = new System.Drawing.Size(25, 21);
     this.toolStripStatusLabel22.Text = "   ";
     //
     // LseatPaid
     //
     this.LseatPaid.Font = new System.Drawing.Font("宋体", 12F);
     this.LseatPaid.Name = "LseatPaid";
     this.LseatPaid.Size = new System.Drawing.Size(64, 21);
     this.LseatPaid.Text = "已结账:";
     //
     // seatPaid
     //
     this.seatPaid.Font = new System.Drawing.Font("宋体", 12F);
     this.seatPaid.Name = "seatPaid";
     this.seatPaid.Size = new System.Drawing.Size(24, 21);
     this.seatPaid.Text = "10";
     //
     // toolStripStatusLabel23
     //
     this.toolStripStatusLabel23.Name = "toolStripStatusLabel23";
     this.toolStripStatusLabel23.Size = new System.Drawing.Size(15, 21);
     this.toolStripStatusLabel23.Text = " ";
     //
     // LmoneyPaid
     //
     this.LmoneyPaid.Font = new System.Drawing.Font("宋体", 12F);
     this.LmoneyPaid.Name = "LmoneyPaid";
     this.LmoneyPaid.Size = new System.Drawing.Size(48, 21);
     this.LmoneyPaid.Text = "金额:";
     //
     // moneyPaid
     //
     this.moneyPaid.Font = new System.Drawing.Font("宋体", 12F);
     this.moneyPaid.Name = "moneyPaid";
     this.moneyPaid.Size = new System.Drawing.Size(40, 21);
     this.moneyPaid.Text = "7000";
     //
     // toolStripStatusLabel24
     //
     this.toolStripStatusLabel24.Name = "toolStripStatusLabel24";
     this.toolStripStatusLabel24.Size = new System.Drawing.Size(30, 21);
     this.toolStripStatusLabel24.Text = "    ";
     //
     // LseatUnpaid
     //
     this.LseatUnpaid.Font = new System.Drawing.Font("宋体", 12F);
     this.LseatUnpaid.Name = "LseatUnpaid";
     this.LseatUnpaid.Size = new System.Drawing.Size(64, 21);
     this.LseatUnpaid.Text = "未结账:";
     //
     // seatUnpaid
     //
     this.seatUnpaid.Font = new System.Drawing.Font("宋体", 12F);
     this.seatUnpaid.Name = "seatUnpaid";
     this.seatUnpaid.Size = new System.Drawing.Size(40, 21);
     this.seatUnpaid.Text = "7000";
     //
     // toolStripStatusLabel25
     //
     this.toolStripStatusLabel25.Name = "toolStripStatusLabel25";
     this.toolStripStatusLabel25.Size = new System.Drawing.Size(15, 21);
     this.toolStripStatusLabel25.Text = " ";
     //
     // LmoneyUnpaid
     //
     this.LmoneyUnpaid.Font = new System.Drawing.Font("宋体", 12F);
     this.LmoneyUnpaid.Name = "LmoneyUnpaid";
     this.LmoneyUnpaid.Size = new System.Drawing.Size(48, 21);
     this.LmoneyUnpaid.Text = "金额:";
     //
     // moneyUnpaid
     //
     this.moneyUnpaid.Font = new System.Drawing.Font("宋体", 12F);
     this.moneyUnpaid.Name = "moneyUnpaid";
     this.moneyUnpaid.Size = new System.Drawing.Size(40, 21);
     this.moneyUnpaid.Text = "7000";
     //
     // seatPanel
     //
     this.seatPanel.AutoScroll = true;
     this.seatPanel.BackColor = System.Drawing.Color.White;
     this.seatPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.seatPanel.Location = new System.Drawing.Point(0, 91);
     this.seatPanel.Name = "seatPanel";
     this.seatPanel.Size = new System.Drawing.Size(1370, 599);
     this.seatPanel.TabIndex = 9;
     //
     // MainWindow
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1370, 742);
     this.Controls.Add(this.seatPanel);
     this.Controls.Add(this.statusStrip2);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.toolStrip1);
     this.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "MainWindow";
     this.Text = "前台";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.ReceptionSeatForm_Load);
     this.SizeChanged += new System.EventHandler(this.MainWindow_SizeChanged);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainWindow_FormClosing);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Form_KeyDown);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.seatContext.ResumeLayout(false);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.statusStrip2.ResumeLayout(false);
     this.statusStrip2.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#21
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(MainForm));
     this.stopButton = new System.Windows.Forms.Button();
     this.backRightButton = new System.Windows.Forms.Button();
     this.backButton = new System.Windows.Forms.Button();
     this.backLeftButton = new System.Windows.Forms.Button();
     this.turnLeftButton = new System.Windows.Forms.Button();
     this.turnRightButton = new System.Windows.Forms.Button();
     this.forwardRightButton = new System.Windows.Forms.Button();
     this.forwardButton = new System.Windows.Forms.Button();
     this.forwardLeftButton = new System.Windows.Forms.Button();
     this.statusStrip = new System.Windows.Forms.StatusStrip();
     this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.fileMenu = new System.Windows.Forms.ToolStripMenuItem();
     this.menuDivider1 = new System.Windows.Forms.ToolStripSeparator();
     this.exitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.connectionMenu = new System.Windows.Forms.ToolStripMenuItem();
     this.connectMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.livePanel = new System.Windows.Forms.Panel();
     this.messageBox = new System.Windows.Forms.TextBox();
     this.button1 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.button3 = new System.Windows.Forms.Button();
     this.button4 = new System.Windows.Forms.Button();
     this.button5 = new System.Windows.Forms.Button();
     this.button6 = new System.Windows.Forms.Button();
     this.speedBar = new System.Windows.Forms.TrackBar();
     this.btCamera = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.statusStrip.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.speedBar)).BeginInit();
     this.SuspendLayout();
     //
     // stopButton
     //
     this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.stopButton.Image = ((System.Drawing.Image)(resources.GetObject("stopButton.Image")));
     this.stopButton.Location = new System.Drawing.Point(793, 69);
     this.stopButton.Name = "stopButton";
     this.stopButton.Size = new System.Drawing.Size(40, 37);
     this.stopButton.TabIndex = 22;
     this.stopButton.Tag = "0";
     this.stopButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.backRightButton_MouseUp);
     //
     // backRightButton
     //
     this.backRightButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.backRightButton.Image = ((System.Drawing.Image)(resources.GetObject("backRightButton.Image")));
     this.backRightButton.Location = new System.Drawing.Point(841, 114);
     this.backRightButton.Name = "backRightButton";
     this.backRightButton.Size = new System.Drawing.Size(40, 37);
     this.backRightButton.TabIndex = 21;
     this.backRightButton.Tag = "8";
     this.backRightButton.MouseDown += new System.Windows.Forms.MouseEventHandler(this.driveButton_Click);
     this.backRightButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.backRightButton_MouseUp);
     //
     // backButton
     //
     this.backButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.backButton.Image = ((System.Drawing.Image)(resources.GetObject("backButton.Image")));
     this.backButton.Location = new System.Drawing.Point(793, 114);
     this.backButton.Name = "backButton";
     this.backButton.Size = new System.Drawing.Size(40, 37);
     this.backButton.TabIndex = 20;
     this.backButton.Tag = "6";
     this.backButton.MouseDown += new System.Windows.Forms.MouseEventHandler(this.driveButton_Click);
     this.backButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.backRightButton_MouseUp);
     //
     // backLeftButton
     //
     this.backLeftButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.backLeftButton.Image = ((System.Drawing.Image)(resources.GetObject("backLeftButton.Image")));
     this.backLeftButton.Location = new System.Drawing.Point(745, 114);
     this.backLeftButton.Name = "backLeftButton";
     this.backLeftButton.Size = new System.Drawing.Size(40, 37);
     this.backLeftButton.TabIndex = 19;
     this.backLeftButton.Tag = "7";
     this.backLeftButton.MouseDown += new System.Windows.Forms.MouseEventHandler(this.driveButton_Click);
     this.backLeftButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.backRightButton_MouseUp);
     //
     // turnLeftButton
     //
     this.turnLeftButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.turnLeftButton.Image = ((System.Drawing.Image)(resources.GetObject("turnLeftButton.Image")));
     this.turnLeftButton.Location = new System.Drawing.Point(745, 69);
     this.turnLeftButton.Name = "turnLeftButton";
     this.turnLeftButton.Size = new System.Drawing.Size(40, 37);
     this.turnLeftButton.TabIndex = 18;
     this.turnLeftButton.Tag = "4";
     this.turnLeftButton.MouseDown += new System.Windows.Forms.MouseEventHandler(this.driveButton_Click);
     this.turnLeftButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.backRightButton_MouseUp);
     //
     // turnRightButton
     //
     this.turnRightButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.turnRightButton.Image = ((System.Drawing.Image)(resources.GetObject("turnRightButton.Image")));
     this.turnRightButton.Location = new System.Drawing.Point(841, 69);
     this.turnRightButton.Name = "turnRightButton";
     this.turnRightButton.Size = new System.Drawing.Size(40, 37);
     this.turnRightButton.TabIndex = 17;
     this.turnRightButton.Tag = "5";
     this.turnRightButton.MouseDown += new System.Windows.Forms.MouseEventHandler(this.driveButton_Click);
     this.turnRightButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.backRightButton_MouseUp);
     //
     // forwardRightButton
     //
     this.forwardRightButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.forwardRightButton.Image = ((System.Drawing.Image)(resources.GetObject("forwardRightButton.Image")));
     this.forwardRightButton.Location = new System.Drawing.Point(841, 25);
     this.forwardRightButton.Name = "forwardRightButton";
     this.forwardRightButton.Size = new System.Drawing.Size(40, 37);
     this.forwardRightButton.TabIndex = 16;
     this.forwardRightButton.Tag = "3";
     this.forwardRightButton.MouseDown += new System.Windows.Forms.MouseEventHandler(this.driveButton_Click);
     this.forwardRightButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.backRightButton_MouseUp);
     //
     // forwardButton
     //
     this.forwardButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.forwardButton.Image = ((System.Drawing.Image)(resources.GetObject("forwardButton.Image")));
     this.forwardButton.Location = new System.Drawing.Point(793, 25);
     this.forwardButton.Name = "forwardButton";
     this.forwardButton.Size = new System.Drawing.Size(40, 37);
     this.forwardButton.TabIndex = 15;
     this.forwardButton.Tag = "1";
     this.forwardButton.MouseDown += new System.Windows.Forms.MouseEventHandler(this.driveButton_Click);
     this.forwardButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.backRightButton_MouseUp);
     //
     // forwardLeftButton
     //
     this.forwardLeftButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.forwardLeftButton.Image = ((System.Drawing.Image)(resources.GetObject("forwardLeftButton.Image")));
     this.forwardLeftButton.Location = new System.Drawing.Point(745, 25);
     this.forwardLeftButton.Name = "forwardLeftButton";
     this.forwardLeftButton.Size = new System.Drawing.Size(40, 37);
     this.forwardLeftButton.TabIndex = 14;
     this.forwardLeftButton.Tag = "2";
     this.forwardLeftButton.MouseDown += new System.Windows.Forms.MouseEventHandler(this.driveButton_Click);
     this.forwardLeftButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.backRightButton_MouseUp);
     //
     // statusStrip
     //
     this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.statusLabel});
     this.statusStrip.Location = new System.Drawing.Point(0, 572);
     this.statusStrip.Name = "statusStrip";
     this.statusStrip.Size = new System.Drawing.Size(892, 22);
     this.statusStrip.TabIndex = 23;
     this.statusStrip.Text = "statusStrip";
     //
     // statusLabel
     //
     this.statusLabel.Name = "statusLabel";
     this.statusLabel.Size = new System.Drawing.Size(53, 17);
     this.statusLabel.Text = "status: idle";
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileMenu,
     this.connectionMenu});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(892, 24);
     this.menuStrip1.TabIndex = 24;
     this.menuStrip1.Text = "mainMenu";
     //
     // fileMenu
     //
     this.fileMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.menuDivider1,
     this.exitMenuItem});
     this.fileMenu.Name = "fileMenu";
     this.fileMenu.Size = new System.Drawing.Size(34, 20);
     this.fileMenu.Text = "File";
     //
     // menuDivider1
     //
     this.menuDivider1.Name = "menuDivider1";
     this.menuDivider1.Size = new System.Drawing.Size(86, 6);
     //
     // exitMenuItem
     //
     this.exitMenuItem.Name = "exitMenuItem";
     this.exitMenuItem.Size = new System.Drawing.Size(89, 22);
     this.exitMenuItem.Text = "Exit";
     //
     // connectionMenu
     //
     this.connectionMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.connectMenuItem});
     this.connectionMenu.Name = "connectionMenu";
     this.connectionMenu.Size = new System.Drawing.Size(71, 20);
     this.connectionMenu.Text = "Connection";
     //
     // connectMenuItem
     //
     this.connectMenuItem.Name = "connectMenuItem";
     this.connectMenuItem.Size = new System.Drawing.Size(98, 22);
     this.connectMenuItem.Text = "Listen";
     this.connectMenuItem.Click += new System.EventHandler(this.connectMenuItem_Click);
     //
     // livePanel
     //
     this.livePanel.Location = new System.Drawing.Point(12, 25);
     this.livePanel.Name = "livePanel";
     this.livePanel.Size = new System.Drawing.Size(720, 443);
     this.livePanel.TabIndex = 25;
     //
     // messageBox
     //
     this.messageBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.messageBox.BackColor = System.Drawing.Color.White;
     this.messageBox.Location = new System.Drawing.Point(12, 481);
     this.messageBox.Multiline = true;
     this.messageBox.Name = "messageBox";
     this.messageBox.ReadOnly = true;
     this.messageBox.Size = new System.Drawing.Size(869, 81);
     this.messageBox.TabIndex = 58;
     //
     // button1
     //
     this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.Location = new System.Drawing.Point(745, 156);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(27, 22);
     this.button1.TabIndex = 59;
     this.button1.Tag = "1";
     this.button1.Text = "1";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // button2
     //
     this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.button2.Location = new System.Drawing.Point(778, 156);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(27, 22);
     this.button2.TabIndex = 60;
     this.button2.Tag = "2";
     this.button2.Text = "2";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button1_Click);
     //
     // button3
     //
     this.button3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.button3.Location = new System.Drawing.Point(811, 156);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(27, 22);
     this.button3.TabIndex = 61;
     this.button3.Tag = "3";
     this.button3.Text = "3";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.button1_Click);
     //
     // button4
     //
     this.button4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.button4.Location = new System.Drawing.Point(745, 184);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(27, 22);
     this.button4.TabIndex = 62;
     this.button4.Tag = "4";
     this.button4.Text = "4";
     this.button4.UseVisualStyleBackColor = true;
     this.button4.Click += new System.EventHandler(this.button1_Click);
     //
     // button5
     //
     this.button5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.button5.Location = new System.Drawing.Point(778, 184);
     this.button5.Name = "button5";
     this.button5.Size = new System.Drawing.Size(27, 22);
     this.button5.TabIndex = 63;
     this.button5.Tag = "5";
     this.button5.Text = "5";
     this.button5.UseVisualStyleBackColor = true;
     this.button5.Click += new System.EventHandler(this.button1_Click);
     //
     // button6
     //
     this.button6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.button6.Location = new System.Drawing.Point(811, 184);
     this.button6.Name = "button6";
     this.button6.Size = new System.Drawing.Size(27, 22);
     this.button6.TabIndex = 64;
     this.button6.Tag = "6";
     this.button6.Text = "6";
     this.button6.UseVisualStyleBackColor = true;
     this.button6.Click += new System.EventHandler(this.button1_Click);
     //
     // speedBar
     //
     this.speedBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.speedBar.LargeChange = 50;
     this.speedBar.Location = new System.Drawing.Point(844, 156);
     this.speedBar.Maximum = 1000;
     this.speedBar.Minimum = 100;
     this.speedBar.Name = "speedBar";
     this.speedBar.Orientation = System.Windows.Forms.Orientation.Vertical;
     this.speedBar.Size = new System.Drawing.Size(45, 96);
     this.speedBar.TabIndex = 65;
     this.speedBar.TickFrequency = 50;
     this.speedBar.Value = 350;
     //
     // btCamera
     //
     this.btCamera.Location = new System.Drawing.Point(769, 271);
     this.btCamera.Name = "btCamera";
     this.btCamera.Size = new System.Drawing.Size(69, 31);
     this.btCamera.TabIndex = 66;
     this.btCamera.Text = "Camera";
     this.btCamera.UseVisualStyleBackColor = true;
     this.btCamera.Click += new System.EventHandler(this.btCamera_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(759, 315);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(26, 12);
     this.label1.TabIndex = 67;
     this.label1.Text = "       ";
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(892, 594);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.btCamera);
     this.Controls.Add(this.speedBar);
     this.Controls.Add(this.button6);
     this.Controls.Add(this.button5);
     this.Controls.Add(this.button4);
     this.Controls.Add(this.button3);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.messageBox);
     this.Controls.Add(this.livePanel);
     this.Controls.Add(this.statusStrip);
     this.Controls.Add(this.menuStrip1);
     this.Controls.Add(this.stopButton);
     this.Controls.Add(this.backRightButton);
     this.Controls.Add(this.backButton);
     this.Controls.Add(this.backLeftButton);
     this.Controls.Add(this.turnLeftButton);
     this.Controls.Add(this.turnRightButton);
     this.Controls.Add(this.forwardRightButton);
     this.Controls.Add(this.forwardButton);
     this.Controls.Add(this.forwardLeftButton);
     this.Location = new System.Drawing.Point(1, 1);
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "MainForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "ViLAN Explorer";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
     this.statusStrip.ResumeLayout(false);
     this.statusStrip.PerformLayout();
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.speedBar)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#22
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要修改
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.menuStrip1            = new System.Windows.Forms.MenuStrip();
     this.文件ToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiNew               = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiOpen              = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiSave              = new System.Windows.Forms.ToolStripMenuItem();
     this.另存为AToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1   = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripSeparator2   = new System.Windows.Forms.ToolStripSeparator();
     this.退出XToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.编辑EToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiUndo              = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3   = new System.Windows.Forms.ToolStripSeparator();
     this.tsmiCut               = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiCopy              = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiPaste             = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiDelete            = new System.Windows.Forms.ToolStripMenuItem();
     this.格式FToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiWordWrap          = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiFont              = new System.Windows.Forms.ToolStripMenuItem();
     this.查看VToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiStatusBar         = new System.Windows.Forms.ToolStripMenuItem();
     this.帮助HToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.plBorder              = new System.Windows.Forms.Panel();
     this.txtContent            = new System.Windows.Forms.TextBox();
     this.sspStatus             = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsslMessage           = new System.Windows.Forms.ToolStripStatusLabel();
     this.menuStrip1.SuspendLayout();
     this.sspStatus.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.BackColor = System.Drawing.SystemColors.Window;
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.文件ToolStripMenuItem,
         this.编辑EToolStripMenuItem,
         this.格式FToolStripMenuItem,
         this.查看VToolStripMenuItem,
         this.帮助HToolStripMenuItem
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Size     = new System.Drawing.Size(431, 25);
     this.menuStrip1.TabIndex = 0;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // 文件ToolStripMenuItem
     //
     this.文件ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.tsmiNew,
         this.tsmiOpen,
         this.tsmiSave,
         this.另存为AToolStripMenuItem,
         this.toolStripSeparator1,
         this.toolStripSeparator2,
         this.退出XToolStripMenuItem
     });
     this.文件ToolStripMenuItem.Name = "文件ToolStripMenuItem";
     this.文件ToolStripMenuItem.Size = new System.Drawing.Size(58, 21);
     this.文件ToolStripMenuItem.Text = "文件(&F)";
     //
     // tsmiNew
     //
     this.tsmiNew.Name         = "tsmiNew";
     this.tsmiNew.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
     this.tsmiNew.Size         = new System.Drawing.Size(174, 22);
     this.tsmiNew.Text         = "新建(&N)";
     //
     // tsmiOpen
     //
     this.tsmiOpen.Name         = "tsmiOpen";
     this.tsmiOpen.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
     this.tsmiOpen.Size         = new System.Drawing.Size(174, 22);
     this.tsmiOpen.Text         = "打开(&O)...";
     //
     // tsmiSave
     //
     this.tsmiSave.Name         = "tsmiSave";
     this.tsmiSave.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
     this.tsmiSave.Size         = new System.Drawing.Size(174, 22);
     this.tsmiSave.Text         = "保存(&S)";
     //
     // 另存为AToolStripMenuItem
     //
     this.另存为AToolStripMenuItem.Name = "另存为AToolStripMenuItem";
     this.另存为AToolStripMenuItem.Size = new System.Drawing.Size(174, 22);
     this.另存为AToolStripMenuItem.Text = "另存为(&A)...";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(171, 6);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(171, 6);
     //
     // 退出XToolStripMenuItem
     //
     this.退出XToolStripMenuItem.Name = "退出XToolStripMenuItem";
     this.退出XToolStripMenuItem.Size = new System.Drawing.Size(174, 22);
     this.退出XToolStripMenuItem.Text = "退出(&X)";
     //
     // 编辑EToolStripMenuItem
     //
     this.编辑EToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.tsmiUndo,
         this.toolStripSeparator3,
         this.tsmiCut,
         this.tsmiCopy,
         this.tsmiPaste,
         this.tsmiDelete
     });
     this.编辑EToolStripMenuItem.Name = "编辑EToolStripMenuItem";
     this.编辑EToolStripMenuItem.Size = new System.Drawing.Size(59, 21);
     this.编辑EToolStripMenuItem.Text = "编辑(&E)";
     //
     // tsmiUndo
     //
     this.tsmiUndo.Name         = "tsmiUndo";
     this.tsmiUndo.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z)));
     this.tsmiUndo.Size         = new System.Drawing.Size(161, 22);
     this.tsmiUndo.Text         = "撤销(&U)";
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(158, 6);
     //
     // tsmiCut
     //
     this.tsmiCut.Name         = "tsmiCut";
     this.tsmiCut.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.T)));
     this.tsmiCut.Size         = new System.Drawing.Size(161, 22);
     this.tsmiCut.Text         = "剪切(&T)";
     //
     // tsmiCopy
     //
     this.tsmiCopy.Name         = "tsmiCopy";
     this.tsmiCopy.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
     this.tsmiCopy.Size         = new System.Drawing.Size(161, 22);
     this.tsmiCopy.Text         = "复制(&C)";
     //
     // tsmiPaste
     //
     this.tsmiPaste.Name         = "tsmiPaste";
     this.tsmiPaste.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.P)));
     this.tsmiPaste.Size         = new System.Drawing.Size(161, 22);
     this.tsmiPaste.Text         = "粘贴(&P)";
     //
     // tsmiDelete
     //
     this.tsmiDelete.Name         = "tsmiDelete";
     this.tsmiDelete.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.L)));
     this.tsmiDelete.Size         = new System.Drawing.Size(161, 22);
     this.tsmiDelete.Text         = "删除(&L)";
     //
     // 格式FToolStripMenuItem
     //
     this.格式FToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.tsmiWordWrap,
         this.tsmiFont
     });
     this.格式FToolStripMenuItem.Name = "格式FToolStripMenuItem";
     this.格式FToolStripMenuItem.Size = new System.Drawing.Size(62, 21);
     this.格式FToolStripMenuItem.Text = "格式(&O)";
     //
     // tsmiWordWrap
     //
     this.tsmiWordWrap.Name = "tsmiWordWrap";
     this.tsmiWordWrap.Size = new System.Drawing.Size(144, 22);
     this.tsmiWordWrap.Text = "自动换行(&W)";
     //
     // tsmiFont
     //
     this.tsmiFont.Name = "tsmiFont";
     this.tsmiFont.Size = new System.Drawing.Size(144, 22);
     this.tsmiFont.Text = "字体(&F)...";
     //
     // 查看VToolStripMenuItem
     //
     this.查看VToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.tsmiStatusBar
     });
     this.查看VToolStripMenuItem.Name = "查看VToolStripMenuItem";
     this.查看VToolStripMenuItem.Size = new System.Drawing.Size(60, 21);
     this.查看VToolStripMenuItem.Text = "查看(&V)";
     //
     // tsmiStatusBar
     //
     this.tsmiStatusBar.Name = "tsmiStatusBar";
     this.tsmiStatusBar.Size = new System.Drawing.Size(127, 22);
     this.tsmiStatusBar.Text = "状态栏(&S)";
     //
     // 帮助HToolStripMenuItem
     //
     this.帮助HToolStripMenuItem.Name = "帮助HToolStripMenuItem";
     this.帮助HToolStripMenuItem.Size = new System.Drawing.Size(61, 21);
     this.帮助HToolStripMenuItem.Text = "帮助(&H)";
     //
     // plBorder
     //
     this.plBorder.Dock     = System.Windows.Forms.DockStyle.Top;
     this.plBorder.Location = new System.Drawing.Point(0, 25);
     this.plBorder.Name     = "plBorder";
     this.plBorder.Size     = new System.Drawing.Size(431, 2);
     this.plBorder.TabIndex = 2;
     //
     // txtContent
     //
     this.txtContent.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtContent.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.txtContent.Font        = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtContent.Location    = new System.Drawing.Point(0, 27);
     this.txtContent.Multiline   = true;
     this.txtContent.Name        = "txtContent";
     this.txtContent.ScrollBars  = System.Windows.Forms.ScrollBars.Both;
     this.txtContent.Size        = new System.Drawing.Size(431, 339);
     this.txtContent.TabIndex    = 3;
     //
     // sspStatus
     //
     this.sspStatus.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripStatusLabel1,
         this.tsslMessage
     });
     this.sspStatus.Location = new System.Drawing.Point(0, 344);
     this.sspStatus.Name     = "sspStatus";
     this.sspStatus.Size     = new System.Drawing.Size(431, 22);
     this.sspStatus.TabIndex = 4;
     this.sspStatus.Text     = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name   = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size   = new System.Drawing.Size(412, 17);
     this.toolStripStatusLabel1.Spring = true;
     //
     // tsslMessage
     //
     this.tsslMessage.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Left;
     this.tsslMessage.MergeAction = System.Windows.Forms.MergeAction.MatchOnly;
     this.tsslMessage.Name        = "tsslMessage";
     this.tsslMessage.Size        = new System.Drawing.Size(4, 17);
     //
     // NotePad
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(431, 366);
     this.Controls.Add(this.sspStatus);
     this.Controls.Add(this.txtContent);
     this.Controls.Add(this.plBorder);
     this.Controls.Add(this.menuStrip1);
     this.Name = "NotePad";
     this.Text = "WinForm.Extras Tests";
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.sspStatus.ResumeLayout(false);
     this.sspStatus.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()
 {
     this.components = new System.ComponentModel.Container();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.button1 = new System.Windows.Forms.Button();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.CSVFormatsCombo = new System.Windows.Forms.ComboBox();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.label4 = new System.Windows.Forms.Label();
     this.MarketDataTypesListBox = new System.Windows.Forms.ListBox();
     this.DateTimeFormatTextBox = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.FileColumnsLabel = new System.Windows.Forms.Label();
     this.ColumnsInCSVTextBox = new System.Windows.Forms.TextBox();
     this.statusStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel1});
     this.statusStrip1.Location = new System.Drawing.Point(0, 437);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(391, 22);
     this.statusStrip1.TabIndex = 0;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(44, 17);
     this.toolStripStatusLabel1.Text = "Nothing";
     //
     // button1
     //
     this.button1.DialogResult = System.Windows.Forms.DialogResult.Yes;
     this.button1.Location = new System.Drawing.Point(100, 335);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(121, 37);
     this.button1.TabIndex = 1;
     this.button1.Text = "Load CSV";
     this.toolTip1.SetToolTip(this.button1, "Load your CSV");
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(66, 403);
     this.textBox1.Name = "textBox1";
     this.textBox1.ReadOnly = true;
     this.textBox1.Size = new System.Drawing.Size(267, 20);
     this.textBox1.TabIndex = 2;
     this.toolTip1.SetToolTip(this.textBox1, "Path to your file");
     //
     // CSVFormatsCombo
     //
     this.CSVFormatsCombo.FormattingEnabled = true;
     this.CSVFormatsCombo.Location = new System.Drawing.Point(100, 6);
     this.CSVFormatsCombo.Name = "CSVFormatsCombo";
     this.CSVFormatsCombo.Size = new System.Drawing.Size(121, 21);
     this.CSVFormatsCombo.TabIndex = 3;
     this.toolTip1.SetToolTip(this.CSVFormatsCombo, "CSVFormat to use");
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(4, 410);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(59, 13);
     this.label1.TabIndex = 4;
     this.label1.Text = "Loaded file";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(4, 14);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(63, 13);
     this.label2.TabIndex = 5;
     this.label2.Text = "CSV Format";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(4, 359);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(55, 13);
     this.label3.TabIndex = 6;
     this.label3.Text = "Load CSV";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(4, 68);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(87, 13);
     this.label4.TabIndex = 7;
     this.label4.Text = "MarketDataType";
     this.toolTip1.SetToolTip(this.label4, "Choose which data type will be loaded");
     //
     // MarketDataTypesListBox
     //
     this.MarketDataTypesListBox.FormattingEnabled = true;
     this.MarketDataTypesListBox.Location = new System.Drawing.Point(100, 52);
     this.MarketDataTypesListBox.Name = "MarketDataTypesListBox";
     this.MarketDataTypesListBox.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.MarketDataTypesListBox.Size = new System.Drawing.Size(120, 95);
     this.MarketDataTypesListBox.TabIndex = 8;
     this.toolTip1.SetToolTip(this.MarketDataTypesListBox, "Market data types to use in your csv");
     //
     // DateTimeFormatTextBox
     //
     this.DateTimeFormatTextBox.Location = new System.Drawing.Point(100, 231);
     this.DateTimeFormatTextBox.Name = "DateTimeFormatTextBox";
     this.DateTimeFormatTextBox.Size = new System.Drawing.Size(229, 20);
     this.DateTimeFormatTextBox.TabIndex = 11;
     this.DateTimeFormatTextBox.Text = "yyyy.MM.dd HH:mm:ss";
     this.toolTip1.SetToolTip(this.DateTimeFormatTextBox, "the datetime format used in the file");
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(7, 237);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(85, 13);
     this.label5.TabIndex = 12;
     this.label5.Text = "DateTime format";
     this.toolTip1.SetToolTip(this.label5, "change the datetime format");
     //
     // FileColumnsLabel
     //
     this.FileColumnsLabel.AutoSize = true;
     this.FileColumnsLabel.Location = new System.Drawing.Point(4, 170);
     this.FileColumnsLabel.Name = "FileColumnsLabel";
     this.FileColumnsLabel.Size = new System.Drawing.Size(78, 13);
     this.FileColumnsLabel.TabIndex = 9;
     this.FileColumnsLabel.Text = "Columns Setup";
     //
     // ColumnsInCSVTextBox
     //
     this.ColumnsInCSVTextBox.Location = new System.Drawing.Point(100, 170);
     this.ColumnsInCSVTextBox.Name = "ColumnsInCSVTextBox";
     this.ColumnsInCSVTextBox.Size = new System.Drawing.Size(229, 20);
     this.ColumnsInCSVTextBox.TabIndex = 10;
     //
     // CSVFormLoader
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(391, 459);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.DateTimeFormatTextBox);
     this.Controls.Add(this.ColumnsInCSVTextBox);
     this.Controls.Add(this.FileColumnsLabel);
     this.Controls.Add(this.MarketDataTypesListBox);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.CSVFormatsCombo);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.statusStrip1);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "CSVFormLoader";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "CSVFormLoader";
     this.Load += new System.EventHandler(this.CSVFormLoader_Load);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.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()
 {
     this.lblDatmua = new System.Windows.Forms.Label();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatus_ThemMoi = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatus_Sua = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatus_Xoa = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel5 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatus_Dong = new System.Windows.Forms.ToolStripStatusLabel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.dgvHienThi = new System.Windows.Forms.DataGridView();
     this.palTencung = new System.Windows.Forms.Panel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.txtTimkiem = new System.Windows.Forms.TextBox();
     this.rdoTatca = new System.Windows.Forms.RadioButton();
     this.rdbNgay = new System.Windows.Forms.RadioButton();
     this.rdbMa = new System.Windows.Forms.RadioButton();
     this.statusStrip1.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvHienThi)).BeginInit();
     this.palTencung.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // lblDatmua
     //
     this.lblDatmua.AutoSize = true;
     this.lblDatmua.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblDatmua.ForeColor = System.Drawing.Color.White;
     this.lblDatmua.Location = new System.Drawing.Point(3, 10);
     this.lblDatmua.Name = "lblDatmua";
     this.lblDatmua.Size = new System.Drawing.Size(165, 19);
     this.lblDatmua.TabIndex = 0;
     this.lblDatmua.Text = "Thông tin đặt mua hàng";
     //
     // statusStrip1
     //
     this.statusStrip1.BackColor = System.Drawing.Color.LightSteelBlue;
     this.statusStrip1.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel1,
     this.toolStripStatus_ThemMoi,
     this.toolStripStatus_Sua,
     this.toolStripStatus_Xoa,
     this.toolStripStatusLabel5,
     this.toolStripStatus_Dong});
     this.statusStrip1.Location = new System.Drawing.Point(0, 375);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(594, 26);
     this.statusStrip1.TabIndex = 1;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Image = global::GUI.Properties.Resources.refresh1;
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(109, 21);
     this.toolStripStatusLabel1.Spring = true;
     this.toolStripStatusLabel1.Text = "Nạp lại";
     this.toolStripStatusLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripStatusLabel1.Click += new System.EventHandler(this.toolStripStatusLabel1_Click);
     this.toolStripStatusLabel1.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.toolStripStatusLabel1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // toolStripStatus_ThemMoi
     //
     this.toolStripStatus_ThemMoi.Image = global::GUI.Properties.Resources.Them;
     this.toolStripStatus_ThemMoi.Name = "toolStripStatus_ThemMoi";
     this.toolStripStatus_ThemMoi.Size = new System.Drawing.Size(109, 21);
     this.toolStripStatus_ThemMoi.Spring = true;
     this.toolStripStatus_ThemMoi.Text = "Thêm";
     this.toolStripStatus_ThemMoi.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripStatus_ThemMoi.Click += new System.EventHandler(this.toolStripStatus_ThemMoi_Click);
     this.toolStripStatus_ThemMoi.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.toolStripStatus_ThemMoi.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // toolStripStatus_Sua
     //
     this.toolStripStatus_Sua.Image = global::GUI.Properties.Resources.Sua;
     this.toolStripStatus_Sua.Name = "toolStripStatus_Sua";
     this.toolStripStatus_Sua.Size = new System.Drawing.Size(109, 21);
     this.toolStripStatus_Sua.Spring = true;
     this.toolStripStatus_Sua.Text = "Sửa";
     this.toolStripStatus_Sua.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripStatus_Sua.Click += new System.EventHandler(this.toolStripStatus_Sua_Click);
     this.toolStripStatus_Sua.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.toolStripStatus_Sua.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // toolStripStatus_Xoa
     //
     this.toolStripStatus_Xoa.Image = global::GUI.Properties.Resources.Dele;
     this.toolStripStatus_Xoa.Name = "toolStripStatus_Xoa";
     this.toolStripStatus_Xoa.Size = new System.Drawing.Size(109, 21);
     this.toolStripStatus_Xoa.Spring = true;
     this.toolStripStatus_Xoa.Text = "Xoá";
     this.toolStripStatus_Xoa.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripStatus_Xoa.Click += new System.EventHandler(this.toolStripStatus_Xoa_Click);
     this.toolStripStatus_Xoa.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.toolStripStatus_Xoa.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // toolStripStatusLabel5
     //
     this.toolStripStatusLabel5.Name = "toolStripStatusLabel5";
     this.toolStripStatusLabel5.Size = new System.Drawing.Size(0, 21);
     //
     // toolStripStatus_Dong
     //
     this.toolStripStatus_Dong.Image = global::GUI.Properties.Resources.Xoa;
     this.toolStripStatus_Dong.MergeIndex = -11;
     this.toolStripStatus_Dong.Name = "toolStripStatus_Dong";
     this.toolStripStatus_Dong.Size = new System.Drawing.Size(109, 21);
     this.toolStripStatus_Dong.Spring = true;
     this.toolStripStatus_Dong.Text = "Đóng";
     this.toolStripStatus_Dong.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripStatus_Dong.Click += new System.EventHandler(this.toolStripStatus_Dong_Click);
     this.toolStripStatus_Dong.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.toolStripStatus_Dong.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // panel2
     //
     this.panel2.Controls.Add(this.dgvHienThi);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 89);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(594, 286);
     this.panel2.TabIndex = 2;
     //
     // dgvHienThi
     //
     this.dgvHienThi.AllowUserToAddRows = false;
     this.dgvHienThi.AllowUserToDeleteRows = false;
     this.dgvHienThi.BackgroundColor = System.Drawing.Color.White;
     this.dgvHienThi.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvHienThi.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvHienThi.Location = new System.Drawing.Point(0, 0);
     this.dgvHienThi.Name = "dgvHienThi";
     this.dgvHienThi.ReadOnly = true;
     this.dgvHienThi.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvHienThi.Size = new System.Drawing.Size(594, 286);
     this.dgvHienThi.TabIndex = 0;
     this.dgvHienThi.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvHienThi_CellDoubleClick);
     //
     // palTencung
     //
     this.palTencung.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
     this.palTencung.Controls.Add(this.groupBox1);
     this.palTencung.Controls.Add(this.lblDatmua);
     this.palTencung.Dock = System.Windows.Forms.DockStyle.Top;
     this.palTencung.Location = new System.Drawing.Point(0, 0);
     this.palTencung.Name = "palTencung";
     this.palTencung.Size = new System.Drawing.Size(594, 89);
     this.palTencung.TabIndex = 0;
     this.palTencung.DoubleClick += new System.EventHandler(this.palTencung_DoubleClick);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.txtTimkiem);
     this.groupBox1.Controls.Add(this.rdoTatca);
     this.groupBox1.Controls.Add(this.rdbNgay);
     this.groupBox1.Controls.Add(this.rdbMa);
     this.groupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupBox1.ForeColor = System.Drawing.Color.Black;
     this.groupBox1.Location = new System.Drawing.Point(0, 35);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(594, 54);
     this.groupBox1.TabIndex = 34;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Tìm kiếm";
     //
     // txtTimkiem
     //
     this.txtTimkiem.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtTimkiem.Location = new System.Drawing.Point(255, 20);
     this.txtTimkiem.Name = "txtTimkiem";
     this.txtTimkiem.Size = new System.Drawing.Size(327, 20);
     this.txtTimkiem.TabIndex = 27;
     this.txtTimkiem.TextChanged += new System.EventHandler(this.txtTimkiem_TextChanged);
     //
     // rdoTatca
     //
     this.rdoTatca.AutoSize = true;
     this.rdoTatca.Checked = true;
     this.rdoTatca.ForeColor = System.Drawing.Color.Black;
     this.rdoTatca.Location = new System.Drawing.Point(195, 20);
     this.rdoTatca.Name = "rdoTatca";
     this.rdoTatca.Size = new System.Drawing.Size(56, 17);
     this.rdoTatca.TabIndex = 31;
     this.rdoTatca.TabStop = true;
     this.rdoTatca.Text = "Tất cả";
     this.rdoTatca.UseVisualStyleBackColor = true;
     this.rdoTatca.CheckedChanged += new System.EventHandler(this.rdoTatca_CheckedChanged);
     //
     // rdbNgay
     //
     this.rdbNgay.AutoSize = true;
     this.rdbNgay.ForeColor = System.Drawing.Color.Black;
     this.rdbNgay.Location = new System.Drawing.Point(105, 20);
     this.rdbNgay.Name = "rdbNgay";
     this.rdbNgay.Size = new System.Drawing.Size(68, 17);
     this.rdbNgay.TabIndex = 30;
     this.rdbNgay.Text = "Tìm ngày";
     this.rdbNgay.UseVisualStyleBackColor = true;
     this.rdbNgay.CheckedChanged += new System.EventHandler(this.rdbNgay_CheckedChanged);
     //
     // rdbMa
     //
     this.rdbMa.AutoSize = true;
     this.rdbMa.Location = new System.Drawing.Point(16, 20);
     this.rdbMa.Name = "rdbMa";
     this.rdbMa.Size = new System.Drawing.Size(83, 17);
     this.rdbMa.TabIndex = 29;
     this.rdbMa.Text = "Tìm theo mã";
     this.rdbMa.UseVisualStyleBackColor = true;
     this.rdbMa.CheckedChanged += new System.EventHandler(this.rdbMa_CheckedChanged);
     //
     // frmQuanLyDonDatHang
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(594, 401);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.palTencung);
     this.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name = "frmQuanLyDonDatHang";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = " ";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmViewOrderProducts_Load);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvHienThi)).EndInit();
     this.palTencung.ResumeLayout(false);
     this.palTencung.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.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()
 {
     components = new System.ComponentModel.Container();
     apiVersionStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
     browserVersionStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
     streamingProgressBar = new System.Windows.Forms.ToolStripProgressBar();
     streamingStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
     pluginVersionStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
     //
     // apiVersionStatusLabel
     //
     this.apiVersionStatusLabel.Name = "apiVersionStatusLabel";
     this.apiVersionStatusLabel.ForeColor = System.Drawing.Color.Gray;
     this.apiVersionStatusLabel.Spring = false;
     this.apiVersionStatusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.apiVersionStatusLabel.Size = new System.Drawing.Size(23, 17);
     this.apiVersionStatusLabel.Text = "api ";
     //
     // browserVersionStatusLabel
     //
     this.browserVersionStatusLabel.Name = "browserVersionStatusLabel";
     this.browserVersionStatusLabel.ForeColor = System.Drawing.Color.Gray;
     this.browserVersionStatusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.browserVersionStatusLabel.Spring = true;
     this.browserVersionStatusLabel.Size = new System.Drawing.Size(23, 17);
     this.browserVersionStatusLabel.Text = "ie ";
     // 
     // streamingProgressBar
     // 
     this.streamingProgressBar.Name = "streamingProgressBar";
     this.streamingProgressBar.Size = new System.Drawing.Size(100, 16);
     ////this.streamingProgressBar.Minimum = 0;
     ////this.streamingProgressBar.Maximum = 100;
     // 
     // streamingStatusLabel
     // 
     this.streamingStatusLabel.Name = "streamingStatusLabel";
     this.streamingStatusLabel.Size = new System.Drawing.Size(23, 17);
     this.streamingStatusLabel.Text = "idle";
     //
     // pluginVersionStatusLabel
     //
     this.pluginVersionStatusLabel.Name = "pluginVersionStatusLabel";
     this.pluginVersionStatusLabel.ForeColor = System.Drawing.Color.Gray;
     this.pluginVersionStatusLabel.Spring = false;
     this.pluginVersionStatusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.pluginVersionStatusLabel.Size = new System.Drawing.Size(23, 17);
     this.pluginVersionStatusLabel.Text = "plugin ";
     //
     //
     // GEStatusStrip
     //
     this.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.streamingProgressBar,
     this.streamingStatusLabel,
     this.browserVersionStatusLabel,
     this.apiVersionStatusLabel,
     this.pluginVersionStatusLabel});
     this.Location = new System.Drawing.Point(0, 347);
     this.Name = "geStatusStrip1";
     this.Text = "geStatusStrip1";
     this.Size = new System.Drawing.Size(693, 22);
     this.ResumeLayout(false);
 }
示例#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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.statusBar = new System.Windows.Forms.StatusStrip();
     this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.mainMenu = new System.Windows.Forms.MenuStrip();
     this.gameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.changeLevelMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.restartMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.undoMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.backgroundPanel = new System.Windows.Forms.Panel();
     this.exitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.drawingArea = new System.Windows.Forms.PictureBox();
     this.restartButton = new System.Windows.Forms.ToolStripButton();
     this.undoButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
     this.levelCollectionLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
     this.levelLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel4 = new System.Windows.Forms.ToolStripStatusLabel();
     this.statusBar.SuspendLayout();
     this.mainMenu.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.backgroundPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.drawingArea)).BeginInit();
     this.SuspendLayout();
     //
     // statusBar
     //
     this.statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel1,
     this.statusLabel,
     this.toolStripStatusLabel4,
     this.toolStripStatusLabel2,
     this.levelCollectionLabel,
     this.toolStripStatusLabel3,
     this.levelLabel});
     this.statusBar.Location = new System.Drawing.Point(0, 480);
     this.statusBar.Name = "statusBar";
     this.statusBar.Size = new System.Drawing.Size(742, 24);
     this.statusBar.TabIndex = 1;
     this.statusBar.Text = "statusBar";
     //
     // statusLabel
     //
     this.statusLabel.Name = "statusLabel";
     this.statusLabel.Size = new System.Drawing.Size(69, 19);
     this.statusLabel.Text = "Not Playing";
     //
     // mainMenu
     //
     this.mainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.gameToolStripMenuItem,
     this.editToolStripMenuItem});
     this.mainMenu.Location = new System.Drawing.Point(0, 0);
     this.mainMenu.Name = "mainMenu";
     this.mainMenu.Size = new System.Drawing.Size(742, 24);
     this.mainMenu.TabIndex = 3;
     this.mainMenu.Text = "menuStrip2";
     //
     // gameToolStripMenuItem
     //
     this.gameToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.changeLevelMenuItem,
     this.restartMenuItem,
     this.toolStripSeparator1,
     this.exitMenuItem});
     this.gameToolStripMenuItem.Name = "gameToolStripMenuItem";
     this.gameToolStripMenuItem.Size = new System.Drawing.Size(50, 20);
     this.gameToolStripMenuItem.Text = "Game";
     //
     // changeLevelMenuItem
     //
     this.changeLevelMenuItem.Name = "changeLevelMenuItem";
     this.changeLevelMenuItem.Size = new System.Drawing.Size(152, 22);
     this.changeLevelMenuItem.Text = "Change Level";
     this.changeLevelMenuItem.Click += new System.EventHandler(this.changeLevelMenuItem_Click);
     //
     // restartMenuItem
     //
     this.restartMenuItem.Enabled = false;
     this.restartMenuItem.Name = "restartMenuItem";
     this.restartMenuItem.Size = new System.Drawing.Size(152, 22);
     this.restartMenuItem.Text = "Restart Level";
     this.restartMenuItem.Click += new System.EventHandler(this.restartMenuItem_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(149, 6);
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.undoMenuItem});
     this.editToolStripMenuItem.Name = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
     this.editToolStripMenuItem.Text = "Edit";
     //
     // undoMenuItem
     //
     this.undoMenuItem.Enabled = false;
     this.undoMenuItem.Name = "undoMenuItem";
     this.undoMenuItem.Size = new System.Drawing.Size(152, 22);
     this.undoMenuItem.Text = "Undo Move";
     this.undoMenuItem.Click += new System.EventHandler(this.undoMenuItem_Click);
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.restartButton,
     this.toolStripSeparator2,
     this.undoButton});
     this.toolStrip1.Location = new System.Drawing.Point(0, 24);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(742, 25);
     this.toolStrip1.TabIndex = 4;
     this.toolStrip1.Text = "toolStrip1";
     //
     // backgroundPanel
     //
     this.backgroundPanel.BackColor = System.Drawing.Color.Khaki;
     this.backgroundPanel.Controls.Add(this.drawingArea);
     this.backgroundPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.backgroundPanel.Location = new System.Drawing.Point(0, 49);
     this.backgroundPanel.Name = "backgroundPanel";
     this.backgroundPanel.Size = new System.Drawing.Size(742, 431);
     this.backgroundPanel.TabIndex = 6;
     //
     // exitMenuItem
     //
     this.exitMenuItem.Name = "exitMenuItem";
     this.exitMenuItem.Size = new System.Drawing.Size(152, 22);
     this.exitMenuItem.Text = "Exit";
     this.exitMenuItem.Click += new System.EventHandler(this.exitMenuItem_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // drawingArea
     //
     this.drawingArea.BackgroundImage = global::SokobanNET.Properties.Resources.Floor;
     this.drawingArea.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.drawingArea.Location = new System.Drawing.Point(0, 0);
     this.drawingArea.Name = "drawingArea";
     this.drawingArea.Size = new System.Drawing.Size(315, 249);
     this.drawingArea.TabIndex = 1;
     this.drawingArea.TabStop = false;
     this.drawingArea.Visible = false;
     this.drawingArea.Paint += new System.Windows.Forms.PaintEventHandler(this.drawingArea_Paint);
     //
     // restartButton
     //
     this.restartButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.restartButton.Enabled = false;
     this.restartButton.Image = global::SokobanNET.Properties.Resources.Restart;
     this.restartButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.restartButton.Name = "restartButton";
     this.restartButton.Size = new System.Drawing.Size(23, 22);
     this.restartButton.Text = "Restart Level";
     this.restartButton.Click += new System.EventHandler(this.restartButton_Click);
     //
     // undoButton
     //
     this.undoButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.undoButton.Enabled = false;
     this.undoButton.Image = ((System.Drawing.Image)(resources.GetObject("undoButton.Image")));
     this.undoButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.undoButton.Name = "undoButton";
     this.undoButton.Size = new System.Drawing.Size(23, 22);
     this.undoButton.Text = "Undo Movement";
     this.undoButton.Click += new System.EventHandler(this.undoButton_Click);
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(42, 19);
     this.toolStripStatusLabel1.Text = "Status:";
     //
     // toolStripStatusLabel2
     //
     this.toolStripStatusLabel2.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Left;
     this.toolStripStatusLabel2.BorderStyle = System.Windows.Forms.Border3DStyle.Etched;
     this.toolStripStatusLabel2.Name = "toolStripStatusLabel2";
     this.toolStripStatusLabel2.Size = new System.Drawing.Size(68, 19);
     this.toolStripStatusLabel2.Text = "Collection:";
     //
     // levelCollectionLabel
     //
     this.levelCollectionLabel.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Right;
     this.levelCollectionLabel.BorderStyle = System.Windows.Forms.Border3DStyle.Etched;
     this.levelCollectionLabel.Name = "levelCollectionLabel";
     this.levelCollectionLabel.Size = new System.Drawing.Size(4, 19);
     //
     // toolStripStatusLabel3
     //
     this.toolStripStatusLabel3.Name = "toolStripStatusLabel3";
     this.toolStripStatusLabel3.Size = new System.Drawing.Size(37, 19);
     this.toolStripStatusLabel3.Text = "Level:";
     //
     // levelLabel
     //
     this.levelLabel.Name = "levelLabel";
     this.levelLabel.Size = new System.Drawing.Size(0, 19);
     //
     // toolStripStatusLabel4
     //
     this.toolStripStatusLabel4.Name = "toolStripStatusLabel4";
     this.toolStripStatusLabel4.Size = new System.Drawing.Size(524, 19);
     this.toolStripStatusLabel4.Spring = true;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(742, 504);
     this.Controls.Add(this.backgroundPanel);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.statusBar);
     this.Controls.Add(this.mainMenu);
     this.Name = "MainForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "SokobanNET";
     this.Load += new System.EventHandler(this.MainForm_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.MainForm_KeyDown);
     this.statusBar.ResumeLayout(false);
     this.statusBar.PerformLayout();
     this.mainMenu.ResumeLayout(false);
     this.mainMenu.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.backgroundPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.drawingArea)).EndInit();
     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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMyVideos));
            this.statusStrip1 = new System.Windows.Forms.StatusStrip();
            this.lblStatus = new System.Windows.Forms.ToolStripStatusLabel();
            this.pbStatus = new System.Windows.Forms.ToolStripProgressBar();
            this.lvVideos = new System.Windows.Forms.ListView();
            this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
            this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
            this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
            this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
            this.columnHeader5 = new System.Windows.Forms.ColumnHeader();
            this.columnHeader6 = new System.Windows.Forms.ColumnHeader();
            this.columnHeader7 = new System.Windows.Forms.ColumnHeader();
            this.button1 = new System.Windows.Forms.Button();
            this.btnDisable = new System.Windows.Forms.Button();
            this.btnEnable = new System.Windows.Forms.Button();

            this.wb = new SHDocVw.WebBrowser();
            this.btnSelectAll = new System.Windows.Forms.Button();
            this.btnDeselectAll = new System.Windows.Forms.Button();
            this.statusStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.wb)).BeginInit();
            this.SuspendLayout();
            //
            // statusStrip1
            //
            this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.lblStatus,
            this.pbStatus});
            this.statusStrip1.Location = new System.Drawing.Point(0, 271);
            this.statusStrip1.Name = "statusStrip1";
            this.statusStrip1.Size = new System.Drawing.Size(667, 22);
            this.statusStrip1.SizingGrip = false;
            this.statusStrip1.TabIndex = 0;
            this.statusStrip1.Text = "statusStrip1";
            //
            // lblStatus
            //
            this.lblStatus.Name = "lblStatus";
            this.lblStatus.Size = new System.Drawing.Size(450, 17);
            this.lblStatus.Spring = true;
            this.lblStatus.Text = "Idle.";
            this.lblStatus.TextAlign = System.Drawing.ContentAlignment.TopLeft;
            //
            // pbStatus
            //
            this.pbStatus.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.pbStatus.Name = "pbStatus";
            this.pbStatus.Size = new System.Drawing.Size(200, 16);
            //
            // lvVideos
            //
            this.lvVideos.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader1,
            this.columnHeader2,
            this.columnHeader3,
            this.columnHeader4,
            this.columnHeader5,
            this.columnHeader6,
            this.columnHeader7});
            this.lvVideos.FullRowSelect = true;
            this.lvVideos.Location = new System.Drawing.Point(12, 12);
            this.lvVideos.Name = "lvVideos";
            this.lvVideos.Size = new System.Drawing.Size(643, 220);
            this.lvVideos.TabIndex = 3;
            this.lvVideos.UseCompatibleStateImageBehavior = false;
            this.lvVideos.View = System.Windows.Forms.View.Details;
            //
            // columnHeader1
            //
            this.columnHeader1.Text = "ID";
            this.columnHeader1.Width = 70;
            //
            // columnHeader2
            //
            this.columnHeader2.Text = "Title";
            this.columnHeader2.Width = 319;
            //
            // columnHeader3
            //
            this.columnHeader3.Text = "Views";
            this.columnHeader3.Width = 50;
            //
            // columnHeader4
            //
            this.columnHeader4.Text = "Comments";
            this.columnHeader4.Width = 50;
            //
            // columnHeader5
            //
            this.columnHeader5.Text = "Favorites";
            this.columnHeader5.Width = 50;
            //
            // columnHeader6
            //
            this.columnHeader6.Text = "Ratings";
            this.columnHeader6.Width = 50;
            //
            // columnHeader7
            //
            this.columnHeader7.Text = "Average";
            this.columnHeader7.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.columnHeader7.Width = 50;
            //
            // button1
            //
            this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.button1.Location = new System.Drawing.Point(524, 238);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(131, 24);
            this.button1.TabIndex = 4;
            this.button1.Text = "Reload Videos";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            //
            // btnDisable
            //
            this.btnDisable.Location = new System.Drawing.Point(12, 238);
            this.btnDisable.Name = "btnDisable";
            this.btnDisable.Size = new System.Drawing.Size(113, 24);
            this.btnDisable.TabIndex = 5;
            this.btnDisable.Text = "Disable Selected";
            this.btnDisable.UseVisualStyleBackColor = true;
            this.btnDisable.Click += new System.EventHandler(this.btnDisable_Click);
            //
            // btnEnable
            //
            this.btnEnable.Location = new System.Drawing.Point(131, 238);
            this.btnEnable.Name = "btnEnable";
            this.btnEnable.Size = new System.Drawing.Size(113, 24);
            this.btnEnable.TabIndex = 6;
            this.btnEnable.Text = "Enable Selected";
            this.btnEnable.UseVisualStyleBackColor = true;
            this.btnEnable.Click += new System.EventHandler(this.btnEnable_Click);
            //
            // wb
            //
            this.wb.Enabled = true;
            this.wb.Location = new System.Drawing.Point(12, 316);
            this.wb.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("wb.OcxState")));
            this.wb.Size = new System.Drawing.Size(643, 180);
            this.wb.TabIndex = 7;
            //
            // btnSelectAll
            //
            this.btnSelectAll.Location = new System.Drawing.Point(250, 238);
            this.btnSelectAll.Name = "btnSelectAll";
            this.btnSelectAll.Size = new System.Drawing.Size(113, 23);
            this.btnSelectAll.TabIndex = 8;
            this.btnSelectAll.Text = "Select All";
            this.btnSelectAll.UseVisualStyleBackColor = true;
            this.btnSelectAll.Click += new System.EventHandler(this.btnSelectAll_Click);
            //
            // btnDeselectAll
            //
            this.btnDeselectAll.Location = new System.Drawing.Point(369, 238);
            this.btnDeselectAll.Name = "btnDeselectAll";
            this.btnDeselectAll.Size = new System.Drawing.Size(113, 23);
            this.btnDeselectAll.TabIndex = 9;
            this.btnDeselectAll.Text = "Deselect All";
            this.btnDeselectAll.UseVisualStyleBackColor = true;
            this.btnDeselectAll.Click += new System.EventHandler(this.btnDeselectAll_Click);
            //
            // frmMyVideos
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(667, 293);
            this.Controls.Add(this.btnDeselectAll);
            this.Controls.Add(this.btnSelectAll);
            this.Controls.Add(this.wb);
            this.Controls.Add(this.btnEnable);
            this.Controls.Add(this.btnDisable);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.lvVideos);
            this.Controls.Add(this.statusStrip1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
            this.Name = "frmMyVideos";
            this.Text = "My Videos";
            this.Load += new System.EventHandler(this.frmMyVideos_Load);
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMyVideos_Unload);
            this.statusStrip1.ResumeLayout(false);
            this.statusStrip1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.wb)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
示例#28
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmAdjustStockManual));
     this.ToolTipMain         = new System.Windows.Forms.ToolTip(this.components);
     this.sbStatusBar         = new System.Windows.Forms.StatusStrip();
     this._sbStatusBar_Panel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.txtStockID          = new System.Windows.Forms.TextBox();
     this.txtOriginalPrice    = new System.Windows.Forms.TextBox();
     this._txtValues_0        = new System.Windows.Forms.TextBox();
     this.txtQuantityPerUnit  = new System.Windows.Forms.TextBox();
     this.txtProductName      = new System.Windows.Forms.TextBox();
     this.txtUnit             = new System.Windows.Forms.TextBox();
     this._txtValues_1        = new System.Windows.Forms.TextBox();
     this.txtOriginalQuantity = new System.Windows.Forms.TextBox();
     this.Frame3   = new System.Windows.Forms.GroupBox();
     this.lvStocks = new System.Windows.Forms.ListView();
     this._lvStocks_ColumnHeader_1 = new System.Windows.Forms.ColumnHeader();
     this._lvStocks_ColumnHeader_2 = new System.Windows.Forms.ColumnHeader();
     this._lvStocks_ColumnHeader_3 = new System.Windows.Forms.ColumnHeader();
     this._lvStocks_ColumnHeader_4 = new System.Windows.Forms.ColumnHeader();
     this._lvStocks_ColumnHeader_5 = new System.Windows.Forms.ColumnHeader();
     this._lvStocks_ColumnHeader_6 = new System.Windows.Forms.ColumnHeader();
     this._lvStocks_ColumnHeader_7 = new System.Windows.Forms.ColumnHeader();
     this._lvStocks_ColumnHeader_8 = new System.Windows.Forms.ColumnHeader();
     this.Frame1      = new System.Windows.Forms.GroupBox();
     this.txtCode     = new System.Windows.Forms.TextBox();
     this.txtName     = new System.Windows.Forms.TextBox();
     this.cmdProducts = new System.Windows.Forms.Button();
     this.Label5      = new System.Windows.Forms.Label();
     this.Label4      = new System.Windows.Forms.Label();
     this.cmdClose    = new System.Windows.Forms.Button();
     this.cmdSave     = new System.Windows.Forms.Button();
     this.lvProducts  = new System.Windows.Forms.ListView();
     this._lvProducts_ColumnHeader_1 = new System.Windows.Forms.ColumnHeader();
     this._lvProducts_ColumnHeader_2 = new System.Windows.Forms.ColumnHeader();
     this._lvProducts_ColumnHeader_3 = new System.Windows.Forms.ColumnHeader();
     this._lvProducts_ColumnHeader_4 = new System.Windows.Forms.ColumnHeader();
     this._lvProducts_ColumnHeader_5 = new System.Windows.Forms.ColumnHeader();
     this._lvProducts_ColumnHeader_6 = new System.Windows.Forms.ColumnHeader();
     this._lvProducts_ColumnHeader_7 = new System.Windows.Forms.ColumnHeader();
     this.Label14            = new System.Windows.Forms.Label();
     this.lblNewQuantity     = new System.Windows.Forms.Label();
     this.Label12            = new System.Windows.Forms.Label();
     this.lblCurrentQuantity = new System.Windows.Forms.Label();
     this.Label11            = new System.Windows.Forms.Label();
     this.Label10            = new System.Windows.Forms.Label();
     this.Label8             = new System.Windows.Forms.Label();
     this.Label9             = new System.Windows.Forms.Label();
     this.Label7             = new System.Windows.Forms.Label();
     this.Label6             = new System.Windows.Forms.Label();
     this.Label2             = new System.Windows.Forms.Label();
     this.Label1             = new System.Windows.Forms.Label();
     this.Label3             = new System.Windows.Forms.Label();
     this.sbStatusBar.SuspendLayout();
     this.Frame3.SuspendLayout();
     this.lvStocks.SuspendLayout();
     this.Frame1.SuspendLayout();
     this.lvProducts.SuspendLayout();
     this.SuspendLayout();
     this.listViewHelper1 = new UpgradeHelpers.VB6.Gui.ListViewHelper(this.components);
     ((System.ComponentModel.ISupportInitialize) this.listViewHelper1).BeginInit();
     //
     // sbStatusBar
     //
     this.sbStatusBar.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.sbStatusBar.Location         = new System.Drawing.Point(0, 538);
     this.sbStatusBar.Name             = "sbStatusBar";
     this.sbStatusBar.ShowItemToolTips = true;
     this.sbStatusBar.Size             = new System.Drawing.Size(426, 25);
     this.sbStatusBar.TabIndex         = 28;
     this.sbStatusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this._sbStatusBar_Panel1 });
     //
     // _sbStatusBar_Panel1
     //
     this._sbStatusBar_Panel1.AutoSize           = true;
     this._sbStatusBar_Panel1.AutoSize           = false;
     this._sbStatusBar_Panel1.BorderSides        = (System.Windows.Forms.ToolStripStatusLabelBorderSides)(System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom);
     this._sbStatusBar_Panel1.BorderStyle        = System.Windows.Forms.Border3DStyle.SunkenOuter;
     this._sbStatusBar_Panel1.DoubleClickEnabled = true;
     this._sbStatusBar_Panel1.Margin             = new System.Windows.Forms.Padding(0);
     this._sbStatusBar_Panel1.Size              = new System.Drawing.Size(407, 25);
     this._sbStatusBar_Panel1.TextAlign         = System.Drawing.ContentAlignment.MiddleLeft;
     this._sbStatusBar_Panel1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // txtStockID
     //
     this.txtStockID.AcceptsReturn = true;
     this.txtStockID.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtStockID.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtStockID.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtStockID.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtStockID.Location      = new System.Drawing.Point(96, 374);
     this.txtStockID.MaxLength     = 0;
     this.txtStockID.Name          = "txtStockID";
     this.txtStockID.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtStockID.Size          = new System.Drawing.Size(81, 20);
     this.txtStockID.TabIndex      = 26;
     this.txtStockID.TabStop       = false;
     //
     // txtOriginalPrice
     //
     this.txtOriginalPrice.AcceptsReturn = true;
     this.txtOriginalPrice.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtOriginalPrice.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtOriginalPrice.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtOriginalPrice.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtOriginalPrice.Location      = new System.Drawing.Point(96, 403);
     this.txtOriginalPrice.MaxLength     = 0;
     this.txtOriginalPrice.Name          = "txtOriginalPrice";
     this.txtOriginalPrice.ReadOnly      = true;
     this.txtOriginalPrice.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtOriginalPrice.Size          = new System.Drawing.Size(81, 20);
     this.txtOriginalPrice.TabIndex      = 25;
     this.txtOriginalPrice.TabStop       = false;
     this.txtOriginalPrice.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // _txtValues_0
     //
     this._txtValues_0.AcceptsReturn = true;
     this._txtValues_0.BackColor     = System.Drawing.SystemColors.Window;
     this._txtValues_0.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this._txtValues_0.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtValues_0.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtValues_0.Location      = new System.Drawing.Point(328, 403);
     this._txtValues_0.MaxLength     = 0;
     this._txtValues_0.Name          = "_txtValues_0";
     this._txtValues_0.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtValues_0.Size          = new System.Drawing.Size(81, 20);
     this._txtValues_0.TabIndex      = 4;
     this._txtValues_0.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     this._txtValues_0.Enter        += new System.EventHandler(this.txtValues_Enter);
     this._txtValues_0.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.txtValues_KeyPress);
     this._txtValues_0.TextChanged  += new System.EventHandler(this.txtValues_TextChanged);
     //
     // txtQuantityPerUnit
     //
     this.txtQuantityPerUnit.AcceptsReturn = true;
     this.txtQuantityPerUnit.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtQuantityPerUnit.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtQuantityPerUnit.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtQuantityPerUnit.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtQuantityPerUnit.Location      = new System.Drawing.Point(328, 374);
     this.txtQuantityPerUnit.MaxLength     = 0;
     this.txtQuantityPerUnit.Name          = "txtQuantityPerUnit";
     this.txtQuantityPerUnit.ReadOnly      = true;
     this.txtQuantityPerUnit.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtQuantityPerUnit.Size          = new System.Drawing.Size(81, 20);
     this.txtQuantityPerUnit.TabIndex      = 21;
     this.txtQuantityPerUnit.TabStop       = false;
     this.txtQuantityPerUnit.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtProductName
     //
     this.txtProductName.AcceptsReturn = true;
     this.txtProductName.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtProductName.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtProductName.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtProductName.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtProductName.Location      = new System.Drawing.Point(96, 344);
     this.txtProductName.MaxLength     = 0;
     this.txtProductName.Name          = "txtProductName";
     this.txtProductName.ReadOnly      = true;
     this.txtProductName.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtProductName.Size          = new System.Drawing.Size(145, 20);
     this.txtProductName.TabIndex      = 20;
     this.txtProductName.TabStop       = false;
     //
     // txtUnit
     //
     this.txtUnit.AcceptsReturn = true;
     this.txtUnit.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtUnit.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtUnit.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtUnit.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtUnit.Location      = new System.Drawing.Point(328, 344);
     this.txtUnit.MaxLength     = 0;
     this.txtUnit.Name          = "txtUnit";
     this.txtUnit.ReadOnly      = true;
     this.txtUnit.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtUnit.Size          = new System.Drawing.Size(81, 20);
     this.txtUnit.TabIndex      = 19;
     this.txtUnit.TabStop       = false;
     //
     // _txtValues_1
     //
     this._txtValues_1.AcceptsReturn = true;
     this._txtValues_1.BackColor     = System.Drawing.SystemColors.Window;
     this._txtValues_1.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this._txtValues_1.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtValues_1.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtValues_1.Location      = new System.Drawing.Point(328, 432);
     this._txtValues_1.MaxLength     = 0;
     this._txtValues_1.Name          = "_txtValues_1";
     this._txtValues_1.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtValues_1.Size          = new System.Drawing.Size(81, 20);
     this._txtValues_1.TabIndex      = 5;
     this._txtValues_1.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     this._txtValues_1.Enter        += new System.EventHandler(this.txtValues_Enter);
     this._txtValues_1.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.txtValues_KeyPress);
     this._txtValues_1.TextChanged  += new System.EventHandler(this.txtValues_TextChanged);
     //
     // txtOriginalQuantity
     //
     this.txtOriginalQuantity.AcceptsReturn = true;
     this.txtOriginalQuantity.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtOriginalQuantity.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtOriginalQuantity.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtOriginalQuantity.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtOriginalQuantity.Location      = new System.Drawing.Point(96, 432);
     this.txtOriginalQuantity.MaxLength     = 0;
     this.txtOriginalQuantity.Name          = "txtOriginalQuantity";
     this.txtOriginalQuantity.ReadOnly      = true;
     this.txtOriginalQuantity.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtOriginalQuantity.Size          = new System.Drawing.Size(81, 20);
     this.txtOriginalQuantity.TabIndex      = 14;
     this.txtOriginalQuantity.TabStop       = false;
     this.txtOriginalQuantity.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // Frame3
     //
     this.Frame3.BackColor = System.Drawing.SystemColors.Control;
     this.Frame3.Controls.Add(this.lvStocks);
     this.Frame3.Enabled     = true;
     this.Frame3.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Frame3.Location    = new System.Drawing.Point(8, 200);
     this.Frame3.Name        = "Frame3";
     this.Frame3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Frame3.Size        = new System.Drawing.Size(409, 137);
     this.Frame3.TabIndex    = 13;
     this.Frame3.Text        = "Stocks for the product ";
     this.Frame3.Visible     = true;
     //
     // lvStocks
     //
     this.lvStocks.BackColor     = System.Drawing.SystemColors.Window;
     this.lvStocks.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lvStocks.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.lvStocks.FullRowSelect = true;
     this.lvStocks.GridLines     = true;
     this.lvStocks.HideSelection = false;
     this.lvStocks.HotTracking   = true;
     this.lvStocks.LabelEdit     = false;
     this.lvStocks.Location      = new System.Drawing.Point(8, 16);
     this.lvStocks.Name          = "lvStocks";
     this.lvStocks.Size          = new System.Drawing.Size(393, 113);
     this.lvStocks.TabIndex      = 3;
     this.lvStocks.View          = System.Windows.Forms.View.Details;
     this.lvStocks.Columns.Add(this._lvStocks_ColumnHeader_1);
     this.lvStocks.Columns.Add(this._lvStocks_ColumnHeader_2);
     this.lvStocks.Columns.Add(this._lvStocks_ColumnHeader_3);
     this.lvStocks.Columns.Add(this._lvStocks_ColumnHeader_4);
     this.lvStocks.Columns.Add(this._lvStocks_ColumnHeader_5);
     this.lvStocks.Columns.Add(this._lvStocks_ColumnHeader_6);
     this.lvStocks.Columns.Add(this._lvStocks_ColumnHeader_7);
     this.lvStocks.Columns.Add(this._lvStocks_ColumnHeader_8);
     //
     // _lvStocks_ColumnHeader_1
     //
     this._lvStocks_ColumnHeader_1.Text  = "Stock ID";
     this._lvStocks_ColumnHeader_1.Width = 97;
     //
     // _lvStocks_ColumnHeader_2
     //
     this._lvStocks_ColumnHeader_2.Text      = "Current Stock";
     this._lvStocks_ColumnHeader_2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this._lvStocks_ColumnHeader_2.Width     = 97;
     //
     // _lvStocks_ColumnHeader_3
     //
     this._lvStocks_ColumnHeader_3.Text      = "Initial Stock";
     this._lvStocks_ColumnHeader_3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this._lvStocks_ColumnHeader_3.Width     = 97;
     //
     // _lvStocks_ColumnHeader_4
     //
     this._lvStocks_ColumnHeader_4.Text      = "Price";
     this._lvStocks_ColumnHeader_4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this._lvStocks_ColumnHeader_4.Width     = 97;
     //
     // _lvStocks_ColumnHeader_5
     //
     this._lvStocks_ColumnHeader_5.Text      = "Stock Price";
     this._lvStocks_ColumnHeader_5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this._lvStocks_ColumnHeader_5.Width     = 97;
     //
     // _lvStocks_ColumnHeader_6
     //
     this._lvStocks_ColumnHeader_6.Text      = "Created";
     this._lvStocks_ColumnHeader_6.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this._lvStocks_ColumnHeader_6.Width     = 97;
     //
     // _lvStocks_ColumnHeader_7
     //
     this._lvStocks_ColumnHeader_7.Text      = "Modified";
     this._lvStocks_ColumnHeader_7.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this._lvStocks_ColumnHeader_7.Width     = 97;
     //
     // _lvStocks_ColumnHeader_8
     //
     this._lvStocks_ColumnHeader_8.Text  = "User";
     this._lvStocks_ColumnHeader_8.Width = 97;
     //
     // Frame1
     //
     this.Frame1.BackColor = System.Drawing.SystemColors.Control;
     this.Frame1.Controls.Add(this.txtCode);
     this.Frame1.Controls.Add(this.txtName);
     this.Frame1.Controls.Add(this.cmdProducts);
     this.Frame1.Controls.Add(this.Label5);
     this.Frame1.Controls.Add(this.Label4);
     this.Frame1.Enabled     = true;
     this.Frame1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Frame1.Location    = new System.Drawing.Point(8, 32);
     this.Frame1.Name        = "Frame1";
     this.Frame1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Frame1.Size        = new System.Drawing.Size(409, 65);
     this.Frame1.TabIndex    = 9;
     this.Frame1.Text        = "Search product ";
     this.Frame1.Visible     = true;
     //
     // txtCode
     //
     this.txtCode.AcceptsReturn = true;
     this.txtCode.BackColor     = System.Drawing.SystemColors.Window;
     this.txtCode.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtCode.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtCode.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtCode.Location      = new System.Drawing.Point(112, 16);
     this.txtCode.MaxLength     = 0;
     this.txtCode.Name          = "txtCode";
     this.txtCode.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtCode.Size          = new System.Drawing.Size(97, 20);
     this.txtCode.TabIndex      = 0;
     this.txtCode.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.txtCode_KeyPress);
     this.txtCode.TextChanged  += new System.EventHandler(this.txtCode_TextChanged);
     //
     // txtName
     //
     this.txtName.AcceptsReturn = true;
     this.txtName.BackColor     = System.Drawing.SystemColors.Window;
     this.txtName.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtName.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtName.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtName.Location      = new System.Drawing.Point(112, 40);
     this.txtName.MaxLength     = 0;
     this.txtName.Name          = "txtName";
     this.txtName.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtName.Size          = new System.Drawing.Size(145, 20);
     this.txtName.TabIndex      = 1;
     this.txtName.TextChanged  += new System.EventHandler(this.txtName_TextChanged);
     //
     // cmdProducts
     //
     this.cmdProducts.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdProducts.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdProducts.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdProducts.Location                = new System.Drawing.Point(360, 16);
     this.cmdProducts.Name                    = "cmdProducts";
     this.cmdProducts.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdProducts.Size                    = new System.Drawing.Size(25, 21);
     this.cmdProducts.TabIndex                = 10;
     this.cmdProducts.TabStop                 = false;
     this.cmdProducts.Text                    = "...";
     this.cmdProducts.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdProducts.UseVisualStyleBackColor = false;
     this.cmdProducts.Click                  += new System.EventHandler(this.cmdProducts_Click);
     //
     // Label5
     //
     this.Label5.BackColor   = System.Drawing.SystemColors.Control;
     this.Label5.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label5.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label5.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label5.Location    = new System.Drawing.Point(16, 16);
     this.Label5.Name        = "Label5";
     this.Label5.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label5.Size        = new System.Drawing.Size(89, 17);
     this.Label5.TabIndex    = 12;
     this.Label5.Text        = "Product code:";
     //
     // Label4
     //
     this.Label4.BackColor   = System.Drawing.SystemColors.Control;
     this.Label4.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label4.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label4.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label4.Location    = new System.Drawing.Point(16, 40);
     this.Label4.Name        = "Label4";
     this.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label4.Size        = new System.Drawing.Size(89, 17);
     this.Label4.TabIndex    = 11;
     this.Label4.Text        = "Product name:";
     //
     // cmdClose
     //
     this.cmdClose.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdClose.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdClose.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdClose.Location                = new System.Drawing.Point(344, 504);
     this.cmdClose.Name                    = "cmdClose";
     this.cmdClose.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.Size                    = new System.Drawing.Size(73, 25);
     this.cmdClose.TabIndex                = 7;
     this.cmdClose.Text                    = "&Close";
     this.cmdClose.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdClose.UseVisualStyleBackColor = false;
     this.cmdClose.Click                  += new System.EventHandler(this.cmdClose_Click);
     //
     // cmdSave
     //
     this.cmdSave.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdSave.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdSave.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdSave.Location                = new System.Drawing.Point(264, 504);
     this.cmdSave.Name                    = "cmdSave";
     this.cmdSave.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdSave.Size                    = new System.Drawing.Size(73, 25);
     this.cmdSave.TabIndex                = 6;
     this.cmdSave.Text                    = "&Save";
     this.cmdSave.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdSave.UseVisualStyleBackColor = false;
     this.cmdSave.Click                  += new System.EventHandler(this.cmdSave_Click);
     //
     // lvProducts
     //
     this.lvProducts.BackColor     = System.Drawing.SystemColors.Window;
     this.lvProducts.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lvProducts.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.lvProducts.FullRowSelect = true;
     this.lvProducts.GridLines     = true;
     this.lvProducts.HideSelection = false;
     this.lvProducts.HotTracking   = true;
     this.lvProducts.LabelEdit     = false;
     this.lvProducts.Location      = new System.Drawing.Point(8, 104);
     this.lvProducts.Name          = "lvProducts";
     this.lvProducts.Size          = new System.Drawing.Size(409, 97);
     this.lvProducts.TabIndex      = 2;
     this.lvProducts.View          = System.Windows.Forms.View.Details;
     this.lvProducts.Columns.Add(this._lvProducts_ColumnHeader_1);
     this.lvProducts.Columns.Add(this._lvProducts_ColumnHeader_2);
     this.lvProducts.Columns.Add(this._lvProducts_ColumnHeader_3);
     this.lvProducts.Columns.Add(this._lvProducts_ColumnHeader_4);
     this.lvProducts.Columns.Add(this._lvProducts_ColumnHeader_5);
     this.lvProducts.Columns.Add(this._lvProducts_ColumnHeader_6);
     this.lvProducts.Columns.Add(this._lvProducts_ColumnHeader_7);
     //
     // _lvProducts_ColumnHeader_1
     //
     this._lvProducts_ColumnHeader_1.Text  = "Code";
     this._lvProducts_ColumnHeader_1.Width = 97;
     //
     // _lvProducts_ColumnHeader_2
     //
     this._lvProducts_ColumnHeader_2.Text  = "Name";
     this._lvProducts_ColumnHeader_2.Width = 97;
     //
     // _lvProducts_ColumnHeader_3
     //
     this._lvProducts_ColumnHeader_3.Text      = "Price";
     this._lvProducts_ColumnHeader_3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this._lvProducts_ColumnHeader_3.Width     = 97;
     //
     // _lvProducts_ColumnHeader_4
     //
     this._lvProducts_ColumnHeader_4.Text      = "Existence";
     this._lvProducts_ColumnHeader_4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this._lvProducts_ColumnHeader_4.Width     = 97;
     //
     // _lvProducts_ColumnHeader_5
     //
     this._lvProducts_ColumnHeader_5.Text      = "Ordered";
     this._lvProducts_ColumnHeader_5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this._lvProducts_ColumnHeader_5.Width     = 97;
     //
     // _lvProducts_ColumnHeader_6
     //
     this._lvProducts_ColumnHeader_6.Text      = "Quantity per Unit";
     this._lvProducts_ColumnHeader_6.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this._lvProducts_ColumnHeader_6.Width     = 97;
     //
     // _lvProducts_ColumnHeader_7
     //
     this._lvProducts_ColumnHeader_7.Text  = "Unit";
     this._lvProducts_ColumnHeader_7.Width = 97;
     //
     // Label14
     //
     this.Label14.BackColor   = System.Drawing.SystemColors.Control;
     this.Label14.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label14.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label14.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label14.Location    = new System.Drawing.Point(216, 472);
     this.Label14.Name        = "Label14";
     this.Label14.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label14.Size        = new System.Drawing.Size(89, 17);
     this.Label14.TabIndex    = 32;
     this.Label14.Text        = "Adjusted quantity";
     //
     // lblNewQuantity
     //
     this.lblNewQuantity.BackColor   = System.Drawing.SystemColors.Control;
     this.lblNewQuantity.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblNewQuantity.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblNewQuantity.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblNewQuantity.Location    = new System.Drawing.Point(312, 472);
     this.lblNewQuantity.Name        = "lblNewQuantity";
     this.lblNewQuantity.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblNewQuantity.Size        = new System.Drawing.Size(89, 17);
     this.lblNewQuantity.TabIndex    = 31;
     //
     // Label12
     //
     this.Label12.BackColor   = System.Drawing.SystemColors.Control;
     this.Label12.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label12.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label12.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label12.Location    = new System.Drawing.Point(16, 472);
     this.Label12.Name        = "Label12";
     this.Label12.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label12.Size        = new System.Drawing.Size(89, 17);
     this.Label12.TabIndex    = 30;
     this.Label12.Text        = "Stock quantity";
     //
     // lblCurrentQuantity
     //
     this.lblCurrentQuantity.BackColor   = System.Drawing.SystemColors.Control;
     this.lblCurrentQuantity.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblCurrentQuantity.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblCurrentQuantity.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblCurrentQuantity.Location    = new System.Drawing.Point(112, 472);
     this.lblCurrentQuantity.Name        = "lblCurrentQuantity";
     this.lblCurrentQuantity.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblCurrentQuantity.Size        = new System.Drawing.Size(89, 17);
     this.lblCurrentQuantity.TabIndex    = 29;
     //
     // Label11
     //
     this.Label11.BackColor   = System.Drawing.SystemColors.Control;
     this.Label11.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label11.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label11.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label11.Location    = new System.Drawing.Point(16, 376);
     this.Label11.Name        = "Label11";
     this.Label11.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label11.Size        = new System.Drawing.Size(65, 17);
     this.Label11.TabIndex    = 27;
     this.Label11.Text        = "Stock ID:";
     //
     // Label10
     //
     this.Label10.BackColor   = System.Drawing.SystemColors.Control;
     this.Label10.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label10.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label10.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label10.Location    = new System.Drawing.Point(232, 376);
     this.Label10.Name        = "Label10";
     this.Label10.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label10.Size        = new System.Drawing.Size(89, 17);
     this.Label10.TabIndex    = 24;
     this.Label10.Text        = "Quantity per Unit";
     //
     // Label8
     //
     this.Label8.BackColor   = System.Drawing.SystemColors.Control;
     this.Label8.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label8.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label8.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label8.Location    = new System.Drawing.Point(16, 344);
     this.Label8.Name        = "Label8";
     this.Label8.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label8.Size        = new System.Drawing.Size(89, 17);
     this.Label8.TabIndex    = 23;
     this.Label8.Text        = "Product name:";
     //
     // Label9
     //
     this.Label9.BackColor   = System.Drawing.SystemColors.Control;
     this.Label9.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label9.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label9.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label9.Location    = new System.Drawing.Point(296, 344);
     this.Label9.Name        = "Label9";
     this.Label9.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label9.Size        = new System.Drawing.Size(25, 17);
     this.Label9.TabIndex    = 22;
     this.Label9.Text        = "Unit";
     //
     // Label7
     //
     this.Label7.BackColor   = System.Drawing.SystemColors.Control;
     this.Label7.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label7.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label7.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label7.Location    = new System.Drawing.Point(216, 435);
     this.Label7.Name        = "Label7";
     this.Label7.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label7.Size        = new System.Drawing.Size(89, 17);
     this.Label7.TabIndex    = 18;
     this.Label7.Text        = "Adjusted &Quantity";
     //
     // Label6
     //
     this.Label6.BackColor   = System.Drawing.SystemColors.Control;
     this.Label6.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label6.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label6.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label6.Location    = new System.Drawing.Point(216, 406);
     this.Label6.Name        = "Label6";
     this.Label6.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label6.Size        = new System.Drawing.Size(73, 17);
     this.Label6.TabIndex    = 17;
     this.Label6.Text        = "Adjusted &Price";
     //
     // Label2
     //
     this.Label2.BackColor   = System.Drawing.SystemColors.Control;
     this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label2.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label2.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label2.Location    = new System.Drawing.Point(16, 435);
     this.Label2.Name        = "Label2";
     this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label2.Size        = new System.Drawing.Size(81, 17);
     this.Label2.TabIndex    = 16;
     this.Label2.Text        = "Original Quantity";
     //
     // Label1
     //
     this.Label1.BackColor   = System.Drawing.SystemColors.Control;
     this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label1.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label1.Location    = new System.Drawing.Point(16, 406);
     this.Label1.Name        = "Label1";
     this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label1.Size        = new System.Drawing.Size(73, 17);
     this.Label1.TabIndex    = 15;
     this.Label1.Text        = "Original Price";
     //
     // Label3
     //
     this.Label3.BackColor   = System.Drawing.SystemColors.Control;
     this.Label3.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label3.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label3.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label3.Location    = new System.Drawing.Point(16, 8);
     this.Label3.Name        = "Label3";
     this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label3.Size        = new System.Drawing.Size(121, 17);
     this.Label3.TabIndex    = 8;
     this.Label3.Text        = "Select a product first";
     //
     // frmAdjustStockManual
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6, 13);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.Control;
     this.ClientSize          = new System.Drawing.Size(426, 563);
     this.Controls.Add(this.sbStatusBar);
     this.Controls.Add(this.txtStockID);
     this.Controls.Add(this.txtOriginalPrice);
     this.Controls.Add(this._txtValues_0);
     this.Controls.Add(this.txtQuantityPerUnit);
     this.Controls.Add(this.txtProductName);
     this.Controls.Add(this.txtUnit);
     this.Controls.Add(this._txtValues_1);
     this.Controls.Add(this.txtOriginalQuantity);
     this.Controls.Add(this.Frame3);
     this.Controls.Add(this.Frame1);
     this.Controls.Add(this.cmdClose);
     this.Controls.Add(this.cmdSave);
     this.Controls.Add(this.lvProducts);
     this.Controls.Add(this.Label14);
     this.Controls.Add(this.lblNewQuantity);
     this.Controls.Add(this.Label12);
     this.Controls.Add(this.lblCurrentQuantity);
     this.Controls.Add(this.Label11);
     this.Controls.Add(this.Label10);
     this.Controls.Add(this.Label8);
     this.Controls.Add(this.Label9);
     this.Controls.Add(this.Label7);
     this.Controls.Add(this.Label6);
     this.Controls.Add(this.Label2);
     this.Controls.Add(this.Label1);
     this.Controls.Add(this.Label3);
     this.Cursor       = System.Windows.Forms.Cursors.Default;
     this.Location     = new System.Drawing.Point(8, 30);
     this.MaximizeBox  = true;
     this.MinimizeBox  = true;
     this.Name         = "frmAdjustStockManual";
     this.RightToLeft  = System.Windows.Forms.RightToLeft.No;
     this.Text         = "Inventory Adjust";
     this.Closed      += new System.EventHandler(this.frmAdjustStockManual_Closed);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmAdjustStockManual_FormClosing);
     this.listViewHelper1.SetItemClickMethod(this.lvStocks, "lvStocks_ItemClick");
     this.listViewHelper1.SetCorrectEventsBehavior(this.lvStocks, true);
     this.listViewHelper1.SetItemClickMethod(this.lvProducts, "lvProducts_ItemClick");
     this.listViewHelper1.SetCorrectEventsBehavior(this.lvProducts, true);
     ((System.ComponentModel.ISupportInitialize) this.listViewHelper1).EndInit();
     this.sbStatusBar.ResumeLayout(false);
     this.Frame3.ResumeLayout(false);
     this.lvStocks.ResumeLayout(false);
     this.Frame1.ResumeLayout(false);
     this.lvProducts.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#29
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ChromeTMS));
     this.kryptonPanel1                 = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.ss                            = new System.Windows.Forms.StatusStrip();
     this.tslExample                    = new System.Windows.Forms.ToolStripStatusLabel();
     this.kryptonPanel2                 = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kryptonPanel3                 = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.menuStrip1                    = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.newToolStripMenuItem          = new System.Windows.Forms.ToolStripMenuItem();
     this.openToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator            = new System.Windows.Forms.ToolStripSeparator();
     this.saveToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.saveAsToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1           = new System.Windows.Forms.ToolStripSeparator();
     this.printToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.printPreviewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2           = new System.Windows.Forms.ToolStripSeparator();
     this.exitToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.editToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.undoToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.redoToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3           = new System.Windows.Forms.ToolStripSeparator();
     this.cutToolStripMenuItem          = new System.Windows.Forms.ToolStripMenuItem();
     this.copyToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4           = new System.Windows.Forms.ToolStripSeparator();
     this.selectAllToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.toolsToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.customizeToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.optionsToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.contentsToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.indexToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.searchToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator5           = new System.Windows.Forms.ToolStripSeparator();
     this.aboutToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.tsc                           = new System.Windows.Forms.ToolStripContainer();
     this.toolStrip1                    = new System.Windows.Forms.ToolStrip();
     this.newToolStripButton            = new System.Windows.Forms.ToolStripButton();
     this.openToolStripButton           = new System.Windows.Forms.ToolStripButton();
     this.saveToolStripButton           = new System.Windows.Forms.ToolStripButton();
     this.printToolStripButton          = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator6           = new System.Windows.Forms.ToolStripSeparator();
     this.cutToolStripButton            = new System.Windows.Forms.ToolStripButton();
     this.copyToolStripButton           = new System.Windows.Forms.ToolStripButton();
     this.pasteToolStripButton          = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator7           = new System.Windows.Forms.ToolStripSeparator();
     this.helpToolStripButton           = new System.Windows.Forms.ToolStripButton();
     this.kryptonPanel4                 = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     this.ss.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel3)).BeginInit();
     this.kryptonPanel3.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.tsc.ContentPanel.SuspendLayout();
     this.tsc.TopToolStripPanel.SuspendLayout();
     this.tsc.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel4)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.ss);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 333);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(441, 22);
     this.kryptonPanel1.TabIndex = 0;
     //
     // ss
     //
     this.ss.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.ss.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.tslExample
     });
     this.ss.Location   = new System.Drawing.Point(0, 0);
     this.ss.Name       = "ss";
     this.ss.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode;
     this.ss.Size       = new System.Drawing.Size(441, 22);
     this.ss.TabIndex   = 0;
     this.ss.Text       = "statusStrip1";
     //
     // tslExample
     //
     this.tslExample.Name = "tslExample";
     this.tslExample.Size = new System.Drawing.Size(110, 17);
     this.tslExample.Text = "Status Text Example";
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.menuStrip1);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(441, 22);
     this.kryptonPanel2.TabIndex = 1;
     //
     // kryptonPanel3
     //
     this.kryptonPanel3.Controls.Add(this.tsc);
     this.kryptonPanel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel3.Location = new System.Drawing.Point(0, 22);
     this.kryptonPanel3.Name     = "kryptonPanel3";
     this.kryptonPanel3.Size     = new System.Drawing.Size(441, 311);
     this.kryptonPanel3.TabIndex = 2;
     //
     // menuStrip1
     //
     this.menuStrip1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.menuStrip1.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.fileToolStripMenuItem,
         this.editToolStripMenuItem,
         this.toolsToolStripMenuItem,
         this.helpToolStripMenuItem
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Size     = new System.Drawing.Size(441, 22);
     this.menuStrip1.TabIndex = 0;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.newToolStripMenuItem,
         this.openToolStripMenuItem,
         this.toolStripSeparator,
         this.saveToolStripMenuItem,
         this.saveAsToolStripMenuItem,
         this.toolStripSeparator1,
         this.printToolStripMenuItem,
         this.printPreviewToolStripMenuItem,
         this.toolStripSeparator2,
         this.exitToolStripMenuItem
     });
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 18);
     this.fileToolStripMenuItem.Text = "&File";
     //
     // newToolStripMenuItem
     //
     this.newToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("newToolStripMenuItem.Image")));
     this.newToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.newToolStripMenuItem.Name         = "newToolStripMenuItem";
     this.newToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
     this.newToolStripMenuItem.Size         = new System.Drawing.Size(146, 22);
     this.newToolStripMenuItem.Text         = "&New";
     //
     // openToolStripMenuItem
     //
     this.openToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripMenuItem.Image")));
     this.openToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.openToolStripMenuItem.Name         = "openToolStripMenuItem";
     this.openToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
     this.openToolStripMenuItem.Size         = new System.Drawing.Size(146, 22);
     this.openToolStripMenuItem.Text         = "&Open";
     //
     // toolStripSeparator
     //
     this.toolStripSeparator.Name = "toolStripSeparator";
     this.toolStripSeparator.Size = new System.Drawing.Size(143, 6);
     //
     // saveToolStripMenuItem
     //
     this.saveToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripMenuItem.Image")));
     this.saveToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.saveToolStripMenuItem.Name         = "saveToolStripMenuItem";
     this.saveToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
     this.saveToolStripMenuItem.Size         = new System.Drawing.Size(146, 22);
     this.saveToolStripMenuItem.Text         = "&Save";
     //
     // saveAsToolStripMenuItem
     //
     this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
     this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
     this.saveAsToolStripMenuItem.Text = "Save &As";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(143, 6);
     //
     // printToolStripMenuItem
     //
     this.printToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("printToolStripMenuItem.Image")));
     this.printToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.printToolStripMenuItem.Name         = "printToolStripMenuItem";
     this.printToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.P)));
     this.printToolStripMenuItem.Size         = new System.Drawing.Size(146, 22);
     this.printToolStripMenuItem.Text         = "&Print";
     //
     // printPreviewToolStripMenuItem
     //
     this.printPreviewToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("printPreviewToolStripMenuItem.Image")));
     this.printPreviewToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.printPreviewToolStripMenuItem.Name = "printPreviewToolStripMenuItem";
     this.printPreviewToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
     this.printPreviewToolStripMenuItem.Text = "Print Pre&view";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(143, 6);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
     this.exitToolStripMenuItem.Text = "E&xit";
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.undoToolStripMenuItem,
         this.redoToolStripMenuItem,
         this.toolStripSeparator3,
         this.cutToolStripMenuItem,
         this.copyToolStripMenuItem,
         this.pasteToolStripMenuItem,
         this.toolStripSeparator4,
         this.selectAllToolStripMenuItem
     });
     this.editToolStripMenuItem.Name = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 18);
     this.editToolStripMenuItem.Text = "&Edit";
     //
     // undoToolStripMenuItem
     //
     this.undoToolStripMenuItem.Name         = "undoToolStripMenuItem";
     this.undoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z)));
     this.undoToolStripMenuItem.Size         = new System.Drawing.Size(144, 22);
     this.undoToolStripMenuItem.Text         = "&Undo";
     //
     // redoToolStripMenuItem
     //
     this.redoToolStripMenuItem.Name         = "redoToolStripMenuItem";
     this.redoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y)));
     this.redoToolStripMenuItem.Size         = new System.Drawing.Size(144, 22);
     this.redoToolStripMenuItem.Text         = "&Redo";
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(141, 6);
     //
     // cutToolStripMenuItem
     //
     this.cutToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("cutToolStripMenuItem.Image")));
     this.cutToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cutToolStripMenuItem.Name         = "cutToolStripMenuItem";
     this.cutToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X)));
     this.cutToolStripMenuItem.Size         = new System.Drawing.Size(144, 22);
     this.cutToolStripMenuItem.Text         = "Cu&t";
     //
     // copyToolStripMenuItem
     //
     this.copyToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("copyToolStripMenuItem.Image")));
     this.copyToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.copyToolStripMenuItem.Name         = "copyToolStripMenuItem";
     this.copyToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
     this.copyToolStripMenuItem.Size         = new System.Drawing.Size(144, 22);
     this.copyToolStripMenuItem.Text         = "&Copy";
     //
     // pasteToolStripMenuItem
     //
     this.pasteToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("pasteToolStripMenuItem.Image")));
     this.pasteToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.pasteToolStripMenuItem.Name         = "pasteToolStripMenuItem";
     this.pasteToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V)));
     this.pasteToolStripMenuItem.Size         = new System.Drawing.Size(144, 22);
     this.pasteToolStripMenuItem.Text         = "&Paste";
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(141, 6);
     //
     // selectAllToolStripMenuItem
     //
     this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem";
     this.selectAllToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
     this.selectAllToolStripMenuItem.Text = "Select &All";
     //
     // toolsToolStripMenuItem
     //
     this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.customizeToolStripMenuItem,
         this.optionsToolStripMenuItem
     });
     this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
     this.toolsToolStripMenuItem.Size = new System.Drawing.Size(47, 18);
     this.toolsToolStripMenuItem.Text = "&Tools";
     //
     // customizeToolStripMenuItem
     //
     this.customizeToolStripMenuItem.Name = "customizeToolStripMenuItem";
     this.customizeToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
     this.customizeToolStripMenuItem.Text = "&Customize";
     //
     // optionsToolStripMenuItem
     //
     this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
     this.optionsToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
     this.optionsToolStripMenuItem.Text = "&Options";
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.contentsToolStripMenuItem,
         this.indexToolStripMenuItem,
         this.searchToolStripMenuItem,
         this.toolStripSeparator5,
         this.aboutToolStripMenuItem
     });
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 18);
     this.helpToolStripMenuItem.Text = "&Help";
     //
     // contentsToolStripMenuItem
     //
     this.contentsToolStripMenuItem.Name = "contentsToolStripMenuItem";
     this.contentsToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
     this.contentsToolStripMenuItem.Text = "&Contents";
     //
     // indexToolStripMenuItem
     //
     this.indexToolStripMenuItem.Name = "indexToolStripMenuItem";
     this.indexToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
     this.indexToolStripMenuItem.Text = "&Index";
     //
     // searchToolStripMenuItem
     //
     this.searchToolStripMenuItem.Name = "searchToolStripMenuItem";
     this.searchToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
     this.searchToolStripMenuItem.Text = "&Search";
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(119, 6);
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
     this.aboutToolStripMenuItem.Text = "&About...";
     //
     // tsc
     //
     //
     // tsc.ContentPanel
     //
     this.tsc.ContentPanel.Controls.Add(this.kryptonPanel4);
     this.tsc.ContentPanel.Size = new System.Drawing.Size(441, 286);
     this.tsc.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tsc.Location = new System.Drawing.Point(0, 0);
     this.tsc.Name     = "tsc";
     this.tsc.Size     = new System.Drawing.Size(441, 311);
     this.tsc.TabIndex = 0;
     this.tsc.Text     = "toolStripContainer1";
     //
     // tsc.TopToolStripPanel
     //
     this.tsc.TopToolStripPanel.Controls.Add(this.toolStrip1);
     //
     // toolStrip1
     //
     this.toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
     this.toolStrip1.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.newToolStripButton,
         this.openToolStripButton,
         this.saveToolStripButton,
         this.printToolStripButton,
         this.toolStripSeparator6,
         this.cutToolStripButton,
         this.copyToolStripButton,
         this.pasteToolStripButton,
         this.toolStripSeparator7,
         this.helpToolStripButton
     });
     this.toolStrip1.Location = new System.Drawing.Point(3, 0);
     this.toolStrip1.Name     = "toolStrip1";
     this.toolStrip1.Size     = new System.Drawing.Size(208, 25);
     this.toolStrip1.TabIndex = 0;
     //
     // newToolStripButton
     //
     this.newToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.newToolStripButton.Image                 = ((System.Drawing.Image)(resources.GetObject("newToolStripButton.Image")));
     this.newToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.newToolStripButton.Name = "newToolStripButton";
     this.newToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.newToolStripButton.Text = "&New";
     //
     // openToolStripButton
     //
     this.openToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.openToolStripButton.Image                 = ((System.Drawing.Image)(resources.GetObject("openToolStripButton.Image")));
     this.openToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.openToolStripButton.Name = "openToolStripButton";
     this.openToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.openToolStripButton.Text = "&Open";
     //
     // saveToolStripButton
     //
     this.saveToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.saveToolStripButton.Image                 = ((System.Drawing.Image)(resources.GetObject("saveToolStripButton.Image")));
     this.saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.saveToolStripButton.Name = "saveToolStripButton";
     this.saveToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.saveToolStripButton.Text = "&Save";
     //
     // printToolStripButton
     //
     this.printToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.printToolStripButton.Image                 = ((System.Drawing.Image)(resources.GetObject("printToolStripButton.Image")));
     this.printToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.printToolStripButton.Name = "printToolStripButton";
     this.printToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.printToolStripButton.Text = "&Print";
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
     //
     // cutToolStripButton
     //
     this.cutToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.cutToolStripButton.Image                 = ((System.Drawing.Image)(resources.GetObject("cutToolStripButton.Image")));
     this.cutToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cutToolStripButton.Name = "cutToolStripButton";
     this.cutToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.cutToolStripButton.Text = "C&ut";
     //
     // copyToolStripButton
     //
     this.copyToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.copyToolStripButton.Image                 = ((System.Drawing.Image)(resources.GetObject("copyToolStripButton.Image")));
     this.copyToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.copyToolStripButton.Name = "copyToolStripButton";
     this.copyToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.copyToolStripButton.Text = "&Copy";
     //
     // pasteToolStripButton
     //
     this.pasteToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.pasteToolStripButton.Image                 = ((System.Drawing.Image)(resources.GetObject("pasteToolStripButton.Image")));
     this.pasteToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.pasteToolStripButton.Name = "pasteToolStripButton";
     this.pasteToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.pasteToolStripButton.Text = "&Paste";
     //
     // toolStripSeparator7
     //
     this.toolStripSeparator7.Name = "toolStripSeparator7";
     this.toolStripSeparator7.Size = new System.Drawing.Size(6, 25);
     //
     // helpToolStripButton
     //
     this.helpToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.helpToolStripButton.Image                 = ((System.Drawing.Image)(resources.GetObject("helpToolStripButton.Image")));
     this.helpToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.helpToolStripButton.Name = "helpToolStripButton";
     this.helpToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.helpToolStripButton.Text = "He&lp";
     //
     // kryptonPanel4
     //
     this.kryptonPanel4.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel4.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel4.Name     = "kryptonPanel4";
     this.kryptonPanel4.Size     = new System.Drawing.Size(441, 286);
     this.kryptonPanel4.TabIndex = 0;
     //
     // ChromeTMS
     //
     this.ClientSize = new System.Drawing.Size(441, 355);
     this.Controls.Add(this.kryptonPanel3);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.kryptonPanel1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip = this.menuStrip1;
     this.Name          = "ChromeTMS";
     this.Text          = "Chrome && TMS";
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     this.ss.ResumeLayout(false);
     this.ss.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     this.kryptonPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel3)).EndInit();
     this.kryptonPanel3.ResumeLayout(false);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.tsc.ContentPanel.ResumeLayout(false);
     this.tsc.TopToolStripPanel.ResumeLayout(false);
     this.tsc.TopToolStripPanel.PerformLayout();
     this.tsc.ResumeLayout(false);
     this.tsc.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel4)).EndInit();
     this.ResumeLayout(false);
 }
示例#30
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.mnuFile = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuOpen = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuQuit = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuExtras = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuHeaderInfo = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuWZCompare = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuSaveXML = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuLoadXML = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuExtract = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
     this.findToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
     this.mnuSettings = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuAbout = new System.Windows.Forms.ToolStripMenuItem();
     this.licenseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuCloseRender = new System.Windows.Forms.ToolStripMenuItem();
     this.treeView1 = new System.Windows.Forms.TreeView();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.button8 = new System.Windows.Forms.Button();
     this.button7 = new System.Windows.Forms.Button();
     this.button6 = new System.Windows.Forms.Button();
     this.pnlSound = new System.Windows.Forms.Panel();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.trackBar1 = new System.Windows.Forms.TrackBar();
     this.label4 = new System.Windows.Forms.Label();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.button5 = new System.Windows.Forms.Button();
     this.button4 = new System.Windows.Forms.Button();
     this.button3 = new System.Windows.Forms.Button();
     this.btnSaveMp3 = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.button1 = new System.Windows.Forms.Button();
     this.lstRender = new System.Windows.Forms.ListBox();
     this.chkNPC = new System.Windows.Forms.CheckBox();
     this.chkMob = new System.Windows.Forms.CheckBox();
     this.chkReactor = new System.Windows.Forms.CheckBox();
     this.chkPortal = new System.Windows.Forms.CheckBox();
     this.button2 = new System.Windows.Forms.Button();
     this.label9 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.txtType = new System.Windows.Forms.TextBox();
     this.pnlPicture = new System.Windows.Forms.Panel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.lblUOL = new System.Windows.Forms.LinkLabel();
     this.textBox8 = new System.Windows.Forms.TextBox();
     this.renderContainer = new System.Windows.Forms.SplitContainer();
     this.picRender = new System.Windows.Forms.PictureBox();
     this.cmdCloseRender = new System.Windows.Forms.Button();
     this.cmdSaveRender = new System.Windows.Forms.Button();
     this.cmdRedrawRender = new System.Windows.Forms.Button();
     this.lstRenders = new System.Windows.Forms.ListBox();
     this.chkReactorr = new System.Windows.Forms.CheckBox();
     this.chkPortalr = new System.Windows.Forms.CheckBox();
     this.chkMobr = new System.Windows.Forms.CheckBox();
     this.chkNPCr = new System.Windows.Forms.CheckBox();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.label2 = new System.Windows.Forms.Label();
     this.treeView2 = new System.Windows.Forms.TreeView();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.fullExtractPanel = new System.Windows.Forms.Panel();
     this.label6 = new System.Windows.Forms.Label();
     this.extractCount = new System.Windows.Forms.Label();
     this.extractBar = new System.Windows.Forms.ProgressBar();
     this.extractCancel = new System.Windows.Forms.Button();
     this.extractStart = new System.Windows.Forms.Button();
     this.button9 = new System.Windows.Forms.Button();
     this.menuStrip1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.pnlSound.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
     this.pnlPicture.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.renderContainer.Panel1.SuspendLayout();
     this.renderContainer.Panel2.SuspendLayout();
     this.renderContainer.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picRender)).BeginInit();
     this.statusStrip1.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.fullExtractPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuFile,
     this.mnuExtras,
     this.mnuAbout,
     this.mnuCloseRender});
     this.menuStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(846, 25);
     this.menuStrip1.TabIndex = 1;
     this.menuStrip1.Text = "menuStrip1";
     //
     // mnuFile
     //
     this.mnuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuOpen,
     this.mnuQuit});
     this.mnuFile.Name = "mnuFile";
     this.mnuFile.Size = new System.Drawing.Size(39, 21);
     this.mnuFile.Text = "&File";
     //
     // mnuOpen
     //
     this.mnuOpen.Name = "mnuOpen";
     this.mnuOpen.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
     this.mnuOpen.Size = new System.Drawing.Size(164, 22);
     this.mnuOpen.Text = "&Open...";
     this.mnuOpen.Click += new System.EventHandler(this.OpenToolStripMenuItemClick);
     //
     // mnuQuit
     //
     this.mnuQuit.Name = "mnuQuit";
     this.mnuQuit.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
     this.mnuQuit.Size = new System.Drawing.Size(164, 22);
     this.mnuQuit.Text = "&Quit";
     this.mnuQuit.Click += new System.EventHandler(this.QuitToolStripMenuItemClick);
     //
     // mnuExtras
     //
     this.mnuExtras.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuHeaderInfo,
     this.mnuWZCompare,
     this.mnuExtract,
     this.toolStripMenuItem3,
     this.findToolStripMenuItem,
     this.toolStripTextBox1,
     this.toolStripMenuItem2,
     this.mnuSettings});
     this.mnuExtras.Name = "mnuExtras";
     this.mnuExtras.Size = new System.Drawing.Size(55, 21);
     this.mnuExtras.Text = "&Extras";
     //
     // mnuHeaderInfo
     //
     this.mnuHeaderInfo.Enabled = false;
     this.mnuHeaderInfo.Name = "mnuHeaderInfo";
     this.mnuHeaderInfo.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.H)));
     this.mnuHeaderInfo.Size = new System.Drawing.Size(236, 22);
     this.mnuHeaderInfo.Text = "Header information";
     this.mnuHeaderInfo.Click += new System.EventHandler(this.ShowHeaderInformationToolStripMenuItemClick);
     //
     // mnuWZCompare
     //
     this.mnuWZCompare.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuSaveXML,
     this.mnuLoadXML});
     this.mnuWZCompare.Enabled = false;
     this.mnuWZCompare.Name = "mnuWZCompare";
     this.mnuWZCompare.Size = new System.Drawing.Size(236, 22);
     this.mnuWZCompare.Text = "WZ Comparison";
     //
     // mnuSaveXML
     //
     this.mnuSaveXML.Enabled = false;
     this.mnuSaveXML.Name = "mnuSaveXML";
     this.mnuSaveXML.Size = new System.Drawing.Size(208, 22);
     this.mnuSaveXML.Text = "Save XML File...";
     this.mnuSaveXML.Click += new System.EventHandler(this.saveXMLFileToolStripMenuItem_Click);
     //
     // mnuLoadXML
     //
     this.mnuLoadXML.Enabled = false;
     this.mnuLoadXML.Name = "mnuLoadXML";
     this.mnuLoadXML.Size = new System.Drawing.Size(208, 22);
     this.mnuLoadXML.Text = "Compare to XML File...";
     this.mnuLoadXML.Click += new System.EventHandler(this.compareToXMLFileToolStripMenuItem_Click);
     //
     // mnuExtract
     //
     this.mnuExtract.Enabled = false;
     this.mnuExtract.Name = "mnuExtract";
     this.mnuExtract.Size = new System.Drawing.Size(236, 22);
     this.mnuExtract.Text = "Extract everything to disk";
     this.mnuExtract.Click += new System.EventHandler(this.MnuExtractClick);
     //
     // toolStripMenuItem3
     //
     this.toolStripMenuItem3.Name = "toolStripMenuItem3";
     this.toolStripMenuItem3.Size = new System.Drawing.Size(233, 6);
     //
     // findToolStripMenuItem
     //
     this.findToolStripMenuItem.Enabled = false;
     this.findToolStripMenuItem.Name = "findToolStripMenuItem";
     this.findToolStripMenuItem.Size = new System.Drawing.Size(236, 22);
     this.findToolStripMenuItem.Text = "Find in tree:";
     //
     // toolStripTextBox1
     //
     this.toolStripTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.toolStripTextBox1.Name = "toolStripTextBox1";
     this.toolStripTextBox1.Size = new System.Drawing.Size(100, 23);
     this.toolStripTextBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ToolStripTextBox1KeyDown);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(233, 6);
     //
     // mnuSettings
     //
     this.mnuSettings.Name = "mnuSettings";
     this.mnuSettings.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
     this.mnuSettings.Size = new System.Drawing.Size(236, 22);
     this.mnuSettings.Text = "&Settings...";
     this.mnuSettings.Click += new System.EventHandler(this.PreferencesToolStripMenuItemClick);
     //
     // mnuAbout
     //
     this.mnuAbout.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.licenseToolStripMenuItem,
     this.aboutToolStripMenuItem});
     this.mnuAbout.Name = "mnuAbout";
     this.mnuAbout.Size = new System.Drawing.Size(26, 21);
     this.mnuAbout.Text = "?";
     //
     // licenseToolStripMenuItem
     //
     this.licenseToolStripMenuItem.Name = "licenseToolStripMenuItem";
     this.licenseToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     this.licenseToolStripMenuItem.Text = "License";
     this.licenseToolStripMenuItem.Click += new System.EventHandler(this.LicenseToolStripMenuItemClick);
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     this.aboutToolStripMenuItem.Text = "About";
     this.aboutToolStripMenuItem.Click += new System.EventHandler(this.AboutToolStripMenuItemClick);
     //
     // mnuCloseRender
     //
     this.mnuCloseRender.Name = "mnuCloseRender";
     this.mnuCloseRender.Size = new System.Drawing.Size(98, 21);
     this.mnuCloseRender.Text = "Close Render";
     this.mnuCloseRender.Visible = false;
     this.mnuCloseRender.Click += new System.EventHandler(this.closeRenderToolStripMenuItem_Click);
     //
     // treeView1
     //
     this.treeView1.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.treeView1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.treeView1.HideSelection = false;
     this.treeView1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.treeView1.Location = new System.Drawing.Point(0, 0);
     this.treeView1.Name = "treeView1";
     this.treeView1.Size = new System.Drawing.Size(164, 242);
     this.treeView1.TabIndex = 2;
     this.treeView1.Tag = "";
     this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeView1AfterSelect);
     //
     // groupBox2
     //
     this.groupBox2.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.groupBox2.Controls.Add(this.button9);
     this.groupBox2.Controls.Add(this.button8);
     this.groupBox2.Controls.Add(this.button7);
     this.groupBox2.Controls.Add(this.button6);
     this.groupBox2.Controls.Add(this.pnlSound);
     this.groupBox2.Controls.Add(this.label1);
     this.groupBox2.Controls.Add(this.button1);
     this.groupBox2.Controls.Add(this.lstRender);
     this.groupBox2.Controls.Add(this.chkNPC);
     this.groupBox2.Controls.Add(this.chkMob);
     this.groupBox2.Controls.Add(this.chkReactor);
     this.groupBox2.Controls.Add(this.chkPortal);
     this.groupBox2.Controls.Add(this.button2);
     this.groupBox2.Controls.Add(this.label9);
     this.groupBox2.Controls.Add(this.label8);
     this.groupBox2.Controls.Add(this.label7);
     this.groupBox2.Controls.Add(this.txtType);
     this.groupBox2.Controls.Add(this.pnlPicture);
     this.groupBox2.Controls.Add(this.lblUOL);
     this.groupBox2.Controls.Add(this.textBox8);
     this.groupBox2.Location = new System.Drawing.Point(2, 0);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(657, 513);
     this.groupBox2.TabIndex = 3;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Data";
     //
     // button8
     //
     this.button8.Location = new System.Drawing.Point(9, 435);
     this.button8.Name = "button8";
     this.button8.Size = new System.Drawing.Size(52, 23);
     this.button8.TabIndex = 26;
     this.button8.Text = "obj";
     this.button8.UseVisualStyleBackColor = true;
     this.button8.Click += new System.EventHandler(this.button8_Click);
     //
     // button7
     //
     this.button7.Location = new System.Drawing.Point(9, 405);
     this.button7.Name = "button7";
     this.button7.Size = new System.Drawing.Size(52, 23);
     this.button7.TabIndex = 25;
     this.button7.Text = "map";
     this.button7.UseVisualStyleBackColor = true;
     this.button7.Click += new System.EventHandler(this.button7_Click);
     //
     // button6
     //
     this.button6.Location = new System.Drawing.Point(5, 302);
     this.button6.Name = "button6";
     this.button6.Size = new System.Drawing.Size(54, 38);
     this.button6.TabIndex = 24;
     this.button6.Text = "Extract image";
     this.button6.UseVisualStyleBackColor = true;
     this.button6.Visible = false;
     this.button6.Click += new System.EventHandler(this.Button6Click);
     //
     // pnlSound
     //
     this.pnlSound.AutoScroll = true;
     this.pnlSound.AutoSize = true;
     this.pnlSound.Controls.Add(this.checkBox1);
     this.pnlSound.Controls.Add(this.trackBar1);
     this.pnlSound.Controls.Add(this.label4);
     this.pnlSound.Controls.Add(this.textBox1);
     this.pnlSound.Controls.Add(this.label3);
     this.pnlSound.Controls.Add(this.button5);
     this.pnlSound.Controls.Add(this.button4);
     this.pnlSound.Controls.Add(this.button3);
     this.pnlSound.Controls.Add(this.btnSaveMp3);
     this.pnlSound.Location = new System.Drawing.Point(66, 42);
     this.pnlSound.Name = "pnlSound";
     this.pnlSound.Size = new System.Drawing.Size(380, 192);
     this.pnlSound.TabIndex = 23;
     this.pnlSound.Visible = false;
     //
     // checkBox1
     //
     this.checkBox1.Location = new System.Drawing.Point(192, 6);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(58, 19);
     this.checkBox1.TabIndex = 30;
     this.checkBox1.Text = "Loop";
     this.checkBox1.UseVisualStyleBackColor = true;
     //
     // trackBar1
     //
     this.trackBar1.Location = new System.Drawing.Point(4, 31);
     this.trackBar1.Name = "trackBar1";
     this.trackBar1.Size = new System.Drawing.Size(203, 45);
     this.trackBar1.TabIndex = 29;
     this.trackBar1.TickStyle = System.Windows.Forms.TickStyle.None;
     this.trackBar1.Scroll += new System.EventHandler(this.TrackBar1Scroll);
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(213, 32);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(49, 18);
     this.label4.TabIndex = 28;
     this.label4.Text = "00:00 /";
     //
     // textBox1
     //
     this.textBox1.BackColor = System.Drawing.SystemColors.Window;
     this.textBox1.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox1.Location = new System.Drawing.Point(3, 72);
     this.textBox1.Multiline = true;
     this.textBox1.Name = "textBox1";
     this.textBox1.ReadOnly = true;
     this.textBox1.Size = new System.Drawing.Size(293, 117);
     this.textBox1.TabIndex = 27;
     this.textBox1.TabStop = false;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(259, 32);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(37, 18);
     this.label3.TabIndex = 26;
     this.label3.Text = "00:00";
     //
     // button5
     //
     this.button5.Location = new System.Drawing.Point(125, 3);
     this.button5.Name = "button5";
     this.button5.Size = new System.Drawing.Size(55, 23);
     this.button5.TabIndex = 24;
     this.button5.Text = "Stop";
     this.button5.UseVisualStyleBackColor = true;
     this.button5.Click += new System.EventHandler(this.Button5Click);
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(64, 3);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(55, 23);
     this.button4.TabIndex = 23;
     this.button4.Text = "Pause";
     this.button4.UseVisualStyleBackColor = true;
     this.button4.Click += new System.EventHandler(this.Button4Click);
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(3, 3);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(55, 23);
     this.button3.TabIndex = 22;
     this.button3.Text = "Play";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.Button3Click);
     //
     // btnSaveMp3
     //
     this.btnSaveMp3.Location = new System.Drawing.Point(256, 3);
     this.btnSaveMp3.Name = "btnSaveMp3";
     this.btnSaveMp3.Size = new System.Drawing.Size(40, 23);
     this.btnSaveMp3.TabIndex = 19;
     this.btnSaveMp3.Text = "Save";
     this.btnSaveMp3.UseVisualStyleBackColor = true;
     this.btnSaveMp3.Click += new System.EventHandler(this.BtnSaveMp3Click);
     //
     // label1
     //
     this.label1.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.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(6, 194);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(590, 192);
     this.label1.TabIndex = 5;
     this.label1.Text = resources.GetString("label1.Text");
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(7, 346);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(54, 43);
     this.button1.TabIndex = 21;
     this.button1.Text = "Save image";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Visible = false;
     this.button1.Click += new System.EventHandler(this.Button1Click);
     //
     // lstRender
     //
     this.lstRender.FormattingEnabled = true;
     this.lstRender.ItemHeight = 12;
     this.lstRender.Items.AddRange(new object[] {
     "None",
     "Black",
     "White"});
     this.lstRender.Location = new System.Drawing.Point(6, 258);
     this.lstRender.Name = "lstRender";
     this.lstRender.Size = new System.Drawing.Size(54, 40);
     this.lstRender.TabIndex = 13;
     this.lstRender.Visible = false;
     //
     // chkNPC
     //
     this.chkNPC.Checked = true;
     this.chkNPC.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkNPC.Location = new System.Drawing.Point(5, 238);
     this.chkNPC.Name = "chkNPC";
     this.chkNPC.Size = new System.Drawing.Size(55, 15);
     this.chkNPC.TabIndex = 12;
     this.chkNPC.Text = "NPCs";
     this.chkNPC.UseVisualStyleBackColor = true;
     this.chkNPC.Visible = false;
     this.chkNPC.CheckedChanged += new System.EventHandler(this.ChkNPCCheckedChanged);
     //
     // chkMob
     //
     this.chkMob.Checked = true;
     this.chkMob.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkMob.Location = new System.Drawing.Point(5, 218);
     this.chkMob.Name = "chkMob";
     this.chkMob.Size = new System.Drawing.Size(55, 15);
     this.chkMob.TabIndex = 11;
     this.chkMob.Text = "Mob";
     this.chkMob.UseVisualStyleBackColor = true;
     this.chkMob.Visible = false;
     this.chkMob.CheckedChanged += new System.EventHandler(this.ChkMobCheckedChanged);
     //
     // chkReactor
     //
     this.chkReactor.Checked = true;
     this.chkReactor.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkReactor.Location = new System.Drawing.Point(5, 193);
     this.chkReactor.Name = "chkReactor";
     this.chkReactor.Size = new System.Drawing.Size(55, 19);
     this.chkReactor.TabIndex = 10;
     this.chkReactor.Text = "Reactor";
     this.chkReactor.UseVisualStyleBackColor = true;
     this.chkReactor.Visible = false;
     this.chkReactor.CheckedChanged += new System.EventHandler(this.ChkReactorCheckedChanged);
     //
     // chkPortal
     //
     this.chkPortal.Checked = true;
     this.chkPortal.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkPortal.Location = new System.Drawing.Point(5, 171);
     this.chkPortal.Name = "chkPortal";
     this.chkPortal.Size = new System.Drawing.Size(55, 20);
     this.chkPortal.TabIndex = 9;
     this.chkPortal.Text = "Portal";
     this.chkPortal.UseVisualStyleBackColor = true;
     this.chkPortal.Visible = false;
     this.chkPortal.CheckedChanged += new System.EventHandler(this.ChkPortalCheckedChanged);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(5, 114);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(54, 50);
     this.button2.TabIndex = 8;
     this.button2.Text = "Render this Map!";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Visible = false;
     this.button2.Click += new System.EventHandler(this.Button2Click);
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(6, 64);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(55, 37);
     this.label9.TabIndex = 5;
     this.label9.Text = "Click the picture to save it!";
     this.label9.Visible = false;
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(6, 44);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(50, 14);
     this.label8.TabIndex = 3;
     this.label8.Text = "Content:";
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(6, 18);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(42, 17);
     this.label7.TabIndex = 1;
     this.label7.Text = "Type:";
     //
     // txtType
     //
     this.txtType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtType.BackColor = System.Drawing.SystemColors.Window;
     this.txtType.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtType.Location = new System.Drawing.Point(67, 18);
     this.txtType.Multiline = true;
     this.txtType.Name = "txtType";
     this.txtType.ReadOnly = true;
     this.txtType.Size = new System.Drawing.Size(584, 19);
     this.txtType.TabIndex = 0;
     //
     // pnlPicture
     //
     this.pnlPicture.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.pnlPicture.AutoScroll = true;
     this.pnlPicture.BackColor = System.Drawing.SystemColors.Control;
     this.pnlPicture.Controls.Add(this.pictureBox1);
     this.pnlPicture.Location = new System.Drawing.Point(67, 42);
     this.pnlPicture.Name = "pnlPicture";
     this.pnlPicture.Size = new System.Drawing.Size(584, 466);
     this.pnlPicture.TabIndex = 17;
     this.pnlPicture.Visible = false;
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor = System.Drawing.SystemColors.Control;
     this.pictureBox1.Location = new System.Drawing.Point(3, 3);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(553, 338);
     this.pictureBox1.TabIndex = 4;
     this.pictureBox1.TabStop = false;
     this.pictureBox1.Visible = false;
     this.pictureBox1.Click += new System.EventHandler(this.PictureBox1Click);
     //
     // lblUOL
     //
     this.lblUOL.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.lblUOL.BackColor = System.Drawing.SystemColors.Control;
     this.lblUOL.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblUOL.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.lblUOL.Location = new System.Drawing.Point(67, 42);
     this.lblUOL.Name = "lblUOL";
     this.lblUOL.Size = new System.Drawing.Size(408, 30);
     this.lblUOL.TabIndex = 20;
     this.lblUOL.Visible = false;
     this.lblUOL.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // textBox8
     //
     this.textBox8.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.textBox8.BackColor = System.Drawing.SystemColors.Window;
     this.textBox8.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox8.Location = new System.Drawing.Point(67, 42);
     this.textBox8.Multiline = true;
     this.textBox8.Name = "textBox8";
     this.textBox8.ReadOnly = true;
     this.textBox8.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.textBox8.Size = new System.Drawing.Size(584, 466);
     this.textBox8.TabIndex = 2;
     this.textBox8.Visible = false;
     //
     // renderContainer
     //
     this.renderContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
     this.renderContainer.IsSplitterFixed = true;
     this.renderContainer.Location = new System.Drawing.Point(606, 0);
     this.renderContainer.Name = "renderContainer";
     this.renderContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // renderContainer.Panel1
     //
     this.renderContainer.Panel1.AutoScroll = true;
     this.renderContainer.Panel1.Controls.Add(this.picRender);
     //
     // renderContainer.Panel2
     //
     this.renderContainer.Panel2.Controls.Add(this.cmdCloseRender);
     this.renderContainer.Panel2.Controls.Add(this.cmdSaveRender);
     this.renderContainer.Panel2.Controls.Add(this.cmdRedrawRender);
     this.renderContainer.Panel2.Controls.Add(this.lstRenders);
     this.renderContainer.Panel2.Controls.Add(this.chkReactorr);
     this.renderContainer.Panel2.Controls.Add(this.chkPortalr);
     this.renderContainer.Panel2.Controls.Add(this.chkMobr);
     this.renderContainer.Panel2.Controls.Add(this.chkNPCr);
     this.renderContainer.Size = new System.Drawing.Size(240, 207);
     this.renderContainer.SplitterDistance = 131;
     this.renderContainer.TabIndex = 0;
     this.renderContainer.TabStop = false;
     this.renderContainer.Visible = false;
     //
     // picRender
     //
     this.picRender.Location = new System.Drawing.Point(0, 0);
     this.picRender.Name = "picRender";
     this.picRender.Size = new System.Drawing.Size(279, 128);
     this.picRender.TabIndex = 0;
     this.picRender.TabStop = false;
     //
     // cmdCloseRender
     //
     this.cmdCloseRender.Location = new System.Drawing.Point(399, 34);
     this.cmdCloseRender.Name = "cmdCloseRender";
     this.cmdCloseRender.Size = new System.Drawing.Size(43, 21);
     this.cmdCloseRender.TabIndex = 7;
     this.cmdCloseRender.Text = "Close";
     this.cmdCloseRender.UseVisualStyleBackColor = true;
     this.cmdCloseRender.Click += new System.EventHandler(this.CmdCloseRenderClick);
     //
     // cmdSaveRender
     //
     this.cmdSaveRender.Location = new System.Drawing.Point(269, 34);
     this.cmdSaveRender.Name = "cmdSaveRender";
     this.cmdSaveRender.Size = new System.Drawing.Size(124, 21);
     this.cmdSaveRender.TabIndex = 6;
     this.cmdSaveRender.Text = "Save";
     this.cmdSaveRender.UseVisualStyleBackColor = true;
     this.cmdSaveRender.Click += new System.EventHandler(this.CmdSaveRenderClick);
     //
     // cmdRedrawRender
     //
     this.cmdRedrawRender.Location = new System.Drawing.Point(269, 8);
     this.cmdRedrawRender.Name = "cmdRedrawRender";
     this.cmdRedrawRender.Size = new System.Drawing.Size(173, 20);
     this.cmdRedrawRender.TabIndex = 5;
     this.cmdRedrawRender.Text = "Render with new settings";
     this.cmdRedrawRender.UseVisualStyleBackColor = true;
     this.cmdRedrawRender.Click += new System.EventHandler(this.CmdRedrawRenderClick);
     //
     // lstRenders
     //
     this.lstRenders.FormattingEnabled = true;
     this.lstRenders.ItemHeight = 12;
     this.lstRenders.Items.AddRange(new object[] {
     "None",
     "Black",
     "White"});
     this.lstRenders.Location = new System.Drawing.Point(157, 8);
     this.lstRenders.Name = "lstRenders";
     this.lstRenders.Size = new System.Drawing.Size(106, 52);
     this.lstRenders.TabIndex = 4;
     //
     // chkReactorr
     //
     this.chkReactorr.Checked = true;
     this.chkReactorr.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkReactorr.Location = new System.Drawing.Point(77, 8);
     this.chkReactorr.Name = "chkReactorr";
     this.chkReactorr.Size = new System.Drawing.Size(74, 20);
     this.chkReactorr.TabIndex = 3;
     this.chkReactorr.Text = "Reactors";
     this.chkReactorr.UseVisualStyleBackColor = true;
     this.chkReactorr.CheckedChanged += new System.EventHandler(this.ChkReactorrCheckedChanged);
     //
     // chkPortalr
     //
     this.chkPortalr.Checked = true;
     this.chkPortalr.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkPortalr.Location = new System.Drawing.Point(9, 10);
     this.chkPortalr.Name = "chkPortalr";
     this.chkPortalr.Size = new System.Drawing.Size(62, 18);
     this.chkPortalr.TabIndex = 2;
     this.chkPortalr.Text = "Portals";
     this.chkPortalr.UseVisualStyleBackColor = true;
     this.chkPortalr.CheckedChanged += new System.EventHandler(this.ChkPortalrCheckedChanged);
     //
     // chkMobr
     //
     this.chkMobr.Checked = true;
     this.chkMobr.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkMobr.Location = new System.Drawing.Point(9, 30);
     this.chkMobr.Name = "chkMobr";
     this.chkMobr.Size = new System.Drawing.Size(51, 18);
     this.chkMobr.TabIndex = 1;
     this.chkMobr.Text = "Mob";
     this.chkMobr.UseVisualStyleBackColor = true;
     this.chkMobr.CheckedChanged += new System.EventHandler(this.ChkMobrCheckedChanged);
     //
     // chkNPCr
     //
     this.chkNPCr.Checked = true;
     this.chkNPCr.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkNPCr.Location = new System.Drawing.Point(77, 30);
     this.chkNPCr.Name = "chkNPCr";
     this.chkNPCr.Size = new System.Drawing.Size(68, 18);
     this.chkNPCr.TabIndex = 0;
     this.chkNPCr.Text = "NPCs";
     this.chkNPCr.UseVisualStyleBackColor = true;
     this.chkNPCr.CheckedChanged += new System.EventHandler(this.ChkNPCrCheckedChanged);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel1,
     this.toolStripStatusLabel2,
     this.toolStripProgressBar1});
     this.statusStrip1.Location = new System.Drawing.Point(0, 542);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(846, 22);
     this.statusStrip1.TabIndex = 4;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.AutoSize = false;
     this.toolStripStatusLabel1.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
     | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
     | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(300, 17);
     //
     // toolStripStatusLabel2
     //
     this.toolStripStatusLabel2.AutoSize = false;
     this.toolStripStatusLabel2.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
     | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
     | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
     this.toolStripStatusLabel2.Name = "toolStripStatusLabel2";
     this.toolStripStatusLabel2.Size = new System.Drawing.Size(200, 17);
     //
     // toolStripProgressBar1
     //
     this.toolStripProgressBar1.Name = "toolStripProgressBar1";
     this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 16);
     this.toolStripProgressBar1.Visible = false;
     //
     // splitContainer1
     //
     this.splitContainer1.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.splitContainer1.BackColor = System.Drawing.SystemColors.Control;
     this.splitContainer1.ForeColor = System.Drawing.SystemColors.ControlText;
     this.splitContainer1.Location = new System.Drawing.Point(0, 25);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.groupBox2);
     this.splitContainer1.Size = new System.Drawing.Size(846, 516);
     this.splitContainer1.SplitterDistance = 171;
     this.splitContainer1.TabIndex = 5;
     //
     // splitContainer2
     //
     this.splitContainer2.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.splitContainer2.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.splitContainer2.Location = new System.Drawing.Point(7, 3);
     this.splitContainer2.Name = "splitContainer2";
     this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.treeView1);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.label2);
     this.splitContainer2.Panel2.Controls.Add(this.treeView2);
     this.splitContainer2.Size = new System.Drawing.Size(164, 505);
     this.splitContainer2.SplitterDistance = 245;
     this.splitContainer2.TabIndex = 4;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(5, 0);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(100, 16);
     this.label2.TabIndex = 4;
     this.label2.Text = "Image file content:";
     //
     // treeView2
     //
     this.treeView2.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.treeView2.HideSelection = false;
     this.treeView2.Location = new System.Drawing.Point(0, 18);
     this.treeView2.Name = "treeView2";
     this.treeView2.Size = new System.Drawing.Size(164, 235);
     this.treeView2.TabIndex = 3;
     this.treeView2.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeView2AfterSelect);
     //
     // timer1
     //
     this.timer1.Tick += new System.EventHandler(this.Timer1Tick);
     //
     // fullExtractPanel
     //
     this.fullExtractPanel.Controls.Add(this.label6);
     this.fullExtractPanel.Controls.Add(this.extractCount);
     this.fullExtractPanel.Controls.Add(this.extractBar);
     this.fullExtractPanel.Controls.Add(this.extractCancel);
     this.fullExtractPanel.Controls.Add(this.extractStart);
     this.fullExtractPanel.Location = new System.Drawing.Point(307, 0);
     this.fullExtractPanel.Name = "fullExtractPanel";
     this.fullExtractPanel.Size = new System.Drawing.Size(281, 145);
     this.fullExtractPanel.TabIndex = 6;
     this.fullExtractPanel.Visible = false;
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(29, 9);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(203, 34);
     this.label6.TabIndex = 4;
     this.label6.Text = "Full Extract Control Panel";
     //
     // extractCount
     //
     this.extractCount.Location = new System.Drawing.Point(29, 72);
     this.extractCount.Name = "extractCount";
     this.extractCount.Size = new System.Drawing.Size(203, 20);
     this.extractCount.TabIndex = 3;
     this.extractCount.Text = "progress";
     //
     // extractBar
     //
     this.extractBar.Location = new System.Drawing.Point(32, 46);
     this.extractBar.Name = "extractBar";
     this.extractBar.Size = new System.Drawing.Size(200, 18);
     this.extractBar.TabIndex = 2;
     //
     // extractCancel
     //
     this.extractCancel.Location = new System.Drawing.Point(184, 97);
     this.extractCancel.Name = "extractCancel";
     this.extractCancel.Size = new System.Drawing.Size(48, 24);
     this.extractCancel.TabIndex = 1;
     this.extractCancel.Text = "Cancel";
     this.extractCancel.UseVisualStyleBackColor = true;
     this.extractCancel.Click += new System.EventHandler(this.ExtractCancelClick);
     //
     // extractStart
     //
     this.extractStart.Location = new System.Drawing.Point(32, 97);
     this.extractStart.Name = "extractStart";
     this.extractStart.Size = new System.Drawing.Size(146, 24);
     this.extractStart.TabIndex = 0;
     this.extractStart.Text = "Start";
     this.extractStart.UseVisualStyleBackColor = true;
     this.extractStart.Click += new System.EventHandler(this.ExtractStartClick);
     //
     // button9
     //
     this.button9.Location = new System.Drawing.Point(9, 470);
     this.button9.Name = "button9";
     this.button9.Size = new System.Drawing.Size(52, 23);
     this.button9.TabIndex = 27;
     this.button9.Text = "tile";
     this.button9.UseVisualStyleBackColor = true;
     this.button9.Click += new System.EventHandler(this.button9_Click);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(846, 564);
     this.Controls.Add(this.fullExtractPanel);
     this.Controls.Add(this.renderContainer);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.menuStrip1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "MainForm";
     this.Text = "WZextract";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.MainForm_Load);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.pnlSound.ResumeLayout(false);
     this.pnlSound.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
     this.pnlPicture.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.renderContainer.Panel1.ResumeLayout(false);
     this.renderContainer.Panel2.ResumeLayout(false);
     this.renderContainer.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.picRender)).EndInit();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.ResumeLayout(false);
     this.fullExtractPanel.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#31
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmActionOrderRequest));
     this.ToolTipMain         = new System.Windows.Forms.ToolTip(this.components);
     this.txtPromisedBy       = new System.Windows.Forms.TextBox();
     this.txtRequiredBy       = new System.Windows.Forms.TextBox();
     this.txtReceivedBy       = new System.Windows.Forms.TextBox();
     this.cmdApprove          = new System.Windows.Forms.Button();
     this.txtStatus           = new System.Windows.Forms.TextBox();
     this.txtReceived         = new System.Windows.Forms.TextBox();
     this.txtChangedBy        = new System.Windows.Forms.TextBox();
     this.txtChanged          = new System.Windows.Forms.TextBox();
     this.txtOrderID          = new System.Windows.Forms.TextBox();
     this.txtNotes            = new System.Windows.Forms.TextBox();
     this.txtSubTotal         = new System.Windows.Forms.TextBox();
     this.txtTotal            = new System.Windows.Forms.TextBox();
     this.txtTotalTax         = new System.Windows.Forms.TextBox();
     this.txtFreightCharge    = new System.Windows.Forms.TextBox();
     this.txtSalesTax         = new System.Windows.Forms.TextBox();
     this.txtEntry            = new System.Windows.Forms.TextBox();
     this.fgDetails           = new UpgradeHelpers.Windows.Forms.DataGridViewFlex(this.components);
     this.sbStatusBar         = new System.Windows.Forms.StatusStrip();
     this._sbStatusBar_Panel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.cmdCancel           = new System.Windows.Forms.Button();
     this.cmdClose            = new System.Windows.Forms.Button();
     this.Frame2             = new System.Windows.Forms.GroupBox();
     this.txtCustomerContact = new System.Windows.Forms.TextBox();
     this.txtCustomerCompany = new System.Windows.Forms.TextBox();
     this.Label5             = new System.Windows.Forms.Label();
     this.Label1             = new System.Windows.Forms.Label();
     this.Label13            = new System.Windows.Forms.Label();
     this.Label2             = new System.Windows.Forms.Label();
     this.Label7             = new System.Windows.Forms.Label();
     this.Label3             = new System.Windows.Forms.Label();
     this.Label19            = new System.Windows.Forms.Label();
     this.lblChangedBy       = new System.Windows.Forms.Label();
     this.Label4             = new System.Windows.Forms.Label();
     this.lblChanged         = 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.Label6             = new System.Windows.Forms.Label();
     this.sbStatusBar.SuspendLayout();
     this.Frame2.SuspendLayout();
     this.SuspendLayout();
     //
     // txtPromisedBy
     //
     this.txtPromisedBy.AcceptsReturn = true;
     this.txtPromisedBy.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtPromisedBy.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtPromisedBy.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtPromisedBy.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtPromisedBy.Location      = new System.Drawing.Point(368, 200);
     this.txtPromisedBy.MaxLength     = 0;
     this.txtPromisedBy.Name          = "txtPromisedBy";
     this.txtPromisedBy.ReadOnly      = true;
     this.txtPromisedBy.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtPromisedBy.Size          = new System.Drawing.Size(105, 20);
     this.txtPromisedBy.TabIndex      = 38;
     this.txtPromisedBy.TabStop       = false;
     //
     // txtRequiredBy
     //
     this.txtRequiredBy.AcceptsReturn = true;
     this.txtRequiredBy.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtRequiredBy.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtRequiredBy.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtRequiredBy.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtRequiredBy.Location      = new System.Drawing.Point(120, 200);
     this.txtRequiredBy.MaxLength     = 0;
     this.txtRequiredBy.Name          = "txtRequiredBy";
     this.txtRequiredBy.ReadOnly      = true;
     this.txtRequiredBy.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtRequiredBy.Size          = new System.Drawing.Size(105, 20);
     this.txtRequiredBy.TabIndex      = 37;
     this.txtRequiredBy.TabStop       = false;
     //
     // txtReceivedBy
     //
     this.txtReceivedBy.AcceptsReturn = true;
     this.txtReceivedBy.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtReceivedBy.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtReceivedBy.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtReceivedBy.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtReceivedBy.Location      = new System.Drawing.Point(96, 64);
     this.txtReceivedBy.MaxLength     = 0;
     this.txtReceivedBy.Name          = "txtReceivedBy";
     this.txtReceivedBy.ReadOnly      = true;
     this.txtReceivedBy.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtReceivedBy.Size          = new System.Drawing.Size(105, 20);
     this.txtReceivedBy.TabIndex      = 33;
     this.txtReceivedBy.TabStop       = false;
     //
     // cmdApprove
     //
     this.cmdApprove.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdApprove.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdApprove.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdApprove.Location                = new System.Drawing.Point(232, 480);
     this.cmdApprove.Name                    = "cmdApprove";
     this.cmdApprove.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdApprove.Size                    = new System.Drawing.Size(89, 25);
     this.cmdApprove.TabIndex                = 0;
     this.cmdApprove.Text                    = "&Create Invoice";
     this.cmdApprove.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdApprove.UseVisualStyleBackColor = false;
     this.cmdApprove.Click                  += new System.EventHandler(this.cmdApprove_Click);
     //
     // txtStatus
     //
     this.txtStatus.AcceptsReturn = true;
     this.txtStatus.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtStatus.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtStatus.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtStatus.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtStatus.Location      = new System.Drawing.Point(408, 8);
     this.txtStatus.MaxLength     = 0;
     this.txtStatus.Name          = "txtStatus";
     this.txtStatus.ReadOnly      = true;
     this.txtStatus.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtStatus.Size          = new System.Drawing.Size(105, 20);
     this.txtStatus.TabIndex      = 31;
     this.txtStatus.TabStop       = false;
     //
     // txtReceived
     //
     this.txtReceived.AcceptsReturn = true;
     this.txtReceived.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtReceived.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtReceived.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtReceived.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtReceived.Location      = new System.Drawing.Point(96, 36);
     this.txtReceived.MaxLength     = 0;
     this.txtReceived.Name          = "txtReceived";
     this.txtReceived.ReadOnly      = true;
     this.txtReceived.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtReceived.Size          = new System.Drawing.Size(105, 20);
     this.txtReceived.TabIndex      = 29;
     this.txtReceived.TabStop       = false;
     //
     // txtChangedBy
     //
     this.txtChangedBy.AcceptsReturn = true;
     this.txtChangedBy.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtChangedBy.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtChangedBy.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtChangedBy.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtChangedBy.Location      = new System.Drawing.Point(408, 64);
     this.txtChangedBy.MaxLength     = 0;
     this.txtChangedBy.Name          = "txtChangedBy";
     this.txtChangedBy.ReadOnly      = true;
     this.txtChangedBy.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtChangedBy.Size          = new System.Drawing.Size(105, 20);
     this.txtChangedBy.TabIndex      = 25;
     this.txtChangedBy.TabStop       = false;
     //
     // txtChanged
     //
     this.txtChanged.AcceptsReturn = true;
     this.txtChanged.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtChanged.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtChanged.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtChanged.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtChanged.Location      = new System.Drawing.Point(408, 36);
     this.txtChanged.MaxLength     = 0;
     this.txtChanged.Name          = "txtChanged";
     this.txtChanged.ReadOnly      = true;
     this.txtChanged.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtChanged.Size          = new System.Drawing.Size(105, 20);
     this.txtChanged.TabIndex      = 24;
     this.txtChanged.TabStop       = false;
     //
     // txtOrderID
     //
     this.txtOrderID.AcceptsReturn = true;
     this.txtOrderID.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtOrderID.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtOrderID.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtOrderID.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtOrderID.Location      = new System.Drawing.Point(96, 8);
     this.txtOrderID.MaxLength     = 0;
     this.txtOrderID.Name          = "txtOrderID";
     this.txtOrderID.ReadOnly      = true;
     this.txtOrderID.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtOrderID.Size          = new System.Drawing.Size(105, 20);
     this.txtOrderID.TabIndex      = 23;
     this.txtOrderID.TabStop       = false;
     //
     // txtNotes
     //
     this.txtNotes.AcceptsReturn = true;
     this.txtNotes.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtNotes.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtNotes.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtNotes.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtNotes.Location      = new System.Drawing.Point(56, 152);
     this.txtNotes.MaxLength     = 0;
     this.txtNotes.Multiline     = true;
     this.txtNotes.Name          = "txtNotes";
     this.txtNotes.ReadOnly      = true;
     this.txtNotes.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtNotes.Size          = new System.Drawing.Size(457, 44);
     this.txtNotes.TabIndex      = 3;
     this.txtNotes.TabStop       = false;
     //
     // txtSubTotal
     //
     this.txtSubTotal.AcceptsReturn = true;
     this.txtSubTotal.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtSubTotal.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtSubTotal.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtSubTotal.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtSubTotal.Location      = new System.Drawing.Point(368, 432);
     this.txtSubTotal.MaxLength     = 0;
     this.txtSubTotal.Name          = "txtSubTotal";
     this.txtSubTotal.ReadOnly      = true;
     this.txtSubTotal.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtSubTotal.Size          = new System.Drawing.Size(145, 20);
     this.txtSubTotal.TabIndex      = 21;
     this.txtSubTotal.TabStop       = false;
     this.txtSubTotal.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtTotal
     //
     this.txtTotal.AcceptsReturn = true;
     this.txtTotal.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtTotal.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtTotal.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtTotal.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtTotal.Location      = new System.Drawing.Point(88, 456);
     this.txtTotal.MaxLength     = 0;
     this.txtTotal.Name          = "txtTotal";
     this.txtTotal.ReadOnly      = true;
     this.txtTotal.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtTotal.Size          = new System.Drawing.Size(145, 20);
     this.txtTotal.TabIndex      = 19;
     this.txtTotal.TabStop       = false;
     this.txtTotal.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtTotalTax
     //
     this.txtTotalTax.AcceptsReturn = true;
     this.txtTotalTax.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtTotalTax.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtTotalTax.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtTotalTax.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtTotalTax.Location      = new System.Drawing.Point(368, 408);
     this.txtTotalTax.MaxLength     = 0;
     this.txtTotalTax.Name          = "txtTotalTax";
     this.txtTotalTax.ReadOnly      = true;
     this.txtTotalTax.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtTotalTax.Size          = new System.Drawing.Size(145, 20);
     this.txtTotalTax.TabIndex      = 17;
     this.txtTotalTax.TabStop       = false;
     this.txtTotalTax.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtFreightCharge
     //
     this.txtFreightCharge.AcceptsReturn = true;
     this.txtFreightCharge.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtFreightCharge.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtFreightCharge.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtFreightCharge.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtFreightCharge.Location      = new System.Drawing.Point(88, 432);
     this.txtFreightCharge.MaxLength     = 0;
     this.txtFreightCharge.Name          = "txtFreightCharge";
     this.txtFreightCharge.ReadOnly      = true;
     this.txtFreightCharge.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtFreightCharge.Size          = new System.Drawing.Size(145, 20);
     this.txtFreightCharge.TabIndex      = 6;
     this.txtFreightCharge.TabStop       = false;
     this.txtFreightCharge.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtSalesTax
     //
     this.txtSalesTax.AcceptsReturn = true;
     this.txtSalesTax.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtSalesTax.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtSalesTax.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtSalesTax.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtSalesTax.Location      = new System.Drawing.Point(88, 408);
     this.txtSalesTax.MaxLength     = 0;
     this.txtSalesTax.Name          = "txtSalesTax";
     this.txtSalesTax.ReadOnly      = true;
     this.txtSalesTax.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtSalesTax.Size          = new System.Drawing.Size(145, 20);
     this.txtSalesTax.TabIndex      = 5;
     this.txtSalesTax.TabStop       = false;
     this.txtSalesTax.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtEntry
     //
     this.txtEntry.AcceptsReturn = true;
     this.txtEntry.BackColor     = System.Drawing.SystemColors.Window;
     this.txtEntry.BorderStyle   = System.Windows.Forms.BorderStyle.None;
     this.txtEntry.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtEntry.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtEntry.Location      = new System.Drawing.Point(416, 336);
     this.txtEntry.MaxLength     = 0;
     this.txtEntry.Name          = "txtEntry";
     this.txtEntry.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtEntry.Size          = new System.Drawing.Size(73, 19);
     this.txtEntry.TabIndex      = 14;
     this.txtEntry.Visible       = false;
     //
     // fgDetails
     //
     this.fgDetails.BorderStyle  = System.Windows.Forms.BorderStyle.None;
     this.fgDetails.ColumnsCount = 0;
     this.fgDetails.FixedColumns = 0;
     this.fgDetails.FixedRows    = 0;
     this.fgDetails.Location     = new System.Drawing.Point(8, 224);
     this.fgDetails.Name         = "fgDetails";
     this.fgDetails.Size         = new System.Drawing.Size(505, 177);
     this.fgDetails.TabIndex     = 4;
     this.fgDetails.TabStop      = false;
     //
     // sbStatusBar
     //
     this.sbStatusBar.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.sbStatusBar.Location         = new System.Drawing.Point(0, 509);
     this.sbStatusBar.Name             = "sbStatusBar";
     this.sbStatusBar.ShowItemToolTips = true;
     this.sbStatusBar.Size             = new System.Drawing.Size(523, 25);
     this.sbStatusBar.TabIndex         = 13;
     this.sbStatusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this._sbStatusBar_Panel1 });
     //
     // _sbStatusBar_Panel1
     //
     this._sbStatusBar_Panel1.AutoSize           = true;
     this._sbStatusBar_Panel1.AutoSize           = false;
     this._sbStatusBar_Panel1.BorderSides        = (System.Windows.Forms.ToolStripStatusLabelBorderSides)(System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom);
     this._sbStatusBar_Panel1.BorderStyle        = System.Windows.Forms.Border3DStyle.SunkenOuter;
     this._sbStatusBar_Panel1.DoubleClickEnabled = true;
     this._sbStatusBar_Panel1.Margin             = new System.Windows.Forms.Padding(0);
     this._sbStatusBar_Panel1.Size              = new System.Drawing.Size(505, 25);
     this._sbStatusBar_Panel1.TextAlign         = System.Drawing.ContentAlignment.MiddleLeft;
     this._sbStatusBar_Panel1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // cmdCancel
     //
     this.cmdCancel.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdCancel.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdCancel.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdCancel.Location                = new System.Drawing.Point(328, 480);
     this.cmdCancel.Name                    = "cmdCancel";
     this.cmdCancel.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdCancel.Size                    = new System.Drawing.Size(89, 25);
     this.cmdCancel.TabIndex                = 1;
     this.cmdCancel.Text                    = "&Cancel Order";
     this.cmdCancel.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdCancel.UseVisualStyleBackColor = false;
     this.cmdCancel.Click                  += new System.EventHandler(this.cmdCancel_Click);
     //
     // cmdClose
     //
     this.cmdClose.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdClose.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdClose.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdClose.Location                = new System.Drawing.Point(424, 480);
     this.cmdClose.Name                    = "cmdClose";
     this.cmdClose.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.Size                    = new System.Drawing.Size(89, 25);
     this.cmdClose.TabIndex                = 2;
     this.cmdClose.Text                    = "&Close";
     this.cmdClose.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdClose.UseVisualStyleBackColor = false;
     this.cmdClose.Click                  += new System.EventHandler(this.cmdClose_Click);
     //
     // Frame2
     //
     this.Frame2.BackColor = System.Drawing.SystemColors.Control;
     this.Frame2.Controls.Add(this.txtCustomerContact);
     this.Frame2.Controls.Add(this.txtCustomerCompany);
     this.Frame2.Controls.Add(this.Label5);
     this.Frame2.Controls.Add(this.Label1);
     this.Frame2.Enabled     = true;
     this.Frame2.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Frame2.Location    = new System.Drawing.Point(8, 96);
     this.Frame2.Name        = "Frame2";
     this.Frame2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Frame2.Size        = new System.Drawing.Size(505, 49);
     this.Frame2.TabIndex    = 7;
     this.Frame2.Text        = "Customer";
     this.Frame2.Visible     = true;
     //
     // txtCustomerContact
     //
     this.txtCustomerContact.AcceptsReturn = true;
     this.txtCustomerContact.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtCustomerContact.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtCustomerContact.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtCustomerContact.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtCustomerContact.Location      = new System.Drawing.Point(288, 16);
     this.txtCustomerContact.MaxLength     = 0;
     this.txtCustomerContact.Name          = "txtCustomerContact";
     this.txtCustomerContact.ReadOnly      = true;
     this.txtCustomerContact.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtCustomerContact.Size          = new System.Drawing.Size(209, 20);
     this.txtCustomerContact.TabIndex      = 11;
     this.txtCustomerContact.TabStop       = false;
     //
     // txtCustomerCompany
     //
     this.txtCustomerCompany.AcceptsReturn = true;
     this.txtCustomerCompany.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtCustomerCompany.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtCustomerCompany.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtCustomerCompany.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtCustomerCompany.Location      = new System.Drawing.Point(72, 16);
     this.txtCustomerCompany.MaxLength     = 0;
     this.txtCustomerCompany.Name          = "txtCustomerCompany";
     this.txtCustomerCompany.ReadOnly      = true;
     this.txtCustomerCompany.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtCustomerCompany.Size          = new System.Drawing.Size(145, 20);
     this.txtCustomerCompany.TabIndex      = 10;
     this.txtCustomerCompany.TabStop       = false;
     //
     // Label5
     //
     this.Label5.BackColor   = System.Drawing.SystemColors.Control;
     this.Label5.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label5.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label5.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label5.Location    = new System.Drawing.Point(8, 16);
     this.Label5.Name        = "Label5";
     this.Label5.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label5.Size        = new System.Drawing.Size(57, 17);
     this.Label5.TabIndex    = 9;
     this.Label5.Text        = "Name:";
     //
     // Label1
     //
     this.Label1.BackColor   = System.Drawing.SystemColors.Control;
     this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label1.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label1.Location    = new System.Drawing.Point(232, 16);
     this.Label1.Name        = "Label1";
     this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label1.Size        = new System.Drawing.Size(57, 17);
     this.Label1.TabIndex    = 8;
     this.Label1.Text        = "Contact:";
     //
     // Label13
     //
     this.Label13.BackColor   = System.Drawing.SystemColors.Control;
     this.Label13.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label13.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label13.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label13.Location    = new System.Drawing.Point(16, 200);
     this.Label13.Name        = "Label13";
     this.Label13.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label13.Size        = new System.Drawing.Size(105, 17);
     this.Label13.TabIndex    = 36;
     this.Label13.Text        = "Required by date:";
     //
     // Label2
     //
     this.Label2.BackColor   = System.Drawing.SystemColors.Control;
     this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label2.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label2.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label2.Location    = new System.Drawing.Point(264, 200);
     this.Label2.Name        = "Label2";
     this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label2.Size        = new System.Drawing.Size(105, 17);
     this.Label2.TabIndex    = 35;
     this.Label2.Text        = "Promised by date:";
     //
     // Label7
     //
     this.Label7.BackColor   = System.Drawing.SystemColors.Control;
     this.Label7.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label7.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label7.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label7.Location    = new System.Drawing.Point(8, 64);
     this.Label7.Name        = "Label7";
     this.Label7.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label7.Size        = new System.Drawing.Size(73, 17);
     this.Label7.TabIndex    = 34;
     this.Label7.Text        = "Requested by:";
     //
     // Label3
     //
     this.Label3.BackColor   = System.Drawing.SystemColors.Control;
     this.Label3.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label3.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label3.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label3.Location    = new System.Drawing.Point(320, 8);
     this.Label3.Name        = "Label3";
     this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label3.Size        = new System.Drawing.Size(49, 17);
     this.Label3.TabIndex    = 32;
     this.Label3.Text        = "Status:";
     this.Label3.Click      += new System.EventHandler(this.Label3_Click);
     //
     // Label19
     //
     this.Label19.BackColor   = System.Drawing.SystemColors.Control;
     this.Label19.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label19.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label19.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label19.Location    = new System.Drawing.Point(8, 32);
     this.Label19.Name        = "Label19";
     this.Label19.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label19.Size        = new System.Drawing.Size(57, 17);
     this.Label19.TabIndex    = 30;
     this.Label19.Text        = "Requested:";
     //
     // lblChangedBy
     //
     this.lblChangedBy.BackColor   = System.Drawing.SystemColors.Control;
     this.lblChangedBy.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblChangedBy.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblChangedBy.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblChangedBy.Location    = new System.Drawing.Point(320, 64);
     this.lblChangedBy.Name        = "lblChangedBy";
     this.lblChangedBy.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblChangedBy.Size        = new System.Drawing.Size(89, 17);
     this.lblChangedBy.TabIndex    = 28;
     this.lblChangedBy.Text        = "Changed by:";
     //
     // Label4
     //
     this.Label4.BackColor   = System.Drawing.SystemColors.Control;
     this.Label4.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label4.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label4.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label4.Location    = new System.Drawing.Point(12, 8);
     this.Label4.Name        = "Label4";
     this.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label4.Size        = new System.Drawing.Size(49, 17);
     this.Label4.TabIndex    = 27;
     this.Label4.Text        = "Order Id:";
     //
     // lblChanged
     //
     this.lblChanged.BackColor   = System.Drawing.SystemColors.Control;
     this.lblChanged.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblChanged.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblChanged.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblChanged.Location    = new System.Drawing.Point(320, 36);
     this.lblChanged.Name        = "lblChanged";
     this.lblChanged.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblChanged.Size        = new System.Drawing.Size(89, 17);
     this.lblChanged.TabIndex    = 26;
     this.lblChanged.Text        = "Changed:";
     //
     // Label12
     //
     this.Label12.BackColor   = System.Drawing.SystemColors.Control;
     this.Label12.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label12.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label12.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label12.Location    = new System.Drawing.Point(8, 432);
     this.Label12.Name        = "Label12";
     this.Label12.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label12.Size        = new System.Drawing.Size(89, 17);
     this.Label12.TabIndex    = 22;
     this.Label12.Text        = "Freight Charge:";
     //
     // Label11
     //
     this.Label11.BackColor   = System.Drawing.SystemColors.Control;
     this.Label11.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label11.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label11.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label11.Location    = new System.Drawing.Point(8, 456);
     this.Label11.Name        = "Label11";
     this.Label11.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label11.Size        = new System.Drawing.Size(89, 17);
     this.Label11.TabIndex    = 20;
     this.Label11.Text        = "Total:";
     //
     // Label10
     //
     this.Label10.BackColor   = System.Drawing.SystemColors.Control;
     this.Label10.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label10.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label10.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label10.Location    = new System.Drawing.Point(288, 408);
     this.Label10.Name        = "Label10";
     this.Label10.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label10.Size        = new System.Drawing.Size(89, 17);
     this.Label10.TabIndex    = 18;
     this.Label10.Text        = "Total Tax:";
     //
     // Label9
     //
     this.Label9.BackColor   = System.Drawing.SystemColors.Control;
     this.Label9.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label9.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label9.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label9.Location    = new System.Drawing.Point(288, 432);
     this.Label9.Name        = "Label9";
     this.Label9.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label9.Size        = new System.Drawing.Size(89, 17);
     this.Label9.TabIndex    = 16;
     this.Label9.Text        = "Sub Total:";
     //
     // Label8
     //
     this.Label8.BackColor   = System.Drawing.SystemColors.Control;
     this.Label8.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label8.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label8.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label8.Location    = new System.Drawing.Point(8, 408);
     this.Label8.Name        = "Label8";
     this.Label8.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label8.Size        = new System.Drawing.Size(89, 17);
     this.Label8.TabIndex    = 15;
     this.Label8.Text        = "Sales Tax:";
     //
     // Label6
     //
     this.Label6.BackColor   = System.Drawing.SystemColors.Control;
     this.Label6.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label6.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label6.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label6.Location    = new System.Drawing.Point(8, 160);
     this.Label6.Name        = "Label6";
     this.Label6.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label6.Size        = new System.Drawing.Size(33, 17);
     this.Label6.TabIndex    = 12;
     this.Label6.Text        = "Notes:";
     //
     // frmActionOrderRequest
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6, 13);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.Control;
     this.ClientSize          = new System.Drawing.Size(523, 534);
     this.Controls.Add(this.txtPromisedBy);
     this.Controls.Add(this.txtRequiredBy);
     this.Controls.Add(this.txtReceivedBy);
     this.Controls.Add(this.cmdApprove);
     this.Controls.Add(this.txtStatus);
     this.Controls.Add(this.txtReceived);
     this.Controls.Add(this.txtChangedBy);
     this.Controls.Add(this.txtChanged);
     this.Controls.Add(this.txtOrderID);
     this.Controls.Add(this.txtNotes);
     this.Controls.Add(this.txtSubTotal);
     this.Controls.Add(this.txtTotal);
     this.Controls.Add(this.txtTotalTax);
     this.Controls.Add(this.txtFreightCharge);
     this.Controls.Add(this.txtSalesTax);
     this.Controls.Add(this.txtEntry);
     this.Controls.Add(this.fgDetails);
     this.Controls.Add(this.sbStatusBar);
     this.Controls.Add(this.cmdCancel);
     this.Controls.Add(this.cmdClose);
     this.Controls.Add(this.Frame2);
     this.Controls.Add(this.Label13);
     this.Controls.Add(this.Label2);
     this.Controls.Add(this.Label7);
     this.Controls.Add(this.Label3);
     this.Controls.Add(this.Label19);
     this.Controls.Add(this.lblChangedBy);
     this.Controls.Add(this.Label4);
     this.Controls.Add(this.lblChanged);
     this.Controls.Add(this.Label12);
     this.Controls.Add(this.Label11);
     this.Controls.Add(this.Label10);
     this.Controls.Add(this.Label9);
     this.Controls.Add(this.Label8);
     this.Controls.Add(this.Label6);
     this.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Location    = new System.Drawing.Point(8, 30);
     this.MaximizeBox = true;
     this.MinimizeBox = true;
     this.Name        = "frmActionOrderRequest";
     this.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Text        = "Create Invoice";
     this.Closed     += new System.EventHandler(this.frmActionOrderRequest_Closed);
     this.Load       += new System.EventHandler(this.frmActionOrderRequest_Load);
     this.sbStatusBar.ResumeLayout(false);
     this.Frame2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#32
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(Server));
     this.btnStartServer = new System.Windows.Forms.Button();
     this.label2 = new System.Windows.Forms.Label();
     this.btnStopServer = new System.Windows.Forms.Button();
     this.lstClients = new System.Windows.Forms.ListView();
     this.label3 = new System.Windows.Forms.Label();
     this.numLobbyPort = new System.Windows.Forms.NumericUpDown();
     this.numBasePort = new System.Windows.Forms.NumericUpDown();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatus = new System.Windows.Forms.ToolStripStatusLabel();
     this.label1 = new System.Windows.Forms.Label();
     this.TrayIcon = new System.Windows.Forms.NotifyIcon(this.components);
     this.lvActiveGames = new System.Windows.Forms.ListView();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.tbStep = new System.Windows.Forms.TrackBar();
     this.spMain = new System.Windows.Forms.SplitContainer();
     ((System.ComponentModel.ISupportInitialize)(this.numLobbyPort)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numBasePort)).BeginInit();
     this.statusStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbStep)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spMain)).BeginInit();
     this.spMain.Panel1.SuspendLayout();
     this.spMain.SuspendLayout();
     this.SuspendLayout();
     //
     // btnStartServer
     //
     this.btnStartServer.Location = new System.Drawing.Point(12, 12);
     this.btnStartServer.Name = "btnStartServer";
     this.btnStartServer.Size = new System.Drawing.Size(59, 23);
     this.btnStartServer.TabIndex = 2;
     this.btnStartServer.Text = "Start";
     this.btnStartServer.UseVisualStyleBackColor = true;
     this.btnStartServer.Click += new System.EventHandler(this.btnStartServer_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(12, 105);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(61, 13);
     this.label2.TabIndex = 6;
     this.label2.Text = "Lobby Port:";
     //
     // btnStopServer
     //
     this.btnStopServer.Location = new System.Drawing.Point(77, 12);
     this.btnStopServer.Name = "btnStopServer";
     this.btnStopServer.Size = new System.Drawing.Size(59, 23);
     this.btnStopServer.TabIndex = 14;
     this.btnStopServer.Text = "Stop";
     this.btnStopServer.UseVisualStyleBackColor = true;
     this.btnStopServer.Click += new System.EventHandler(this.btnStopServer_Click);
     //
     // lstClients
     //
     this.lstClients.Location = new System.Drawing.Point(9, 216);
     this.lstClients.Name = "lstClients";
     this.lstClients.Size = new System.Drawing.Size(127, 137);
     this.lstClients.TabIndex = 18;
     this.lstClients.UseCompatibleStateImageBehavior = false;
     this.lstClients.View = System.Windows.Forms.View.List;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(12, 131);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(85, 13);
     this.label3.TabIndex = 20;
     this.label3.Text = "Client Base Port:";
     //
     // numLobbyPort
     //
     this.numLobbyPort.Location = new System.Drawing.Point(103, 103);
     this.numLobbyPort.Maximum = new decimal(new int[] {
     3000,
     0,
     0,
     0});
     this.numLobbyPort.Name = "numLobbyPort";
     this.numLobbyPort.Size = new System.Drawing.Size(66, 20);
     this.numLobbyPort.TabIndex = 21;
     this.numLobbyPort.Value = new decimal(new int[] {
     2302,
     0,
     0,
     0});
     this.numLobbyPort.ValueChanged += new System.EventHandler(this.numLobbyPort_ValueChanged);
     //
     // numBasePort
     //
     this.numBasePort.Location = new System.Drawing.Point(103, 129);
     this.numBasePort.Maximum = new decimal(new int[] {
     3000,
     0,
     0,
     0});
     this.numBasePort.Name = "numBasePort";
     this.numBasePort.Size = new System.Drawing.Size(66, 20);
     this.numBasePort.TabIndex = 22;
     this.numBasePort.Value = new decimal(new int[] {
     2303,
     0,
     0,
     0});
     this.numBasePort.ValueChanged += new System.EventHandler(this.numBasePort_ValueChanged);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatus});
     this.statusStrip1.Location = new System.Drawing.Point(0, 517);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(763, 22);
     this.statusStrip1.TabIndex = 23;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripStatus
     //
     this.toolStripStatus.Name = "toolStripStatus";
     this.toolStripStatus.Size = new System.Drawing.Size(42, 17);
     this.toolStripStatus.Text = "Status:";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(9, 200);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(41, 13);
     this.label1.TabIndex = 24;
     this.label1.Text = "Clients:";
     //
     // TrayIcon
     //
     this.TrayIcon.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info;
     this.TrayIcon.BalloonTipText = "\'Amy Server\' is running. =D";
     this.TrayIcon.BalloonTipTitle = "Amy Server";
     this.TrayIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("TrayIcon.Icon")));
     this.TrayIcon.Text = "Amy Gaming Server";
     this.TrayIcon.Visible = true;
     //
     // lvActiveGames
     //
     this.lvActiveGames.Location = new System.Drawing.Point(12, 174);
     this.lvActiveGames.Name = "lvActiveGames";
     this.lvActiveGames.Size = new System.Drawing.Size(148, 23);
     this.lvActiveGames.TabIndex = 25;
     this.lvActiveGames.UseCompatibleStateImageBehavior = false;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(12, 158);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(43, 13);
     this.label4.TabIndex = 26;
     this.label4.Text = "Games:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(12, 60);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(72, 13);
     this.label5.TabIndex = 28;
     this.label5.Text = "Physics Rate:";
     //
     // tbStep
     //
     this.tbStep.AutoSize = false;
     this.tbStep.Location = new System.Drawing.Point(12, 76);
     this.tbStep.Maximum = 20;
     this.tbStep.Name = "tbStep";
     this.tbStep.Size = new System.Drawing.Size(148, 26);
     this.tbStep.TabIndex = 27;
     this.tbStep.TickStyle = System.Windows.Forms.TickStyle.None;
     this.tbStep.Value = 10;
     this.tbStep.Scroll += new System.EventHandler(this.tbStep_Scroll);
     //
     // spMain
     //
     this.spMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.spMain.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
     this.spMain.Location = new System.Drawing.Point(0, 0);
     this.spMain.Name = "spMain";
     //
     // spMain.Panel1
     //
     this.spMain.Panel1.Controls.Add(this.btnStartServer);
     this.spMain.Panel1.Controls.Add(this.label5);
     this.spMain.Panel1.Controls.Add(this.label2);
     this.spMain.Panel1.Controls.Add(this.tbStep);
     this.spMain.Panel1.Controls.Add(this.btnStopServer);
     this.spMain.Panel1.Controls.Add(this.label4);
     this.spMain.Panel1.Controls.Add(this.lstClients);
     this.spMain.Panel1.Controls.Add(this.lvActiveGames);
     this.spMain.Panel1.Controls.Add(this.label3);
     this.spMain.Panel1.Controls.Add(this.label1);
     this.spMain.Panel1.Controls.Add(this.numLobbyPort);
     this.spMain.Panel1.Controls.Add(this.numBasePort);
     this.spMain.Size = new System.Drawing.Size(763, 517);
     this.spMain.SplitterDistance = 171;
     this.spMain.TabIndex = 29;
     //
     // Server
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(763, 539);
     this.Controls.Add(this.spMain);
     this.Controls.Add(this.statusStrip1);
     this.MinimumSize = new System.Drawing.Size(337, 264);
     this.Name = "Server";
     this.Text = "WinPhysiX Server";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ServerApp_MainFormClosed);
     ((System.ComponentModel.ISupportInitialize)(this.numLobbyPort)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numBasePort)).EndInit();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbStep)).EndInit();
     this.spMain.Panel1.ResumeLayout(false);
     this.spMain.Panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spMain)).EndInit();
     this.spMain.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#33
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(Winformlogin));
     this.pcbkey = new System.Windows.Forms.PictureBox();
     this.LBLCAPSLCK = new System.Windows.Forms.Label();
     this.txtpasswd = new System.Windows.Forms.TextBox();
     this.txtusernm = new System.Windows.Forms.TextBox();
     this.lblusernm = new System.Windows.Forms.Label();
     this.lblpasswd = new System.Windows.Forms.Label();
     this.btncncl = new System.Windows.Forms.Button();
     this.btnsubmit = new System.Windows.Forms.Button();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolstrplbl = new System.Windows.Forms.ToolStripStatusLabel();
     ((System.ComponentModel.ISupportInitialize)(this.pcbkey)).BeginInit();
     this.statusStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // pcbkey
     //
     this.pcbkey.BackColor = System.Drawing.Color.Transparent;
     this.pcbkey.Image = ((System.Drawing.Image)(resources.GetObject("pcbkey.Image")));
     this.pcbkey.Location = new System.Drawing.Point(460, 56);
     this.pcbkey.Name = "pcbkey";
     this.pcbkey.Size = new System.Drawing.Size(66, 65);
     this.pcbkey.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pcbkey.TabIndex = 51;
     this.pcbkey.TabStop = false;
     //
     // LBLCAPSLCK
     //
     this.LBLCAPSLCK.AutoSize = true;
     this.LBLCAPSLCK.BackColor = System.Drawing.Color.ForestGreen;
     this.LBLCAPSLCK.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LBLCAPSLCK.ForeColor = System.Drawing.Color.White;
     this.LBLCAPSLCK.Location = new System.Drawing.Point(122, 37);
     this.LBLCAPSLCK.Name = "LBLCAPSLCK";
     this.LBLCAPSLCK.Size = new System.Drawing.Size(98, 13);
     this.LBLCAPSLCK.TabIndex = 49;
     this.LBLCAPSLCK.Text = "CAPS LOCK IS ON";
     this.LBLCAPSLCK.Visible = false;
     //
     // txtpasswd
     //
     this.txtpasswd.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtpasswd.Location = new System.Drawing.Point(121, 91);
     this.txtpasswd.Name = "txtpasswd";
     this.txtpasswd.PasswordChar = '*';
     this.txtpasswd.Size = new System.Drawing.Size(333, 30);
     this.txtpasswd.TabIndex = 43;
     //
     // txtusernm
     //
     this.txtusernm.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtusernm.Location = new System.Drawing.Point(121, 56);
     this.txtusernm.Name = "txtusernm";
     this.txtusernm.Size = new System.Drawing.Size(333, 30);
     this.txtusernm.TabIndex = 42;
     //
     // lblusernm
     //
     this.lblusernm.AutoSize = true;
     this.lblusernm.BackColor = System.Drawing.Color.Transparent;
     this.lblusernm.Font = new System.Drawing.Font("Century Gothic", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblusernm.ForeColor = System.Drawing.Color.Purple;
     this.lblusernm.Location = new System.Drawing.Point(11, 58);
     this.lblusernm.Name = "lblusernm";
     this.lblusernm.Size = new System.Drawing.Size(97, 21);
     this.lblusernm.TabIndex = 47;
     this.lblusernm.Text = "USERNAME";
     //
     // lblpasswd
     //
     this.lblpasswd.AutoSize = true;
     this.lblpasswd.BackColor = System.Drawing.Color.Transparent;
     this.lblpasswd.Font = new System.Drawing.Font("Century Gothic", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblpasswd.ForeColor = System.Drawing.Color.Purple;
     this.lblpasswd.Location = new System.Drawing.Point(11, 93);
     this.lblpasswd.Name = "lblpasswd";
     this.lblpasswd.Size = new System.Drawing.Size(99, 21);
     this.lblpasswd.TabIndex = 48;
     this.lblpasswd.Text = "PASSWORD";
     //
     // btncncl
     //
     this.btncncl.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btncncl.Location = new System.Drawing.Point(305, 126);
     this.btncncl.Name = "btncncl";
     this.btncncl.Size = new System.Drawing.Size(149, 43);
     this.btncncl.TabIndex = 45;
     this.btncncl.Text = "Cancel";
     this.btncncl.UseVisualStyleBackColor = true;
     this.btncncl.Click += new System.EventHandler(this.btncncl_Click);
     //
     // btnsubmit
     //
     this.btnsubmit.Location = new System.Drawing.Point(121, 127);
     this.btnsubmit.Name = "btnsubmit";
     this.btnsubmit.Size = new System.Drawing.Size(156, 42);
     this.btnsubmit.TabIndex = 44;
     this.btnsubmit.Text = "Submit ";
     this.btnsubmit.UseVisualStyleBackColor = true;
     this.btnsubmit.Click += new System.EventHandler(this.btnsubmit_Click);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolstrplbl});
     this.statusStrip1.Location = new System.Drawing.Point(0, 176);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(533, 22);
     this.statusStrip1.TabIndex = 52;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolstrplbl
     //
     this.toolstrplbl.Name = "toolstrplbl";
     this.toolstrplbl.Size = new System.Drawing.Size(104, 17);
     this.toolstrplbl.Text = "Waiting for User....";
     //
     // Winformlogin
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(533, 198);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.pcbkey);
     this.Controls.Add(this.LBLCAPSLCK);
     this.Controls.Add(this.txtpasswd);
     this.Controls.Add(this.txtusernm);
     this.Controls.Add(this.lblusernm);
     this.Controls.Add(this.lblpasswd);
     this.Controls.Add(this.btncncl);
     this.Controls.Add(this.btnsubmit);
     this.Name = "Winformlogin";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "EMPLOYEE IDENTIFICATION SYSTEM";
     ((System.ComponentModel.ISupportInitialize)(this.pcbkey)).EndInit();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#34
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(WelcomeForm));
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.settingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.manageUserToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.changePsswordToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.databaseManagementToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.createBackupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.restoreBackupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.startNewYearToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.initializeDatabaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.createDatabaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.registerTrialToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.registerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.unRegisterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.userHistoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.troubleshootingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.systemLogToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutEBusinessToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.btnPOS = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator14 = new System.Windows.Forms.ToolStripSeparator();
     this.btnInvoice = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btnStock = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btnItem = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCustomer = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCompany = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.btnOrder = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.btnShop = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStrip_Reports = new System.Windows.Forms.ToolStrip();
     this.btnSalesReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator15 = new System.Windows.Forms.ToolStripSeparator();
     this.btnPurchaseReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
     this.btnDailySalesReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
     this.btnBuyerLedgerReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator16 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCustomerTransaction = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator18 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCompanyTransaction = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator();
     this.btnProfitReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCurrentCashReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
     this.btnItemTransaction = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel4 = new System.Windows.Forms.ToolStripStatusLabel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.middlePanel = new System.Windows.Forms.Panel();
     this.lblSologon = new System.Windows.Forms.Label();
     this.lbRegistrationNo = new System.Windows.Forms.Label();
     this.lblPhoneNumber = new System.Windows.Forms.Label();
     this.lblAdress = new System.Windows.Forms.Label();
     this.panelToday = new System.Windows.Forms.Panel();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.lvSale = new System.Windows.Forms.ListView();
     this.colSNo = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colRNo = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colCustomer = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colTotal = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colPayment = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.label2 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.lvPurchase = new System.Windows.Forms.ListView();
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.label6 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.panelClock = new System.Windows.Forms.Panel();
     this.lvStockSummary = new System.Windows.Forms.ListView();
     this.colItem = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colStock = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colOnOrder = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colLimit = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.btnRefresh = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel3 = new System.Windows.Forms.Panel();
     this.monthCalendar1 = new System.Windows.Forms.MonthCalendar();
     this.lblWatch = new System.Windows.Forms.Label();
     this.topPanel = new System.Windows.Forms.Panel();
     this.lblShopName = new System.Windows.Forms.Label();
     this.logoPanel = new System.Windows.Forms.Panel();
     this.label3 = new System.Windows.Forms.Label();
     this.lblPointofSale = new System.Windows.Forms.Label();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.menuStrip1.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.toolStrip_Reports.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.middlePanel.SuspendLayout();
     this.panelToday.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.panelClock.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.topPanel.SuspendLayout();
     this.logoPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("menuStrip1.BackgroundImage")));
     this.menuStrip1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem1,
     this.settingToolStripMenuItem,
     this.databaseManagementToolStripMenuItem,
     this.troubleshootingToolStripMenuItem,
     this.helpToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(1007, 24);
     this.menuStrip1.TabIndex = 0;
     this.menuStrip1.Text = "menuStrip1";
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.exitToolStripMenuItem});
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(37, 20);
     this.toolStripMenuItem1.Text = "File";
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(92, 22);
     this.exitToolStripMenuItem.Text = "Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // settingToolStripMenuItem
     //
     this.settingToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.manageUserToolStripMenuItem,
     this.changePsswordToolStripMenuItem});
     this.settingToolStripMenuItem.Name = "settingToolStripMenuItem";
     this.settingToolStripMenuItem.Size = new System.Drawing.Size(116, 20);
     this.settingToolStripMenuItem.Text = "User Management";
     //
     // manageUserToolStripMenuItem
     //
     this.manageUserToolStripMenuItem.Name = "manageUserToolStripMenuItem";
     this.manageUserToolStripMenuItem.Size = new System.Drawing.Size(168, 22);
     this.manageUserToolStripMenuItem.Text = "Manage User";
     this.manageUserToolStripMenuItem.Click += new System.EventHandler(this.manageUserToolStripMenuItem_Click);
     //
     // changePsswordToolStripMenuItem
     //
     this.changePsswordToolStripMenuItem.Name = "changePsswordToolStripMenuItem";
     this.changePsswordToolStripMenuItem.Size = new System.Drawing.Size(168, 22);
     this.changePsswordToolStripMenuItem.Text = "Change Password";
     this.changePsswordToolStripMenuItem.Click += new System.EventHandler(this.changePsswordToolStripMenuItem_Click);
     //
     // databaseManagementToolStripMenuItem
     //
     this.databaseManagementToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.createBackupToolStripMenuItem,
     this.restoreBackupToolStripMenuItem,
     this.startNewYearToolStripMenuItem,
     this.initializeDatabaseToolStripMenuItem,
     this.createDatabaseToolStripMenuItem,
     this.registerTrialToolStripMenuItem,
     this.registerToolStripMenuItem,
     this.unRegisterToolStripMenuItem,
     this.userHistoryToolStripMenuItem});
     this.databaseManagementToolStripMenuItem.Name = "databaseManagementToolStripMenuItem";
     this.databaseManagementToolStripMenuItem.Size = new System.Drawing.Size(98, 20);
     this.databaseManagementToolStripMenuItem.Text = "Administration";
     //
     // createBackupToolStripMenuItem
     //
     this.createBackupToolStripMenuItem.Name = "createBackupToolStripMenuItem";
     this.createBackupToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.createBackupToolStripMenuItem.Text = "Create Backup";
     this.createBackupToolStripMenuItem.Click += new System.EventHandler(this.createBackupToolStripMenuItem_Click);
     //
     // restoreBackupToolStripMenuItem
     //
     this.restoreBackupToolStripMenuItem.Name = "restoreBackupToolStripMenuItem";
     this.restoreBackupToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.restoreBackupToolStripMenuItem.Text = "Restore Backup";
     this.restoreBackupToolStripMenuItem.Click += new System.EventHandler(this.restoreBackupToolStripMenuItem_Click);
     //
     // startNewYearToolStripMenuItem
     //
     this.startNewYearToolStripMenuItem.Name = "startNewYearToolStripMenuItem";
     this.startNewYearToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.startNewYearToolStripMenuItem.Text = "Start New Business Year";
     //
     // initializeDatabaseToolStripMenuItem
     //
     this.initializeDatabaseToolStripMenuItem.Name = "initializeDatabaseToolStripMenuItem";
     this.initializeDatabaseToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.initializeDatabaseToolStripMenuItem.Text = "Initialize Database";
     this.initializeDatabaseToolStripMenuItem.Click += new System.EventHandler(this.initializeDatabaseToolStripMenuItem_Click);
     //
     // createDatabaseToolStripMenuItem
     //
     this.createDatabaseToolStripMenuItem.Name = "createDatabaseToolStripMenuItem";
     this.createDatabaseToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.createDatabaseToolStripMenuItem.Text = "Create Database";
     this.createDatabaseToolStripMenuItem.Click += new System.EventHandler(this.createDatabaseToolStripMenuItem_Click);
     //
     // registerTrialToolStripMenuItem
     //
     this.registerTrialToolStripMenuItem.Name = "registerTrialToolStripMenuItem";
     this.registerTrialToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.registerTrialToolStripMenuItem.Text = "Register Trial";
     //
     // registerToolStripMenuItem
     //
     this.registerToolStripMenuItem.Name = "registerToolStripMenuItem";
     this.registerToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.registerToolStripMenuItem.Text = "Register";
     //
     // unRegisterToolStripMenuItem
     //
     this.unRegisterToolStripMenuItem.Name = "unRegisterToolStripMenuItem";
     this.unRegisterToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.unRegisterToolStripMenuItem.Text = "Un Register";
     //
     // userHistoryToolStripMenuItem
     //
     this.userHistoryToolStripMenuItem.Name = "userHistoryToolStripMenuItem";
     this.userHistoryToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.userHistoryToolStripMenuItem.Text = "User History";
     this.userHistoryToolStripMenuItem.Click += new System.EventHandler(this.userHistoryToolStripMenuItem_Click);
     //
     // troubleshootingToolStripMenuItem
     //
     this.troubleshootingToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.systemLogToolStripMenuItem});
     this.troubleshootingToolStripMenuItem.Name = "troubleshootingToolStripMenuItem";
     this.troubleshootingToolStripMenuItem.Size = new System.Drawing.Size(107, 20);
     this.troubleshootingToolStripMenuItem.Text = "Troubleshooting";
     //
     // systemLogToolStripMenuItem
     //
     this.systemLogToolStripMenuItem.Name = "systemLogToolStripMenuItem";
     this.systemLogToolStripMenuItem.Size = new System.Drawing.Size(135, 22);
     this.systemLogToolStripMenuItem.Text = "System Log";
     this.systemLogToolStripMenuItem.Click += new System.EventHandler(this.systemLogToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.aboutEBusinessToolStripMenuItem});
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "Help";
     //
     // aboutEBusinessToolStripMenuItem
     //
     this.aboutEBusinessToolStripMenuItem.Name = "aboutEBusinessToolStripMenuItem";
     this.aboutEBusinessToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
     this.aboutEBusinessToolStripMenuItem.Text = "About EBusiness";
     //
     // toolStrip1
     //
     this.toolStrip1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("toolStrip1.BackgroundImage")));
     this.toolStrip1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btnPOS,
     this.toolStripSeparator14,
     this.btnInvoice,
     this.toolStripSeparator1,
     this.btnStock,
     this.toolStripSeparator2,
     this.btnItem,
     this.toolStripSeparator3,
     this.btnCustomer,
     this.toolStripSeparator4,
     this.btnCompany,
     this.toolStripSeparator5,
     this.btnOrder,
     this.toolStripSeparator6,
     this.btnShop,
     this.toolStripSeparator13});
     this.toolStrip1.Location = new System.Drawing.Point(0, 24);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(1007, 57);
     this.toolStrip1.TabIndex = 1;
     this.toolStrip1.Text = "toolStrip1";
     //
     // btnPOS
     //
     this.btnPOS.Font = new System.Drawing.Font("Arial Black", 12F, System.Drawing.FontStyle.Bold);
     this.btnPOS.Image = ((System.Drawing.Image)(resources.GetObject("btnPOS.Image")));
     this.btnPOS.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnPOS.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnPOS.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnPOS.Name = "btnPOS";
     this.btnPOS.Size = new System.Drawing.Size(96, 56);
     this.btnPOS.Text = "&POS";
     this.btnPOS.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnPOS.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
     this.btnPOS.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnPOS.ToolTipText = "POS";
     this.btnPOS.Click += new System.EventHandler(this.btnManagement_Click);
     //
     // toolStripSeparator14
     //
     this.toolStripSeparator14.Name = "toolStripSeparator14";
     this.toolStripSeparator14.Size = new System.Drawing.Size(6, 57);
     //
     // btnInvoice
     //
     this.btnInvoice.BackColor = System.Drawing.Color.Transparent;
     this.btnInvoice.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.btnInvoice.ForeColor = System.Drawing.Color.Navy;
     this.btnInvoice.Image = ((System.Drawing.Image)(resources.GetObject("btnInvoice.Image")));
     this.btnInvoice.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnInvoice.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnInvoice.Name = "btnInvoice";
     this.btnInvoice.Size = new System.Drawing.Size(114, 54);
     this.btnInvoice.Text = "&Invoice";
     this.btnInvoice.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnInvoice.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnInvoice.Click += new System.EventHandler(this.btnManagement_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 57);
     //
     // btnStock
     //
     this.btnStock.BackColor = System.Drawing.Color.Transparent;
     this.btnStock.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.btnStock.ForeColor = System.Drawing.Color.Navy;
     this.btnStock.Image = ((System.Drawing.Image)(resources.GetObject("btnStock.Image")));
     this.btnStock.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnStock.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnStock.Name = "btnStock";
     this.btnStock.Size = new System.Drawing.Size(100, 54);
     this.btnStock.Text = "&Stock";
     this.btnStock.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnStock.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnStock.Click += new System.EventHandler(this.btnManagement_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 57);
     //
     // btnItem
     //
     this.btnItem.BackColor = System.Drawing.Color.Transparent;
     this.btnItem.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.btnItem.ForeColor = System.Drawing.Color.Navy;
     this.btnItem.Image = ((System.Drawing.Image)(resources.GetObject("btnItem.Image")));
     this.btnItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnItem.Name = "btnItem";
     this.btnItem.Size = new System.Drawing.Size(90, 54);
     this.btnItem.Text = "&Item";
     this.btnItem.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnItem.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnItem.Click += new System.EventHandler(this.btnManagement_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.ForeColor = System.Drawing.SystemColors.ControlText;
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 57);
     //
     // btnCustomer
     //
     this.btnCustomer.BackColor = System.Drawing.Color.Transparent;
     this.btnCustomer.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.btnCustomer.ForeColor = System.Drawing.Color.Navy;
     this.btnCustomer.Image = ((System.Drawing.Image)(resources.GetObject("btnCustomer.Image")));
     this.btnCustomer.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnCustomer.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCustomer.Name = "btnCustomer";
     this.btnCustomer.Size = new System.Drawing.Size(128, 54);
     this.btnCustomer.Text = "&Customer";
     this.btnCustomer.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnCustomer.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnCustomer.Click += new System.EventHandler(this.btnManagement_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(6, 57);
     //
     // btnCompany
     //
     this.btnCompany.BackColor = System.Drawing.Color.Transparent;
     this.btnCompany.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.btnCompany.ForeColor = System.Drawing.Color.Navy;
     this.btnCompany.Image = ((System.Drawing.Image)(resources.GetObject("btnCompany.Image")));
     this.btnCompany.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnCompany.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCompany.Name = "btnCompany";
     this.btnCompany.Size = new System.Drawing.Size(126, 54);
     this.btnCompany.Text = "S&upplier";
     this.btnCompany.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnCompany.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnCompany.Click += new System.EventHandler(this.btnManagement_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 57);
     //
     // btnOrder
     //
     this.btnOrder.BackColor = System.Drawing.Color.Transparent;
     this.btnOrder.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.btnOrder.ForeColor = System.Drawing.Color.Navy;
     this.btnOrder.Image = ((System.Drawing.Image)(resources.GetObject("btnOrder.Image")));
     this.btnOrder.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnOrder.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnOrder.Name = "btnOrder";
     this.btnOrder.Size = new System.Drawing.Size(102, 54);
     this.btnOrder.Text = "&Order";
     this.btnOrder.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnOrder.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnOrder.Click += new System.EventHandler(this.btnManagement_Click);
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(6, 57);
     //
     // btnShop
     //
     this.btnShop.BackColor = System.Drawing.Color.Transparent;
     this.btnShop.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.btnShop.ForeColor = System.Drawing.Color.Navy;
     this.btnShop.Image = ((System.Drawing.Image)(resources.GetObject("btnShop.Image")));
     this.btnShop.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnShop.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnShop.Name = "btnShop";
     this.btnShop.Size = new System.Drawing.Size(97, 54);
     this.btnShop.Text = "S&hop";
     this.btnShop.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnShop.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnShop.Click += new System.EventHandler(this.btnManagement_Click);
     //
     // toolStripSeparator13
     //
     this.toolStripSeparator13.Name = "toolStripSeparator13";
     this.toolStripSeparator13.Size = new System.Drawing.Size(6, 57);
     //
     // toolStrip_Reports
     //
     this.toolStrip_Reports.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("toolStrip_Reports.BackgroundImage")));
     this.toolStrip_Reports.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.toolStrip_Reports.Dock = System.Windows.Forms.DockStyle.Left;
     this.toolStrip_Reports.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btnSalesReport,
     this.toolStripSeparator15,
     this.btnPurchaseReport,
     this.toolStripSeparator8,
     this.btnDailySalesReport,
     this.toolStripSeparator11,
     this.btnBuyerLedgerReport,
     this.toolStripSeparator16,
     this.btnCustomerTransaction,
     this.toolStripSeparator18,
     this.btnCompanyTransaction,
     this.toolStripSeparator12,
     this.btnProfitReport,
     this.toolStripSeparator7,
     this.btnCurrentCashReport,
     this.toolStripSeparator9,
     this.btnItemTransaction,
     this.toolStripSeparator10});
     this.toolStrip_Reports.Location = new System.Drawing.Point(0, 81);
     this.toolStrip_Reports.Name = "toolStrip_Reports";
     this.toolStrip_Reports.Size = new System.Drawing.Size(187, 604);
     this.toolStrip_Reports.TabIndex = 2;
     this.toolStrip_Reports.Text = "toolStrip2";
     //
     // btnSalesReport
     //
     this.btnSalesReport.BackColor = System.Drawing.Color.Transparent;
     this.btnSalesReport.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
     this.btnSalesReport.ForeColor = System.Drawing.Color.Navy;
     this.btnSalesReport.Image = ((System.Drawing.Image)(resources.GetObject("btnSalesReport.Image")));
     this.btnSalesReport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnSalesReport.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnSalesReport.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnSalesReport.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnSalesReport.Name = "btnSalesReport";
     this.btnSalesReport.Size = new System.Drawing.Size(184, 34);
     this.btnSalesReport.Text = "&Sales Report";
     this.btnSalesReport.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnSalesReport.Click += new System.EventHandler(this.btnReport_Click);
     //
     // toolStripSeparator15
     //
     this.toolStripSeparator15.Name = "toolStripSeparator15";
     this.toolStripSeparator15.Size = new System.Drawing.Size(184, 6);
     //
     // btnPurchaseReport
     //
     this.btnPurchaseReport.BackColor = System.Drawing.Color.Transparent;
     this.btnPurchaseReport.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
     this.btnPurchaseReport.ForeColor = System.Drawing.Color.Navy;
     this.btnPurchaseReport.Image = ((System.Drawing.Image)(resources.GetObject("btnPurchaseReport.Image")));
     this.btnPurchaseReport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnPurchaseReport.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnPurchaseReport.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnPurchaseReport.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnPurchaseReport.Name = "btnPurchaseReport";
     this.btnPurchaseReport.Size = new System.Drawing.Size(184, 34);
     this.btnPurchaseReport.Text = "&Purchase Report";
     this.btnPurchaseReport.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnPurchaseReport.ToolTipText = "Purchase Report";
     this.btnPurchaseReport.Click += new System.EventHandler(this.btnReport_Click);
     //
     // toolStripSeparator8
     //
     this.toolStripSeparator8.Name = "toolStripSeparator8";
     this.toolStripSeparator8.Size = new System.Drawing.Size(184, 6);
     //
     // btnDailySalesReport
     //
     this.btnDailySalesReport.BackColor = System.Drawing.Color.Transparent;
     this.btnDailySalesReport.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
     this.btnDailySalesReport.ForeColor = System.Drawing.Color.Navy;
     this.btnDailySalesReport.Image = ((System.Drawing.Image)(resources.GetObject("btnDailySalesReport.Image")));
     this.btnDailySalesReport.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnDailySalesReport.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnDailySalesReport.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnDailySalesReport.Name = "btnDailySalesReport";
     this.btnDailySalesReport.Size = new System.Drawing.Size(184, 34);
     this.btnDailySalesReport.Text = "&Daily Sales/Purchase";
     this.btnDailySalesReport.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnDailySalesReport.Click += new System.EventHandler(this.btnReport_Click);
     //
     // toolStripSeparator11
     //
     this.toolStripSeparator11.Name = "toolStripSeparator11";
     this.toolStripSeparator11.Size = new System.Drawing.Size(184, 6);
     //
     // btnBuyerLedgerReport
     //
     this.btnBuyerLedgerReport.BackColor = System.Drawing.Color.Transparent;
     this.btnBuyerLedgerReport.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
     this.btnBuyerLedgerReport.ForeColor = System.Drawing.Color.Navy;
     this.btnBuyerLedgerReport.Image = ((System.Drawing.Image)(resources.GetObject("btnBuyerLedgerReport.Image")));
     this.btnBuyerLedgerReport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnBuyerLedgerReport.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnBuyerLedgerReport.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnBuyerLedgerReport.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnBuyerLedgerReport.Name = "btnBuyerLedgerReport";
     this.btnBuyerLedgerReport.Size = new System.Drawing.Size(184, 34);
     this.btnBuyerLedgerReport.Text = "&Buyer Ledger";
     this.btnBuyerLedgerReport.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnBuyerLedgerReport.ToolTipText = "Buyer Ledger";
     this.btnBuyerLedgerReport.Click += new System.EventHandler(this.btnReport_Click);
     //
     // toolStripSeparator16
     //
     this.toolStripSeparator16.Name = "toolStripSeparator16";
     this.toolStripSeparator16.Size = new System.Drawing.Size(184, 6);
     //
     // btnCustomerTransaction
     //
     this.btnCustomerTransaction.BackColor = System.Drawing.Color.Transparent;
     this.btnCustomerTransaction.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
     this.btnCustomerTransaction.ForeColor = System.Drawing.Color.Navy;
     this.btnCustomerTransaction.Image = ((System.Drawing.Image)(resources.GetObject("btnCustomerTransaction.Image")));
     this.btnCustomerTransaction.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCustomerTransaction.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnCustomerTransaction.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCustomerTransaction.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnCustomerTransaction.Name = "btnCustomerTransaction";
     this.btnCustomerTransaction.Size = new System.Drawing.Size(184, 34);
     this.btnCustomerTransaction.Text = "&Customer Transaction";
     this.btnCustomerTransaction.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnCustomerTransaction.ToolTipText = "Buyer Ledger";
     this.btnCustomerTransaction.Click += new System.EventHandler(this.btnReport_Click);
     //
     // toolStripSeparator18
     //
     this.toolStripSeparator18.Name = "toolStripSeparator18";
     this.toolStripSeparator18.Size = new System.Drawing.Size(184, 6);
     //
     // btnCompanyTransaction
     //
     this.btnCompanyTransaction.BackColor = System.Drawing.Color.Transparent;
     this.btnCompanyTransaction.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
     this.btnCompanyTransaction.ForeColor = System.Drawing.Color.Navy;
     this.btnCompanyTransaction.Image = ((System.Drawing.Image)(resources.GetObject("btnCompanyTransaction.Image")));
     this.btnCompanyTransaction.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCompanyTransaction.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnCompanyTransaction.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCompanyTransaction.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnCompanyTransaction.Name = "btnCompanyTransaction";
     this.btnCompanyTransaction.Size = new System.Drawing.Size(184, 34);
     this.btnCompanyTransaction.Text = "Supplier Transaction";
     this.btnCompanyTransaction.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnCompanyTransaction.ToolTipText = "Buyer Ledger";
     this.btnCompanyTransaction.Click += new System.EventHandler(this.btnReport_Click);
     //
     // toolStripSeparator12
     //
     this.toolStripSeparator12.Name = "toolStripSeparator12";
     this.toolStripSeparator12.Size = new System.Drawing.Size(184, 6);
     //
     // btnProfitReport
     //
     this.btnProfitReport.BackColor = System.Drawing.Color.Transparent;
     this.btnProfitReport.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
     this.btnProfitReport.ForeColor = System.Drawing.Color.Navy;
     this.btnProfitReport.Image = ((System.Drawing.Image)(resources.GetObject("btnProfitReport.Image")));
     this.btnProfitReport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnProfitReport.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnProfitReport.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnProfitReport.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnProfitReport.Name = "btnProfitReport";
     this.btnProfitReport.Size = new System.Drawing.Size(184, 34);
     this.btnProfitReport.Text = "&Profit/Loss Report";
     this.btnProfitReport.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnProfitReport.Click += new System.EventHandler(this.btnReport_Click);
     //
     // toolStripSeparator7
     //
     this.toolStripSeparator7.Name = "toolStripSeparator7";
     this.toolStripSeparator7.Size = new System.Drawing.Size(184, 6);
     //
     // btnCurrentCashReport
     //
     this.btnCurrentCashReport.BackColor = System.Drawing.Color.Transparent;
     this.btnCurrentCashReport.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
     this.btnCurrentCashReport.ForeColor = System.Drawing.Color.Navy;
     this.btnCurrentCashReport.Image = ((System.Drawing.Image)(resources.GetObject("btnCurrentCashReport.Image")));
     this.btnCurrentCashReport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCurrentCashReport.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnCurrentCashReport.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCurrentCashReport.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnCurrentCashReport.Name = "btnCurrentCashReport";
     this.btnCurrentCashReport.Size = new System.Drawing.Size(184, 34);
     this.btnCurrentCashReport.Text = "&Current Cash Report";
     this.btnCurrentCashReport.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnCurrentCashReport.ToolTipText = "Profit/Loss Report";
     this.btnCurrentCashReport.Click += new System.EventHandler(this.btnReport_Click);
     //
     // toolStripSeparator9
     //
     this.toolStripSeparator9.Name = "toolStripSeparator9";
     this.toolStripSeparator9.Size = new System.Drawing.Size(184, 6);
     //
     // btnItemTransaction
     //
     this.btnItemTransaction.BackColor = System.Drawing.Color.Transparent;
     this.btnItemTransaction.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
     this.btnItemTransaction.ForeColor = System.Drawing.Color.Navy;
     this.btnItemTransaction.Image = ((System.Drawing.Image)(resources.GetObject("btnItemTransaction.Image")));
     this.btnItemTransaction.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnItemTransaction.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnItemTransaction.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnItemTransaction.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnItemTransaction.Name = "btnItemTransaction";
     this.btnItemTransaction.Size = new System.Drawing.Size(184, 34);
     this.btnItemTransaction.Text = "Item Transaction";
     this.btnItemTransaction.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnItemTransaction.ToolTipText = "Item Transaction";
     this.btnItemTransaction.Click += new System.EventHandler(this.btnReport_Click);
     //
     // toolStripSeparator10
     //
     this.toolStripSeparator10.Name = "toolStripSeparator10";
     this.toolStripSeparator10.Size = new System.Drawing.Size(184, 6);
     //
     // statusStrip1
     //
     this.statusStrip1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("statusStrip1.BackgroundImage")));
     this.statusStrip1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel2,
     this.toolStripStatusLabel3,
     this.toolStripStatusLabel4});
     this.statusStrip1.Location = new System.Drawing.Point(187, 663);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
     this.statusStrip1.Size = new System.Drawing.Size(820, 22);
     this.statusStrip1.TabIndex = 3;
     this.statusStrip1.Text = "Imutex 2011";
     //
     // toolStripStatusLabel2
     //
     this.toolStripStatusLabel2.Name = "toolStripStatusLabel2";
     this.toolStripStatusLabel2.Size = new System.Drawing.Size(0, 17);
     //
     // toolStripStatusLabel3
     //
     this.toolStripStatusLabel3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripStatusLabel3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripStatusLabel3.Image")));
     this.toolStripStatusLabel3.Name = "toolStripStatusLabel3";
     this.toolStripStatusLabel3.Size = new System.Drawing.Size(16, 17);
     this.toolStripStatusLabel3.Text = "toolStripStatusLabel3";
     //
     // toolStripStatusLabel4
     //
     this.toolStripStatusLabel4.Font = new System.Drawing.Font("Verdana", 8F, System.Drawing.FontStyle.Bold);
     this.toolStripStatusLabel4.ForeColor = System.Drawing.Color.Navy;
     this.toolStripStatusLabel4.Name = "toolStripStatusLabel4";
     this.toolStripStatusLabel4.Size = new System.Drawing.Size(0, 17);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.SteelBlue;
     this.panel2.Controls.Add(this.middlePanel);
     this.panel2.Controls.Add(this.topPanel);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(187, 81);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(820, 582);
     this.panel2.TabIndex = 5;
     //
     // middlePanel
     //
     this.middlePanel.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("middlePanel.BackgroundImage")));
     this.middlePanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.middlePanel.Controls.Add(this.lblSologon);
     this.middlePanel.Controls.Add(this.lbRegistrationNo);
     this.middlePanel.Controls.Add(this.lblPhoneNumber);
     this.middlePanel.Controls.Add(this.lblAdress);
     this.middlePanel.Controls.Add(this.panelToday);
     this.middlePanel.Controls.Add(this.panelClock);
     this.middlePanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.middlePanel.Location = new System.Drawing.Point(0, 70);
     this.middlePanel.Name = "middlePanel";
     this.middlePanel.Size = new System.Drawing.Size(820, 512);
     this.middlePanel.TabIndex = 1;
     //
     // lblSologon
     //
     this.lblSologon.BackColor = System.Drawing.Color.Transparent;
     this.lblSologon.Dock = System.Windows.Forms.DockStyle.Top;
     this.lblSologon.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Bold);
     this.lblSologon.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblSologon.Location = new System.Drawing.Point(0, 109);
     this.lblSologon.Name = "lblSologon";
     this.lblSologon.Size = new System.Drawing.Size(591, 44);
     this.lblSologon.TabIndex = 10;
     this.lblSologon.Text = "Shop Slogon";
     this.lblSologon.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lbRegistrationNo
     //
     this.lbRegistrationNo.BackColor = System.Drawing.Color.Transparent;
     this.lbRegistrationNo.Dock = System.Windows.Forms.DockStyle.Top;
     this.lbRegistrationNo.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbRegistrationNo.ForeColor = System.Drawing.Color.MediumBlue;
     this.lbRegistrationNo.Location = new System.Drawing.Point(0, 77);
     this.lbRegistrationNo.Name = "lbRegistrationNo";
     this.lbRegistrationNo.Size = new System.Drawing.Size(591, 32);
     this.lbRegistrationNo.TabIndex = 9;
     this.lbRegistrationNo.Text = "Shop Reg#";
     this.lbRegistrationNo.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblPhoneNumber
     //
     this.lblPhoneNumber.BackColor = System.Drawing.Color.Transparent;
     this.lblPhoneNumber.Dock = System.Windows.Forms.DockStyle.Top;
     this.lblPhoneNumber.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPhoneNumber.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblPhoneNumber.Location = new System.Drawing.Point(0, 39);
     this.lblPhoneNumber.Name = "lblPhoneNumber";
     this.lblPhoneNumber.Size = new System.Drawing.Size(591, 38);
     this.lblPhoneNumber.TabIndex = 8;
     this.lblPhoneNumber.Text = "Shop Phone";
     this.lblPhoneNumber.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblAdress
     //
     this.lblAdress.BackColor = System.Drawing.Color.Transparent;
     this.lblAdress.Dock = System.Windows.Forms.DockStyle.Top;
     this.lblAdress.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAdress.ForeColor = System.Drawing.Color.DarkSlateGray;
     this.lblAdress.Location = new System.Drawing.Point(0, 0);
     this.lblAdress.Name = "lblAdress";
     this.lblAdress.Size = new System.Drawing.Size(591, 39);
     this.lblAdress.TabIndex = 7;
     this.lblAdress.Text = "Shop Address";
     this.lblAdress.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelToday
     //
     this.panelToday.Controls.Add(this.splitContainer1);
     this.panelToday.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelToday.Location = new System.Drawing.Point(0, 213);
     this.panelToday.Name = "panelToday";
     this.panelToday.Size = new System.Drawing.Size(591, 299);
     this.panelToday.TabIndex = 5;
     //
     // 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.lvSale);
     this.splitContainer1.Panel1.Controls.Add(this.label2);
     this.splitContainer1.Panel1.Controls.Add(this.label5);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.lvPurchase);
     this.splitContainer1.Panel2.Controls.Add(this.label6);
     this.splitContainer1.Panel2.Controls.Add(this.label4);
     this.splitContainer1.Size = new System.Drawing.Size(591, 299);
     this.splitContainer1.SplitterDistance = 277;
     this.splitContainer1.TabIndex = 0;
     //
     // lvSale
     //
     this.lvSale.BackColor = System.Drawing.Color.Bisque;
     this.lvSale.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("lvSale.BackgroundImage")));
     this.lvSale.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.colSNo,
     this.colRNo,
     this.colCustomer,
     this.colTotal,
     this.colPayment});
     this.lvSale.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lvSale.GridLines = true;
     this.lvSale.Location = new System.Drawing.Point(0, 23);
     this.lvSale.Name = "lvSale";
     this.lvSale.Size = new System.Drawing.Size(277, 253);
     this.lvSale.TabIndex = 6;
     this.lvSale.UseCompatibleStateImageBehavior = false;
     this.lvSale.View = System.Windows.Forms.View.Details;
     //
     // colSNo
     //
     this.colSNo.Text = "No";
     this.colSNo.Width = 30;
     //
     // colRNo
     //
     this.colRNo.Text = "Receipt";
     this.colRNo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.colRNo.Width = 50;
     //
     // colCustomer
     //
     this.colCustomer.Text = "Customer";
     this.colCustomer.Width = 80;
     //
     // colTotal
     //
     this.colTotal.Text = "Total";
     this.colTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // colPayment
     //
     this.colPayment.Text = "Payment";
     this.colPayment.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Green;
     this.label2.Dock = System.Windows.Forms.DockStyle.Top;
     this.label2.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.SystemColors.Info;
     this.label2.Image = ((System.Drawing.Image)(resources.GetObject("label2.Image")));
     this.label2.Location = new System.Drawing.Point(0, 0);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(277, 23);
     this.label2.TabIndex = 1;
     this.label2.Text = "Today\'s Sale";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.Color.DeepSkyBlue;
     this.label5.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.DarkGreen;
     this.label5.Image = ((System.Drawing.Image)(resources.GetObject("label5.Image")));
     this.label5.Location = new System.Drawing.Point(0, 276);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(277, 23);
     this.label5.TabIndex = 0;
     this.label5.Text = "Total Sale : 0.00";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lvPurchase
     //
     this.lvPurchase.BackColor = System.Drawing.Color.Bisque;
     this.lvPurchase.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("lvPurchase.BackgroundImage")));
     this.lvPurchase.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2,
     this.columnHeader3,
     this.columnHeader4,
     this.columnHeader5});
     this.lvPurchase.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lvPurchase.GridLines = true;
     this.lvPurchase.Location = new System.Drawing.Point(0, 23);
     this.lvPurchase.Name = "lvPurchase";
     this.lvPurchase.Size = new System.Drawing.Size(310, 253);
     this.lvPurchase.TabIndex = 7;
     this.lvPurchase.UseCompatibleStateImageBehavior = false;
     this.lvPurchase.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "No";
     this.columnHeader1.Width = 30;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Invoice";
     this.columnHeader2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.columnHeader2.Width = 50;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Supplier";
     this.columnHeader3.Width = 80;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "Total";
     this.columnHeader4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // columnHeader5
     //
     this.columnHeader5.Text = "Payment";
     this.columnHeader5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label6
     //
     this.label6.BackColor = System.Drawing.Color.DarkRed;
     this.label6.Dock = System.Windows.Forms.DockStyle.Top;
     this.label6.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.SystemColors.Info;
     this.label6.Image = ((System.Drawing.Image)(resources.GetObject("label6.Image")));
     this.label6.Location = new System.Drawing.Point(0, 0);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(310, 23);
     this.label6.TabIndex = 1;
     this.label6.Text = "Today\'s Purchase";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Aqua;
     this.label4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.DarkRed;
     this.label4.Image = ((System.Drawing.Image)(resources.GetObject("label4.Image")));
     this.label4.Location = new System.Drawing.Point(0, 276);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(310, 23);
     this.label4.TabIndex = 0;
     this.label4.Text = "Total Purchase : 0.00 ";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // panelClock
     //
     this.panelClock.BackColor = System.Drawing.Color.Transparent;
     this.panelClock.Controls.Add(this.lvStockSummary);
     this.panelClock.Controls.Add(this.btnRefresh);
     this.panelClock.Controls.Add(this.label1);
     this.panelClock.Controls.Add(this.panel1);
     this.panelClock.Dock = System.Windows.Forms.DockStyle.Right;
     this.panelClock.Location = new System.Drawing.Point(591, 0);
     this.panelClock.Name = "panelClock";
     this.panelClock.Size = new System.Drawing.Size(229, 512);
     this.panelClock.TabIndex = 0;
     //
     // lvStockSummary
     //
     this.lvStockSummary.BackColor = System.Drawing.Color.Bisque;
     this.lvStockSummary.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("lvStockSummary.BackgroundImage")));
     this.lvStockSummary.BackgroundImageTiled = true;
     this.lvStockSummary.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.colItem,
     this.colStock,
     this.colOnOrder,
     this.colLimit});
     this.lvStockSummary.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lvStockSummary.GridLines = true;
     this.lvStockSummary.Location = new System.Drawing.Point(0, 242);
     this.lvStockSummary.Name = "lvStockSummary";
     this.lvStockSummary.Size = new System.Drawing.Size(229, 247);
     this.lvStockSummary.TabIndex = 3;
     this.lvStockSummary.UseCompatibleStateImageBehavior = false;
     this.lvStockSummary.View = System.Windows.Forms.View.Details;
     //
     // colItem
     //
     this.colItem.Text = "Item";
     this.colItem.Width = 70;
     //
     // colStock
     //
     this.colStock.Text = "Stock";
     this.colStock.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.colStock.Width = 50;
     //
     // colOnOrder
     //
     this.colOnOrder.Text = "Order";
     this.colOnOrder.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.colOnOrder.Width = 50;
     //
     // colLimit
     //
     this.colLimit.Text = "Limit";
     this.colLimit.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.colLimit.Width = 50;
     //
     // btnRefresh
     //
     this.btnRefresh.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.btnRefresh.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnRefresh.ForeColor = System.Drawing.Color.Blue;
     this.btnRefresh.Image = ((System.Drawing.Image)(resources.GetObject("btnRefresh.Image")));
     this.btnRefresh.Location = new System.Drawing.Point(0, 489);
     this.btnRefresh.Name = "btnRefresh";
     this.btnRefresh.Size = new System.Drawing.Size(229, 23);
     this.btnRefresh.TabIndex = 2;
     this.btnRefresh.Text = "Refresh";
     this.btnRefresh.UseVisualStyleBackColor = true;
     this.btnRefresh.Click += new System.EventHandler(this.button1_Click);
     //
     // label1
     //
     this.label1.Dock = System.Windows.Forms.DockStyle.Top;
     this.label1.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.label1.Image = ((System.Drawing.Image)(resources.GetObject("label1.Image")));
     this.label1.Location = new System.Drawing.Point(0, 222);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(229, 20);
     this.label1.TabIndex = 1;
     this.label1.Text = "Short Stock Items ";
     //
     // panel1
     //
     this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
     this.panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.panel1.Controls.Add(this.panel3);
     this.panel1.Controls.Add(this.lblWatch);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(229, 222);
     this.panel1.TabIndex = 0;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.monthCalendar1);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(0, 59);
     this.panel3.Margin = new System.Windows.Forms.Padding(2);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(229, 163);
     this.panel3.TabIndex = 7;
     //
     // monthCalendar1
     //
     this.monthCalendar1.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.monthCalendar1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.monthCalendar1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.monthCalendar1.Location = new System.Drawing.Point(0, 0);
     this.monthCalendar1.MinDate = new System.DateTime(1970, 1, 1, 0, 0, 0, 0);
     this.monthCalendar1.Name = "monthCalendar1";
     this.monthCalendar1.TabIndex = 8;
     this.monthCalendar1.TitleBackColor = System.Drawing.Color.LightSkyBlue;
     //
     // lblWatch
     //
     this.lblWatch.BackColor = System.Drawing.Color.Transparent;
     this.lblWatch.Dock = System.Windows.Forms.DockStyle.Top;
     this.lblWatch.Font = new System.Drawing.Font("Arial", 30F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblWatch.ForeColor = System.Drawing.Color.OldLace;
     this.lblWatch.Location = new System.Drawing.Point(0, 0);
     this.lblWatch.Name = "lblWatch";
     this.lblWatch.Size = new System.Drawing.Size(229, 59);
     this.lblWatch.TabIndex = 6;
     this.lblWatch.Text = "00:00:00";
     this.lblWatch.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // topPanel
     //
     this.topPanel.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("topPanel.BackgroundImage")));
     this.topPanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.topPanel.Controls.Add(this.lblShopName);
     this.topPanel.Controls.Add(this.logoPanel);
     this.topPanel.Dock = System.Windows.Forms.DockStyle.Top;
     this.topPanel.Location = new System.Drawing.Point(0, 0);
     this.topPanel.Name = "topPanel";
     this.topPanel.Size = new System.Drawing.Size(820, 70);
     this.topPanel.TabIndex = 0;
     //
     // lblShopName
     //
     this.lblShopName.BackColor = System.Drawing.Color.Transparent;
     this.lblShopName.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lblShopName.Font = new System.Drawing.Font("Microsoft Sans Serif", 30F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblShopName.ForeColor = System.Drawing.Color.Lime;
     this.lblShopName.Location = new System.Drawing.Point(0, 0);
     this.lblShopName.Name = "lblShopName";
     this.lblShopName.Size = new System.Drawing.Size(591, 70);
     this.lblShopName.TabIndex = 1;
     this.lblShopName.Text = "Shop Name";
     this.lblShopName.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // logoPanel
     //
     this.logoPanel.BackColor = System.Drawing.Color.Transparent;
     this.logoPanel.Controls.Add(this.label3);
     this.logoPanel.Controls.Add(this.lblPointofSale);
     this.logoPanel.Dock = System.Windows.Forms.DockStyle.Right;
     this.logoPanel.Location = new System.Drawing.Point(591, 0);
     this.logoPanel.Name = "logoPanel";
     this.logoPanel.Size = new System.Drawing.Size(229, 70);
     this.logoPanel.TabIndex = 0;
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.Lavender;
     this.label3.Location = new System.Drawing.Point(0, 0);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(229, 35);
     this.label3.TabIndex = 1;
     this.label3.Text = "iMutex";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblPointofSale
     //
     this.lblPointofSale.BackColor = System.Drawing.Color.Transparent;
     this.lblPointofSale.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.lblPointofSale.Font = new System.Drawing.Font("Arial Black", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPointofSale.ForeColor = System.Drawing.Color.Lime;
     this.lblPointofSale.Location = new System.Drawing.Point(0, 35);
     this.lblPointofSale.Name = "lblPointofSale";
     this.lblPointofSale.Size = new System.Drawing.Size(229, 35);
     this.lblPointofSale.TabIndex = 0;
     this.lblPointofSale.Text = "Point Of Sale";
     this.lblPointofSale.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // timer1
     //
     this.timer1.Enabled = true;
     this.timer1.Interval = 1000;
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // WelcomeForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.ActiveCaption;
     this.ClientSize = new System.Drawing.Size(1007, 685);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.toolStrip_Reports);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.menuStrip1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MainMenuStrip = this.menuStrip1;
     this.MaximumSize = new System.Drawing.Size(1023, 729);
     this.MinimumSize = new System.Drawing.Size(1023, 704);
     this.Name = "WelcomeForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Welcome To iMutex POS";
     this.Load += new System.EventHandler(this.WelcomeForm_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.WelcomeForm_KeyDown);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.toolStrip_Reports.ResumeLayout(false);
     this.toolStrip_Reports.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.middlePanel.ResumeLayout(false);
     this.panelToday.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.panelClock.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.topPanel.ResumeLayout(false);
     this.logoPanel.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#35
0
 public void InitializeComponent()
 {
     this.trvMenu                       = new Controles.datos.trvMenu();
     this.mnuMenuPrincipal              = new Controles.contenedores.mnuMenuPrincipal();
     this.archivoToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.cambiarClaveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.salirToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.sstBarraEstado                = new Controles.contenedores.sstBarraEstado();
     this.toolStripStatusLabel1         = new System.Windows.Forms.ToolStripStatusLabel();
     this.pnlPanelContenedor1           = new Controles.contenedores.pnlPanelContenedor();
     this.mnuMenuPrincipal.SuspendLayout();
     this.sstBarraEstado.SuspendLayout();
     this.pnlPanelContenedor1.SuspendLayout();
     this.SuspendLayout();
     //
     // trvMenu
     //
     this.trvMenu.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.trvMenu.Location              = new System.Drawing.Point(0, 0);
     this.trvMenu.Name                  = "trvMenu";
     this.trvMenu.Size                  = new System.Drawing.Size(341, 592);
     this.trvMenu.TabIndex              = 0;
     this.trvMenu.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.trvMenu_NodeMouseDoubleClick);
     //
     // mnuMenuPrincipal
     //
     this.mnuMenuPrincipal.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.mnuMenuPrincipal.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.archivoToolStripMenuItem
     });
     this.mnuMenuPrincipal.Location = new System.Drawing.Point(0, 0);
     this.mnuMenuPrincipal.Name     = "mnuMenuPrincipal";
     this.mnuMenuPrincipal.Size     = new System.Drawing.Size(1022, 28);
     this.mnuMenuPrincipal.TabIndex = 1;
     this.mnuMenuPrincipal.Text     = "mnuMenuPrincipal";
     //
     // archivoToolStripMenuItem
     //
     this.archivoToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.cambiarClaveToolStripMenuItem,
         this.salirToolStripMenuItem
     });
     this.archivoToolStripMenuItem.Name = "archivoToolStripMenuItem";
     this.archivoToolStripMenuItem.Size = new System.Drawing.Size(71, 24);
     this.archivoToolStripMenuItem.Text = "Archivo";
     //
     // cambiarClaveToolStripMenuItem
     //
     this.cambiarClaveToolStripMenuItem.Name = "cambiarClaveToolStripMenuItem";
     this.cambiarClaveToolStripMenuItem.Size = new System.Drawing.Size(178, 26);
     this.cambiarClaveToolStripMenuItem.Text = "Cambiar clave";
     //
     // salirToolStripMenuItem
     //
     this.salirToolStripMenuItem.Name = "salirToolStripMenuItem";
     this.salirToolStripMenuItem.Size = new System.Drawing.Size(178, 26);
     this.salirToolStripMenuItem.Text = "Salir";
     //
     // sstBarraEstado
     //
     this.sstBarraEstado.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.sstBarraEstado.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripStatusLabel1
     });
     this.sstBarraEstado.Location = new System.Drawing.Point(0, 620);
     this.sstBarraEstado.Name     = "sstBarraEstado";
     this.sstBarraEstado.Size     = new System.Drawing.Size(1022, 25);
     this.sstBarraEstado.TabIndex = 2;
     this.sstBarraEstado.Text     = "sstBarraEstado";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(151, 20);
     this.toolStripStatusLabel1.Text = "toolStripStatusLabel1";
     //
     // pnlPanelContenedor1
     //
     this.pnlPanelContenedor1.Controls.Add(this.trvMenu);
     this.pnlPanelContenedor1.Dock     = System.Windows.Forms.DockStyle.Left;
     this.pnlPanelContenedor1.Location = new System.Drawing.Point(0, 28);
     this.pnlPanelContenedor1.Name     = "pnlPanelContenedor1";
     this.pnlPanelContenedor1.Size     = new System.Drawing.Size(341, 592);
     this.pnlPanelContenedor1.TabIndex = 3;
     //
     // frmPrincipal
     //
     this.ClientSize = new System.Drawing.Size(1022, 645);
     this.Controls.Add(this.pnlPanelContenedor1);
     this.Controls.Add(this.sstBarraEstado);
     this.Controls.Add(this.mnuMenuPrincipal);
     this.MainMenuStrip = this.mnuMenuPrincipal;
     this.Name          = "frmPrincipal";
     this.Load         += new System.EventHandler(this.frmPrincipal_Load);
     this.mnuMenuPrincipal.ResumeLayout(false);
     this.mnuMenuPrincipal.PerformLayout();
     this.sstBarraEstado.ResumeLayout(false);
     this.sstBarraEstado.PerformLayout();
     this.pnlPanelContenedor1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#36
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1                      = new System.Windows.Forms.GroupBox();
     this.statusStrip1                   = new System.Windows.Forms.StatusStrip();
     this.toolStripDropDownButton1       = new System.Windows.Forms.ToolStripDropDownButton();
     this.перезагрузитьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripStatusLabel1          = new System.Windows.Forms.ToolStripStatusLabel();
     this.groupBox2                      = new System.Windows.Forms.GroupBox();
     this.comboBox1                      = new System.Windows.Forms.ComboBox();
     this.label1     = new System.Windows.Forms.Label();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.экспортToolStripMenuItem                = new System.Windows.Forms.ToolStripMenuItem();
     this.вФайлИображенияToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.копироватьВБуферОбменаToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.groupBox1.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.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.groupBox1.AutoSize = true;
     this.groupBox1.Controls.Add(this.statusStrip1);
     this.groupBox1.Location = new System.Drawing.Point(0, 28);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(718, 531);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Диаграмма";
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripDropDownButton1,
         this.toolStripStatusLabel1
     });
     this.statusStrip1.Location = new System.Drawing.Point(3, 506);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Size     = new System.Drawing.Size(712, 22);
     this.statusStrip1.TabIndex = 0;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // toolStripDropDownButton1
     //
     this.toolStripDropDownButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.toolStripDropDownButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.перезагрузитьToolStripMenuItem
     });
     this.toolStripDropDownButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripDropDownButton1.Name = "toolStripDropDownButton1";
     this.toolStripDropDownButton1.Size = new System.Drawing.Size(54, 20);
     this.toolStripDropDownButton1.Text = "Меню";
     //
     // перезагрузитьToolStripMenuItem
     //
     this.перезагрузитьToolStripMenuItem.Name   = "перезагрузитьToolStripMenuItem";
     this.перезагрузитьToolStripMenuItem.Size   = new System.Drawing.Size(154, 22);
     this.перезагрузитьToolStripMenuItem.Text   = "Перезагрузить";
     this.перезагрузитьToolStripMenuItem.Click += new System.EventHandler(this.перезагрузитьToolStripMenuItem_Click);
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(118, 17);
     this.toolStripStatusLabel1.Text = "toolStripStatusLabel1";
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.AutoSize = true;
     this.groupBox2.Controls.Add(this.comboBox1);
     this.groupBox2.Controls.Add(this.label1);
     this.groupBox2.Location = new System.Drawing.Point(723, 28);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(206, 531);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Настройки";
     //
     // comboBox1
     //
     this.comboBox1.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.comboBox1.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location          = new System.Drawing.Point(11, 38);
     this.comboBox1.Name                  = "comboBox1";
     this.comboBox1.Size                  = new System.Drawing.Size(186, 21);
     this.comboBox1.TabIndex              = 1;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(6, 19);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(126, 16);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Тип диаграммы";
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.экспортToolStripMenuItem
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Size     = new System.Drawing.Size(932, 24);
     this.menuStrip1.TabIndex = 2;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // экспортToolStripMenuItem
     //
     this.экспортToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.вФайлИображенияToolStripMenuItem,
         this.копироватьВБуферОбменаToolStripMenuItem
     });
     this.экспортToolStripMenuItem.Name = "экспортToolStripMenuItem";
     this.экспортToolStripMenuItem.Size = new System.Drawing.Size(64, 20);
     this.экспортToolStripMenuItem.Text = "Экспорт";
     //
     // вФайлИображенияToolStripMenuItem
     //
     this.вФайлИображенияToolStripMenuItem.Name = "вФайлИображенияToolStripMenuItem";
     this.вФайлИображенияToolStripMenuItem.Size = new System.Drawing.Size(231, 22);
     this.вФайлИображенияToolStripMenuItem.Text = "В файл иображения...";
     //
     // копироватьВБуферОбменаToolStripMenuItem
     //
     this.копироватьВБуферОбменаToolStripMenuItem.Name = "копироватьВБуферОбменаToolStripMenuItem";
     this.копироватьВБуферОбменаToolStripMenuItem.Size = new System.Drawing.Size(231, 22);
     this.копироватьВБуферОбменаToolStripMenuItem.Text = "Копировать в буфер обмена";
     //
     // DiagramForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(932, 558);
     this.Controls.Add(this.menuStrip1);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Name  = "DiagramForm";
     this.Text  = "Диаграмма данных";
     this.Load += new System.EventHandler(this.DiagramForm_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#37
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();
 }
示例#38
0
 private void InitializeComponent()
 {
     this.components               = new System.ComponentModel.Container();
     this.treeView1                = new System.Windows.Forms.TreeView();
     this.contextMenuStrip2        = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.addrootToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.statusStrip1             = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1    = new System.Windows.Forms.ToolStripStatusLabel();
     this.contextMenuStrip1        = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.editToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.addToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.contextMenuStrip2.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // treeView1
     //
     this.treeView1.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.treeView1.ContextMenuStrip      = this.contextMenuStrip2;
     this.treeView1.Font                  = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.treeView1.Location              = new System.Drawing.Point(12, 12);
     this.treeView1.Name                  = "treeView1";
     this.treeView1.Size                  = new System.Drawing.Size(448, 432);
     this.treeView1.TabIndex              = 2;
     this.treeView1.AfterSelect          += new System.Windows.Forms.TreeViewEventHandler(this.TreeView1AfterSelect);
     this.treeView1.NodeMouseClick       += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.TreeView1NodeMouseClick);
     this.treeView1.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.TreeView1NodeMouseDoubleClick);
     //
     // contextMenuStrip2
     //
     this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.addrootToolStripMenuItem
     });
     this.contextMenuStrip2.Name = "contextMenuStrip2";
     this.contextMenuStrip2.Size = new System.Drawing.Size(178, 26);
     //
     // addrootToolStripMenuItem
     //
     this.addrootToolStripMenuItem.Name   = "addrootToolStripMenuItem";
     this.addrootToolStripMenuItem.Size   = new System.Drawing.Size(177, 22);
     this.addrootToolStripMenuItem.Text   = "Добавить в корень";
     this.addrootToolStripMenuItem.Click += new System.EventHandler(this.AddrootToolStripMenuItemClick);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripStatusLabel1
     });
     this.statusStrip1.Location = new System.Drawing.Point(0, 447);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Size     = new System.Drawing.Size(472, 22);
     this.statusStrip1.TabIndex = 8;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(0, 17);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.editToolStripMenuItem,
         this.addToolStripMenuItem,
         this.deleteToolStripMenuItem
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(155, 70);
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.Name   = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size   = new System.Drawing.Size(154, 22);
     this.editToolStripMenuItem.Text   = "Редактировать";
     this.editToolStripMenuItem.Click += new System.EventHandler(this.EditToolStripMenuItemClick);
     //
     // addToolStripMenuItem
     //
     this.addToolStripMenuItem.Name   = "addToolStripMenuItem";
     this.addToolStripMenuItem.Size   = new System.Drawing.Size(154, 22);
     this.addToolStripMenuItem.Text   = "Добавить";
     this.addToolStripMenuItem.Click += new System.EventHandler(this.AddToolStripMenuItemClick);
     //
     // deleteToolStripMenuItem
     //
     this.deleteToolStripMenuItem.Name   = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Size   = new System.Drawing.Size(154, 22);
     this.deleteToolStripMenuItem.Text   = "Удалить";
     this.deleteToolStripMenuItem.Click += new System.EventHandler(this.DeleteToolStripMenuItemClick);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(472, 469);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.treeView1);
     this.Name  = "MainForm";
     this.Text  = "Задачи";
     this.Load += new System.EventHandler(this.MainFormLoad);
     this.contextMenuStrip2.ResumeLayout(false);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     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()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain));
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.createToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newFeedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.sQLDatabaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.oDataFeedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.sharePointFeedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.editFeedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cloneFeedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.deleteFeedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.purgeFeedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.GridView = new System.Windows.Forms.DataGridView();
     this.Action = new System.Windows.Forms.DataGridViewLinkColumn();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.ShowError = new System.Windows.Forms.ToolStripMenuItem();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.JobStatus = new System.Windows.Forms.ToolStripStatusLabel();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.menuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridView)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.createToolStripMenuItem,
     this.aboutToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Padding = new System.Windows.Forms.Padding(8, 2, 0, 2);
     this.menuStrip1.Size = new System.Drawing.Size(649, 24);
     this.menuStrip1.TabIndex = 0;
     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(35, 20);
     this.fileToolStripMenuItem.Text = "&File";
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(91, 22);
     this.exitToolStripMenuItem.Text = "&Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // createToolStripMenuItem
     //
     this.createToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.newFeedToolStripMenuItem,
     this.toolStripSeparator1,
     this.editFeedToolStripMenuItem,
     this.cloneFeedToolStripMenuItem,
     this.toolStripSeparator2,
     this.deleteFeedToolStripMenuItem,
     this.purgeFeedToolStripMenuItem});
     this.createToolStripMenuItem.Name = "createToolStripMenuItem";
     this.createToolStripMenuItem.Size = new System.Drawing.Size(36, 20);
     this.createToolStripMenuItem.Text = "&Job";
     this.createToolStripMenuItem.Click += new System.EventHandler(this.createToolStripMenuItem_Click);
     //
     // newFeedToolStripMenuItem
     //
     this.newFeedToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.sQLDatabaseToolStripMenuItem,
     this.oDataFeedToolStripMenuItem,
     this.sharePointFeedToolStripMenuItem});
     this.newFeedToolStripMenuItem.Name = "newFeedToolStripMenuItem";
     this.newFeedToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.newFeedToolStripMenuItem.Text = "&Add";
     //
     // sQLDatabaseToolStripMenuItem
     //
     this.sQLDatabaseToolStripMenuItem.Name = "sQLDatabaseToolStripMenuItem";
     this.sQLDatabaseToolStripMenuItem.Size = new System.Drawing.Size(204, 22);
     this.sQLDatabaseToolStripMenuItem.Text = "&SQL Server/SQL Database";
     this.sQLDatabaseToolStripMenuItem.Click += new System.EventHandler(this.sQLDatabaseToolStripMenuItem_Click);
     //
     // oDataFeedToolStripMenuItem
     //
     this.oDataFeedToolStripMenuItem.Enabled = false;
     this.oDataFeedToolStripMenuItem.Name = "oDataFeedToolStripMenuItem";
     this.oDataFeedToolStripMenuItem.Size = new System.Drawing.Size(204, 22);
     this.oDataFeedToolStripMenuItem.Text = "OData Feed";
     //
     // sharePointFeedToolStripMenuItem
     //
     this.sharePointFeedToolStripMenuItem.Enabled = false;
     this.sharePointFeedToolStripMenuItem.Name = "sharePointFeedToolStripMenuItem";
     this.sharePointFeedToolStripMenuItem.Size = new System.Drawing.Size(204, 22);
     this.sharePointFeedToolStripMenuItem.Text = "SharePoint Feed";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(149, 6);
     //
     // editFeedToolStripMenuItem
     //
     this.editFeedToolStripMenuItem.Enabled = false;
     this.editFeedToolStripMenuItem.Name = "editFeedToolStripMenuItem";
     this.editFeedToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.editFeedToolStripMenuItem.Text = "&Update";
     this.editFeedToolStripMenuItem.Click += new System.EventHandler(this.editFeedToolStripMenuItem_Click);
     //
     // cloneFeedToolStripMenuItem
     //
     this.cloneFeedToolStripMenuItem.Enabled = false;
     this.cloneFeedToolStripMenuItem.Name = "cloneFeedToolStripMenuItem";
     this.cloneFeedToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.cloneFeedToolStripMenuItem.Text = "&Clone";
     this.cloneFeedToolStripMenuItem.Click += new System.EventHandler(this.cloneFeedToolStripMenuItem_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(149, 6);
     //
     // deleteFeedToolStripMenuItem
     //
     this.deleteFeedToolStripMenuItem.Enabled = false;
     this.deleteFeedToolStripMenuItem.Name = "deleteFeedToolStripMenuItem";
     this.deleteFeedToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.deleteFeedToolStripMenuItem.Text = "&Remove";
     this.deleteFeedToolStripMenuItem.Click += new System.EventHandler(this.deleteFeedToolStripMenuItem_Click);
     //
     // purgeFeedToolStripMenuItem
     //
     this.purgeFeedToolStripMenuItem.Enabled = false;
     this.purgeFeedToolStripMenuItem.Name = "purgeFeedToolStripMenuItem";
     this.purgeFeedToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.purgeFeedToolStripMenuItem.Text = "&Purge";
     this.purgeFeedToolStripMenuItem.Click += new System.EventHandler(this.purgeFeedToolStripMenuItem_Click);
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(47, 20);
     this.aboutToolStripMenuItem.Text = "&About";
     this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
     //
     // GridView
     //
     this.GridView.AllowUserToAddRows = false;
     this.GridView.AllowUserToDeleteRows = false;
     this.GridView.AllowUserToResizeRows = false;
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.White;
     this.GridView.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.GridView.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
     this.GridView.BackgroundColor = System.Drawing.SystemColors.Control;
     this.GridView.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.GridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.GridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Action});
     this.GridView.ContextMenuStrip = this.contextMenuStrip1;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.ActiveCaption;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.GridView.DefaultCellStyle = dataGridViewCellStyle3;
     this.GridView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.GridView.GridColor = System.Drawing.SystemColors.Control;
     this.GridView.Location = new System.Drawing.Point(0, 0);
     this.GridView.Margin = new System.Windows.Forms.Padding(4);
     this.GridView.MultiSelect = false;
     this.GridView.Name = "GridView";
     this.GridView.ReadOnly = true;
     this.GridView.RowHeadersVisible = false;
     this.GridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.GridView.Size = new System.Drawing.Size(649, 215);
     this.GridView.TabIndex = 1;
     this.GridView.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridView_CellClick);
     this.GridView.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridView_CellDoubleClick);
     this.GridView.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.GridView_CellFormatting);
     this.GridView.SelectionChanged += new System.EventHandler(this.GridView_SelectionChanged);
     this.GridView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.GridView_KeyDown);
     this.GridView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.GridView_MouseDown);
     //
     // Action
     //
     this.Action.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCellsExceptHeader;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.Action.DefaultCellStyle = dataGridViewCellStyle2;
     this.Action.HeaderText = "Action";
     this.Action.Name = "Action";
     this.Action.ReadOnly = true;
     this.Action.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.Action.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.Action.Text = "Start Job";
     this.Action.Width = 5;
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.ShowError});
     this.contextMenuStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.Table;
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(170, 26);
     //
     // ShowError
     //
     this.ShowError.Name = "ShowError";
     this.ShowError.Size = new System.Drawing.Size(169, 22);
     this.ShowError.Text = "Show Error Details";
     this.ShowError.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
     //
     // statusStrip1
     //
     this.statusStrip1.BackColor = System.Drawing.SystemColors.Control;
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.JobStatus});
     this.statusStrip1.Location = new System.Drawing.Point(0, 6);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(649, 22);
     this.statusStrip1.TabIndex = 2;
     this.statusStrip1.Text = "statusStrip1";
     //
     // JobStatus
     //
     this.JobStatus.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.JobStatus.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.JobStatus.Name = "JobStatus";
     this.JobStatus.Size = new System.Drawing.Size(0, 17);
     this.JobStatus.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.IsSplitterFixed = true;
     this.splitContainer1.Location = new System.Drawing.Point(0, 24);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.GridView);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.statusStrip1);
     this.splitContainer1.Panel2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.splitContainer1.Panel2MinSize = 15;
     this.splitContainer1.Size = new System.Drawing.Size(649, 244);
     this.splitContainer1.SplitterDistance = 215;
     this.splitContainer1.SplitterWidth = 1;
     this.splitContainer1.TabIndex = 3;
     //
     // FormMain
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.Control;
     this.ClientSize = new System.Drawing.Size(649, 268);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.menuStrip1);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip = this.menuStrip1;
     this.Margin = new System.Windows.Forms.Padding(4);
     this.MinimizeBox = false;
     this.Name = "FormMain";
     this.Text = "Power BI Live Datasets";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormMain_FormClosing);
     this.Load += new System.EventHandler(this.FormMain_Load);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridView)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.Panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmRequestApproval));
     this.ToolTipMain = new System.Windows.Forms.ToolTip(this.components);
     this.cmdApprove  = new System.Windows.Forms.Button();
     this.cmdInfo     = new System.Windows.Forms.Button();
     this.fgOrders    = new UpgradeHelpers.DataGridViewFlex(this.components);
     this.sbStatusBar = new System.Windows.Forms.StatusStrip();
     this.sbStatusBar_Panels_Panel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.cmdCancel          = new System.Windows.Forms.Button();
     this.cmdClose           = new System.Windows.Forms.Button();
     this.Frame1             = new System.Windows.Forms.GroupBox();
     this.cmbStatus          = new System.Windows.Forms.ComboBox();
     this.chkTo              = new System.Windows.Forms.CheckBox();
     this.chkFrom            = new System.Windows.Forms.CheckBox();
     this.txtProductID       = new System.Windows.Forms.TextBox();
     this.txtOrderID         = new System.Windows.Forms.TextBox();
     this.txtContactLastName = new System.Windows.Forms.TextBox();
     this.txtContactName     = new System.Windows.Forms.TextBox();
     this.cmdCustomers       = new System.Windows.Forms.Button();
     this.txtCompanyName     = new System.Windows.Forms.TextBox();
     this.dtFrom             = new System.Windows.Forms.DateTimePicker();
     this.dtTo   = new System.Windows.Forms.DateTimePicker();
     this.Label5 = new System.Windows.Forms.Label();
     this.Label8 = new System.Windows.Forms.Label();
     this.Label1 = new System.Windows.Forms.Label();
     this.Label6 = new System.Windows.Forms.Label();
     this.Label3 = new System.Windows.Forms.Label();
     this.Label4 = new System.Windows.Forms.Label();
     this.Label2 = new System.Windows.Forms.Label();
     this.sbStatusBar.SuspendLayout();
     this.Frame1.SuspendLayout();
     this.SuspendLayout();
     this.listBoxComboBoxHelper1 = new UpgradeHelpers.Gui.ListControlHelper(this.components);
     ((System.ComponentModel.ISupportInitialize) this.listBoxComboBoxHelper1).BeginInit();
     //
     // cmdApprove
     //
     this.cmdApprove.AllowDrop               = true;
     this.cmdApprove.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdApprove.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdApprove.Location                = new System.Drawing.Point(232, 440);
     this.cmdApprove.Name                    = "cmdApprove";
     this.cmdApprove.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdApprove.Size                    = new System.Drawing.Size(89, 25);
     this.cmdApprove.TabIndex                = 10;
     this.cmdApprove.Text                    = "&Create";
     this.cmdApprove.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdApprove.UseVisualStyleBackColor = false;
     this.cmdApprove.Click                  += new System.EventHandler(this.cmdApprove_Click);
     //
     // cmdInfo
     //
     this.cmdInfo.AllowDrop               = true;
     this.cmdInfo.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdInfo.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdInfo.Location                = new System.Drawing.Point(136, 440);
     this.cmdInfo.Name                    = "cmdInfo";
     this.cmdInfo.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdInfo.Size                    = new System.Drawing.Size(89, 25);
     this.cmdInfo.TabIndex                = 9;
     this.cmdInfo.Text                    = "&Info";
     this.cmdInfo.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdInfo.UseVisualStyleBackColor = false;
     this.cmdInfo.Click                  += new System.EventHandler(this.cmdInfo_Click);
     //
     // fgOrders
     //
     this.fgOrders.AllowBigSelection = false;
     this.fgOrders.AllowDrop         = true;
     this.fgOrders.BorderStyle       = System.Windows.Forms.BorderStyle.None;
     this.fgOrders.ColumnsCount      = 1;
     this.fgOrders.FixedColumns      = 0;
     this.fgOrders.FixedRows         = 0;
     this.fgOrders.Location          = new System.Drawing.Point(8, 168);
     this.fgOrders.Name          = "fgOrders";
     this.fgOrders.RowsCount     = 1;
     this.fgOrders.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.fgOrders.Size          = new System.Drawing.Size(505, 265);
     this.fgOrders.TabIndex      = 8;
     this.fgOrders.DoubleClick  += new System.EventHandler(this.fgOrders_DoubleClick);
     //
     // sbStatusBar
     //
     this.sbStatusBar.AllowDrop        = true;
     this.sbStatusBar.BackColor        = System.Drawing.SystemColors.Control;
     this.sbStatusBar.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.sbStatusBar.Location         = new System.Drawing.Point(0, 471);
     this.sbStatusBar.Name             = "sbStatusBar";
     this.sbStatusBar.ShowItemToolTips = true;
     this.sbStatusBar.Size             = new System.Drawing.Size(523, 25);
     this.sbStatusBar.TabIndex         = 18;
     this.sbStatusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.sbStatusBar_Panels_Panel1 });
     //
     // sbStatusBar_Panels_Panel1
     //
     this.sbStatusBar_Panels_Panel1.BorderSides        = (System.Windows.Forms.ToolStripStatusLabelBorderSides)(System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom);
     this.sbStatusBar_Panels_Panel1.BorderStyle        = System.Windows.Forms.Border3DStyle.SunkenOuter;
     this.sbStatusBar_Panels_Panel1.DoubleClickEnabled = true;
     this.sbStatusBar_Panels_Panel1.Margin             = new System.Windows.Forms.Padding(0);
     this.sbStatusBar_Panels_Panel1.Size              = new System.Drawing.Size(523, 25);
     this.sbStatusBar_Panels_Panel1.Spring            = true;
     this.sbStatusBar_Panels_Panel1.TextAlign         = System.Drawing.ContentAlignment.MiddleLeft;
     this.sbStatusBar_Panels_Panel1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // cmdCancel
     //
     this.cmdCancel.AllowDrop               = true;
     this.cmdCancel.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdCancel.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdCancel.Location                = new System.Drawing.Point(328, 440);
     this.cmdCancel.Name                    = "cmdCancel";
     this.cmdCancel.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdCancel.Size                    = new System.Drawing.Size(89, 25);
     this.cmdCancel.TabIndex                = 11;
     this.cmdCancel.Text                    = "&Cancel";
     this.cmdCancel.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdCancel.UseVisualStyleBackColor = false;
     this.cmdCancel.Click                  += new System.EventHandler(this.cmdCancel_Click);
     //
     // cmdClose
     //
     this.cmdClose.AllowDrop               = true;
     this.cmdClose.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdClose.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdClose.Location                = new System.Drawing.Point(424, 440);
     this.cmdClose.Name                    = "cmdClose";
     this.cmdClose.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.Size                    = new System.Drawing.Size(89, 25);
     this.cmdClose.TabIndex                = 12;
     this.cmdClose.Text                    = "&Close";
     this.cmdClose.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdClose.UseVisualStyleBackColor = false;
     this.cmdClose.Click                  += new System.EventHandler(this.cmdClose_Click);
     //
     // Frame1
     //
     this.Frame1.AllowDrop = true;
     this.Frame1.BackColor = System.Drawing.SystemColors.Control;
     this.Frame1.Controls.Add(this.cmbStatus);
     this.Frame1.Controls.Add(this.chkTo);
     this.Frame1.Controls.Add(this.chkFrom);
     this.Frame1.Controls.Add(this.txtProductID);
     this.Frame1.Controls.Add(this.txtOrderID);
     this.Frame1.Controls.Add(this.txtContactLastName);
     this.Frame1.Controls.Add(this.txtContactName);
     this.Frame1.Controls.Add(this.cmdCustomers);
     this.Frame1.Controls.Add(this.txtCompanyName);
     this.Frame1.Controls.Add(this.dtFrom);
     this.Frame1.Controls.Add(this.dtTo);
     this.Frame1.Controls.Add(this.Label5);
     this.Frame1.Controls.Add(this.Label8);
     this.Frame1.Controls.Add(this.Label1);
     this.Frame1.Controls.Add(this.Label6);
     this.Frame1.Controls.Add(this.Label3);
     this.Frame1.Controls.Add(this.Label4);
     this.Frame1.Controls.Add(this.Label2);
     this.Frame1.Enabled     = true;
     this.Frame1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Frame1.Location    = new System.Drawing.Point(8, 8);
     this.Frame1.Name        = "Frame1";
     this.Frame1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Frame1.Size        = new System.Drawing.Size(505, 153);
     this.Frame1.TabIndex    = 13;
     this.Frame1.Text        = "Search customer";
     this.Frame1.Visible     = true;
     //
     // cmbStatus
     //
     this.cmbStatus.AllowDrop        = true;
     this.cmbStatus.BackColor        = System.Drawing.SystemColors.Window;
     this.cmbStatus.CausesValidation = true;
     this.cmbStatus.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbStatus.Enabled          = true;
     this.cmbStatus.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.cmbStatus.IntegralHeight   = true;
     this.cmbStatus.Location         = new System.Drawing.Point(336, 16);
     this.cmbStatus.Name             = "cmbStatus";
     this.cmbStatus.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmbStatus.Size             = new System.Drawing.Size(145, 21);
     this.cmbStatus.Sorted           = false;
     this.cmbStatus.TabIndex         = 1;
     this.cmbStatus.TabStop          = true;
     this.cmbStatus.Visible          = true;
     this.cmbStatus.Items.AddRange(new object[] { "All", "Requested", "Cancelled", "Approved" });
     this.cmbStatus.SelectedIndexChanged += new System.EventHandler(this.cmbStatus_SelectedIndexChanged);
     //
     // chkTo
     //
     this.chkTo.AllowDrop        = true;
     this.chkTo.Appearance       = System.Windows.Forms.Appearance.Normal;
     this.chkTo.BackColor        = System.Drawing.SystemColors.Control;
     this.chkTo.CausesValidation = true;
     this.chkTo.CheckAlign       = System.Drawing.ContentAlignment.MiddleLeft;
     this.chkTo.CheckState       = System.Windows.Forms.CheckState.Unchecked;
     this.chkTo.Enabled          = true;
     this.chkTo.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.chkTo.Location         = new System.Drawing.Point(336, 80);
     this.chkTo.Name             = "chkTo";
     this.chkTo.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.chkTo.Size             = new System.Drawing.Size(41, 17);
     this.chkTo.TabIndex         = 23;
     this.chkTo.TabStop          = false;
     this.chkTo.Text             = "To:";
     this.chkTo.TextAlign        = System.Drawing.ContentAlignment.MiddleLeft;
     this.chkTo.Visible          = true;
     //
     // chkFrom
     //
     this.chkFrom.AllowDrop        = true;
     this.chkFrom.Appearance       = System.Windows.Forms.Appearance.Normal;
     this.chkFrom.BackColor        = System.Drawing.SystemColors.Control;
     this.chkFrom.CausesValidation = true;
     this.chkFrom.CheckAlign       = System.Drawing.ContentAlignment.MiddleLeft;
     this.chkFrom.CheckState       = System.Windows.Forms.CheckState.Unchecked;
     this.chkFrom.Enabled          = true;
     this.chkFrom.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.chkFrom.Location         = new System.Drawing.Point(88, 80);
     this.chkFrom.Name             = "chkFrom";
     this.chkFrom.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.chkFrom.Size             = new System.Drawing.Size(47, 17);
     this.chkFrom.TabIndex         = 22;
     this.chkFrom.TabStop          = false;
     this.chkFrom.Text             = "From:";
     this.chkFrom.TextAlign        = System.Drawing.ContentAlignment.MiddleLeft;
     this.chkFrom.Visible          = true;
     //
     // txtProductID
     //
     this.txtProductID.AcceptsReturn = true;
     this.txtProductID.AllowDrop     = true;
     this.txtProductID.BackColor     = System.Drawing.SystemColors.Window;
     this.txtProductID.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtProductID.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtProductID.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtProductID.Location      = new System.Drawing.Point(336, 112);
     this.txtProductID.MaxLength     = 0;
     this.txtProductID.Name          = "txtProductID";
     this.txtProductID.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtProductID.Size          = new System.Drawing.Size(145, 20);
     this.txtProductID.TabIndex      = 7;
     this.txtProductID.TextChanged  += new System.EventHandler(this.txtProductID_TextChanged);
     //
     // txtOrderID
     //
     this.txtOrderID.AcceptsReturn = true;
     this.txtOrderID.AllowDrop     = true;
     this.txtOrderID.BackColor     = System.Drawing.SystemColors.Window;
     this.txtOrderID.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtOrderID.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtOrderID.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtOrderID.Location      = new System.Drawing.Point(88, 112);
     this.txtOrderID.MaxLength     = 0;
     this.txtOrderID.Name          = "txtOrderID";
     this.txtOrderID.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtOrderID.Size          = new System.Drawing.Size(145, 20);
     this.txtOrderID.TabIndex      = 6;
     this.txtOrderID.TextChanged  += new System.EventHandler(this.txtOrderID_TextChanged);
     //
     // txtContactLastName
     //
     this.txtContactLastName.AcceptsReturn = true;
     this.txtContactLastName.AllowDrop     = true;
     this.txtContactLastName.BackColor     = System.Drawing.SystemColors.Window;
     this.txtContactLastName.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtContactLastName.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtContactLastName.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtContactLastName.Location      = new System.Drawing.Point(336, 48);
     this.txtContactLastName.MaxLength     = 0;
     this.txtContactLastName.Name          = "txtContactLastName";
     this.txtContactLastName.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtContactLastName.Size          = new System.Drawing.Size(145, 20);
     this.txtContactLastName.TabIndex      = 3;
     this.txtContactLastName.TextChanged  += new System.EventHandler(this.txtContactLastName_TextChanged);
     //
     // txtContactName
     //
     this.txtContactName.AcceptsReturn = true;
     this.txtContactName.AllowDrop     = true;
     this.txtContactName.BackColor     = System.Drawing.SystemColors.Window;
     this.txtContactName.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtContactName.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtContactName.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtContactName.Location      = new System.Drawing.Point(88, 48);
     this.txtContactName.MaxLength     = 0;
     this.txtContactName.Name          = "txtContactName";
     this.txtContactName.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtContactName.Size          = new System.Drawing.Size(145, 20);
     this.txtContactName.TabIndex      = 2;
     this.txtContactName.TextChanged  += new System.EventHandler(this.txtContactName_TextChanged);
     //
     // cmdCustomers
     //
     this.cmdCustomers.AllowDrop               = true;
     this.cmdCustomers.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdCustomers.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdCustomers.Location                = new System.Drawing.Point(240, 16);
     this.cmdCustomers.Name                    = "cmdCustomers";
     this.cmdCustomers.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdCustomers.Size                    = new System.Drawing.Size(25, 21);
     this.cmdCustomers.TabIndex                = 14;
     this.cmdCustomers.TabStop                 = false;
     this.cmdCustomers.Text                    = "...";
     this.cmdCustomers.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdCustomers.UseVisualStyleBackColor = false;
     this.cmdCustomers.Click                  += new System.EventHandler(this.cmdCustomers_Click);
     //
     // txtCompanyName
     //
     this.txtCompanyName.AcceptsReturn = true;
     this.txtCompanyName.AllowDrop     = true;
     this.txtCompanyName.BackColor     = System.Drawing.SystemColors.Window;
     this.txtCompanyName.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtCompanyName.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtCompanyName.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtCompanyName.Location      = new System.Drawing.Point(88, 16);
     this.txtCompanyName.MaxLength     = 0;
     this.txtCompanyName.Name          = "txtCompanyName";
     this.txtCompanyName.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtCompanyName.Size          = new System.Drawing.Size(145, 20);
     this.txtCompanyName.TabIndex      = 0;
     this.txtCompanyName.TextChanged  += new System.EventHandler(this.txtCompanyName_TextChanged);
     //
     // dtFrom
     //
     this.dtFrom.AllowDrop     = true;
     this.dtFrom.Checked       = false;
     this.dtFrom.Format        = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtFrom.Location      = new System.Drawing.Point(136, 80);
     this.dtFrom.Name          = "dtFrom";
     this.dtFrom.Size          = new System.Drawing.Size(97, 20);
     this.dtFrom.TabIndex      = 4;
     this.dtFrom.ValueChanged += new System.EventHandler(this.dtFrom_ValueChanged);
     //
     // dtTo
     //
     this.dtTo.AllowDrop     = true;
     this.dtTo.Checked       = false;
     this.dtTo.Format        = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtTo.Location      = new System.Drawing.Point(384, 80);
     this.dtTo.Name          = "dtTo";
     this.dtTo.Size          = new System.Drawing.Size(97, 20);
     this.dtTo.TabIndex      = 5;
     this.dtTo.ValueChanged += new System.EventHandler(this.dtTo_ValueChanged);
     //
     // Label5
     //
     this.Label5.AllowDrop   = true;
     this.Label5.BackColor   = System.Drawing.SystemColors.Control;
     this.Label5.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label5.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label5.Location    = new System.Drawing.Point(288, 16);
     this.Label5.Name        = "Label5";
     this.Label5.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label5.Size        = new System.Drawing.Size(41, 17);
     this.Label5.TabIndex    = 24;
     this.Label5.Text        = "Status";
     //
     // Label8
     //
     this.Label8.AllowDrop   = true;
     this.Label8.BackColor   = System.Drawing.SystemColors.Control;
     this.Label8.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label8.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label8.Location    = new System.Drawing.Point(256, 112);
     this.Label8.Name        = "Label8";
     this.Label8.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label8.Size        = new System.Drawing.Size(73, 17);
     this.Label8.TabIndex    = 21;
     this.Label8.Text        = "Product";
     //
     // Label1
     //
     this.Label1.AllowDrop   = true;
     this.Label1.BackColor   = System.Drawing.SystemColors.Control;
     this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label1.Location    = new System.Drawing.Point(8, 112);
     this.Label1.Name        = "Label1";
     this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label1.Size        = new System.Drawing.Size(89, 17);
     this.Label1.TabIndex    = 20;
     this.Label1.Text        = "Order";
     //
     // Label6
     //
     this.Label6.AllowDrop   = true;
     this.Label6.BackColor   = System.Drawing.SystemColors.Control;
     this.Label6.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label6.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label6.Location    = new System.Drawing.Point(8, 80);
     this.Label6.Name        = "Label6";
     this.Label6.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label6.Size        = new System.Drawing.Size(65, 17);
     this.Label6.TabIndex    = 19;
     this.Label6.Text        = "Date range:";
     //
     // Label3
     //
     this.Label3.AllowDrop   = true;
     this.Label3.BackColor   = System.Drawing.SystemColors.Control;
     this.Label3.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label3.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label3.Location    = new System.Drawing.Point(256, 48);
     this.Label3.Name        = "Label3";
     this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label3.Size        = new System.Drawing.Size(65, 17);
     this.Label3.TabIndex    = 17;
     this.Label3.Text        = "Last Name";
     //
     // Label4
     //
     this.Label4.AllowDrop   = true;
     this.Label4.BackColor   = System.Drawing.SystemColors.Control;
     this.Label4.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label4.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label4.Location    = new System.Drawing.Point(8, 16);
     this.Label4.Name        = "Label4";
     this.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label4.Size        = new System.Drawing.Size(89, 17);
     this.Label4.TabIndex    = 16;
     this.Label4.Text        = "Company";
     //
     // Label2
     //
     this.Label2.AllowDrop   = true;
     this.Label2.BackColor   = System.Drawing.SystemColors.Control;
     this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label2.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label2.Location    = new System.Drawing.Point(8, 48);
     this.Label2.Name        = "Label2";
     this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label2.Size        = new System.Drawing.Size(89, 17);
     this.Label2.TabIndex    = 15;
     this.Label2.Text        = "First Name";
     //
     // frmRequestApproval
     //
     this.AllowDrop           = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6, 13);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll          = true;
     this.BackColor           = System.Drawing.SystemColors.Control;
     this.ClientSize          = new System.Drawing.Size(523, 496);
     this.Controls.Add(this.cmdApprove);
     this.Controls.Add(this.cmdInfo);
     this.Controls.Add(this.fgOrders);
     this.Controls.Add(this.sbStatusBar);
     this.Controls.Add(this.cmdCancel);
     this.Controls.Add(this.cmdClose);
     this.Controls.Add(this.Frame1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Location        = new System.Drawing.Point(3, 25);
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmRequestApproval";
     this.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.Manual;
     this.Text            = "Create Invoice";
     this.listBoxComboBoxHelper1.SetItemData(this.cmbStatus, new int[] { 0, 0, 0, 0 });
     this.Closed += new System.EventHandler(this.Form_Closed);
     ((System.ComponentModel.ISupportInitialize) this.listBoxComboBoxHelper1).EndInit();
     this.sbStatusBar.ResumeLayout(false);
     this.Frame1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#41
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.настройкаToolStripMenuItem               = new System.Windows.Forms.ToolStripMenuItem();
     this.фильтрыToolStripMenuItem                 = new System.Windows.Forms.ToolStripMenuItem();
     this.выбратьИсходнуюПапкуToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.повторноПрименитьФильтрToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.tsMenuUseML           = new System.Windows.Forms.ToolStripMenuItem();
     this.comboFilters          = new System.Windows.Forms.ToolStripComboBox();
     this.tbSearch              = new System.Windows.Forms.ToolStripTextBox();
     this.button1               = new System.Windows.Forms.Button();
     this.folderBrowserDialog1  = new System.Windows.Forms.FolderBrowserDialog();
     this.statusStrip1          = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.statInfo              = new System.Windows.Forms.ToolStripStatusLabel();
     this.contextMenuStrip1     = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.добавитьФайлВИсключениенеПеремещатьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.удалитьФайлИзИсключенияToolStripMenuItem             = new System.Windows.Forms.ToolStripMenuItem();
     this.отметитьВыбранныеToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.отметитьВсеToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.снятьВсеОтметкиToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.bindingSource2 = new System.Windows.Forms.BindingSource(this.components);
     this.checkBox1      = new System.Windows.Forms.CheckBox();
     this.tbLog          = new System.Windows.Forms.TextBox();
     this.dataGridView1  = new SortFaxes.UserDataGridView();
     this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.copyDataGridViewCheckBoxColumn          = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.fileNameDataGridViewTextBoxColumn       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.destinationDirDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.Score = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dateEventDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.menuStrip1.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.настройкаToolStripMenuItem,
         this.comboFilters,
         this.tbSearch
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Size     = new System.Drawing.Size(1193, 27);
     this.menuStrip1.TabIndex = 2;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // настройкаToolStripMenuItem
     //
     this.настройкаToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.фильтрыToolStripMenuItem,
         this.выбратьИсходнуюПапкуToolStripMenuItem,
         this.повторноПрименитьФильтрToolStripMenuItem,
         this.tsMenuUseML
     });
     this.настройкаToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.настройкаToolStripMenuItem.Name = "настройкаToolStripMenuItem";
     this.настройкаToolStripMenuItem.Size = new System.Drawing.Size(87, 23);
     this.настройкаToolStripMenuItem.Text = "Настройка";
     //
     // фильтрыToolStripMenuItem
     //
     this.фильтрыToolStripMenuItem.Name   = "фильтрыToolStripMenuItem";
     this.фильтрыToolStripMenuItem.Size   = new System.Drawing.Size(265, 22);
     this.фильтрыToolStripMenuItem.Text   = "Фильтры...";
     this.фильтрыToolStripMenuItem.Click += new System.EventHandler(this.ФильтрыToolStripMenuItemClick);
     //
     // выбратьИсходнуюПапкуToolStripMenuItem
     //
     this.выбратьИсходнуюПапкуToolStripMenuItem.Name   = "выбратьИсходнуюПапкуToolStripMenuItem";
     this.выбратьИсходнуюПапкуToolStripMenuItem.Size   = new System.Drawing.Size(265, 22);
     this.выбратьИсходнуюПапкуToolStripMenuItem.Text   = "Выбрать исходную папку...";
     this.выбратьИсходнуюПапкуToolStripMenuItem.Click += new System.EventHandler(this.ВыбратьИсходнуюПапкуToolStripMenuItemClick);
     //
     // повторноПрименитьФильтрToolStripMenuItem
     //
     this.повторноПрименитьФильтрToolStripMenuItem.Name   = "повторноПрименитьФильтрToolStripMenuItem";
     this.повторноПрименитьФильтрToolStripMenuItem.Size   = new System.Drawing.Size(265, 22);
     this.повторноПрименитьФильтрToolStripMenuItem.Text   = "Повторно применить фильтр";
     this.повторноПрименитьФильтрToolStripMenuItem.Click += new System.EventHandler(this.ПовторноПрименитьФильтрToolStripMenuItemClick);
     //
     // tsMenuUseML
     //
     this.tsMenuUseML.Checked      = true;
     this.tsMenuUseML.CheckOnClick = true;
     this.tsMenuUseML.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.tsMenuUseML.Name         = "tsMenuUseML";
     this.tsMenuUseML.Size         = new System.Drawing.Size(265, 22);
     this.tsMenuUseML.Text         = "Использовать нейросеть";
     this.tsMenuUseML.Click       += new System.EventHandler(this.tsMenuUseML_Click);
     //
     // comboFilters
     //
     this.comboFilters.Name   = "comboFilters";
     this.comboFilters.Size   = new System.Drawing.Size(121, 23);
     this.comboFilters.Click += new System.EventHandler(this.comboFilters_Click);
     //
     // tbSearch
     //
     this.tbSearch.BackColor = System.Drawing.Color.Khaki;
     this.tbSearch.Font      = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.tbSearch.ForeColor = System.Drawing.Color.Crimson;
     this.tbSearch.Name      = "tbSearch";
     this.tbSearch.Size      = new System.Drawing.Size(200, 23);
     //
     // button1
     //
     this.button1.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
     this.button1.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.button1.FlatAppearance.BorderColor = System.Drawing.Color.Black;
     this.button1.FlatAppearance.BorderSize  = 2;
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.button1.ForeColor = System.Drawing.SystemColors.WindowText;
     this.button1.Location  = new System.Drawing.Point(0, 677);
     this.button1.Name      = "button1";
     this.button1.Size      = new System.Drawing.Size(333, 31);
     this.button1.TabIndex  = 4;
     this.button1.Text      = "Переместить выбранные файлы";
     this.button1.UseVisualStyleBackColor = false;
     this.button1.Click += new System.EventHandler(this.Button1Click);
     //
     // folderBrowserDialog1
     //
     this.folderBrowserDialog1.RootFolder          = System.Environment.SpecialFolder.DesktopDirectory;
     this.folderBrowserDialog1.ShowNewFolderButton = false;
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripStatusLabel1,
         this.statInfo
     });
     this.statusStrip1.Location = new System.Drawing.Point(0, 711);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Size     = new System.Drawing.Size(1193, 22);
     this.statusStrip1.TabIndex = 5;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name      = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size      = new System.Drawing.Size(38, 17);
     this.toolStripStatusLabel1.Text      = "status";
     this.toolStripStatusLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // statInfo
     //
     this.statInfo.AutoToolTip  = true;
     this.statInfo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.statInfo.ForeColor    = System.Drawing.Color.MidnightBlue;
     this.statInfo.Name         = "statInfo";
     this.statInfo.RightToLeft  = System.Windows.Forms.RightToLeft.No;
     this.statInfo.Size         = new System.Drawing.Size(10, 17);
     this.statInfo.Text         = ".";
     this.statInfo.TextAlign    = System.Drawing.ContentAlignment.MiddleRight;
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.добавитьФайлВИсключениенеПеремещатьToolStripMenuItem,
         this.удалитьФайлИзИсключенияToolStripMenuItem,
         this.отметитьВыбранныеToolStripMenuItem,
         this.отметитьВсеToolStripMenuItem,
         this.снятьВсеОтметкиToolStripMenuItem
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(336, 114);
     //
     // добавитьФайлВИсключениенеПеремещатьToolStripMenuItem
     //
     this.добавитьФайлВИсключениенеПеремещатьToolStripMenuItem.Name   = "добавитьФайлВИсключениенеПеремещатьToolStripMenuItem";
     this.добавитьФайлВИсключениенеПеремещатьToolStripMenuItem.Size   = new System.Drawing.Size(335, 22);
     this.добавитьФайлВИсключениенеПеремещатьToolStripMenuItem.Text   = "Добавить файл в исключение (не перемещать)";
     this.добавитьФайлВИсключениенеПеремещатьToolStripMenuItem.Click += new System.EventHandler(this.ДобавитьФайлВИсключениенеПеремещатьToolStripMenuItemClick);
     //
     // удалитьФайлИзИсключенияToolStripMenuItem
     //
     this.удалитьФайлИзИсключенияToolStripMenuItem.Name   = "удалитьФайлИзИсключенияToolStripMenuItem";
     this.удалитьФайлИзИсключенияToolStripMenuItem.Size   = new System.Drawing.Size(335, 22);
     this.удалитьФайлИзИсключенияToolStripMenuItem.Text   = "Удалить файл из исключения";
     this.удалитьФайлИзИсключенияToolStripMenuItem.Click += new System.EventHandler(this.УдалитьФайлИзИсключенияToolStripMenuItemClick);
     //
     // отметитьВыбранныеToolStripMenuItem
     //
     this.отметитьВыбранныеToolStripMenuItem.BackColor = System.Drawing.Color.MediumAquamarine;
     this.отметитьВыбранныеToolStripMenuItem.Name      = "отметитьВыбранныеToolStripMenuItem";
     this.отметитьВыбранныеToolStripMenuItem.Size      = new System.Drawing.Size(335, 22);
     this.отметитьВыбранныеToolStripMenuItem.Text      = "Отметить выбранные";
     this.отметитьВыбранныеToolStripMenuItem.Click    += new System.EventHandler(this.отметитьВыбранныеToolStripMenuItem_Click);
     //
     // отметитьВсеToolStripMenuItem
     //
     this.отметитьВсеToolStripMenuItem.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
     this.отметитьВсеToolStripMenuItem.Name      = "отметитьВсеToolStripMenuItem";
     this.отметитьВсеToolStripMenuItem.Size      = new System.Drawing.Size(335, 22);
     this.отметитьВсеToolStripMenuItem.Text      = "Отметить все";
     this.отметитьВсеToolStripMenuItem.Click    += new System.EventHandler(this.отметитьВсеToolStripMenuItem_Click);
     //
     // снятьВсеОтметкиToolStripMenuItem
     //
     this.снятьВсеОтметкиToolStripMenuItem.BackColor = System.Drawing.SystemColors.ControlLight;
     this.снятьВсеОтметкиToolStripMenuItem.Name      = "снятьВсеОтметкиToolStripMenuItem";
     this.снятьВсеОтметкиToolStripMenuItem.Size      = new System.Drawing.Size(335, 22);
     this.снятьВсеОтметкиToolStripMenuItem.Text      = "Снять все отметки";
     this.снятьВсеОтметкиToolStripMenuItem.Click    += new System.EventHandler(this.снятьВсеОтметкиToolStripMenuItem_Click);
     //
     // checkBox1
     //
     this.checkBox1.BackColor = System.Drawing.Color.LightCyan;
     this.checkBox1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.checkBox1.ForeColor = System.Drawing.Color.Black;
     this.checkBox1.Location  = new System.Drawing.Point(446, 3);
     this.checkBox1.Name      = "checkBox1";
     this.checkBox1.Size      = new System.Drawing.Size(201, 24);
     this.checkBox1.TabIndex  = 6;
     this.checkBox1.Text      = "Скрыть неотмеченные";
     this.checkBox1.UseVisualStyleBackColor = false;
     this.checkBox1.CheckedChanged         += new System.EventHandler(this.CheckBox1CheckedChanged);
     //
     // tbLog
     //
     this.tbLog.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.tbLog.Font       = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.tbLog.Location   = new System.Drawing.Point(540, 683);
     this.tbLog.Multiline  = true;
     this.tbLog.Name       = "tbLog";
     this.tbLog.ReadOnly   = true;
     this.tbLog.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.tbLog.Size       = new System.Drawing.Size(653, 48);
     this.tbLog.TabIndex   = 7;
     //
     // dataGridView1
     //
     this.dataGridView1.AllowUserToAddRows    = false;
     this.dataGridView1.AllowUserToDeleteRows = false;
     this.dataGridView1.AllowUserToResizeRows = false;
     this.dataGridView1.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.dataGridView1.AutoGenerateColumns         = false;
     this.dataGridView1.CheckedCount                = 0;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.copyDataGridViewCheckBoxColumn,
         this.fileNameDataGridViewTextBoxColumn,
         this.destinationDirDataGridViewTextBoxColumn,
         this.Score,
         this.dateEventDataGridViewTextBoxColumn
     });
     this.dataGridView1.ContextMenuStrip  = this.contextMenuStrip1;
     this.dataGridView1.DataSource        = this.bindingSource1;
     this.dataGridView1.EditMode          = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
     this.dataGridView1.Location          = new System.Drawing.Point(0, 27);
     this.dataGridView1.Name              = "dataGridView1";
     this.dataGridView1.RowHeadersVisible = false;
     this.dataGridView1.SelectionMode     = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridView1.ShowCellErrors    = false;
     this.dataGridView1.ShowEditingIcon   = false;
     this.dataGridView1.ShowRowErrors     = false;
     this.dataGridView1.Size              = new System.Drawing.Size(1193, 652);
     this.dataGridView1.TabIndex          = 3;
     //
     // bindingSource1
     //
     this.bindingSource1.AllowNew   = false;
     this.bindingSource1.DataSource = typeof(SortFaxes.QFile);
     //
     // copyDataGridViewCheckBoxColumn
     //
     this.copyDataGridViewCheckBoxColumn.DataPropertyName = "Copy";
     this.copyDataGridViewCheckBoxColumn.HeaderText       = "Переместить";
     this.copyDataGridViewCheckBoxColumn.Name             = "copyDataGridViewCheckBoxColumn";
     //
     // fileNameDataGridViewTextBoxColumn
     //
     this.fileNameDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.fileNameDataGridViewTextBoxColumn.DataPropertyName = "FileName";
     this.fileNameDataGridViewTextBoxColumn.HeaderText       = "Имя файла";
     this.fileNameDataGridViewTextBoxColumn.MinimumWidth     = 250;
     this.fileNameDataGridViewTextBoxColumn.Name             = "fileNameDataGridViewTextBoxColumn";
     this.fileNameDataGridViewTextBoxColumn.ReadOnly         = true;
     this.fileNameDataGridViewTextBoxColumn.Width            = 250;
     //
     // destinationDirDataGridViewTextBoxColumn
     //
     this.destinationDirDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.destinationDirDataGridViewTextBoxColumn.DataPropertyName = "DestinationDir";
     this.destinationDirDataGridViewTextBoxColumn.DropDownWidth    = 20;
     this.destinationDirDataGridViewTextBoxColumn.HeaderText       = "Куда";
     this.destinationDirDataGridViewTextBoxColumn.MaxDropDownItems = 12;
     this.destinationDirDataGridViewTextBoxColumn.Name             = "destinationDirDataGridViewTextBoxColumn";
     this.destinationDirDataGridViewTextBoxColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
     this.destinationDirDataGridViewTextBoxColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.destinationDirDataGridViewTextBoxColumn.Width            = 56;
     //
     // Score
     //
     this.Score.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.Score.DataPropertyName = "Score";
     this.Score.HeaderText       = "%";
     this.Score.Name             = "Score";
     this.Score.ToolTipText      = "Вероятность угадывания папки для файла";
     this.Score.Width            = 40;
     //
     // dateEventDataGridViewTextBoxColumn
     //
     this.dateEventDataGridViewTextBoxColumn.DataPropertyName = "DateEvent";
     this.dateEventDataGridViewTextBoxColumn.HeaderText       = "Дата события";
     this.dateEventDataGridViewTextBoxColumn.Name             = "dateEventDataGridViewTextBoxColumn";
     this.dateEventDataGridViewTextBoxColumn.ReadOnly         = true;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1193, 733);
     this.Controls.Add(this.tbLog);
     this.Controls.Add(this.checkBox1);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.dataGridView1);
     this.Controls.Add(this.menuStrip1);
     this.MainMenuStrip     = this.menuStrip1;
     this.Name              = "MainForm";
     this.RightToLeftLayout = true;
     this.Text              = "SortFaxes";
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.panelMappings                   = new System.Windows.Forms.FlowLayoutPanel();
     this.buttonAddAxis                   = new System.Windows.Forms.Button();
     this.buttonAddButton                 = new System.Windows.Forms.Button();
     this.comboPorts                      = new System.Windows.Forms.ComboBox();
     this.label1                          = new System.Windows.Forms.Label();
     this.buttonConnect                   = new System.Windows.Forms.Button();
     this.buttonPortsRefresh              = new System.Windows.Forms.Button();
     this.backgroundWorker                = new System.ComponentModel.BackgroundWorker();
     this.comboJoysticks                  = new System.Windows.Forms.ComboBox();
     this.label3                          = new System.Windows.Forms.Label();
     this.comboProfiles                   = new System.Windows.Forms.ComboBox();
     this.buttonLoadProfile               = new System.Windows.Forms.Button();
     this.buttonSaveProfile               = new System.Windows.Forms.Button();
     this.buttonDeleteProfile             = new System.Windows.Forms.Button();
     this.label4                          = new System.Windows.Forms.Label();
     this.label5                          = new System.Windows.Forms.Label();
     this.statusStrip1                    = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel            = new System.Windows.Forms.ToolStripStatusLabel();
     this.label6                          = new System.Windows.Forms.Label();
     this.comboProtocol                   = new System.Windows.Forms.ComboBox();
     this.buttonBitmappedButton           = new System.Windows.Forms.Button();
     this.buttonPortSetup                 = new System.Windows.Forms.Button();
     this.buttonProtocolSetup             = new System.Windows.Forms.Button();
     this.buttonNewProfile                = new System.Windows.Forms.Button();
     this.menuStrip1                      = new System.Windows.Forms.MenuStrip();
     this.programToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.channelMonitorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1             = new System.Windows.Forms.ToolStripSeparator();
     this.menuProfileOptions              = new System.Windows.Forms.ToolStripMenuItem();
     this.menuGlobalOptions               = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2             = new System.Windows.Forms.ToolStripSeparator();
     this.menuImportCfg                   = new System.Windows.Forms.ToolStripMenuItem();
     this.menuExportCfg                   = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3             = new System.Windows.Forms.ToolStripSeparator();
     this.exitToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.scriptingToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.editToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.outputToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.manualToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.menuAbout                       = new System.Windows.Forms.ToolStripMenuItem();
     this.label2                          = new System.Windows.Forms.Label();
     this.buttonScript                    = new System.Windows.Forms.Button();
     this.statusStrip1.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // panelMappings
     //
     this.panelMappings.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.panelMappings.AutoScroll    = true;
     this.panelMappings.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
     this.panelMappings.Location      = new System.Drawing.Point(12, 135);
     this.panelMappings.Name          = "panelMappings";
     this.panelMappings.Size          = new System.Drawing.Size(703, 378);
     this.panelMappings.TabIndex      = 100;
     this.panelMappings.WrapContents  = false;
     this.panelMappings.MouseEnter   += new System.EventHandler(this.FlowLayoutPanel1MouseEnter);
     //
     // buttonAddAxis
     //
     this.buttonAddAxis.Location = new System.Drawing.Point(12, 106);
     this.buttonAddAxis.Name     = "buttonAddAxis";
     this.buttonAddAxis.Size     = new System.Drawing.Size(66, 23);
     this.buttonAddAxis.TabIndex = 12;
     this.buttonAddAxis.Text     = "Add Axis";
     this.buttonAddAxis.UseVisualStyleBackColor = true;
     this.buttonAddAxis.Click += new System.EventHandler(this.ButtonAddAxisClick);
     //
     // buttonAddButton
     //
     this.buttonAddButton.Location = new System.Drawing.Point(84, 106);
     this.buttonAddButton.Name     = "buttonAddButton";
     this.buttonAddButton.Size     = new System.Drawing.Size(75, 23);
     this.buttonAddButton.TabIndex = 13;
     this.buttonAddButton.Text     = "Add Button";
     this.buttonAddButton.UseVisualStyleBackColor = true;
     this.buttonAddButton.Click += new System.EventHandler(this.ButtonAddButtonClick);
     //
     // comboPorts
     //
     this.comboPorts.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboPorts.FormattingEnabled = true;
     this.comboPorts.Location          = new System.Drawing.Point(566, 36);
     this.comboPorts.Name     = "comboPorts";
     this.comboPorts.Size     = new System.Drawing.Size(67, 21);
     this.comboPorts.TabIndex = 8;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(525, 36);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(35, 21);
     this.label1.TabIndex  = 8;
     this.label1.Text      = "Port:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // buttonConnect
     //
     this.buttonConnect.Location = new System.Drawing.Point(640, 35);
     this.buttonConnect.Name     = "buttonConnect";
     this.buttonConnect.Size     = new System.Drawing.Size(75, 23);
     this.buttonConnect.TabIndex = 10;
     this.buttonConnect.Text     = "Connect";
     this.buttonConnect.UseVisualStyleBackColor = true;
     this.buttonConnect.Click += new System.EventHandler(this.ButtonConnectClick);
     //
     // buttonPortsRefresh
     //
     this.buttonPortsRefresh.Location = new System.Drawing.Point(640, 64);
     this.buttonPortsRefresh.Name     = "buttonPortsRefresh";
     this.buttonPortsRefresh.Size     = new System.Drawing.Size(75, 23);
     this.buttonPortsRefresh.TabIndex = 11;
     this.buttonPortsRefresh.Text     = "Refresh";
     this.buttonPortsRefresh.UseVisualStyleBackColor = true;
     this.buttonPortsRefresh.Click += new System.EventHandler(this.ButtonPortsRefreshClick);
     //
     // backgroundWorker
     //
     this.backgroundWorker.WorkerReportsProgress      = true;
     this.backgroundWorker.WorkerSupportsCancellation = true;
     this.backgroundWorker.DoWork             += new System.ComponentModel.DoWorkEventHandler(this.BackgroundWorkerDoWork);
     this.backgroundWorker.ProgressChanged    += new System.ComponentModel.ProgressChangedEventHandler(this.BackgroundWorkerProgressChanged);
     this.backgroundWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.BackgroundWorkerRunWorkerCompleted);
     //
     // comboJoysticks
     //
     this.comboJoysticks.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboJoysticks.FormattingEnabled = true;
     this.comboJoysticks.Location          = new System.Drawing.Point(360, 37);
     this.comboJoysticks.Name     = "comboJoysticks";
     this.comboJoysticks.Size     = new System.Drawing.Size(72, 21);
     this.comboJoysticks.TabIndex = 5;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(266, 37);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(88, 21);
     this.label3.TabIndex  = 13;
     this.label3.Text      = "Virtual Joystick:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // comboProfiles
     //
     this.comboProfiles.FormattingEnabled = true;
     this.comboProfiles.Location          = new System.Drawing.Point(60, 34);
     this.comboProfiles.Name     = "comboProfiles";
     this.comboProfiles.Size     = new System.Drawing.Size(144, 21);
     this.comboProfiles.TabIndex = 0;
     //
     // buttonLoadProfile
     //
     this.buttonLoadProfile.Location = new System.Drawing.Point(60, 64);
     this.buttonLoadProfile.Name     = "buttonLoadProfile";
     this.buttonLoadProfile.Size     = new System.Drawing.Size(40, 20);
     this.buttonLoadProfile.TabIndex = 2;
     this.buttonLoadProfile.Text     = "Load";
     this.buttonLoadProfile.UseVisualStyleBackColor = true;
     this.buttonLoadProfile.Click += new System.EventHandler(this.ButtonLoadProfileClick);
     //
     // buttonSaveProfile
     //
     this.buttonSaveProfile.Location = new System.Drawing.Point(106, 64);
     this.buttonSaveProfile.Name     = "buttonSaveProfile";
     this.buttonSaveProfile.Size     = new System.Drawing.Size(40, 20);
     this.buttonSaveProfile.TabIndex = 3;
     this.buttonSaveProfile.Text     = "Save";
     this.buttonSaveProfile.UseVisualStyleBackColor = true;
     this.buttonSaveProfile.Click += new System.EventHandler(this.ButtonSaveProfileClick);
     //
     // buttonDeleteProfile
     //
     this.buttonDeleteProfile.Location = new System.Drawing.Point(152, 64);
     this.buttonDeleteProfile.Name     = "buttonDeleteProfile";
     this.buttonDeleteProfile.Size     = new System.Drawing.Size(49, 20);
     this.buttonDeleteProfile.TabIndex = 4;
     this.buttonDeleteProfile.Text     = "Delete";
     this.buttonDeleteProfile.UseVisualStyleBackColor = true;
     this.buttonDeleteProfile.Click += new System.EventHandler(this.ButtonDeleteProfileClick);
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(13, 34);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(41, 21);
     this.label4.TabIndex  = 18;
     this.label4.Text      = "Profile:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label5
     //
     this.label5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.label5.Location    = new System.Drawing.Point(0, 93);
     this.label5.Name        = "label5";
     this.label5.Size        = new System.Drawing.Size(730, 2);
     this.label5.TabIndex    = 19;
     this.label5.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripStatusLabel
     });
     this.statusStrip1.Location   = new System.Drawing.Point(0, 527);
     this.statusStrip1.Name       = "statusStrip1";
     this.statusStrip1.Size       = new System.Drawing.Size(730, 22);
     this.statusStrip1.SizingGrip = false;
     this.statusStrip1.TabIndex   = 20;
     this.statusStrip1.Text       = "statusStrip1";
     //
     // toolStripStatusLabel
     //
     this.toolStripStatusLabel.Name = "toolStripStatusLabel";
     this.toolStripStatusLabel.Size = new System.Drawing.Size(112, 17);
     this.toolStripStatusLabel.Text = "toolStripStatusLabel";
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(266, 63);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(78, 21);
     this.label6.TabIndex  = 21;
     this.label6.Text      = "Protocol:";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // comboProtocol
     //
     this.comboProtocol.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboProtocol.FormattingEnabled = true;
     this.comboProtocol.Items.AddRange(new object[] {
         "IBUS",
         "KISS",
         "MultiWii",
         "SBUS",
         "Dummy"
     });
     this.comboProtocol.Location              = new System.Drawing.Point(360, 64);
     this.comboProtocol.Name                  = "comboProtocol";
     this.comboProtocol.Size                  = new System.Drawing.Size(72, 21);
     this.comboProtocol.TabIndex              = 6;
     this.comboProtocol.SelectedIndexChanged += new System.EventHandler(this.ComboProtocolSelectedIndexChanged);
     //
     // buttonBitmappedButton
     //
     this.buttonBitmappedButton.Location = new System.Drawing.Point(166, 106);
     this.buttonBitmappedButton.Name     = "buttonBitmappedButton";
     this.buttonBitmappedButton.Size     = new System.Drawing.Size(133, 23);
     this.buttonBitmappedButton.TabIndex = 14;
     this.buttonBitmappedButton.Text     = "Add Bit-mapped Button";
     this.buttonBitmappedButton.UseVisualStyleBackColor = true;
     this.buttonBitmappedButton.Click += new System.EventHandler(this.ButtonBitmappedButtonClick);
     //
     // buttonPortSetup
     //
     this.buttonPortSetup.Location = new System.Drawing.Point(566, 64);
     this.buttonPortSetup.Name     = "buttonPortSetup";
     this.buttonPortSetup.Size     = new System.Drawing.Size(68, 23);
     this.buttonPortSetup.TabIndex = 9;
     this.buttonPortSetup.Text     = "Port Setup";
     this.buttonPortSetup.UseVisualStyleBackColor = true;
     this.buttonPortSetup.Click += new System.EventHandler(this.ButtonPortSetupClick);
     //
     // buttonProtocolSetup
     //
     this.buttonProtocolSetup.Location = new System.Drawing.Point(439, 63);
     this.buttonProtocolSetup.Name     = "buttonProtocolSetup";
     this.buttonProtocolSetup.Size     = new System.Drawing.Size(46, 23);
     this.buttonProtocolSetup.TabIndex = 7;
     this.buttonProtocolSetup.Text     = "Setup";
     this.buttonProtocolSetup.UseVisualStyleBackColor = true;
     this.buttonProtocolSetup.Click += new System.EventHandler(this.ButtonProtocolSetupClick);
     //
     // buttonNewProfile
     //
     this.buttonNewProfile.Location = new System.Drawing.Point(13, 64);
     this.buttonNewProfile.Name     = "buttonNewProfile";
     this.buttonNewProfile.Size     = new System.Drawing.Size(41, 20);
     this.buttonNewProfile.TabIndex = 1;
     this.buttonNewProfile.Text     = "New";
     this.buttonNewProfile.UseVisualStyleBackColor = true;
     this.buttonNewProfile.Click += new System.EventHandler(this.ButtonNewProfileClick);
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.programToolStripMenuItem,
         this.scriptingToolStripMenuItem,
         this.helpToolStripMenuItem
     });
     this.menuStrip1.LayoutStyle   = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.menuStrip1.Location      = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name          = "menuStrip1";
     this.menuStrip1.Size          = new System.Drawing.Size(730, 24);
     this.menuStrip1.TabIndex      = 22;
     this.menuStrip1.Text          = "menuMain";
     this.menuStrip1.MenuActivate += new System.EventHandler(this.MenuStrip1MenuActivate);
     //
     // programToolStripMenuItem
     //
     this.programToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.channelMonitorToolStripMenuItem,
         this.toolStripSeparator1,
         this.menuProfileOptions,
         this.menuGlobalOptions,
         this.toolStripSeparator2,
         this.menuImportCfg,
         this.menuExportCfg,
         this.toolStripSeparator3,
         this.exitToolStripMenuItem
     });
     this.programToolStripMenuItem.Name = "programToolStripMenuItem";
     this.programToolStripMenuItem.Size = new System.Drawing.Size(65, 20);
     this.programToolStripMenuItem.Text = "&Program";
     //
     // channelMonitorToolStripMenuItem
     //
     this.channelMonitorToolStripMenuItem.Name   = "channelMonitorToolStripMenuItem";
     this.channelMonitorToolStripMenuItem.Size   = new System.Drawing.Size(187, 22);
     this.channelMonitorToolStripMenuItem.Text   = "Channel &Monitor";
     this.channelMonitorToolStripMenuItem.Click += new System.EventHandler(this.ChannelMonitorMenuClick);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(184, 6);
     //
     // menuProfileOptions
     //
     this.menuProfileOptions.Name   = "menuProfileOptions";
     this.menuProfileOptions.Size   = new System.Drawing.Size(187, 22);
     this.menuProfileOptions.Text   = "&Profile Options";
     this.menuProfileOptions.Click += new System.EventHandler(this.MenuProfileOptionsClick);
     //
     // menuGlobalOptions
     //
     this.menuGlobalOptions.Name   = "menuGlobalOptions";
     this.menuGlobalOptions.Size   = new System.Drawing.Size(187, 22);
     this.menuGlobalOptions.Text   = "&Global Options";
     this.menuGlobalOptions.Click += new System.EventHandler(this.OptionsMenuClick);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(184, 6);
     //
     // menuImportCfg
     //
     this.menuImportCfg.Name   = "menuImportCfg";
     this.menuImportCfg.Size   = new System.Drawing.Size(187, 22);
     this.menuImportCfg.Text   = "&Import Configuration";
     this.menuImportCfg.Click += new System.EventHandler(this.MenuImportCfgClick);
     //
     // menuExportCfg
     //
     this.menuExportCfg.Name   = "menuExportCfg";
     this.menuExportCfg.Size   = new System.Drawing.Size(187, 22);
     this.menuExportCfg.Text   = "&Export Configuration";
     this.menuExportCfg.Click += new System.EventHandler(this.MenuExportCfgClick);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(184, 6);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name   = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size   = new System.Drawing.Size(187, 22);
     this.exitToolStripMenuItem.Text   = "E&xit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.ExitMenuClick);
     //
     // scriptingToolStripMenuItem
     //
     this.scriptingToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.editToolStripMenuItem,
         this.outputToolStripMenuItem
     });
     this.scriptingToolStripMenuItem.Name = "scriptingToolStripMenuItem";
     this.scriptingToolStripMenuItem.Size = new System.Drawing.Size(49, 20);
     this.scriptingToolStripMenuItem.Text = "&Script";
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.Name   = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size   = new System.Drawing.Size(112, 22);
     this.editToolStripMenuItem.Text   = "&Edit";
     this.editToolStripMenuItem.Click += new System.EventHandler(this.ScriptEditMenuClick);
     //
     // outputToolStripMenuItem
     //
     this.outputToolStripMenuItem.Name   = "outputToolStripMenuItem";
     this.outputToolStripMenuItem.Size   = new System.Drawing.Size(112, 22);
     this.outputToolStripMenuItem.Text   = "&Output";
     this.outputToolStripMenuItem.Click += new System.EventHandler(this.ScriptOutputMenuClick);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.manualToolStripMenuItem,
         this.menuAbout
     });
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "&Help";
     //
     // manualToolStripMenuItem
     //
     this.manualToolStripMenuItem.Name   = "manualToolStripMenuItem";
     this.manualToolStripMenuItem.Size   = new System.Drawing.Size(114, 22);
     this.manualToolStripMenuItem.Text   = "&Manual";
     this.manualToolStripMenuItem.Click += new System.EventHandler(this.ManualMenuClick);
     //
     // menuAbout
     //
     this.menuAbout.Name   = "menuAbout";
     this.menuAbout.Size   = new System.Drawing.Size(114, 22);
     this.menuAbout.Text   = "&About";
     this.menuAbout.Click += new System.EventHandler(this.MenuAboutClick);
     //
     // label2
     //
     this.label2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.label2.Location    = new System.Drawing.Point(0, 22);
     this.label2.Name        = "label2";
     this.label2.Size        = new System.Drawing.Size(730, 2);
     this.label2.TabIndex    = 23;
     this.label2.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // buttonScript
     //
     this.buttonScript.Location = new System.Drawing.Point(306, 106);
     this.buttonScript.Name     = "buttonScript";
     this.buttonScript.Size     = new System.Drawing.Size(75, 23);
     this.buttonScript.TabIndex = 15;
     this.buttonScript.Text     = "Edit Script";
     this.buttonScript.UseVisualStyleBackColor = true;
     this.buttonScript.Click += new System.EventHandler(this.ScriptEditMenuClick);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(730, 549);
     this.Controls.Add(this.buttonScript);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.buttonNewProfile);
     this.Controls.Add(this.buttonProtocolSetup);
     this.Controls.Add(this.buttonPortSetup);
     this.Controls.Add(this.buttonBitmappedButton);
     this.Controls.Add(this.comboProtocol);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.menuStrip1);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.buttonDeleteProfile);
     this.Controls.Add(this.buttonSaveProfile);
     this.Controls.Add(this.buttonLoadProfile);
     this.Controls.Add(this.comboProfiles);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.comboJoysticks);
     this.Controls.Add(this.buttonPortsRefresh);
     this.Controls.Add(this.buttonConnect);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.comboPorts);
     this.Controls.Add(this.buttonAddButton);
     this.Controls.Add(this.buttonAddAxis);
     this.Controls.Add(this.panelMappings);
     this.Icon          = global::vJoySerialFeeder.Resources.Joystick_icon;
     this.MainMenuStrip = this.menuStrip1;
     this.Name          = "MainForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "vJoySerialFeeder";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.MainFormFormClosing);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(XMLFileViewerWindow));
     this.kryptonPanel1                 = new Krypton.Toolkit.KryptonPanel();
     this.menuStrip1                    = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.newToolStripMenuItem          = new System.Windows.Forms.ToolStripMenuItem();
     this.openToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator            = new System.Windows.Forms.ToolStripSeparator();
     this.saveToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.saveAsToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1           = new System.Windows.Forms.ToolStripSeparator();
     this.printToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.printPreviewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2           = new System.Windows.Forms.ToolStripSeparator();
     this.exitToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.editToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.undoToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.redoToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3           = new System.Windows.Forms.ToolStripSeparator();
     this.cutToolStripMenuItem          = new System.Windows.Forms.ToolStripMenuItem();
     this.copyToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4           = new System.Windows.Forms.ToolStripSeparator();
     this.selectAllToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.toolsToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.customizeToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.optionsToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.contentsToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.indexToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.searchToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator5           = new System.Windows.Forms.ToolStripSeparator();
     this.aboutToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.kryptonPanel2                 = new Krypton.Toolkit.KryptonPanel();
     this.statusStrip1                  = new System.Windows.Forms.StatusStrip();
     this.kryptonPanel3                 = new Krypton.Toolkit.KryptonPanel();
     this.seEdit = new EasyScintilla.SimpleEditor();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.ksZoomLevelSlider     = new Krypton.Toolkit.Suite.Extended.Tool.Strip.Items.KryptonSlider();
     this.tsslZoomLevel         = new System.Windows.Forms.ToolStripStatusLabel();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel3)).BeginInit();
     this.kryptonPanel3.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.menuStrip1);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(1103, 24);
     this.kryptonPanel1.TabIndex = 0;
     //
     // menuStrip1
     //
     this.menuStrip1.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.fileToolStripMenuItem,
         this.editToolStripMenuItem,
         this.toolsToolStripMenuItem,
         this.helpToolStripMenuItem
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Size     = new System.Drawing.Size(1103, 24);
     this.menuStrip1.TabIndex = 0;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.newToolStripMenuItem,
         this.openToolStripMenuItem,
         this.toolStripSeparator,
         this.saveToolStripMenuItem,
         this.saveAsToolStripMenuItem,
         this.toolStripSeparator1,
         this.printToolStripMenuItem,
         this.printPreviewToolStripMenuItem,
         this.toolStripSeparator2,
         this.exitToolStripMenuItem
     });
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "&File";
     //
     // newToolStripMenuItem
     //
     this.newToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("newToolStripMenuItem.Image")));
     this.newToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.newToolStripMenuItem.Name         = "newToolStripMenuItem";
     this.newToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
     this.newToolStripMenuItem.Size         = new System.Drawing.Size(180, 22);
     this.newToolStripMenuItem.Text         = "&New";
     //
     // openToolStripMenuItem
     //
     this.openToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripMenuItem.Image")));
     this.openToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.openToolStripMenuItem.Name         = "openToolStripMenuItem";
     this.openToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
     this.openToolStripMenuItem.Size         = new System.Drawing.Size(180, 22);
     this.openToolStripMenuItem.Text         = "&Open";
     //
     // toolStripSeparator
     //
     this.toolStripSeparator.Name = "toolStripSeparator";
     this.toolStripSeparator.Size = new System.Drawing.Size(177, 6);
     //
     // saveToolStripMenuItem
     //
     this.saveToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripMenuItem.Image")));
     this.saveToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.saveToolStripMenuItem.Name         = "saveToolStripMenuItem";
     this.saveToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
     this.saveToolStripMenuItem.Size         = new System.Drawing.Size(180, 22);
     this.saveToolStripMenuItem.Text         = "&Save";
     //
     // saveAsToolStripMenuItem
     //
     this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
     this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
     this.saveAsToolStripMenuItem.Text = "Save &As";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(177, 6);
     //
     // printToolStripMenuItem
     //
     this.printToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("printToolStripMenuItem.Image")));
     this.printToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.printToolStripMenuItem.Name         = "printToolStripMenuItem";
     this.printToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.P)));
     this.printToolStripMenuItem.Size         = new System.Drawing.Size(180, 22);
     this.printToolStripMenuItem.Text         = "&Print";
     //
     // printPreviewToolStripMenuItem
     //
     this.printPreviewToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("printPreviewToolStripMenuItem.Image")));
     this.printPreviewToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.printPreviewToolStripMenuItem.Name = "printPreviewToolStripMenuItem";
     this.printPreviewToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
     this.printPreviewToolStripMenuItem.Text = "Print Pre&view";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(177, 6);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
     this.exitToolStripMenuItem.Text = "E&xit";
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.undoToolStripMenuItem,
         this.redoToolStripMenuItem,
         this.toolStripSeparator3,
         this.cutToolStripMenuItem,
         this.copyToolStripMenuItem,
         this.pasteToolStripMenuItem,
         this.toolStripSeparator4,
         this.selectAllToolStripMenuItem
     });
     this.editToolStripMenuItem.Name    = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size    = new System.Drawing.Size(39, 20);
     this.editToolStripMenuItem.Text    = "&Edit";
     this.editToolStripMenuItem.Visible = false;
     //
     // undoToolStripMenuItem
     //
     this.undoToolStripMenuItem.Name         = "undoToolStripMenuItem";
     this.undoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z)));
     this.undoToolStripMenuItem.Size         = new System.Drawing.Size(180, 22);
     this.undoToolStripMenuItem.Text         = "&Undo";
     //
     // redoToolStripMenuItem
     //
     this.redoToolStripMenuItem.Name         = "redoToolStripMenuItem";
     this.redoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y)));
     this.redoToolStripMenuItem.Size         = new System.Drawing.Size(180, 22);
     this.redoToolStripMenuItem.Text         = "&Redo";
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(177, 6);
     //
     // cutToolStripMenuItem
     //
     this.cutToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("cutToolStripMenuItem.Image")));
     this.cutToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cutToolStripMenuItem.Name         = "cutToolStripMenuItem";
     this.cutToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X)));
     this.cutToolStripMenuItem.Size         = new System.Drawing.Size(180, 22);
     this.cutToolStripMenuItem.Text         = "Cu&t";
     //
     // copyToolStripMenuItem
     //
     this.copyToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("copyToolStripMenuItem.Image")));
     this.copyToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.copyToolStripMenuItem.Name         = "copyToolStripMenuItem";
     this.copyToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
     this.copyToolStripMenuItem.Size         = new System.Drawing.Size(180, 22);
     this.copyToolStripMenuItem.Text         = "&Copy";
     //
     // pasteToolStripMenuItem
     //
     this.pasteToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("pasteToolStripMenuItem.Image")));
     this.pasteToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.pasteToolStripMenuItem.Name         = "pasteToolStripMenuItem";
     this.pasteToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V)));
     this.pasteToolStripMenuItem.Size         = new System.Drawing.Size(180, 22);
     this.pasteToolStripMenuItem.Text         = "&Paste";
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(177, 6);
     //
     // selectAllToolStripMenuItem
     //
     this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem";
     this.selectAllToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
     this.selectAllToolStripMenuItem.Text = "Select &All";
     //
     // toolsToolStripMenuItem
     //
     this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.customizeToolStripMenuItem,
         this.optionsToolStripMenuItem
     });
     this.toolsToolStripMenuItem.Name    = "toolsToolStripMenuItem";
     this.toolsToolStripMenuItem.Size    = new System.Drawing.Size(46, 20);
     this.toolsToolStripMenuItem.Text    = "&Tools";
     this.toolsToolStripMenuItem.Visible = false;
     //
     // customizeToolStripMenuItem
     //
     this.customizeToolStripMenuItem.Name = "customizeToolStripMenuItem";
     this.customizeToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
     this.customizeToolStripMenuItem.Text = "&Customize";
     //
     // optionsToolStripMenuItem
     //
     this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
     this.optionsToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
     this.optionsToolStripMenuItem.Text = "&Options";
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.contentsToolStripMenuItem,
         this.indexToolStripMenuItem,
         this.searchToolStripMenuItem,
         this.toolStripSeparator5,
         this.aboutToolStripMenuItem
     });
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "&Help";
     //
     // contentsToolStripMenuItem
     //
     this.contentsToolStripMenuItem.Name = "contentsToolStripMenuItem";
     this.contentsToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
     this.contentsToolStripMenuItem.Text = "&Contents";
     //
     // indexToolStripMenuItem
     //
     this.indexToolStripMenuItem.Name = "indexToolStripMenuItem";
     this.indexToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
     this.indexToolStripMenuItem.Text = "&Index";
     //
     // searchToolStripMenuItem
     //
     this.searchToolStripMenuItem.Name = "searchToolStripMenuItem";
     this.searchToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
     this.searchToolStripMenuItem.Text = "&Search";
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(119, 6);
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
     this.aboutToolStripMenuItem.Text = "&About...";
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.statusStrip1);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 745);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(1103, 22);
     this.kryptonPanel2.TabIndex = 1;
     //
     // statusStrip1
     //
     this.statusStrip1.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripStatusLabel1,
         this.ksZoomLevelSlider,
         this.tsslZoomLevel
     });
     this.statusStrip1.Location   = new System.Drawing.Point(0, -1);
     this.statusStrip1.Name       = "statusStrip1";
     this.statusStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode;
     this.statusStrip1.Size       = new System.Drawing.Size(1103, 23);
     this.statusStrip1.TabIndex   = 0;
     this.statusStrip1.Text       = "statusStrip1";
     //
     // kryptonPanel3
     //
     this.kryptonPanel3.Controls.Add(this.seEdit);
     this.kryptonPanel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel3.Location = new System.Drawing.Point(0, 24);
     this.kryptonPanel3.Name     = "kryptonPanel3";
     this.kryptonPanel3.Size     = new System.Drawing.Size(1103, 721);
     this.kryptonPanel3.TabIndex = 2;
     //
     // seEdit
     //
     this.seEdit.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.seEdit.Lexer    = ScintillaNET.Lexer.Xml;
     this.seEdit.Location = new System.Drawing.Point(0, 0);
     this.seEdit.Name     = "seEdit";
     this.seEdit.Size     = new System.Drawing.Size(1103, 721);
     this.seEdit.Styler   = null;
     this.seEdit.TabIndex = 0;
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name      = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size      = new System.Drawing.Size(917, 18);
     this.toolStripStatusLabel1.Spring    = true;
     this.toolStripStatusLabel1.Text      = "Ready";
     this.toolStripStatusLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // ksZoomLevelSlider
     //
     this.ksZoomLevelSlider.BackColor     = System.Drawing.Color.Transparent;
     this.ksZoomLevelSlider.Font          = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ksZoomLevelSlider.Name          = "ksZoomLevelSlider";
     this.ksZoomLevelSlider.Size          = new System.Drawing.Size(140, 21);
     this.ksZoomLevelSlider.Steps         = 2;
     this.ksZoomLevelSlider.Text          = "kryptonSlider1";
     this.ksZoomLevelSlider.TrackerSize   = new System.Drawing.Size(140, 21);
     this.ksZoomLevelSlider.ValueChanged += new Krypton.Toolkit.Suite.Extended.Tool.Strip.Items.KryptonSlider.ValueChangedEventHandler(this.ksZoomLevelSlider_ValueChanged);
     //
     // tsslZoomLevel
     //
     this.tsslZoomLevel.Name = "tsslZoomLevel";
     this.tsslZoomLevel.Size = new System.Drawing.Size(31, 18);
     this.tsslZoomLevel.Text = "{0}%";
     //
     // XMLFileViewerWindow
     //
     this.ClientSize = new System.Drawing.Size(1103, 767);
     this.Controls.Add(this.kryptonPanel3);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.kryptonPanel1);
     this.MainMenuStrip = this.menuStrip1;
     this.Name          = "XMLFileViewerWindow";
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     this.kryptonPanel2.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel3)).EndInit();
     this.kryptonPanel3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#44
0
 private void InitializeComponent()
 {
     this.statusStrip1       = new System.Windows.Forms.StatusStrip();
     this.ProgressBar        = new System.Windows.Forms.ToolStripProgressBar();
     this.ProgressPercentage = new System.Windows.Forms.ToolStripStatusLabel();
     this.StatusText         = new System.Windows.Forms.ToolStripStatusLabel();
     this.txtDigestFile      = new System.Windows.Forms.TextBox();
     this.tabControl         = new System.Windows.Forms.TabControl();
     this.pageDigest         = new System.Windows.Forms.TabPage();
     this.chkOnlyChanges     = new System.Windows.Forms.CheckBox();
     this.btnSelectFolder    = new System.Windows.Forms.Button();
     this.lblFiles           = new System.Windows.Forms.Label();
     this.lblCalculations    = new System.Windows.Forms.Label();
     this.lblFolders         = new System.Windows.Forms.Label();
     this.lvFiles            = new EXControls.EXListView();
     this.lvFolders          = new EXControls.EXListView();
     this.exListView1        = new EXControls.EXListView();
     this.btnCreateDigest    = new System.Windows.Forms.Button();
     this.btnTestDigest      = new System.Windows.Forms.Button();
     this.btnUpdate          = new System.Windows.Forms.Button();
     this.statusStrip1.SuspendLayout();
     this.tabControl.SuspendLayout();
     this.pageDigest.SuspendLayout();
     this.SuspendLayout();
     //
     // statusStrip1
     //
     this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.ProgressBar,
         this.ProgressPercentage,
         this.StatusText
     });
     this.statusStrip1.Location = new System.Drawing.Point(0, 601);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Padding  = new System.Windows.Forms.Padding(1, 0, 19, 0);
     this.statusStrip1.Size     = new System.Drawing.Size(1267, 22);
     this.statusStrip1.TabIndex = 1;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // ProgressBar
     //
     this.ProgressBar.Name    = "ProgressBar";
     this.ProgressBar.Size    = new System.Drawing.Size(133, 22);
     this.ProgressBar.Visible = false;
     //
     // ProgressPercentage
     //
     this.ProgressPercentage.Name    = "ProgressPercentage";
     this.ProgressPercentage.Size    = new System.Drawing.Size(0, 17);
     this.ProgressPercentage.Visible = false;
     //
     // StatusText
     //
     this.StatusText.Name      = "StatusText";
     this.StatusText.Size      = new System.Drawing.Size(1247, 17);
     this.StatusText.Spring    = true;
     this.StatusText.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtDigestFile
     //
     this.txtDigestFile.Location = new System.Drawing.Point(16, 14);
     this.txtDigestFile.Name     = "txtDigestFile";
     this.txtDigestFile.ReadOnly = true;
     this.txtDigestFile.Size     = new System.Drawing.Size(951, 26);
     this.txtDigestFile.TabIndex = 7;
     //
     // tabControl
     //
     this.tabControl.Controls.Add(this.pageDigest);
     this.tabControl.Location      = new System.Drawing.Point(16, 49);
     this.tabControl.Name          = "tabControl";
     this.tabControl.SelectedIndex = 0;
     this.tabControl.Size          = new System.Drawing.Size(1239, 531);
     this.tabControl.TabIndex      = 10;
     //
     // pageDigest
     //
     this.pageDigest.BackColor = System.Drawing.SystemColors.Control;
     this.pageDigest.Controls.Add(this.chkOnlyChanges);
     this.pageDigest.Controls.Add(this.btnSelectFolder);
     this.pageDigest.Controls.Add(this.lblFiles);
     this.pageDigest.Controls.Add(this.lblCalculations);
     this.pageDigest.Controls.Add(this.lblFolders);
     this.pageDigest.Controls.Add(this.lvFiles);
     this.pageDigest.Controls.Add(this.lvFolders);
     this.pageDigest.Controls.Add(this.exListView1);
     this.pageDigest.Location = new System.Drawing.Point(4, 27);
     this.pageDigest.Name     = "pageDigest";
     this.pageDigest.Padding  = new System.Windows.Forms.Padding(8);
     this.pageDigest.Size     = new System.Drawing.Size(1231, 500);
     this.pageDigest.TabIndex = 0;
     this.pageDigest.Text     = "Checksum digest";
     //
     // chkOnlyChanges
     //
     this.chkOnlyChanges.Location                = new System.Drawing.Point(925, 264);
     this.chkOnlyChanges.Name                    = "chkOnlyChanges";
     this.chkOnlyChanges.RightToLeft             = System.Windows.Forms.RightToLeft.Yes;
     this.chkOnlyChanges.Size                    = new System.Drawing.Size(289, 24);
     this.chkOnlyChanges.TabIndex                = 16;
     this.chkOnlyChanges.Text                    = "Show only changes";
     this.chkOnlyChanges.UseVisualStyleBackColor = true;
     //
     // btnSelectFolder
     //
     this.btnSelectFolder.Location = new System.Drawing.Point(468, 12);
     this.btnSelectFolder.Margin   = new System.Windows.Forms.Padding(4);
     this.btnSelectFolder.Name     = "btnSelectFolder";
     this.btnSelectFolder.Size     = new System.Drawing.Size(134, 32);
     this.btnSelectFolder.TabIndex = 15;
     this.btnSelectFolder.Text     = "Add folder...";
     this.btnSelectFolder.UseVisualStyleBackColor = true;
     this.btnSelectFolder.Click += new System.EventHandler(this.btnSelectFolder_Click);
     //
     // lblFiles
     //
     this.lblFiles.Location = new System.Drawing.Point(15, 266);
     this.lblFiles.Margin   = new System.Windows.Forms.Padding(0);
     this.lblFiles.Name     = "lblFiles";
     this.lblFiles.Size     = new System.Drawing.Size(100, 23);
     this.lblFiles.TabIndex = 14;
     this.lblFiles.Text     = "Files";
     //
     // lblCalculations
     //
     this.lblCalculations.AutoSize = true;
     this.lblCalculations.Location = new System.Drawing.Point(608, 19);
     this.lblCalculations.Margin   = new System.Windows.Forms.Padding(0);
     this.lblCalculations.Name     = "lblCalculations";
     this.lblCalculations.Size     = new System.Drawing.Size(96, 18);
     this.lblCalculations.TabIndex = 14;
     this.lblCalculations.Text     = "Calculations";
     //
     // lblFolders
     //
     this.lblFolders.Location = new System.Drawing.Point(11, 19);
     this.lblFolders.Margin   = new System.Windows.Forms.Padding(0);
     this.lblFolders.Name     = "lblFolders";
     this.lblFolders.Size     = new System.Drawing.Size(100, 23);
     this.lblFolders.TabIndex = 14;
     this.lblFolders.Text     = "Folders";
     //
     // lvFiles
     //
     this.lvFiles.ControlPadding = 4;
     this.lvFiles.FullRowSelect  = true;
     this.lvFiles.Location       = new System.Drawing.Point(11, 292);
     this.lvFiles.Name           = "lvFiles";
     this.lvFiles.OwnerDraw      = true;
     this.lvFiles.Size           = new System.Drawing.Size(1203, 197);
     this.lvFiles.TabIndex       = 12;
     this.lvFiles.UseCompatibleStateImageBehavior = false;
     this.lvFiles.View = System.Windows.Forms.View.Details;
     //
     // lvFolders
     //
     this.lvFolders.ControlPadding = 8;
     this.lvFolders.FullRowSelect  = true;
     this.lvFolders.Location       = new System.Drawing.Point(11, 46);
     this.lvFolders.Name           = "lvFolders";
     this.lvFolders.OwnerDraw      = true;
     this.lvFolders.Size           = new System.Drawing.Size(591, 217);
     this.lvFolders.TabIndex       = 13;
     this.lvFolders.UseCompatibleStateImageBehavior = false;
     this.lvFolders.View = System.Windows.Forms.View.Details;
     //
     // exListView1
     //
     this.exListView1.ControlPadding = 8;
     this.exListView1.FullRowSelect  = true;
     this.exListView1.Location       = new System.Drawing.Point(608, 46);
     this.exListView1.Name           = "exListView1";
     this.exListView1.OwnerDraw      = true;
     this.exListView1.Size           = new System.Drawing.Size(606, 217);
     this.exListView1.TabIndex       = 13;
     this.exListView1.UseCompatibleStateImageBehavior = false;
     this.exListView1.View = System.Windows.Forms.View.Details;
     //
     // btnCreateDigest
     //
     this.btnCreateDigest.Location = new System.Drawing.Point(974, 10);
     this.btnCreateDigest.Margin   = new System.Windows.Forms.Padding(4);
     this.btnCreateDigest.Name     = "btnCreateDigest";
     this.btnCreateDigest.Size     = new System.Drawing.Size(87, 32);
     this.btnCreateDigest.TabIndex = 12;
     this.btnCreateDigest.Text     = "Create";
     this.btnCreateDigest.UseVisualStyleBackColor = true;
     this.btnCreateDigest.Click += new System.EventHandler(this.btnCreateDigest_Click);
     //
     // btnTestDigest
     //
     this.btnTestDigest.Location = new System.Drawing.Point(1069, 10);
     this.btnTestDigest.Margin   = new System.Windows.Forms.Padding(4);
     this.btnTestDigest.Name     = "btnTestDigest";
     this.btnTestDigest.Size     = new System.Drawing.Size(87, 32);
     this.btnTestDigest.TabIndex = 12;
     this.btnTestDigest.Text     = "Test";
     this.btnTestDigest.UseVisualStyleBackColor = true;
     this.btnTestDigest.Click += new System.EventHandler(this.btnTestDigest_Click);
     //
     // btnUpdate
     //
     this.btnUpdate.Enabled  = false;
     this.btnUpdate.Location = new System.Drawing.Point(1164, 10);
     this.btnUpdate.Margin   = new System.Windows.Forms.Padding(4);
     this.btnUpdate.Name     = "btnUpdate";
     this.btnUpdate.Size     = new System.Drawing.Size(87, 32);
     this.btnUpdate.TabIndex = 12;
     this.btnUpdate.Text     = "Update";
     this.btnUpdate.UseVisualStyleBackColor = true;
     this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.ClientSize          = new System.Drawing.Size(1267, 623);
     this.Controls.Add(this.btnUpdate);
     this.Controls.Add(this.btnTestDigest);
     this.Controls.Add(this.btnCreateDigest);
     this.Controls.Add(this.tabControl);
     this.Controls.Add(this.txtDigestFile);
     this.Controls.Add(this.statusStrip1);
     this.Font            = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Margin          = new System.Windows.Forms.Padding(4);
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "MainForm";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "MainForm";
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.tabControl.ResumeLayout(false);
     this.pageDigest.ResumeLayout(false);
     this.pageDigest.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#45
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmFrame));
     this.StatusStrip1          = new System.Windows.Forms.StatusStrip();
     this.ToolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsslCurrentUser       = new System.Windows.Forms.ToolStripStatusLabel();
     this.ToolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel6 = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsslRunStatus         = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel8 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel4 = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsslMode = new System.Windows.Forms.ToolStripStatusLabel();
     this.ToolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
     this.TSSL_DateTime         = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel5 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel7 = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsslMsg      = new System.Windows.Forms.ToolStripStatusLabel();
     this.tUpdateUI    = new System.Windows.Forms.Timer(this.components);
     this.panelTitle   = new System.Windows.Forms.Panel();
     this.btnStop      = new System.Windows.Forms.Button();
     this.btnPause     = new System.Windows.Forms.Button();
     this.btnRun       = new System.Windows.Forms.Button();
     this.btnLog       = new System.Windows.Forms.Button();
     this.btnCcd       = new System.Windows.Forms.Button();
     this.btnUser      = new System.Windows.Forms.Button();
     this.btnMachineId = new System.Windows.Forms.Button();
     this.btnChart     = new System.Windows.Forms.Button();
     this.btnAlarm     = new System.Windows.Forms.Button();
     this.btnIO        = new System.Windows.Forms.Button();
     this.btnSet       = new System.Windows.Forms.Button();
     this.btnHome      = new System.Windows.Forms.Button();
     this.panelMain    = new System.Windows.Forms.Panel();
     this.StatusStrip1.SuspendLayout();
     this.panelTitle.SuspendLayout();
     this.SuspendLayout();
     //
     // StatusStrip1
     //
     this.StatusStrip1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.StatusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.ToolStripStatusLabel1,
         this.tsslCurrentUser,
         this.ToolStripStatusLabel2,
         this.toolStripStatusLabel6,
         this.tsslRunStatus,
         this.toolStripStatusLabel8,
         this.toolStripStatusLabel4,
         this.tsslMode,
         this.ToolStripStatusLabel3,
         this.TSSL_DateTime,
         this.toolStripStatusLabel5,
         this.toolStripStatusLabel7,
         this.tsslMsg
     });
     this.StatusStrip1.Location = new System.Drawing.Point(0, 662);
     this.StatusStrip1.Name     = "StatusStrip1";
     this.StatusStrip1.Size     = new System.Drawing.Size(1009, 25);
     this.StatusStrip1.TabIndex = 7;
     this.StatusStrip1.Text     = "StatusStrip1";
     //
     // ToolStripStatusLabel1
     //
     this.ToolStripStatusLabel1.Name = "ToolStripStatusLabel1";
     this.ToolStripStatusLabel1.Size = new System.Drawing.Size(51, 20);
     this.ToolStripStatusLabel1.Text = "用户:";
     //
     // tsslCurrentUser
     //
     this.tsslCurrentUser.AutoSize  = false;
     this.tsslCurrentUser.BackColor = System.Drawing.Color.Gainsboro;
     this.tsslCurrentUser.Name      = "tsslCurrentUser";
     this.tsslCurrentUser.Size      = new System.Drawing.Size(80, 20);
     this.tsslCurrentUser.Text      = "op";
     //
     // ToolStripStatusLabel2
     //
     this.ToolStripStatusLabel2.Name = "ToolStripStatusLabel2";
     this.ToolStripStatusLabel2.Size = new System.Drawing.Size(13, 20);
     this.ToolStripStatusLabel2.Text = "|";
     //
     // toolStripStatusLabel6
     //
     this.toolStripStatusLabel6.Name = "toolStripStatusLabel6";
     this.toolStripStatusLabel6.Size = new System.Drawing.Size(51, 20);
     this.toolStripStatusLabel6.Text = "状态:";
     //
     // tsslRunStatus
     //
     this.tsslRunStatus.AutoSize  = false;
     this.tsslRunStatus.BackColor = System.Drawing.Color.Gainsboro;
     this.tsslRunStatus.Name      = "tsslRunStatus";
     this.tsslRunStatus.Size      = new System.Drawing.Size(80, 20);
     this.tsslRunStatus.Text      = "自动";
     //
     // toolStripStatusLabel8
     //
     this.toolStripStatusLabel8.Name = "toolStripStatusLabel8";
     this.toolStripStatusLabel8.Size = new System.Drawing.Size(13, 20);
     this.toolStripStatusLabel8.Text = "|";
     //
     // toolStripStatusLabel4
     //
     this.toolStripStatusLabel4.Name = "toolStripStatusLabel4";
     this.toolStripStatusLabel4.Size = new System.Drawing.Size(51, 20);
     this.toolStripStatusLabel4.Text = "模式:";
     //
     // tsslMode
     //
     this.tsslMode.AutoSize  = false;
     this.tsslMode.BackColor = System.Drawing.Color.Gainsboro;
     this.tsslMode.Name      = "tsslMode";
     this.tsslMode.Size      = new System.Drawing.Size(120, 20);
     this.tsslMode.Text      = "自动";
     //
     // ToolStripStatusLabel3
     //
     this.ToolStripStatusLabel3.Name = "ToolStripStatusLabel3";
     this.ToolStripStatusLabel3.Size = new System.Drawing.Size(13, 20);
     this.ToolStripStatusLabel3.Text = "|";
     //
     // TSSL_DateTime
     //
     this.TSSL_DateTime.AutoSize = false;
     this.TSSL_DateTime.Name     = "TSSL_DateTime";
     this.TSSL_DateTime.Size     = new System.Drawing.Size(150, 20);
     this.TSSL_DateTime.Text     = "2017.07.05 09:08:00";
     //
     // toolStripStatusLabel5
     //
     this.toolStripStatusLabel5.Name = "toolStripStatusLabel5";
     this.toolStripStatusLabel5.Size = new System.Drawing.Size(13, 20);
     this.toolStripStatusLabel5.Text = "|";
     //
     // toolStripStatusLabel7
     //
     this.toolStripStatusLabel7.Name = "toolStripStatusLabel7";
     this.toolStripStatusLabel7.Size = new System.Drawing.Size(51, 20);
     this.toolStripStatusLabel7.Text = "信息:";
     //
     // tsslMsg
     //
     this.tsslMsg.BackColor = System.Drawing.Color.Gainsboro;
     this.tsslMsg.Name      = "tsslMsg";
     this.tsslMsg.Size      = new System.Drawing.Size(37, 20);
     this.tsslMsg.Text      = "信息";
     //
     // tUpdateUI
     //
     this.tUpdateUI.Tick += new System.EventHandler(this.tUpdateUI_Tick);
     //
     // panelTitle
     //
     this.panelTitle.BackColor = System.Drawing.SystemColors.Control;
     this.panelTitle.Controls.Add(this.btnStop);
     this.panelTitle.Controls.Add(this.btnPause);
     this.panelTitle.Controls.Add(this.btnRun);
     this.panelTitle.Controls.Add(this.btnLog);
     this.panelTitle.Controls.Add(this.btnCcd);
     this.panelTitle.Controls.Add(this.btnUser);
     this.panelTitle.Controls.Add(this.btnMachineId);
     this.panelTitle.Controls.Add(this.btnChart);
     this.panelTitle.Controls.Add(this.btnAlarm);
     this.panelTitle.Controls.Add(this.btnIO);
     this.panelTitle.Controls.Add(this.btnSet);
     this.panelTitle.Controls.Add(this.btnHome);
     this.panelTitle.Dock         = System.Windows.Forms.DockStyle.Top;
     this.panelTitle.Location     = new System.Drawing.Point(0, 0);
     this.panelTitle.Name         = "panelTitle";
     this.panelTitle.Size         = new System.Drawing.Size(1009, 70);
     this.panelTitle.TabIndex     = 16;
     this.panelTitle.DoubleClick += new System.EventHandler(this.panelTitle_DoubleClick);
     //
     // btnStop
     //
     this.btnStop.BackColor                 = System.Drawing.Color.Gainsboro;
     this.btnStop.BackgroundImage           = global::KingScrew.Properties.Resources.stop;
     this.btnStop.BackgroundImageLayout     = System.Windows.Forms.ImageLayout.Zoom;
     this.btnStop.FlatAppearance.BorderSize = 0;
     this.btnStop.FlatStyle                 = System.Windows.Forms.FlatStyle.Flat;
     this.btnStop.Location = new System.Drawing.Point(705, 5);
     this.btnStop.Margin   = new System.Windows.Forms.Padding(5, 5, 0, 5);
     this.btnStop.Name     = "btnStop";
     this.btnStop.Size     = new System.Drawing.Size(60, 60);
     this.btnStop.TabIndex = 25;
     this.btnStop.TabStop  = false;
     this.btnStop.Tag      = "2";
     this.btnStop.UseVisualStyleBackColor = false;
     this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
     //
     // btnPause
     //
     this.btnPause.BackColor             = System.Drawing.Color.Gainsboro;
     this.btnPause.BackgroundImage       = global::KingScrew.Properties.Resources.pause;
     this.btnPause.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.btnPause.Enabled = false;
     this.btnPause.FlatAppearance.BorderSize = 0;
     this.btnPause.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnPause.Location  = new System.Drawing.Point(640, 5);
     this.btnPause.Margin    = new System.Windows.Forms.Padding(5, 5, 0, 5);
     this.btnPause.Name      = "btnPause";
     this.btnPause.Size      = new System.Drawing.Size(60, 60);
     this.btnPause.TabIndex  = 24;
     this.btnPause.TabStop   = false;
     this.btnPause.UseVisualStyleBackColor = false;
     //
     // btnRun
     //
     this.btnRun.BackColor                 = System.Drawing.Color.Gainsboro;
     this.btnRun.BackgroundImage           = ((System.Drawing.Image)(resources.GetObject("btnRun.BackgroundImage")));
     this.btnRun.BackgroundImageLayout     = System.Windows.Forms.ImageLayout.Zoom;
     this.btnRun.FlatAppearance.BorderSize = 0;
     this.btnRun.FlatStyle                 = System.Windows.Forms.FlatStyle.Flat;
     this.btnRun.Location = new System.Drawing.Point(575, 5);
     this.btnRun.Margin   = new System.Windows.Forms.Padding(5, 5, 0, 5);
     this.btnRun.Name     = "btnRun";
     this.btnRun.Size     = new System.Drawing.Size(60, 60);
     this.btnRun.TabIndex = 23;
     this.btnRun.TabStop  = false;
     this.btnRun.Tag      = "2";
     this.btnRun.UseVisualStyleBackColor = false;
     this.btnRun.Click += new System.EventHandler(this.btnRun_Click);
     //
     // btnLog
     //
     this.btnLog.BackColor                 = System.Drawing.Color.Gainsboro;
     this.btnLog.BackgroundImage           = global::KingScrew.Properties.Resources.log;
     this.btnLog.BackgroundImageLayout     = System.Windows.Forms.ImageLayout.Zoom;
     this.btnLog.FlatAppearance.BorderSize = 0;
     this.btnLog.FlatStyle                 = System.Windows.Forms.FlatStyle.Flat;
     this.btnLog.Location = new System.Drawing.Point(814, 5);
     this.btnLog.Margin   = new System.Windows.Forms.Padding(5, 5, 0, 5);
     this.btnLog.Name     = "btnLog";
     this.btnLog.Size     = new System.Drawing.Size(60, 60);
     this.btnLog.TabIndex = 22;
     this.btnLog.TabStop  = false;
     this.btnLog.UseVisualStyleBackColor = false;
     this.btnLog.Click += new System.EventHandler(this.btnLog_Click);
     //
     // btnCcd
     //
     this.btnCcd.BackColor                 = System.Drawing.Color.Gainsboro;
     this.btnCcd.BackgroundImage           = global::KingScrew.Properties.Resources.ccd;
     this.btnCcd.BackgroundImageLayout     = System.Windows.Forms.ImageLayout.Zoom;
     this.btnCcd.FlatAppearance.BorderSize = 0;
     this.btnCcd.FlatStyle                 = System.Windows.Forms.FlatStyle.Flat;
     this.btnCcd.Location = new System.Drawing.Point(879, 5);
     this.btnCcd.Margin   = new System.Windows.Forms.Padding(5, 5, 0, 5);
     this.btnCcd.Name     = "btnCcd";
     this.btnCcd.Size     = new System.Drawing.Size(60, 60);
     this.btnCcd.TabIndex = 21;
     this.btnCcd.TabStop  = false;
     this.btnCcd.Tag      = "2";
     this.btnCcd.UseVisualStyleBackColor = false;
     this.btnCcd.Click += new System.EventHandler(this.btnCcd_Click);
     //
     // btnUser
     //
     this.btnUser.BackColor                 = System.Drawing.Color.Gainsboro;
     this.btnUser.BackgroundImage           = global::KingScrew.Properties.Resources.user;
     this.btnUser.BackgroundImageLayout     = System.Windows.Forms.ImageLayout.Zoom;
     this.btnUser.FlatAppearance.BorderSize = 0;
     this.btnUser.FlatStyle                 = System.Windows.Forms.FlatStyle.Flat;
     this.btnUser.Location = new System.Drawing.Point(944, 5);
     this.btnUser.Margin   = new System.Windows.Forms.Padding(5);
     this.btnUser.Name     = "btnUser";
     this.btnUser.Size     = new System.Drawing.Size(60, 60);
     this.btnUser.TabIndex = 20;
     this.btnUser.TabStop  = false;
     this.btnUser.UseVisualStyleBackColor = false;
     this.btnUser.Click += new System.EventHandler(this.btnUser_Click);
     //
     // btnMachineId
     //
     this.btnMachineId.BackColor                 = System.Drawing.Color.Gainsboro;
     this.btnMachineId.BackgroundImageLayout     = System.Windows.Forms.ImageLayout.Zoom;
     this.btnMachineId.FlatAppearance.BorderSize = 0;
     this.btnMachineId.FlatStyle                 = System.Windows.Forms.FlatStyle.Flat;
     this.btnMachineId.Font     = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.btnMachineId.Location = new System.Drawing.Point(330, 5);
     this.btnMachineId.Margin   = new System.Windows.Forms.Padding(5, 5, 0, 5);
     this.btnMachineId.Name     = "btnMachineId";
     this.btnMachineId.Size     = new System.Drawing.Size(240, 60);
     this.btnMachineId.TabIndex = 20;
     this.btnMachineId.TabStop  = false;
     this.btnMachineId.Text     = "Machine ID";
     this.btnMachineId.UseVisualStyleBackColor = false;
     //
     // btnChart
     //
     this.btnChart.BackColor                 = System.Drawing.Color.Gainsboro;
     this.btnChart.BackgroundImage           = global::KingScrew.Properties.Resources.chart;
     this.btnChart.BackgroundImageLayout     = System.Windows.Forms.ImageLayout.Zoom;
     this.btnChart.FlatAppearance.BorderSize = 0;
     this.btnChart.FlatStyle                 = System.Windows.Forms.FlatStyle.Flat;
     this.btnChart.Location = new System.Drawing.Point(265, 5);
     this.btnChart.Margin   = new System.Windows.Forms.Padding(5, 5, 0, 5);
     this.btnChart.Name     = "btnChart";
     this.btnChart.Size     = new System.Drawing.Size(60, 60);
     this.btnChart.TabIndex = 19;
     this.btnChart.TabStop  = false;
     this.btnChart.UseVisualStyleBackColor = false;
     this.btnChart.Click += new System.EventHandler(this.btnChart_Click);
     //
     // btnAlarm
     //
     this.btnAlarm.BackColor                 = System.Drawing.Color.Gainsboro;
     this.btnAlarm.BackgroundImage           = global::KingScrew.Properties.Resources.alarm;
     this.btnAlarm.BackgroundImageLayout     = System.Windows.Forms.ImageLayout.Zoom;
     this.btnAlarm.FlatAppearance.BorderSize = 0;
     this.btnAlarm.FlatStyle                 = System.Windows.Forms.FlatStyle.Flat;
     this.btnAlarm.Location = new System.Drawing.Point(200, 5);
     this.btnAlarm.Margin   = new System.Windows.Forms.Padding(5, 5, 0, 5);
     this.btnAlarm.Name     = "btnAlarm";
     this.btnAlarm.Size     = new System.Drawing.Size(60, 60);
     this.btnAlarm.TabIndex = 18;
     this.btnAlarm.TabStop  = false;
     this.btnAlarm.UseVisualStyleBackColor = false;
     //
     // btnIO
     //
     this.btnIO.BackColor                 = System.Drawing.Color.Gainsboro;
     this.btnIO.BackgroundImage           = global::KingScrew.Properties.Resources.io;
     this.btnIO.BackgroundImageLayout     = System.Windows.Forms.ImageLayout.Zoom;
     this.btnIO.FlatAppearance.BorderSize = 0;
     this.btnIO.FlatStyle                 = System.Windows.Forms.FlatStyle.Flat;
     this.btnIO.Location = new System.Drawing.Point(135, 5);
     this.btnIO.Margin   = new System.Windows.Forms.Padding(5, 5, 0, 5);
     this.btnIO.Name     = "btnIO";
     this.btnIO.Size     = new System.Drawing.Size(60, 60);
     this.btnIO.TabIndex = 17;
     this.btnIO.TabStop  = false;
     this.btnIO.UseVisualStyleBackColor = false;
     //
     // btnSet
     //
     this.btnSet.BackColor             = System.Drawing.Color.Gainsboro;
     this.btnSet.BackgroundImage       = global::KingScrew.Properties.Resources.setting;
     this.btnSet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.btnSet.Enabled = false;
     this.btnSet.FlatAppearance.BorderSize = 0;
     this.btnSet.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnSet.Location  = new System.Drawing.Point(70, 5);
     this.btnSet.Margin    = new System.Windows.Forms.Padding(5, 5, 0, 5);
     this.btnSet.Name      = "btnSet";
     this.btnSet.Size      = new System.Drawing.Size(60, 60);
     this.btnSet.TabIndex  = 16;
     this.btnSet.TabStop   = false;
     this.btnSet.Tag       = "1";
     this.btnSet.UseVisualStyleBackColor = false;
     this.btnSet.Click += new System.EventHandler(this.btnSet_Click);
     //
     // btnHome
     //
     this.btnHome.BackColor                 = System.Drawing.Color.Gainsboro;
     this.btnHome.BackgroundImage           = global::KingScrew.Properties.Resources.home;
     this.btnHome.BackgroundImageLayout     = System.Windows.Forms.ImageLayout.Zoom;
     this.btnHome.FlatAppearance.BorderSize = 0;
     this.btnHome.FlatStyle                 = System.Windows.Forms.FlatStyle.Flat;
     this.btnHome.Location = new System.Drawing.Point(5, 5);
     this.btnHome.Margin   = new System.Windows.Forms.Padding(5, 5, 0, 5);
     this.btnHome.Name     = "btnHome";
     this.btnHome.Size     = new System.Drawing.Size(60, 60);
     this.btnHome.TabIndex = 15;
     this.btnHome.TabStop  = false;
     this.btnHome.UseVisualStyleBackColor = false;
     this.btnHome.Click += new System.EventHandler(this.btnHome_Click);
     //
     // panelMain
     //
     this.panelMain.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelMain.Location = new System.Drawing.Point(0, 70);
     this.panelMain.Name     = "panelMain";
     this.panelMain.Size     = new System.Drawing.Size(1009, 592);
     this.panelMain.TabIndex = 17;
     //
     // FrmFrame
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.WhiteSmoke;
     this.ClientSize          = new System.Drawing.Size(1009, 687);
     this.Controls.Add(this.panelMain);
     this.Controls.Add(this.panelTitle);
     this.Controls.Add(this.StatusStrip1);
     this.IsMdiContainer = true;
     this.MaximizeBox    = false;
     this.Name           = "FrmFrame";
     this.StartPosition  = System.Windows.Forms.FormStartPosition.Manual;
     this.Text           = "YMachineUI";
     this.FormClosing   += new System.Windows.Forms.FormClosingEventHandler(this.FrmFrame_FormClosing);
     this.Load          += new System.EventHandler(this.MainFormLoad);
     this.StatusStrip1.ResumeLayout(false);
     this.StatusStrip1.PerformLayout();
     this.panelTitle.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#46
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
     this.ToolTipMain              = new System.Windows.Forms.ToolTip(this.components);
     this.MainMenu1                = new System.Windows.Forms.MenuStrip();
     this.mnuFile                  = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuCustomer              = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuProviders             = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuSales                 = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuDatabase              = new System.Windows.Forms.ToolStripMenuItem();
     this._mnuDataAction_0         = new System.Windows.Forms.ToolStripMenuItem();
     this._mnuDataAction_1         = new System.Windows.Forms.ToolStripMenuItem();
     this._mnuDataAction_2         = new System.Windows.Forms.ToolStripSeparator();
     this._mnuDataAction_3         = new System.Windows.Forms.ToolStripMenuItem();
     this._mnuClear_0              = new System.Windows.Forms.ToolStripMenuItem();
     this._mnuClear_1              = new System.Windows.Forms.ToolStripMenuItem();
     this._mnuClear_2              = new System.Windows.Forms.ToolStripSeparator();
     this._mnuClear_3              = new System.Windows.Forms.ToolStripMenuItem();
     this._mnuDataAction_4         = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuReports               = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuReport                = new System.Windows.Forms.ToolStripMenuItem();
     this._lExit_1                 = new System.Windows.Forms.ToolStripSeparator();
     this.mnuExit                  = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuOrders                = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuCreateOrderRequest    = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuOrderRequestsApproval = new System.Windows.Forms.ToolStripMenuItem();
     this.lExit2 = new System.Windows.Forms.ToolStripSeparator();
     this.mnuCreateOrderReception    = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuOrderReceptionsApproval = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuMainInventory           = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuAddStockManually        = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuAdjustStockManually     = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuAccounts         = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuProducts         = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuCategories       = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuSecurity         = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuHelp             = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuViewHelp         = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuAbout            = new System.Windows.Forms.ToolStripMenuItem();
     this.sbStatusBar         = new System.Windows.Forms.StatusStrip();
     this._sbStatusBar_Panel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this._sbStatusBar_Panel2 = new System.Windows.Forms.ToolStripStatusLabel();
     this._sbStatusBar_Panel3 = new System.Windows.Forms.ToolStripStatusLabel();
     this.sbStatusBar.SuspendLayout();
     this.SuspendLayout();
     //
     // MainMenu1
     //
     this.MainMenu1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mnuFile, this.mnuOrders, this.mnuMainInventory, this.mnuAccounts, this.mnuHelp });
     //
     // mnuFile
     //
     this.mnuFile.Available   = true;
     this.mnuFile.Checked     = false;
     this.mnuFile.Enabled     = true;
     this.mnuFile.MergeAction = System.Windows.Forms.MergeAction.Remove;
     this.mnuFile.Name        = "mnuFile";
     this.mnuFile.Text        = "&File";
     this.mnuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mnuCustomer, this.mnuProviders, this.mnuSales, this.mnuDatabase, this.mnuReports, this._lExit_1, this.mnuExit });
     //
     // mnuCustomer
     //
     this.mnuCustomer.Available = true;
     this.mnuCustomer.Checked   = false;
     this.mnuCustomer.Enabled   = true;
     this.mnuCustomer.Name      = "mnuCustomer";
     this.mnuCustomer.Text      = "&Manage Customers";
     this.mnuCustomer.Click    += new System.EventHandler(this.mnuCustomer_Click);
     //
     // mnuProviders
     //
     this.mnuProviders.Available = true;
     this.mnuProviders.Checked   = false;
     this.mnuProviders.Enabled   = true;
     this.mnuProviders.Name      = "mnuProviders";
     this.mnuProviders.Text      = "Manage Su&ppliers ";
     this.mnuProviders.Click    += new System.EventHandler(this.mnuProviders_Click);
     //
     // mnuSales
     //
     this.mnuSales.Available = true;
     this.mnuSales.Checked   = false;
     this.mnuSales.Enabled   = true;
     this.mnuSales.Name      = "mnuSales";
     this.mnuSales.Text      = "&Sales";
     //
     // mnuDatabase
     //
     this.mnuDatabase.Available = false;
     this.mnuDatabase.Checked   = false;
     this.mnuDatabase.Enabled   = true;
     this.mnuDatabase.Name      = "mnuDatabase";
     this.mnuDatabase.Text      = "&Database";
     this.mnuDatabase.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this._mnuDataAction_0, this._mnuDataAction_1, this._mnuDataAction_2, this._mnuDataAction_3, this._mnuDataAction_4 });
     //
     // _mnuDataAction_0
     //
     this._mnuDataAction_0.Available = true;
     this._mnuDataAction_0.Checked   = false;
     this._mnuDataAction_0.Enabled   = true;
     this._mnuDataAction_0.Name      = "_mnuDataAction_0";
     this._mnuDataAction_0.Text      = "&Back up";
     //
     // _mnuDataAction_1
     //
     this._mnuDataAction_1.Available = true;
     this._mnuDataAction_1.Checked   = false;
     this._mnuDataAction_1.Enabled   = true;
     this._mnuDataAction_1.Name      = "_mnuDataAction_1";
     this._mnuDataAction_1.Text      = "&Restore";
     //
     // _mnuDataAction_2
     //
     this._mnuDataAction_2.Available = true;
     this._mnuDataAction_2.Enabled   = true;
     this._mnuDataAction_2.Name      = "_mnuDataAction_2";
     //
     // _mnuDataAction_3
     //
     this._mnuDataAction_3.Available = true;
     this._mnuDataAction_3.Checked   = false;
     this._mnuDataAction_3.Enabled   = true;
     this._mnuDataAction_3.Name      = "_mnuDataAction_3";
     this._mnuDataAction_3.Text      = "C&lear records";
     this._mnuDataAction_3.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this._mnuClear_0, this._mnuClear_1, this._mnuClear_2, this._mnuClear_3 });
     //
     // _mnuClear_0
     //
     this._mnuClear_0.Available = true;
     this._mnuClear_0.Checked   = false;
     this._mnuClear_0.Enabled   = true;
     this._mnuClear_0.Name      = "_mnuClear_0";
     this._mnuClear_0.Text      = "&Inventory Items";
     //
     // _mnuClear_1
     //
     this._mnuClear_1.Available = true;
     this._mnuClear_1.Checked   = false;
     this._mnuClear_1.Enabled   = true;
     this._mnuClear_1.Name      = "_mnuClear_1";
     this._mnuClear_1.Text      = "&Transaction Items";
     //
     // _mnuClear_2
     //
     this._mnuClear_2.Available = true;
     this._mnuClear_2.Enabled   = true;
     this._mnuClear_2.Name      = "_mnuClear_2";
     //
     // _mnuClear_3
     //
     this._mnuClear_3.Available = true;
     this._mnuClear_3.Checked   = false;
     this._mnuClear_3.Enabled   = true;
     this._mnuClear_3.Name      = "_mnuClear_3";
     this._mnuClear_3.Text      = "&All items";
     //
     // _mnuDataAction_4
     //
     this._mnuDataAction_4.Available = true;
     this._mnuDataAction_4.Checked   = false;
     this._mnuDataAction_4.Enabled   = true;
     this._mnuDataAction_4.Name      = "_mnuDataAction_4";
     this._mnuDataAction_4.Text      = "&Compact";
     //
     // mnuReports
     //
     this.mnuReports.Available = false;
     this.mnuReports.Checked   = false;
     this.mnuReports.Enabled   = true;
     this.mnuReports.Name      = "mnuReports";
     this.mnuReports.Text      = "&Reports";
     this.mnuReports.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mnuReport });
     //
     // mnuReport
     //
     this.mnuReport.Available = true;
     this.mnuReport.Checked   = false;
     this.mnuReport.Enabled   = true;
     this.mnuReport.Name      = "mnuReport";
     this.mnuReport.Text      = "&Sales Report";
     //
     // _lExit_1
     //
     this._lExit_1.Available = true;
     this._lExit_1.Enabled   = true;
     this._lExit_1.Name      = "_lExit_1";
     //
     // mnuExit
     //
     this.mnuExit.Available = true;
     this.mnuExit.Checked   = false;
     this.mnuExit.Enabled   = true;
     this.mnuExit.Name      = "mnuExit";
     this.mnuExit.Text      = "&Exit";
     this.mnuExit.Click    += new System.EventHandler(this.mnuExit_Click);
     //
     // mnuOrders
     //
     this.mnuOrders.Available   = true;
     this.mnuOrders.Checked     = false;
     this.mnuOrders.Enabled     = true;
     this.mnuOrders.MergeAction = System.Windows.Forms.MergeAction.Remove;
     this.mnuOrders.Name        = "mnuOrders";
     this.mnuOrders.Text        = "&Orders";
     this.mnuOrders.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mnuCreateOrderRequest, this.mnuOrderRequestsApproval, this.lExit2, this.mnuCreateOrderReception, this.mnuOrderReceptionsApproval });
     //
     // mnuCreateOrderRequest
     //
     this.mnuCreateOrderRequest.Available = true;
     this.mnuCreateOrderRequest.Checked   = false;
     this.mnuCreateOrderRequest.Enabled   = true;
     this.mnuCreateOrderRequest.Name      = "mnuCreateOrderRequest";
     this.mnuCreateOrderRequest.Text      = "Create Order";
     this.mnuCreateOrderRequest.Click    += new System.EventHandler(this.mnuCreateOrderRequest_Click);
     //
     // mnuOrderRequestsApproval
     //
     this.mnuOrderRequestsApproval.Available = true;
     this.mnuOrderRequestsApproval.Checked   = false;
     this.mnuOrderRequestsApproval.Enabled   = true;
     this.mnuOrderRequestsApproval.Name      = "mnuOrderRequestsApproval";
     this.mnuOrderRequestsApproval.Text      = "Create Invoice";
     this.mnuOrderRequestsApproval.Click    += new System.EventHandler(this.mnuOrderRequestsApproval_Click);
     //
     // lExit2
     //
     this.lExit2.Available = true;
     this.lExit2.Enabled   = true;
     this.lExit2.Name      = "lExit2";
     //
     // mnuCreateOrderReception
     //
     this.mnuCreateOrderReception.Available = true;
     this.mnuCreateOrderReception.Checked   = false;
     this.mnuCreateOrderReception.Enabled   = true;
     this.mnuCreateOrderReception.Name      = "mnuCreateOrderReception";
     this.mnuCreateOrderReception.Text      = "Add Stock Order";
     this.mnuCreateOrderReception.Click    += new System.EventHandler(this.mnuCreateOrderReception_Click);
     //
     // mnuOrderReceptionsApproval
     //
     this.mnuOrderReceptionsApproval.Available = true;
     this.mnuOrderReceptionsApproval.Checked   = false;
     this.mnuOrderReceptionsApproval.Enabled   = true;
     this.mnuOrderReceptionsApproval.Name      = "mnuOrderReceptionsApproval";
     this.mnuOrderReceptionsApproval.Text      = "Add Stock to Inventory";
     this.mnuOrderReceptionsApproval.Click    += new System.EventHandler(this.mnuOrderReceptionsApproval_Click);
     //
     // mnuMainInventory
     //
     this.mnuMainInventory.Available   = true;
     this.mnuMainInventory.Checked     = false;
     this.mnuMainInventory.Enabled     = true;
     this.mnuMainInventory.MergeAction = System.Windows.Forms.MergeAction.Remove;
     this.mnuMainInventory.Name        = "mnuMainInventory";
     this.mnuMainInventory.Text        = "&Inventory";
     this.mnuMainInventory.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mnuAddStockManually, this.mnuAdjustStockManually });
     //
     // mnuAddStockManually
     //
     this.mnuAddStockManually.Available = true;
     this.mnuAddStockManually.Checked   = false;
     this.mnuAddStockManually.Enabled   = true;
     this.mnuAddStockManually.Name      = "mnuAddStockManually";
     this.mnuAddStockManually.Text      = "Inventory Update";
     this.mnuAddStockManually.Click    += new System.EventHandler(this.mnuAddStockManually_Click);
     //
     // mnuAdjustStockManually
     //
     this.mnuAdjustStockManually.Available = true;
     this.mnuAdjustStockManually.Checked   = false;
     this.mnuAdjustStockManually.Enabled   = true;
     this.mnuAdjustStockManually.Name      = "mnuAdjustStockManually";
     this.mnuAdjustStockManually.Text      = "Inventory Adjust";
     this.mnuAdjustStockManually.Click    += new System.EventHandler(this.mnuAdjustStockManually_Click);
     //
     // mnuAccounts
     //
     this.mnuAccounts.Available   = true;
     this.mnuAccounts.Checked     = false;
     this.mnuAccounts.Enabled     = true;
     this.mnuAccounts.MergeAction = System.Windows.Forms.MergeAction.Remove;
     this.mnuAccounts.Name        = "mnuAccounts";
     this.mnuAccounts.Text        = "&Maintenance";
     this.mnuAccounts.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mnuProducts, this.mnuCategories, this.mnuSecurity });
     //
     // mnuProducts
     //
     this.mnuProducts.Available = true;
     this.mnuProducts.Checked   = false;
     this.mnuProducts.Enabled   = true;
     this.mnuProducts.Name      = "mnuProducts";
     this.mnuProducts.Text      = "Manage Products";
     this.mnuProducts.Click    += new System.EventHandler(this.mnuProducts_Click);
     //
     // mnuCategories
     //
     this.mnuCategories.Available = true;
     this.mnuCategories.Checked   = false;
     this.mnuCategories.Enabled   = true;
     this.mnuCategories.Name      = "mnuCategories";
     this.mnuCategories.Text      = "Manage Product Categories";
     this.mnuCategories.Click    += new System.EventHandler(this.mnuCategories_Click);
     //
     // mnuSecurity
     //
     this.mnuSecurity.Available = true;
     this.mnuSecurity.Checked   = false;
     this.mnuSecurity.Enabled   = true;
     this.mnuSecurity.Name      = "mnuSecurity";
     this.mnuSecurity.Text      = "Manage Users";
     this.mnuSecurity.Click    += new System.EventHandler(this.mnuSecurity_Click);
     //
     // mnuHelp
     //
     this.mnuHelp.Available   = true;
     this.mnuHelp.Checked     = false;
     this.mnuHelp.Enabled     = true;
     this.mnuHelp.MergeAction = System.Windows.Forms.MergeAction.Remove;
     this.mnuHelp.Name        = "mnuHelp";
     this.mnuHelp.Text        = "&Help";
     this.mnuHelp.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mnuViewHelp, this.mnuAbout });
     //
     // mnuViewHelp
     //
     this.mnuViewHelp.Available = true;
     this.mnuViewHelp.Checked   = false;
     this.mnuViewHelp.Enabled   = true;
     this.mnuViewHelp.Name      = "mnuViewHelp";
     this.mnuViewHelp.Text      = "&View Help";
     //
     // mnuAbout
     //
     this.mnuAbout.Available = true;
     this.mnuAbout.Checked   = false;
     this.mnuAbout.Enabled   = true;
     this.mnuAbout.Name      = "mnuAbout";
     this.mnuAbout.Text      = "&About";
     this.mnuAbout.Click    += new System.EventHandler(this.mnuAbout_Click);
     //
     // sbStatusBar
     //
     this.sbStatusBar.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.sbStatusBar.Location         = new System.Drawing.Point(0, 490);
     this.sbStatusBar.Name             = "sbStatusBar";
     this.sbStatusBar.ShowItemToolTips = true;
     this.sbStatusBar.Size             = new System.Drawing.Size(765, 25);
     this.sbStatusBar.TabIndex         = 0;
     this.sbStatusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this._sbStatusBar_Panel1 });
     this.sbStatusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this._sbStatusBar_Panel2 });
     this.sbStatusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this._sbStatusBar_Panel3 });
     //
     // _sbStatusBar_Panel1
     //
     this._sbStatusBar_Panel1.AutoSize           = true;
     this._sbStatusBar_Panel1.AutoSize           = false;
     this._sbStatusBar_Panel1.BorderSides        = (System.Windows.Forms.ToolStripStatusLabelBorderSides)(System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom);
     this._sbStatusBar_Panel1.BorderStyle        = System.Windows.Forms.Border3DStyle.SunkenOuter;
     this._sbStatusBar_Panel1.DoubleClickEnabled = true;
     this._sbStatusBar_Panel1.Margin             = new System.Windows.Forms.Padding(0);
     this._sbStatusBar_Panel1.Size              = new System.Drawing.Size(552, 25);
     this._sbStatusBar_Panel1.TextAlign         = System.Drawing.ContentAlignment.MiddleLeft;
     this._sbStatusBar_Panel1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // _sbStatusBar_Panel2
     //
     this._sbStatusBar_Panel2.AutoSize           = false;
     this._sbStatusBar_Panel2.BorderSides        = (System.Windows.Forms.ToolStripStatusLabelBorderSides)(System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom);
     this._sbStatusBar_Panel2.BorderStyle        = System.Windows.Forms.Border3DStyle.SunkenOuter;
     this._sbStatusBar_Panel2.DoubleClickEnabled = true;
     this._sbStatusBar_Panel2.Margin             = new System.Windows.Forms.Padding(0);
     this._sbStatusBar_Panel2.Size              = new System.Drawing.Size(96, 25);
     this._sbStatusBar_Panel2.TextAlign         = System.Drawing.ContentAlignment.MiddleLeft;
     this._sbStatusBar_Panel2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // _sbStatusBar_Panel3
     //
     this._sbStatusBar_Panel3.AutoSize           = false;
     this._sbStatusBar_Panel3.BorderSides        = (System.Windows.Forms.ToolStripStatusLabelBorderSides)(System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom);
     this._sbStatusBar_Panel3.BorderStyle        = System.Windows.Forms.Border3DStyle.SunkenOuter;
     this._sbStatusBar_Panel3.DoubleClickEnabled = true;
     this._sbStatusBar_Panel3.Margin             = new System.Windows.Forms.Padding(0);
     this._sbStatusBar_Panel3.Size              = new System.Drawing.Size(96, 25);
     this._sbStatusBar_Panel3.TextAlign         = System.Drawing.ContentAlignment.MiddleLeft;
     this._sbStatusBar_Panel3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // frmMain
     //
     this.BackColor  = System.Drawing.SystemColors.AppWorkspace;
     this.ClientSize = new System.Drawing.Size(765, 515);
     this.Controls.Add(this.sbStatusBar);
     this.Controls.Add(MainMenu1);
     this.Cursor         = System.Windows.Forms.Cursors.Default;
     this.Enabled        = true;
     this.IsMdiContainer = true;
     this.Location       = new System.Drawing.Point(15, 57);
     this.Name           = "frmMain";
     this.RightToLeft    = System.Windows.Forms.RightToLeft.No;
     this.Text           = "Sales Agent";
     this.WindowState    = System.Windows.Forms.FormWindowState.Normal;
     this.sbStatusBar.ResumeLayout(false);
     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.txtID = new System.Windows.Forms.TextBox();
     this.label13 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.txtdonvi = new System.Windows.Forms.MaskedTextBox();
     this.txtghichu = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtbieutuong = new System.Windows.Forms.TextBox();
     this.txttenttl = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.txttenttc = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.txttentt = new System.Windows.Forms.TextBox();
     this.txtmatt = new System.Windows.Forms.TextBox();
     this.statusStrip2 = new System.Windows.Forms.StatusStrip();
     this.tsslThem = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsslSua = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel6 = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsslDong = new System.Windows.Forms.ToolStripStatusLabel();
     this.statusStrip2.SuspendLayout();
     this.SuspendLayout();
     //
     // txtID
     //
     this.txtID.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.txtID.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtID.Location = new System.Drawing.Point(116, 2);
     this.txtID.Name = "txtID";
     this.txtID.ReadOnly = true;
     this.txtID.Size = new System.Drawing.Size(65, 20);
     this.txtID.TabIndex = 100;
     this.txtID.Text = "0";
     this.txtID.Visible = false;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(26, 132);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(42, 14);
     this.label13.TabIndex = 113;
     this.label13.Text = "Ghi chú";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(26, 8);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(60, 14);
     this.label1.TabIndex = 98;
     this.label1.Text = "Tiền Tệ ID";
     this.label1.Visible = false;
     //
     // txtdonvi
     //
     this.txtdonvi.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtdonvi.Location = new System.Drawing.Point(414, 96);
     this.txtdonvi.Mask = "9999999";
     this.txtdonvi.Name = "txtdonvi";
     this.txtdonvi.Size = new System.Drawing.Size(186, 20);
     this.txtdonvi.TabIndex = 5;
     //
     // txtghichu
     //
     this.txtghichu.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtghichu.Location = new System.Drawing.Point(115, 132);
     this.txtghichu.MaxLength = 100;
     this.txtghichu.Multiline = true;
     this.txtghichu.Name = "txtghichu";
     this.txtghichu.Size = new System.Drawing.Size(485, 92);
     this.txtghichu.TabIndex = 6;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(25, 37);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(55, 14);
     this.label2.TabIndex = 99;
     this.label2.Text = "Mã tiền tệ";
     //
     // txtbieutuong
     //
     this.txtbieutuong.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtbieutuong.Location = new System.Drawing.Point(115, 96);
     this.txtbieutuong.MaxLength = 100;
     this.txtbieutuong.Name = "txtbieutuong";
     this.txtbieutuong.Size = new System.Drawing.Size(180, 20);
     this.txtbieutuong.TabIndex = 2;
     //
     // txttenttl
     //
     this.txttenttl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txttenttl.Location = new System.Drawing.Point(414, 64);
     this.txttenttl.MaxLength = 100;
     this.txttenttl.Name = "txttenttl";
     this.txttenttl.Size = new System.Drawing.Size(186, 20);
     this.txttenttl.TabIndex = 4;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(25, 66);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(59, 14);
     this.label3.TabIndex = 100;
     this.label3.Text = "Tên tiền tệ";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(325, 98);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(82, 14);
     this.label7.TabIndex = 104;
     this.label7.Text = "Đợn vị làm tròn";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(324, 37);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(84, 14);
     this.label4.TabIndex = 101;
     this.label4.Text = "Tên tiền tệ chẵn";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(26, 98);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(60, 14);
     this.label6.TabIndex = 103;
     this.label6.Text = "Biểu tượng ";
     //
     // txttenttc
     //
     this.txttenttc.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txttenttc.Location = new System.Drawing.Point(414, 35);
     this.txttenttc.MaxLength = 100;
     this.txttenttc.Name = "txttenttc";
     this.txttenttc.Size = new System.Drawing.Size(186, 20);
     this.txttenttc.TabIndex = 3;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(325, 70);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(70, 14);
     this.label5.TabIndex = 102;
     this.label5.Text = "Tên tiền tệ lẻ";
     //
     // txttentt
     //
     this.txttentt.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txttentt.Location = new System.Drawing.Point(115, 64);
     this.txttentt.MaxLength = 100;
     this.txttentt.Name = "txttentt";
     this.txttentt.Size = new System.Drawing.Size(180, 20);
     this.txttentt.TabIndex = 1;
     //
     // txtmatt
     //
     this.txtmatt.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.txtmatt.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtmatt.Location = new System.Drawing.Point(115, 35);
     this.txtmatt.Name = "txtmatt";
     this.txtmatt.ReadOnly = true;
     this.txtmatt.Size = new System.Drawing.Size(180, 20);
     this.txtmatt.TabIndex = 200;
     //
     // statusStrip2
     //
     this.statusStrip2.BackColor = System.Drawing.Color.LightSteelBlue;
     this.statusStrip2.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.statusStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsslThem,
     this.tsslSua,
     this.toolStripStatusLabel6,
     this.tsslDong});
     this.statusStrip2.Location = new System.Drawing.Point(0, 245);
     this.statusStrip2.Name = "statusStrip2";
     this.statusStrip2.Size = new System.Drawing.Size(634, 26);
     this.statusStrip2.TabIndex = 118;
     this.statusStrip2.Text = "statusStrip2";
     //
     // tsslThem
     //
     this.tsslThem.Image = global::GUI.Properties.Resources.Them;
     this.tsslThem.Name = "tsslThem";
     this.tsslThem.Size = new System.Drawing.Size(196, 21);
     this.tsslThem.Spring = true;
     this.tsslThem.Text = "Thêm";
     this.tsslThem.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.tsslThem.Click += new System.EventHandler(this.tsslThem_Click);
     this.tsslThem.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.tsslThem.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // tsslSua
     //
     this.tsslSua.Image = global::GUI.Properties.Resources.Sua;
     this.tsslSua.Name = "tsslSua";
     this.tsslSua.Size = new System.Drawing.Size(196, 21);
     this.tsslSua.Spring = true;
     this.tsslSua.Text = "Sửa ";
     this.tsslSua.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.tsslSua.Click += new System.EventHandler(this.tsslSua_Click);
     this.tsslSua.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.tsslSua.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // toolStripStatusLabel6
     //
     this.toolStripStatusLabel6.Name = "toolStripStatusLabel6";
     this.toolStripStatusLabel6.Size = new System.Drawing.Size(0, 21);
     //
     // tsslDong
     //
     this.tsslDong.Image = global::GUI.Properties.Resources.Tro_ve;
     this.tsslDong.Name = "tsslDong";
     this.tsslDong.Size = new System.Drawing.Size(196, 21);
     this.tsslDong.Spring = true;
     this.tsslDong.Text = "Trở Về";
     this.tsslDong.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.tsslDong.Click += new System.EventHandler(this.tsslDong_Click);
     this.tsslDong.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.tsslDong.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // frmXuly_TienTe
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(634, 271);
     this.ControlBox = false;
     this.Controls.Add(this.txtdonvi);
     this.Controls.Add(this.txtID);
     this.Controls.Add(this.statusStrip2);
     this.Controls.Add(this.label13);
     this.Controls.Add(this.txtbieutuong);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.txtmatt);
     this.Controls.Add(this.txtghichu);
     this.Controls.Add(this.txttentt);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.txttenttc);
     this.Controls.Add(this.txttenttl);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label7);
     this.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.Name = "frmXuly_TienTe";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Xử Lý Tiền Tệ";
     this.Load += new System.EventHandler(this.frmXuly_TienTe_Load);
     this.statusStrip2.ResumeLayout(false);
     this.statusStrip2.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()
 {
     this.picShowScreen = new System.Windows.Forms.PictureBox();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.lbIP = new System.Windows.Forms.ToolStripStatusLabel();
     this.lbSize = new System.Windows.Forms.ToolStripStatusLabel();
     this.lbMouseMove = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.lbStatus = new System.Windows.Forms.ToolStripStatusLabel();
     this.cbxMouse = new System.Windows.Forms.CheckBox();
     this.cbxKeyBoard = new System.Windows.Forms.CheckBox();
     ((System.ComponentModel.ISupportInitialize)(this.picShowScreen)).BeginInit();
     this.statusStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // picShowScreen
     //
     this.picShowScreen.Dock = System.Windows.Forms.DockStyle.Fill;
     this.picShowScreen.Location = new System.Drawing.Point(0, 0);
     this.picShowScreen.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.picShowScreen.Name = "picShowScreen";
     this.picShowScreen.Size = new System.Drawing.Size(778, 514);
     this.picShowScreen.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.picShowScreen.TabIndex = 0;
     this.picShowScreen.TabStop = false;
     this.picShowScreen.MouseClick += new System.Windows.Forms.MouseEventHandler(this.picShowScreen_MouseClick);
     this.picShowScreen.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.picShowScreen_MouseDoubleClick);
     this.picShowScreen.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picShowScreen_MouseDown);
     this.picShowScreen.MouseMove += new System.Windows.Forms.MouseEventHandler(this.picShowScreen_MouseMove);
     this.picShowScreen.MouseUp += new System.Windows.Forms.MouseEventHandler(this.picShowScreen_MouseUp);
     //
     // statusStrip1
     //
     this.statusStrip1.BackColor = System.Drawing.Color.Transparent;
     this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.lbIP,
     this.lbSize,
     this.lbMouseMove,
     this.toolStripStatusLabel1,
     this.lbStatus});
     this.statusStrip1.Location = new System.Drawing.Point(0, 514);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Padding = new System.Windows.Forms.Padding(1, 0, 16, 0);
     this.statusStrip1.Size = new System.Drawing.Size(778, 30);
     this.statusStrip1.TabIndex = 5;
     this.statusStrip1.Text = "statusStrip1";
     //
     // lbIP
     //
     this.lbIP.Name = "lbIP";
     this.lbIP.Size = new System.Drawing.Size(27, 25);
     this.lbIP.Text = "IP";
     //
     // lbSize
     //
     this.lbSize.Name = "lbSize";
     this.lbSize.Size = new System.Drawing.Size(43, 25);
     this.lbSize.Text = "Size";
     //
     // lbMouseMove
     //
     this.lbMouseMove.Name = "lbMouseMove";
     this.lbMouseMove.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lbMouseMove.Size = new System.Drawing.Size(52, 25);
     this.lbMouseMove.Text = "Point";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(27, 25);
     this.toolStripStatusLabel1.Text = "   ";
     //
     // lbStatus
     //
     this.lbStatus.Name = "lbStatus";
     this.lbStatus.Size = new System.Drawing.Size(64, 25);
     this.lbStatus.Text = "Status:";
     //
     // cbxMouse
     //
     this.cbxMouse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cbxMouse.AutoSize = true;
     this.cbxMouse.Location = new System.Drawing.Point(458, 520);
     this.cbxMouse.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxMouse.Name = "cbxMouse";
     this.cbxMouse.Size = new System.Drawing.Size(137, 24);
     this.cbxMouse.TabIndex = 6;
     this.cbxMouse.Text = "Mouse remote";
     this.cbxMouse.UseVisualStyleBackColor = true;
     this.cbxMouse.CheckedChanged += new System.EventHandler(this.cbxMouse_CheckedChanged);
     //
     // cbxKeyBoard
     //
     this.cbxKeyBoard.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cbxKeyBoard.AutoSize = true;
     this.cbxKeyBoard.Location = new System.Drawing.Point(601, 520);
     this.cbxKeyBoard.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxKeyBoard.Name = "cbxKeyBoard";
     this.cbxKeyBoard.Size = new System.Drawing.Size(156, 24);
     this.cbxKeyBoard.TabIndex = 7;
     this.cbxKeyBoard.Text = "Keyboard remote";
     this.cbxKeyBoard.UseVisualStyleBackColor = true;
     this.cbxKeyBoard.CheckedChanged += new System.EventHandler(this.cbxKeyBoard_CheckedChanged);
     //
     // RemoteScreenForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.ClientSize = new System.Drawing.Size(778, 544);
     this.Controls.Add(this.cbxKeyBoard);
     this.Controls.Add(this.cbxMouse);
     this.Controls.Add(this.picShowScreen);
     this.Controls.Add(this.statusStrip1);
     this.KeyPreview = true;
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name = "RemoteScreenForm";
     this.Text = "RemoteScreen";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.RemoteScreenForm_FormClosed);
     this.SizeChanged += new System.EventHandler(this.RemoteScreenForm_SizeChanged);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.RemoteScreenForm_KeyDown);
     this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.RemoteScreenForm_KeyUp);
     ((System.ComponentModel.ISupportInitialize)(this.picShowScreen)).EndInit();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.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()
 {
     this.components = new System.ComponentModel.Container();
     this.lbhienthidiachi = new System.Windows.Forms.Label();
     this.lbhienthiten = new System.Windows.Forms.Label();
     this.lbhienthima = new System.Windows.Forms.Label();
     this.txtdiengiai = new System.Windows.Forms.TextBox();
     this.lbdiachi = new System.Windows.Forms.Label();
     this.lbdiengiai = new System.Windows.Forms.Label();
     this.txtsotienthanhtoan = new System.Windows.Forms.TextBox();
     this.lbsotienthanhtoan = new System.Windows.Forms.Label();
     this.cbbtientetygia = new System.Windows.Forms.ComboBox();
     this.txttientetygia = new System.Windows.Forms.TextBox();
     this.lbten = new System.Windows.Forms.Label();
     this.lbtientetygia = new System.Windows.Forms.Label();
     this.cbbcotaikhoan = new System.Windows.Forms.ComboBox();
     this.lbcotaikhoan = new System.Windows.Forms.Label();
     this.cbbnotaikhoan = new System.Windows.Forms.ComboBox();
     this.lbma = new System.Windows.Forms.Label();
     this.lbnotaikhoan = new System.Windows.Forms.Label();
     this.txtnguoinoptien = new System.Windows.Forms.TextBox();
     this.lbnguoinoptien = new System.Windows.Forms.Label();
     this.gnthongtindoituong = new System.Windows.Forms.GroupBox();
     this.txtdoituong = new System.Windows.Forms.TextBox();
     this.lbdoituong = new System.Windows.Forms.Label();
     this.gbtrungtamloinhuam = new System.Windows.Forms.GroupBox();
     this.cbbnhomhangcaptren = new System.Windows.Forms.ComboBox();
     this.lbnhomhang = new System.Windows.Forms.Label();
     this.cbbkhohang = new System.Windows.Forms.ComboBox();
     this.lbkhohang = new System.Windows.Forms.Label();
     this.lbloaichungtu = new System.Windows.Forms.Label();
     this.cbbkhoanmuc = new System.Windows.Forms.ComboBox();
     this.lbkhoanmuc = new System.Windows.Forms.Label();
     this.cbbloaichungtu = new System.Windows.Forms.ComboBox();
     this.label11 = new System.Windows.Forms.Label();
     this.mskngaychungtu = new System.Windows.Forms.MaskedTextBox();
     this.txtsochungtu = new System.Windows.Forms.TextBox();
     this.lbngaychungtu = new System.Windows.Forms.Label();
     this.lbsochungtu = new System.Windows.Forms.Label();
     this.cbbdoituong = new System.Windows.Forms.ComboBox();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.tsslsua = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsslthemmoi = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsslin = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripDropDownButton1 = new System.Windows.Forms.ToolStripDropDownButton();
     this.tssltrove = new System.Windows.Forms.ToolStripStatusLabel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label1 = new System.Windows.Forms.Label();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.btntimkiem = new System.Windows.Forms.Button();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.gnthongtindoituong.SuspendLayout();
     this.gbtrungtamloinhuam.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // lbhienthidiachi
     //
     this.lbhienthidiachi.AutoSize = true;
     this.lbhienthidiachi.ForeColor = System.Drawing.SystemColors.Highlight;
     this.lbhienthidiachi.Location = new System.Drawing.Point(56, 73);
     this.lbhienthidiachi.Name = "lbhienthidiachi";
     this.lbhienthidiachi.Size = new System.Drawing.Size(13, 15);
     this.lbhienthidiachi.TabIndex = 6;
     this.lbhienthidiachi.Text = "3";
     //
     // lbhienthiten
     //
     this.lbhienthiten.AutoSize = true;
     this.lbhienthiten.ForeColor = System.Drawing.SystemColors.Highlight;
     this.lbhienthiten.Location = new System.Drawing.Point(56, 44);
     this.lbhienthiten.Name = "lbhienthiten";
     this.lbhienthiten.Size = new System.Drawing.Size(13, 15);
     this.lbhienthiten.TabIndex = 5;
     this.lbhienthiten.Text = "2";
     //
     // lbhienthima
     //
     this.lbhienthima.AutoSize = true;
     this.lbhienthima.ForeColor = System.Drawing.SystemColors.Highlight;
     this.lbhienthima.Location = new System.Drawing.Point(56, 17);
     this.lbhienthima.Name = "lbhienthima";
     this.lbhienthima.Size = new System.Drawing.Size(13, 15);
     this.lbhienthima.TabIndex = 4;
     this.lbhienthima.Text = "1";
     //
     // txtdiengiai
     //
     this.txtdiengiai.BackColor = System.Drawing.Color.White;
     this.txtdiengiai.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtdiengiai.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtdiengiai.Location = new System.Drawing.Point(90, 272);
     this.txtdiengiai.MaxLength = 100;
     this.txtdiengiai.Name = "txtdiengiai";
     this.txtdiengiai.Size = new System.Drawing.Size(516, 21);
     this.txtdiengiai.TabIndex = 10;
     this.txtdiengiai.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtdiengiai.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtdiengiai_KeyUp);
     //
     // lbdiachi
     //
     this.lbdiachi.AutoSize = true;
     this.lbdiachi.Location = new System.Drawing.Point(6, 73);
     this.lbdiachi.Name = "lbdiachi";
     this.lbdiachi.Size = new System.Drawing.Size(44, 15);
     this.lbdiachi.TabIndex = 2;
     this.lbdiachi.Text = "Địa chỉ:";
     //
     // lbdiengiai
     //
     this.lbdiengiai.AutoSize = true;
     this.lbdiengiai.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbdiengiai.Location = new System.Drawing.Point(31, 274);
     this.lbdiengiai.Name = "lbdiengiai";
     this.lbdiengiai.Size = new System.Drawing.Size(52, 15);
     this.lbdiengiai.TabIndex = 86;
     this.lbdiengiai.Text = "Diễn giải:";
     //
     // txtsotienthanhtoan
     //
     this.txtsotienthanhtoan.BackColor = System.Drawing.Color.White;
     this.txtsotienthanhtoan.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtsotienthanhtoan.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtsotienthanhtoan.Location = new System.Drawing.Point(425, 231);
     this.txtsotienthanhtoan.Name = "txtsotienthanhtoan";
     this.txtsotienthanhtoan.Size = new System.Drawing.Size(194, 21);
     this.txtsotienthanhtoan.TabIndex = 9;
     this.txtsotienthanhtoan.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtsotienthanhtoan.TextChanged += new System.EventHandler(this.txtsotienthanhtoan_TextChanged);
     //
     // lbsotienthanhtoan
     //
     this.lbsotienthanhtoan.AutoSize = true;
     this.lbsotienthanhtoan.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbsotienthanhtoan.Location = new System.Drawing.Point(322, 235);
     this.lbsotienthanhtoan.Name = "lbsotienthanhtoan";
     this.lbsotienthanhtoan.Size = new System.Drawing.Size(97, 15);
     this.lbsotienthanhtoan.TabIndex = 84;
     this.lbsotienthanhtoan.Text = "Số tiền thanh toán:";
     //
     // cbbtientetygia
     //
     this.cbbtientetygia.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbbtientetygia.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cbbtientetygia.FormattingEnabled = true;
     this.cbbtientetygia.Location = new System.Drawing.Point(106, 232);
     this.cbbtientetygia.Name = "cbbtientetygia";
     this.cbbtientetygia.Size = new System.Drawing.Size(118, 23);
     this.cbbtientetygia.TabIndex = 7;
     this.cbbtientetygia.SelectedIndexChanged += new System.EventHandler(this.cbbtientetygia_SelectedIndexChanged);
     //
     // txttientetygia
     //
     this.txttientetygia.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txttientetygia.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txttientetygia.Enabled = false;
     this.txttientetygia.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txttientetygia.Location = new System.Drawing.Point(230, 233);
     this.txttientetygia.Name = "txttientetygia";
     this.txttientetygia.Size = new System.Drawing.Size(70, 21);
     this.txttientetygia.TabIndex = 82;
     this.txttientetygia.TabStop = false;
     this.txttientetygia.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lbten
     //
     this.lbten.AutoSize = true;
     this.lbten.Location = new System.Drawing.Point(6, 44);
     this.lbten.Name = "lbten";
     this.lbten.Size = new System.Drawing.Size(29, 15);
     this.lbten.TabIndex = 1;
     this.lbten.Text = "Tên:";
     //
     // lbtientetygia
     //
     this.lbtientetygia.AutoSize = true;
     this.lbtientetygia.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbtientetygia.Location = new System.Drawing.Point(19, 237);
     this.lbtientetygia.Name = "lbtientetygia";
     this.lbtientetygia.Size = new System.Drawing.Size(81, 15);
     this.lbtientetygia.TabIndex = 81;
     this.lbtientetygia.Text = "Tiền tệ /Tỷ giá:";
     //
     // cbbcotaikhoan
     //
     this.cbbcotaikhoan.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbbcotaikhoan.Enabled = false;
     this.cbbcotaikhoan.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cbbcotaikhoan.FormattingEnabled = true;
     this.cbbcotaikhoan.Location = new System.Drawing.Point(91, 369);
     this.cbbcotaikhoan.Name = "cbbcotaikhoan";
     this.cbbcotaikhoan.Size = new System.Drawing.Size(200, 23);
     this.cbbcotaikhoan.TabIndex = 8;
     this.cbbcotaikhoan.Visible = false;
     //
     // lbcotaikhoan
     //
     this.lbcotaikhoan.AutoSize = true;
     this.lbcotaikhoan.Enabled = false;
     this.lbcotaikhoan.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbcotaikhoan.Location = new System.Drawing.Point(13, 374);
     this.lbcotaikhoan.Name = "lbcotaikhoan";
     this.lbcotaikhoan.Size = new System.Drawing.Size(71, 15);
     this.lbcotaikhoan.TabIndex = 77;
     this.lbcotaikhoan.Text = "Có tài khoản:";
     this.lbcotaikhoan.Visible = false;
     //
     // cbbnotaikhoan
     //
     this.cbbnotaikhoan.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbbnotaikhoan.Enabled = false;
     this.cbbnotaikhoan.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cbbnotaikhoan.FormattingEnabled = true;
     this.cbbnotaikhoan.Location = new System.Drawing.Point(90, 337);
     this.cbbnotaikhoan.Name = "cbbnotaikhoan";
     this.cbbnotaikhoan.Size = new System.Drawing.Size(200, 23);
     this.cbbnotaikhoan.TabIndex = 6;
     this.cbbnotaikhoan.Visible = false;
     //
     // lbma
     //
     this.lbma.AutoSize = true;
     this.lbma.Location = new System.Drawing.Point(6, 17);
     this.lbma.Name = "lbma";
     this.lbma.Size = new System.Drawing.Size(27, 15);
     this.lbma.TabIndex = 0;
     this.lbma.Text = "Mã:";
     //
     // lbnotaikhoan
     //
     this.lbnotaikhoan.AutoSize = true;
     this.lbnotaikhoan.Enabled = false;
     this.lbnotaikhoan.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbnotaikhoan.Location = new System.Drawing.Point(12, 342);
     this.lbnotaikhoan.Name = "lbnotaikhoan";
     this.lbnotaikhoan.Size = new System.Drawing.Size(72, 15);
     this.lbnotaikhoan.TabIndex = 75;
     this.lbnotaikhoan.Text = "Nợ tài khoản:";
     this.lbnotaikhoan.Visible = false;
     //
     // txtnguoinoptien
     //
     this.txtnguoinoptien.BackColor = System.Drawing.Color.White;
     this.txtnguoinoptien.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtnguoinoptien.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtnguoinoptien.Location = new System.Drawing.Point(102, 203);
     this.txtnguoinoptien.MaxLength = 100;
     this.txtnguoinoptien.Name = "txtnguoinoptien";
     this.txtnguoinoptien.Size = new System.Drawing.Size(200, 21);
     this.txtnguoinoptien.TabIndex = 5;
     this.txtnguoinoptien.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lbnguoinoptien
     //
     this.lbnguoinoptien.AutoSize = true;
     this.lbnguoinoptien.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbnguoinoptien.Location = new System.Drawing.Point(13, 205);
     this.lbnguoinoptien.Name = "lbnguoinoptien";
     this.lbnguoinoptien.Size = new System.Drawing.Size(83, 15);
     this.lbnguoinoptien.TabIndex = 71;
     this.lbnguoinoptien.Text = "Người nộp tiền:";
     //
     // gnthongtindoituong
     //
     this.gnthongtindoituong.Controls.Add(this.lbhienthidiachi);
     this.gnthongtindoituong.Controls.Add(this.lbhienthiten);
     this.gnthongtindoituong.Controls.Add(this.lbhienthima);
     this.gnthongtindoituong.Controls.Add(this.lbdiachi);
     this.gnthongtindoituong.Controls.Add(this.lbten);
     this.gnthongtindoituong.Controls.Add(this.lbma);
     this.gnthongtindoituong.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gnthongtindoituong.Location = new System.Drawing.Point(16, 97);
     this.gnthongtindoituong.Name = "gnthongtindoituong";
     this.gnthongtindoituong.Size = new System.Drawing.Size(603, 101);
     this.gnthongtindoituong.TabIndex = 70;
     this.gnthongtindoituong.TabStop = false;
     this.gnthongtindoituong.Text = "Thông tin đối tượng";
     //
     // txtdoituong
     //
     this.txtdoituong.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtdoituong.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtdoituong.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtdoituong.Location = new System.Drawing.Point(530, 70);
     this.txtdoituong.Name = "txtdoituong";
     this.txtdoituong.ReadOnly = true;
     this.txtdoituong.Size = new System.Drawing.Size(89, 21);
     this.txtdoituong.TabIndex = 69;
     this.txtdoituong.TabStop = false;
     this.txtdoituong.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lbdoituong
     //
     this.lbdoituong.AutoSize = true;
     this.lbdoituong.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbdoituong.Location = new System.Drawing.Point(311, 70);
     this.lbdoituong.Name = "lbdoituong";
     this.lbdoituong.Size = new System.Drawing.Size(59, 15);
     this.lbdoituong.TabIndex = 67;
     this.lbdoituong.Text = "Đối tượng:";
     //
     // gbtrungtamloinhuam
     //
     this.gbtrungtamloinhuam.Controls.Add(this.cbbnhomhangcaptren);
     this.gbtrungtamloinhuam.Controls.Add(this.lbnhomhang);
     this.gbtrungtamloinhuam.Controls.Add(this.cbbkhohang);
     this.gbtrungtamloinhuam.Controls.Add(this.lbkhohang);
     this.gbtrungtamloinhuam.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gbtrungtamloinhuam.Location = new System.Drawing.Point(306, 299);
     this.gbtrungtamloinhuam.Name = "gbtrungtamloinhuam";
     this.gbtrungtamloinhuam.Size = new System.Drawing.Size(313, 92);
     this.gbtrungtamloinhuam.TabIndex = 64;
     this.gbtrungtamloinhuam.TabStop = false;
     this.gbtrungtamloinhuam.Text = "Trung tâm lợi nhuận (Profit Centers)";
     this.gbtrungtamloinhuam.Visible = false;
     //
     // cbbnhomhangcaptren
     //
     this.cbbnhomhangcaptren.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbbnhomhangcaptren.FormattingEnabled = true;
     this.cbbnhomhangcaptren.Location = new System.Drawing.Point(119, 53);
     this.cbbnhomhangcaptren.Name = "cbbnhomhangcaptren";
     this.cbbnhomhangcaptren.Size = new System.Drawing.Size(181, 23);
     this.cbbnhomhangcaptren.TabIndex = 2;
     //
     // lbnhomhang
     //
     this.lbnhomhang.AutoSize = true;
     this.lbnhomhang.Location = new System.Drawing.Point(48, 56);
     this.lbnhomhang.Name = "lbnhomhang";
     this.lbnhomhang.Size = new System.Drawing.Size(65, 15);
     this.lbnhomhang.TabIndex = 32;
     this.lbnhomhang.Text = "Nhóm hàng:";
     //
     // cbbkhohang
     //
     this.cbbkhohang.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbbkhohang.FormattingEnabled = true;
     this.cbbkhohang.Location = new System.Drawing.Point(119, 20);
     this.cbbkhohang.Name = "cbbkhohang";
     this.cbbkhohang.Size = new System.Drawing.Size(181, 23);
     this.cbbkhohang.TabIndex = 1;
     //
     // lbkhohang
     //
     this.lbkhohang.AutoSize = true;
     this.lbkhohang.Location = new System.Drawing.Point(57, 23);
     this.lbkhohang.Name = "lbkhohang";
     this.lbkhohang.Size = new System.Drawing.Size(56, 15);
     this.lbkhohang.TabIndex = 30;
     this.lbkhohang.Text = "Kho hàng:";
     //
     // lbloaichungtu
     //
     this.lbloaichungtu.AutoSize = true;
     this.lbloaichungtu.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbloaichungtu.Location = new System.Drawing.Point(15, 37);
     this.lbloaichungtu.Name = "lbloaichungtu";
     this.lbloaichungtu.Size = new System.Drawing.Size(77, 15);
     this.lbloaichungtu.TabIndex = 62;
     this.lbloaichungtu.Text = "Loại chứng từ:";
     //
     // cbbkhoanmuc
     //
     this.cbbkhoanmuc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbbkhoanmuc.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cbbkhoanmuc.FormattingEnabled = true;
     this.cbbkhoanmuc.Location = new System.Drawing.Point(102, 67);
     this.cbbkhoanmuc.Name = "cbbkhoanmuc";
     this.cbbkhoanmuc.Size = new System.Drawing.Size(200, 23);
     this.cbbkhoanmuc.TabIndex = 3;
     this.cbbkhoanmuc.SelectedIndexChanged += new System.EventHandler(this.cbbkhoanmuc_SelectedIndexChanged);
     //
     // lbkhoanmuc
     //
     this.lbkhoanmuc.AutoSize = true;
     this.lbkhoanmuc.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbkhoanmuc.Location = new System.Drawing.Point(31, 72);
     this.lbkhoanmuc.Name = "lbkhoanmuc";
     this.lbkhoanmuc.Size = new System.Drawing.Size(65, 15);
     this.lbkhoanmuc.TabIndex = 65;
     this.lbkhoanmuc.Text = "Khoản mục:";
     //
     // cbbloaichungtu
     //
     this.cbbloaichungtu.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbbloaichungtu.Enabled = false;
     this.cbbloaichungtu.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cbbloaichungtu.FormattingEnabled = true;
     this.cbbloaichungtu.Items.AddRange(new object[] {
     "Thu",
     "Chi"});
     this.cbbloaichungtu.Location = new System.Drawing.Point(98, 34);
     this.cbbloaichungtu.Name = "cbbloaichungtu";
     this.cbbloaichungtu.Size = new System.Drawing.Size(140, 23);
     this.cbbloaichungtu.TabIndex = 63;
     this.cbbloaichungtu.TabStop = false;
     this.cbbloaichungtu.SelectedIndexChanged += new System.EventHandler(this.cbbloaichungtu_SelectedIndexChanged);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.Blue;
     this.label11.Location = new System.Drawing.Point(379, 10);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(79, 15);
     this.label11.TabIndex = 59;
     this.label11.Text = "(dd/mm/yyyy)";
     //
     // mskngaychungtu
     //
     this.mskngaychungtu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.mskngaychungtu.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.mskngaychungtu.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mskngaychungtu.Location = new System.Drawing.Point(303, 6);
     this.mskngaychungtu.Mask = "00/00/0000";
     this.mskngaychungtu.Name = "mskngaychungtu";
     this.mskngaychungtu.ReadOnly = true;
     this.mskngaychungtu.Size = new System.Drawing.Size(70, 21);
     this.mskngaychungtu.TabIndex = 58;
     this.mskngaychungtu.TabStop = false;
     this.mskngaychungtu.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.mskngaychungtu.ValidatingType = typeof(System.DateTime);
     //
     // txtsochungtu
     //
     this.txtsochungtu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtsochungtu.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtsochungtu.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtsochungtu.Location = new System.Drawing.Point(98, 6);
     this.txtsochungtu.Name = "txtsochungtu";
     this.txtsochungtu.ReadOnly = true;
     this.txtsochungtu.Size = new System.Drawing.Size(100, 21);
     this.txtsochungtu.TabIndex = 57;
     this.txtsochungtu.TabStop = false;
     this.txtsochungtu.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lbngaychungtu
     //
     this.lbngaychungtu.AutoSize = true;
     this.lbngaychungtu.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbngaychungtu.Location = new System.Drawing.Point(215, 10);
     this.lbngaychungtu.Name = "lbngaychungtu";
     this.lbngaychungtu.Size = new System.Drawing.Size(82, 15);
     this.lbngaychungtu.TabIndex = 56;
     this.lbngaychungtu.Text = "Ngày chứng từ:";
     //
     // lbsochungtu
     //
     this.lbsochungtu.AutoSize = true;
     this.lbsochungtu.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbsochungtu.Location = new System.Drawing.Point(24, 8);
     this.lbsochungtu.Name = "lbsochungtu";
     this.lbsochungtu.Size = new System.Drawing.Size(68, 15);
     this.lbsochungtu.TabIndex = 55;
     this.lbsochungtu.Text = "Số chứng từ:";
     //
     // cbbdoituong
     //
     this.cbbdoituong.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbbdoituong.Enabled = false;
     this.cbbdoituong.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cbbdoituong.FormattingEnabled = true;
     this.cbbdoituong.Location = new System.Drawing.Point(376, 67);
     this.cbbdoituong.Name = "cbbdoituong";
     this.cbbdoituong.Size = new System.Drawing.Size(148, 23);
     this.cbbdoituong.TabIndex = 4;
     this.cbbdoituong.TabStop = false;
     //
     // statusStrip1
     //
     this.statusStrip1.BackColor = System.Drawing.Color.LightSteelBlue;
     this.statusStrip1.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsslsua,
     this.tsslthemmoi,
     this.tsslin,
     this.toolStripDropDownButton1,
     this.tssltrove});
     this.statusStrip1.Location = new System.Drawing.Point(0, 299);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(656, 26);
     this.statusStrip1.TabIndex = 54;
     this.statusStrip1.Text = "statusStrip1";
     this.statusStrip1.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.statusStrip1_ItemClicked);
     //
     // tsslsua
     //
     this.tsslsua.Image = global::GUI.Properties.Resources.Sua;
     this.tsslsua.Name = "tsslsua";
     this.tsslsua.Size = new System.Drawing.Size(140, 21);
     this.tsslsua.Spring = true;
     this.tsslsua.Text = "&Sửa";
     this.tsslsua.Visible = false;
     this.tsslsua.Click += new System.EventHandler(this.tsslsua_Click);
     //
     // tsslthemmoi
     //
     this.tsslthemmoi.Image = global::GUI.Properties.Resources.Them;
     this.tsslthemmoi.Name = "tsslthemmoi";
     this.tsslthemmoi.Size = new System.Drawing.Size(213, 21);
     this.tsslthemmoi.Spring = true;
     this.tsslthemmoi.Text = "&Thêm";
     this.tsslthemmoi.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.tsslthemmoi.Click += new System.EventHandler(this.tsslthemmoi_Click);
     this.tsslthemmoi.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.tsslthemmoi.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // tsslin
     //
     this.tsslin.Image = global::GUI.Properties.Resources.In;
     this.tsslin.Name = "tsslin";
     this.tsslin.Size = new System.Drawing.Size(213, 21);
     this.tsslin.Spring = true;
     this.tsslin.Text = "&In";
     this.tsslin.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.tsslin.Click += new System.EventHandler(this.tsslin_Click);
     this.tsslin.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.tsslin.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // toolStripDropDownButton1
     //
     this.toolStripDropDownButton1.Image = global::GUI.Properties.Resources.khac;
     this.toolStripDropDownButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripDropDownButton1.Name = "toolStripDropDownButton1";
     this.toolStripDropDownButton1.Size = new System.Drawing.Size(78, 25);
     this.toolStripDropDownButton1.Text = "Khác";
     this.toolStripDropDownButton1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripDropDownButton1.Visible = false;
     this.toolStripDropDownButton1.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.toolStripDropDownButton1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // tssltrove
     //
     this.tssltrove.Image = global::GUI.Properties.Resources.Tro_ve;
     this.tssltrove.Name = "tssltrove";
     this.tssltrove.Size = new System.Drawing.Size(213, 21);
     this.tssltrove.Spring = true;
     this.tssltrove.Text = "Trở &về";
     this.tssltrove.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.tssltrove.Click += new System.EventHandler(this.tssltrove_Click_1);
     this.tssltrove.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.tssltrove.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.comboBox1);
     this.panel1.Controls.Add(this.checkBox1);
     this.panel1.Controls.Add(this.lbsochungtu);
     this.panel1.Controls.Add(this.btntimkiem);
     this.panel1.Controls.Add(this.lbngaychungtu);
     this.panel1.Controls.Add(this.txtdiengiai);
     this.panel1.Controls.Add(this.txtsochungtu);
     this.panel1.Controls.Add(this.lbdiengiai);
     this.panel1.Controls.Add(this.cbbnotaikhoan);
     this.panel1.Controls.Add(this.lbnotaikhoan);
     this.panel1.Controls.Add(this.mskngaychungtu);
     this.panel1.Controls.Add(this.lbcotaikhoan);
     this.panel1.Controls.Add(this.txtsotienthanhtoan);
     this.panel1.Controls.Add(this.cbbcotaikhoan);
     this.panel1.Controls.Add(this.label11);
     this.panel1.Controls.Add(this.lbsotienthanhtoan);
     this.panel1.Controls.Add(this.cbbloaichungtu);
     this.panel1.Controls.Add(this.cbbtientetygia);
     this.panel1.Controls.Add(this.lbkhoanmuc);
     this.panel1.Controls.Add(this.txttientetygia);
     this.panel1.Controls.Add(this.cbbkhoanmuc);
     this.panel1.Controls.Add(this.lbtientetygia);
     this.panel1.Controls.Add(this.cbbdoituong);
     this.panel1.Controls.Add(this.lbloaichungtu);
     this.panel1.Controls.Add(this.gbtrungtamloinhuam);
     this.panel1.Controls.Add(this.lbdoituong);
     this.panel1.Controls.Add(this.txtdoituong);
     this.panel1.Controls.Add(this.gnthongtindoituong);
     this.panel1.Controls.Add(this.lbnguoinoptien);
     this.panel1.Controls.Add(this.txtnguoinoptien);
     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(656, 299);
     this.panel1.TabIndex = 89;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(454, 205);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(40, 14);
     this.label1.TabIndex = 89;
     this.label1.Text = "Mã thẻ";
     this.label1.Visible = false;
     //
     // comboBox1
     //
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location = new System.Drawing.Point(500, 201);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(119, 22);
     this.comboBox1.TabIndex = 88;
     this.comboBox1.Visible = false;
     this.comboBox1.TextChanged += new System.EventHandler(this.comboBox1_TextChanged);
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.checkBox1.Location = new System.Drawing.Point(325, 203);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(114, 18);
     this.checkBox1.TabIndex = 87;
     this.checkBox1.Text = "Thu tiền thẻ giá trị";
     this.checkBox1.UseVisualStyleBackColor = true;
     this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // btntimkiem
     //
     this.btntimkiem.FlatAppearance.BorderSize = 0;
     this.btntimkiem.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btntimkiem.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btntimkiem.Image = global::GUI.Properties.Resources.button_search;
     this.btntimkiem.Location = new System.Drawing.Point(625, 67);
     this.btntimkiem.Name = "btntimkiem";
     this.btntimkiem.Size = new System.Drawing.Size(25, 24);
     this.btntimkiem.TabIndex = 4;
     this.btntimkiem.UseVisualStyleBackColor = true;
     this.btntimkiem.Click += new System.EventHandler(this.btntimkiem_Click);
     //
     // timer1
     //
     this.timer1.Interval = 1000;
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // frmXuLyPhieuThuChi
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(656, 325);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.statusStrip1);
     this.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name = "frmXuLyPhieuThuChi";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Quản ly phiếu thu chi";
     this.Resize += new System.EventHandler(this.frmXuLyPhieuThuChi_Resize);
     this.gnthongtindoituong.ResumeLayout(false);
     this.gnthongtindoituong.PerformLayout();
     this.gbtrungtamloinhuam.ResumeLayout(false);
     this.gbtrungtamloinhuam.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#50
0
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
			this.ToolTipMain = new System.Windows.Forms.ToolTip(this.components);
			this.MainMenu1 = new System.Windows.Forms.MenuStrip();
			this.mnuFile = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuCustomer = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuProviders = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuSales = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuDatabase = new System.Windows.Forms.ToolStripMenuItem();
			this._mnuDataAction_0 = new System.Windows.Forms.ToolStripMenuItem();
			this._mnuDataAction_1 = new System.Windows.Forms.ToolStripMenuItem();
			this._mnuDataAction_2 = new System.Windows.Forms.ToolStripSeparator();
			this._mnuDataAction_3 = new System.Windows.Forms.ToolStripMenuItem();
			this._mnuClear_0 = new System.Windows.Forms.ToolStripMenuItem();
			this._mnuClear_1 = new System.Windows.Forms.ToolStripMenuItem();
			this._mnuClear_2 = new System.Windows.Forms.ToolStripSeparator();
			this._mnuClear_3 = new System.Windows.Forms.ToolStripMenuItem();
			this._mnuDataAction_4 = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuReports = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuReport = new System.Windows.Forms.ToolStripMenuItem();
			this._lExit_1 = new System.Windows.Forms.ToolStripSeparator();
			this.mnuExit = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuOrders = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuCreateOrderRequest = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuOrderRequestsApproval = new System.Windows.Forms.ToolStripMenuItem();
			this.lExit2 = new System.Windows.Forms.ToolStripSeparator();
			this.mnuCreateOrderReception = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuOrderReceptionsApproval = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuMainInventory = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuAddStockManually = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuAdjustStockManually = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuAccounts = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuProducts = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuCategories = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuSecurity = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuHelp = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuViewHelp = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuAbout = new System.Windows.Forms.ToolStripMenuItem();
			this.sbStatusBar = new System.Windows.Forms.StatusStrip();
			this._sbStatusBar_Panel1 = new System.Windows.Forms.ToolStripStatusLabel();
			this._sbStatusBar_Panel2 = new System.Windows.Forms.ToolStripStatusLabel();
			this._sbStatusBar_Panel3 = new System.Windows.Forms.ToolStripStatusLabel();
			this.sbStatusBar.SuspendLayout();
			this.SuspendLayout();
			// 
			// MainMenu1
			// 
			this.MainMenu1.Items.AddRange(new System.Windows.Forms.ToolStripItem[]{this.mnuFile, this.mnuOrders, this.mnuMainInventory, this.mnuAccounts, this.mnuHelp});
			// 
			// mnuFile
			// 
			this.mnuFile.Available = true;
			this.mnuFile.Checked = false;
			this.mnuFile.Enabled = true;
			this.mnuFile.MergeAction = System.Windows.Forms.MergeAction.Remove;
			this.mnuFile.Name = "mnuFile";
			this.mnuFile.Text = "&File";
			this.mnuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[]{this.mnuCustomer, this.mnuProviders, this.mnuSales, this.mnuDatabase, this.mnuReports, this._lExit_1, this.mnuExit});
			// 
			// mnuCustomer
			// 
			this.mnuCustomer.Available = true;
			this.mnuCustomer.Checked = false;
			this.mnuCustomer.Enabled = true;
			this.mnuCustomer.Name = "mnuCustomer";
			this.mnuCustomer.Text = "&Manage Customers";
			this.mnuCustomer.Click += new System.EventHandler(this.mnuCustomer_Click);
			// 
			// mnuProviders
			// 
			this.mnuProviders.Available = true;
			this.mnuProviders.Checked = false;
			this.mnuProviders.Enabled = true;
			this.mnuProviders.Name = "mnuProviders";
			this.mnuProviders.Text = "Manage Su&ppliers ";
			this.mnuProviders.Click += new System.EventHandler(this.mnuProviders_Click);
			// 
			// mnuSales
			// 
			this.mnuSales.Available = true;
			this.mnuSales.Checked = false;
			this.mnuSales.Enabled = true;
			this.mnuSales.Name = "mnuSales";
			this.mnuSales.Text = "&Sales";
			// 
			// mnuDatabase
			// 
			this.mnuDatabase.Available = false;
			this.mnuDatabase.Checked = false;
			this.mnuDatabase.Enabled = true;
			this.mnuDatabase.Name = "mnuDatabase";
			this.mnuDatabase.Text = "&Database";
			this.mnuDatabase.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[]{this._mnuDataAction_0, this._mnuDataAction_1, this._mnuDataAction_2, this._mnuDataAction_3, this._mnuDataAction_4});
			// 
			// _mnuDataAction_0
			// 
			this._mnuDataAction_0.Available = true;
			this._mnuDataAction_0.Checked = false;
			this._mnuDataAction_0.Enabled = true;
			this._mnuDataAction_0.Name = "_mnuDataAction_0";
			this._mnuDataAction_0.Text = "&Back up";
			// 
			// _mnuDataAction_1
			// 
			this._mnuDataAction_1.Available = true;
			this._mnuDataAction_1.Checked = false;
			this._mnuDataAction_1.Enabled = true;
			this._mnuDataAction_1.Name = "_mnuDataAction_1";
			this._mnuDataAction_1.Text = "&Restore";
			// 
			// _mnuDataAction_2
			// 
			this._mnuDataAction_2.Available = true;
			this._mnuDataAction_2.Enabled = true;
			this._mnuDataAction_2.Name = "_mnuDataAction_2";
			// 
			// _mnuDataAction_3
			// 
			this._mnuDataAction_3.Available = true;
			this._mnuDataAction_3.Checked = false;
			this._mnuDataAction_3.Enabled = true;
			this._mnuDataAction_3.Name = "_mnuDataAction_3";
			this._mnuDataAction_3.Text = "C&lear records";
			this._mnuDataAction_3.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[]{this._mnuClear_0, this._mnuClear_1, this._mnuClear_2, this._mnuClear_3});
			// 
			// _mnuClear_0
			// 
			this._mnuClear_0.Available = true;
			this._mnuClear_0.Checked = false;
			this._mnuClear_0.Enabled = true;
			this._mnuClear_0.Name = "_mnuClear_0";
			this._mnuClear_0.Text = "&Inventory Items";
			// 
			// _mnuClear_1
			// 
			this._mnuClear_1.Available = true;
			this._mnuClear_1.Checked = false;
			this._mnuClear_1.Enabled = true;
			this._mnuClear_1.Name = "_mnuClear_1";
			this._mnuClear_1.Text = "&Transaction Items";
			// 
			// _mnuClear_2
			// 
			this._mnuClear_2.Available = true;
			this._mnuClear_2.Enabled = true;
			this._mnuClear_2.Name = "_mnuClear_2";
			// 
			// _mnuClear_3
			// 
			this._mnuClear_3.Available = true;
			this._mnuClear_3.Checked = false;
			this._mnuClear_3.Enabled = true;
			this._mnuClear_3.Name = "_mnuClear_3";
			this._mnuClear_3.Text = "&All items";
			// 
			// _mnuDataAction_4
			// 
			this._mnuDataAction_4.Available = true;
			this._mnuDataAction_4.Checked = false;
			this._mnuDataAction_4.Enabled = true;
			this._mnuDataAction_4.Name = "_mnuDataAction_4";
			this._mnuDataAction_4.Text = "&Compact";
			// 
			// mnuReports
			// 
			this.mnuReports.Available = false;
			this.mnuReports.Checked = false;
			this.mnuReports.Enabled = true;
			this.mnuReports.Name = "mnuReports";
			this.mnuReports.Text = "&Reports";
			this.mnuReports.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[]{this.mnuReport});
			// 
			// mnuReport
			// 
			this.mnuReport.Available = true;
			this.mnuReport.Checked = false;
			this.mnuReport.Enabled = true;
			this.mnuReport.Name = "mnuReport";
			this.mnuReport.Text = "&Sales Report";
			// 
			// _lExit_1
			// 
			this._lExit_1.Available = true;
			this._lExit_1.Enabled = true;
			this._lExit_1.Name = "_lExit_1";
			// 
			// mnuExit
			// 
			this.mnuExit.Available = true;
			this.mnuExit.Checked = false;
			this.mnuExit.Enabled = true;
			this.mnuExit.Name = "mnuExit";
			this.mnuExit.Text = "&Exit";
			this.mnuExit.Click += new System.EventHandler(this.mnuExit_Click);
			// 
			// mnuOrders
			// 
			this.mnuOrders.Available = true;
			this.mnuOrders.Checked = false;
			this.mnuOrders.Enabled = true;
			this.mnuOrders.MergeAction = System.Windows.Forms.MergeAction.Remove;
			this.mnuOrders.Name = "mnuOrders";
			this.mnuOrders.Text = "&Orders";
			this.mnuOrders.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[]{this.mnuCreateOrderRequest, this.mnuOrderRequestsApproval, this.lExit2, this.mnuCreateOrderReception, this.mnuOrderReceptionsApproval});
			// 
			// mnuCreateOrderRequest
			// 
			this.mnuCreateOrderRequest.Available = true;
			this.mnuCreateOrderRequest.Checked = false;
			this.mnuCreateOrderRequest.Enabled = true;
			this.mnuCreateOrderRequest.Name = "mnuCreateOrderRequest";
			this.mnuCreateOrderRequest.Text = "Create Order";
			this.mnuCreateOrderRequest.Click += new System.EventHandler(this.mnuCreateOrderRequest_Click);
			// 
			// mnuOrderRequestsApproval
			// 
			this.mnuOrderRequestsApproval.Available = true;
			this.mnuOrderRequestsApproval.Checked = false;
			this.mnuOrderRequestsApproval.Enabled = true;
			this.mnuOrderRequestsApproval.Name = "mnuOrderRequestsApproval";
			this.mnuOrderRequestsApproval.Text = "Create Invoice";
			this.mnuOrderRequestsApproval.Click += new System.EventHandler(this.mnuOrderRequestsApproval_Click);
			// 
			// lExit2
			// 
			this.lExit2.Available = true;
			this.lExit2.Enabled = true;
			this.lExit2.Name = "lExit2";
			// 
			// mnuCreateOrderReception
			// 
			this.mnuCreateOrderReception.Available = true;
			this.mnuCreateOrderReception.Checked = false;
			this.mnuCreateOrderReception.Enabled = true;
			this.mnuCreateOrderReception.Name = "mnuCreateOrderReception";
			this.mnuCreateOrderReception.Text = "Add Stock Order";
			this.mnuCreateOrderReception.Click += new System.EventHandler(this.mnuCreateOrderReception_Click);
			// 
			// mnuOrderReceptionsApproval
			// 
			this.mnuOrderReceptionsApproval.Available = true;
			this.mnuOrderReceptionsApproval.Checked = false;
			this.mnuOrderReceptionsApproval.Enabled = true;
			this.mnuOrderReceptionsApproval.Name = "mnuOrderReceptionsApproval";
			this.mnuOrderReceptionsApproval.Text = "Add Stock to Inventory";
			this.mnuOrderReceptionsApproval.Click += new System.EventHandler(this.mnuOrderReceptionsApproval_Click);
			// 
			// mnuMainInventory
			// 
			this.mnuMainInventory.Available = true;
			this.mnuMainInventory.Checked = false;
			this.mnuMainInventory.Enabled = true;
			this.mnuMainInventory.MergeAction = System.Windows.Forms.MergeAction.Remove;
			this.mnuMainInventory.Name = "mnuMainInventory";
			this.mnuMainInventory.Text = "&Inventory";
			this.mnuMainInventory.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[]{this.mnuAddStockManually, this.mnuAdjustStockManually});
			// 
			// mnuAddStockManually
			// 
			this.mnuAddStockManually.Available = true;
			this.mnuAddStockManually.Checked = false;
			this.mnuAddStockManually.Enabled = true;
			this.mnuAddStockManually.Name = "mnuAddStockManually";
			this.mnuAddStockManually.Text = "Inventory Update";
			this.mnuAddStockManually.Click += new System.EventHandler(this.mnuAddStockManually_Click);
			// 
			// mnuAdjustStockManually
			// 
			this.mnuAdjustStockManually.Available = true;
			this.mnuAdjustStockManually.Checked = false;
			this.mnuAdjustStockManually.Enabled = true;
			this.mnuAdjustStockManually.Name = "mnuAdjustStockManually";
			this.mnuAdjustStockManually.Text = "Inventory Adjust";
			this.mnuAdjustStockManually.Click += new System.EventHandler(this.mnuAdjustStockManually_Click);
			// 
			// mnuAccounts
			// 
			this.mnuAccounts.Available = true;
			this.mnuAccounts.Checked = false;
			this.mnuAccounts.Enabled = true;
			this.mnuAccounts.MergeAction = System.Windows.Forms.MergeAction.Remove;
			this.mnuAccounts.Name = "mnuAccounts";
			this.mnuAccounts.Text = "&Maintenance";
			this.mnuAccounts.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[]{this.mnuProducts, this.mnuCategories, this.mnuSecurity});
			// 
			// mnuProducts
			// 
			this.mnuProducts.Available = true;
			this.mnuProducts.Checked = false;
			this.mnuProducts.Enabled = true;
			this.mnuProducts.Name = "mnuProducts";
			this.mnuProducts.Text = "Manage Products";
			this.mnuProducts.Click += new System.EventHandler(this.mnuProducts_Click);
			// 
			// mnuCategories
			// 
			this.mnuCategories.Available = true;
			this.mnuCategories.Checked = false;
			this.mnuCategories.Enabled = true;
			this.mnuCategories.Name = "mnuCategories";
			this.mnuCategories.Text = "Manage Product Categories";
			this.mnuCategories.Click += new System.EventHandler(this.mnuCategories_Click);
			// 
			// mnuSecurity
			// 
			this.mnuSecurity.Available = true;
			this.mnuSecurity.Checked = false;
			this.mnuSecurity.Enabled = true;
			this.mnuSecurity.Name = "mnuSecurity";
			this.mnuSecurity.Text = "Manage Users";
			this.mnuSecurity.Click += new System.EventHandler(this.mnuSecurity_Click);
			// 
			// mnuHelp
			// 
			this.mnuHelp.Available = true;
			this.mnuHelp.Checked = false;
			this.mnuHelp.Enabled = true;
			this.mnuHelp.MergeAction = System.Windows.Forms.MergeAction.Remove;
			this.mnuHelp.Name = "mnuHelp";
			this.mnuHelp.Text = "&Help";
			this.mnuHelp.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[]{this.mnuViewHelp, this.mnuAbout});
			// 
			// mnuViewHelp
			// 
			this.mnuViewHelp.Available = true;
			this.mnuViewHelp.Checked = false;
			this.mnuViewHelp.Enabled = true;
			this.mnuViewHelp.Name = "mnuViewHelp";
			this.mnuViewHelp.Text = "&View Help";
			// 
			// mnuAbout
			// 
			this.mnuAbout.Available = true;
			this.mnuAbout.Checked = false;
			this.mnuAbout.Enabled = true;
			this.mnuAbout.Name = "mnuAbout";
			this.mnuAbout.Text = "&About";
			this.mnuAbout.Click += new System.EventHandler(this.mnuAbout_Click);
			// 
			// sbStatusBar
			// 
			this.sbStatusBar.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.sbStatusBar.Location = new System.Drawing.Point(0, 490);
			this.sbStatusBar.Name = "sbStatusBar";
			this.sbStatusBar.ShowItemToolTips = true;
			this.sbStatusBar.Size = new System.Drawing.Size(765, 25);
			this.sbStatusBar.TabIndex = 0;
			this.sbStatusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[]{this._sbStatusBar_Panel1});
			this.sbStatusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[]{this._sbStatusBar_Panel2});
			this.sbStatusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[]{this._sbStatusBar_Panel3});
			// 
			// _sbStatusBar_Panel1
			// 
			this._sbStatusBar_Panel1.AutoSize = true;
			this._sbStatusBar_Panel1.AutoSize = false;
			this._sbStatusBar_Panel1.BorderSides = (System.Windows.Forms.ToolStripStatusLabelBorderSides) (System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom);
			this._sbStatusBar_Panel1.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenOuter;
			this._sbStatusBar_Panel1.DoubleClickEnabled = true;
			this._sbStatusBar_Panel1.Margin = new System.Windows.Forms.Padding(0);
			this._sbStatusBar_Panel1.Size = new System.Drawing.Size(552, 25);
			this._sbStatusBar_Panel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._sbStatusBar_Panel1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
			// 
			// _sbStatusBar_Panel2
			// 
			this._sbStatusBar_Panel2.AutoSize = false;
			this._sbStatusBar_Panel2.BorderSides = (System.Windows.Forms.ToolStripStatusLabelBorderSides) (System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom);
			this._sbStatusBar_Panel2.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenOuter;
			this._sbStatusBar_Panel2.DoubleClickEnabled = true;
			this._sbStatusBar_Panel2.Margin = new System.Windows.Forms.Padding(0);
			this._sbStatusBar_Panel2.Size = new System.Drawing.Size(96, 25);
			this._sbStatusBar_Panel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._sbStatusBar_Panel2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
			// 
			// _sbStatusBar_Panel3
			// 
			this._sbStatusBar_Panel3.AutoSize = false;
			this._sbStatusBar_Panel3.BorderSides = (System.Windows.Forms.ToolStripStatusLabelBorderSides) (System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom);
			this._sbStatusBar_Panel3.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenOuter;
			this._sbStatusBar_Panel3.DoubleClickEnabled = true;
			this._sbStatusBar_Panel3.Margin = new System.Windows.Forms.Padding(0);
			this._sbStatusBar_Panel3.Size = new System.Drawing.Size(96, 25);
			this._sbStatusBar_Panel3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._sbStatusBar_Panel3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
			// 
			// frmMain
			// 
			this.BackColor = System.Drawing.SystemColors.AppWorkspace;
			this.ClientSize = new System.Drawing.Size(765, 515);
			this.Controls.Add(this.sbStatusBar);
			this.Controls.Add(MainMenu1);
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.Enabled = true;
			this.IsMdiContainer = true;
			this.Location = new System.Drawing.Point(15, 57);
			this.Name = "frmMain";
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Text = "Sales Agent";
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.sbStatusBar.ResumeLayout(false);
			this.ResumeLayout(false);
		}
示例#51
0
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMenu));
     this.estado = new System.Windows.Forms.StatusStrip();
     this.lb_texto = new System.Windows.Forms.ToolStripStatusLabel();
     this.lb_estado = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolTip = new System.Windows.Forms.ToolTip(this.components);
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.mnuEntradas = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuEntAfectaciones = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuEntAfectacionesSP = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuEntImpresion = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuEntRpt = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuEntRptPartida = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuEntRptFolio = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuEntRptFolioPartida = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuEntRptPedido = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuEntRptProveedor = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuEntRptDetallado = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuEntRptIfai = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuSalidas = new System.Windows.Forms.ToolStripMenuItem();
     this.afec_salidas = new System.Windows.Forms.ToolStripMenuItem();
     this.imp_salida = new System.Windows.Forms.ToolStripMenuItem();
     this.rep_salidas = new System.Windows.Forms.ToolStripMenuItem();
     this.rep_sal_partida = new System.Windows.Forms.ToolStripMenuItem();
     this.rep_sal_folio = new System.Windows.Forms.ToolStripMenuItem();
     this.rep_sal_fol_partida = new System.Windows.Forms.ToolStripMenuItem();
     this.rep_sal_area = new System.Windows.Forms.ToolStripMenuItem();
     this.rep_sal_area_costo = new System.Windows.Forms.ToolStripMenuItem();
     this.rep_sal_art_prop = new System.Windows.Forms.ToolStripMenuItem();
     this.rep_sal_prop_area = new System.Windows.Forms.ToolStripMenuItem();
     this.rep_sal_prop_concentrado = new System.Windows.Forms.ToolStripMenuItem();
     this.rep_sal_detallado = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuInventarios = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuInvCierre = new System.Windows.Forms.ToolStripMenuItem();
     this.gen_cierre = new System.Windows.Forms.ToolStripMenuItem();
     this.imp_cierre = new System.Windows.Forms.ToolStripMenuItem();
     this.borrarCierreToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.registrarInventarioToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.registrarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.marbetesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.asignaciónToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.impresiónToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.conteosToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.erConteoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.doConteoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.difConteosToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.impresiónToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.difKardexInventarioToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.impInventarioToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuRequisicion = new System.Windows.Forms.ToolStripMenuItem();
     this.afectacionesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.impresiónToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.reportesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.costeadaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.porSolicitarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cuadroLicitaciónToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuReportes = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuRptExistencias = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuRptKardex = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuRptCaducidades = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuRptSaldos = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuRptLento = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuRptNulo = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuRptConsumo = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuRptPedidosGenerados = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuCatalogos = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuCatArticulo = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuCatModificar = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuCatModPartida = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuCatModCuadro = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.cat_area = new System.Windows.Forms.ToolStripMenuItem();
     this.cat_partida = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuCambiar = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuSalir = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.estado.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // estado
     //
     this.estado.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.lb_texto});
     this.estado.Location = new System.Drawing.Point(0, 572);
     this.estado.Name = "estado";
     this.estado.Size = new System.Drawing.Size(1025, 22);
     this.estado.TabIndex = 2;
     this.estado.Text = "StatusStrip";
     //
     // lb_texto
     //
     this.lb_texto.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lb_texto.Name = "lb_texto";
     this.lb_texto.Size = new System.Drawing.Size(0, 17);
     //
     // lb_estado
     //
     this.lb_estado.Name = "lb_estado";
     this.lb_estado.Size = new System.Drawing.Size(0, 38);
     //
     // toolStripStatusLabel
     //
     this.toolStripStatusLabel.Name = "toolStripStatusLabel";
     this.toolStripStatusLabel.Size = new System.Drawing.Size(40, 17);
     this.toolStripStatusLabel.Text = "Estado";
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuEntradas,
     this.mnuSalidas,
     this.mnuInventarios,
     this.mnuRequisicion,
     this.mnuReportes,
     this.mnuCatalogos,
     this.mnuCambiar,
     this.mnuSalir});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(1025, 87);
     this.menuStrip1.TabIndex = 4;
     this.menuStrip1.Text = "menuStrip1";
     //
     // mnuEntradas
     //
     this.mnuEntradas.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuEntAfectaciones,
     this.mnuEntAfectacionesSP,
     this.mnuEntImpresion,
     this.mnuEntRpt});
     this.mnuEntradas.Image = global::Almacen.View.Properties.Resources.entrada;
     this.mnuEntradas.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.mnuEntradas.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.mnuEntradas.Name = "mnuEntradas";
     this.mnuEntradas.Size = new System.Drawing.Size(76, 83);
     this.mnuEntradas.Text = "Entradas";
     this.mnuEntradas.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.mnuEntradas.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     //
     // mnuEntAfectaciones
     //
     this.mnuEntAfectaciones.Name = "mnuEntAfectaciones";
     this.mnuEntAfectaciones.Size = new System.Drawing.Size(201, 22);
     this.mnuEntAfectaciones.Text = "Afectaciones";
     this.mnuEntAfectaciones.Click += new System.EventHandler(this.afectacionesToolStripMenuItem_Click);
     //
     // mnuEntAfectacionesSP
     //
     this.mnuEntAfectacionesSP.Name = "mnuEntAfectacionesSP";
     this.mnuEntAfectacionesSP.Size = new System.Drawing.Size(201, 22);
     this.mnuEntAfectacionesSP.Text = "Afectaciones Sin Pedido";
     this.mnuEntAfectacionesSP.Visible = false;
     this.mnuEntAfectacionesSP.Click += new System.EventHandler(this.mnuEntAfectacionesSP_Click);
     //
     // mnuEntImpresion
     //
     this.mnuEntImpresion.Name = "mnuEntImpresion";
     this.mnuEntImpresion.Size = new System.Drawing.Size(201, 22);
     this.mnuEntImpresion.Text = "Impresión";
     this.mnuEntImpresion.Click += new System.EventHandler(this.imp_entrada_Click);
     //
     // mnuEntRpt
     //
     this.mnuEntRpt.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuEntRptPartida,
     this.mnuEntRptFolio,
     this.mnuEntRptFolioPartida,
     this.mnuEntRptPedido,
     this.mnuEntRptProveedor,
     this.mnuEntRptDetallado,
     this.mnuEntRptIfai});
     this.mnuEntRpt.Name = "mnuEntRpt";
     this.mnuEntRpt.Size = new System.Drawing.Size(201, 22);
     this.mnuEntRpt.Text = "Reportes";
     //
     // mnuEntRptPartida
     //
     this.mnuEntRptPartida.Name = "mnuEntRptPartida";
     this.mnuEntRptPartida.Size = new System.Drawing.Size(170, 22);
     this.mnuEntRptPartida.Text = "Por Partida";
     this.mnuEntRptPartida.Click += new System.EventHandler(this.rep_ent_partida_Click);
     //
     // mnuEntRptFolio
     //
     this.mnuEntRptFolio.Name = "mnuEntRptFolio";
     this.mnuEntRptFolio.Size = new System.Drawing.Size(170, 22);
     this.mnuEntRptFolio.Text = "Por Folio";
     this.mnuEntRptFolio.Click += new System.EventHandler(this.rep_ent_folio_Click);
     //
     // mnuEntRptFolioPartida
     //
     this.mnuEntRptFolioPartida.Name = "mnuEntRptFolioPartida";
     this.mnuEntRptFolioPartida.Size = new System.Drawing.Size(170, 22);
     this.mnuEntRptFolioPartida.Text = "Por Folio y Partida";
     this.mnuEntRptFolioPartida.Click += new System.EventHandler(this.rep_ent_fol_partida_Click);
     //
     // mnuEntRptPedido
     //
     this.mnuEntRptPedido.Name = "mnuEntRptPedido";
     this.mnuEntRptPedido.Size = new System.Drawing.Size(170, 22);
     this.mnuEntRptPedido.Text = "Por Pedido";
     this.mnuEntRptPedido.Click += new System.EventHandler(this.rep_ent_pedido_Click);
     //
     // mnuEntRptProveedor
     //
     this.mnuEntRptProveedor.Name = "mnuEntRptProveedor";
     this.mnuEntRptProveedor.Size = new System.Drawing.Size(170, 22);
     this.mnuEntRptProveedor.Text = "Por Proveedor";
     this.mnuEntRptProveedor.Click += new System.EventHandler(this.rep_ent_proveedor_Click);
     //
     // mnuEntRptDetallado
     //
     this.mnuEntRptDetallado.Name = "mnuEntRptDetallado";
     this.mnuEntRptDetallado.Size = new System.Drawing.Size(170, 22);
     this.mnuEntRptDetallado.Text = "Detallado";
     this.mnuEntRptDetallado.Click += new System.EventHandler(this.rep_ent_detallado_Click);
     //
     // mnuEntRptIfai
     //
     this.mnuEntRptIfai.Name = "mnuEntRptIfai";
     this.mnuEntRptIfai.Size = new System.Drawing.Size(170, 22);
     this.mnuEntRptIfai.Text = "IFAI";
     this.mnuEntRptIfai.Visible = false;
     this.mnuEntRptIfai.Click += new System.EventHandler(this.mnuEntRptIfai_Click);
     //
     // mnuSalidas
     //
     this.mnuSalidas.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.afec_salidas,
     this.imp_salida,
     this.rep_salidas});
     this.mnuSalidas.Image = global::Almacen.View.Properties.Resources.salidas;
     this.mnuSalidas.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.mnuSalidas.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.mnuSalidas.Name = "mnuSalidas";
     this.mnuSalidas.Size = new System.Drawing.Size(76, 83);
     this.mnuSalidas.Text = "Salidas";
     this.mnuSalidas.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.mnuSalidas.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     //
     // afec_salidas
     //
     this.afec_salidas.Name = "afec_salidas";
     this.afec_salidas.Size = new System.Drawing.Size(142, 22);
     this.afec_salidas.Text = "Afectaciones";
     this.afec_salidas.Click += new System.EventHandler(this.afec_salidas_Click);
     //
     // imp_salida
     //
     this.imp_salida.Name = "imp_salida";
     this.imp_salida.Size = new System.Drawing.Size(142, 22);
     this.imp_salida.Text = "Impresión";
     this.imp_salida.Click += new System.EventHandler(this.imp_salida_Click);
     //
     // rep_salidas
     //
     this.rep_salidas.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.rep_sal_partida,
     this.rep_sal_folio,
     this.rep_sal_fol_partida,
     this.rep_sal_area,
     this.rep_sal_area_costo,
     this.rep_sal_art_prop,
     this.rep_sal_detallado});
     this.rep_salidas.Name = "rep_salidas";
     this.rep_salidas.Size = new System.Drawing.Size(142, 22);
     this.rep_salidas.Text = "Reportes";
     //
     // rep_sal_partida
     //
     this.rep_sal_partida.Name = "rep_sal_partida";
     this.rep_sal_partida.Size = new System.Drawing.Size(208, 22);
     this.rep_sal_partida.Text = "Por Partida";
     this.rep_sal_partida.Click += new System.EventHandler(this.rep_sal_partida_Click);
     //
     // rep_sal_folio
     //
     this.rep_sal_folio.Name = "rep_sal_folio";
     this.rep_sal_folio.Size = new System.Drawing.Size(208, 22);
     this.rep_sal_folio.Text = "Por Folio";
     this.rep_sal_folio.Click += new System.EventHandler(this.rep_sal_folio_Click);
     //
     // rep_sal_fol_partida
     //
     this.rep_sal_fol_partida.Name = "rep_sal_fol_partida";
     this.rep_sal_fol_partida.Size = new System.Drawing.Size(208, 22);
     this.rep_sal_fol_partida.Text = "Por Folio y Partida";
     this.rep_sal_fol_partida.Click += new System.EventHandler(this.rep_sal_fol_partida_Click);
     //
     // rep_sal_area
     //
     this.rep_sal_area.Name = "rep_sal_area";
     this.rep_sal_area.Size = new System.Drawing.Size(208, 22);
     this.rep_sal_area.Text = "Por Area";
     this.rep_sal_area.Click += new System.EventHandler(this.rep_sal_area_Click);
     //
     // rep_sal_area_costo
     //
     this.rep_sal_area_costo.Name = "rep_sal_area_costo";
     this.rep_sal_area_costo.Size = new System.Drawing.Size(208, 22);
     this.rep_sal_area_costo.Text = "Por Area y Costo";
     this.rep_sal_area_costo.Click += new System.EventHandler(this.rep_sal_area_costo_Click);
     //
     // rep_sal_art_prop
     //
     this.rep_sal_art_prop.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.rep_sal_prop_area,
     this.rep_sal_prop_concentrado});
     this.rep_sal_art_prop.Name = "rep_sal_art_prop";
     this.rep_sal_art_prop.Size = new System.Drawing.Size(208, 22);
     this.rep_sal_art_prop.Text = "Artículos Proporcionados";
     //
     // rep_sal_prop_area
     //
     this.rep_sal_prop_area.Name = "rep_sal_prop_area";
     this.rep_sal_prop_area.Size = new System.Drawing.Size(143, 22);
     this.rep_sal_prop_area.Text = "Por Area";
     this.rep_sal_prop_area.Click += new System.EventHandler(this.rep_sal_prop_area_Click);
     //
     // rep_sal_prop_concentrado
     //
     this.rep_sal_prop_concentrado.Name = "rep_sal_prop_concentrado";
     this.rep_sal_prop_concentrado.Size = new System.Drawing.Size(143, 22);
     this.rep_sal_prop_concentrado.Text = "Concentrado";
     this.rep_sal_prop_concentrado.Click += new System.EventHandler(this.rep_sal_prop_concentrado_Click);
     //
     // rep_sal_detallado
     //
     this.rep_sal_detallado.Name = "rep_sal_detallado";
     this.rep_sal_detallado.Size = new System.Drawing.Size(208, 22);
     this.rep_sal_detallado.Text = "Detallado";
     this.rep_sal_detallado.Click += new System.EventHandler(this.rep_sal_detallado_Click);
     //
     // mnuInventarios
     //
     this.mnuInventarios.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuInvCierre,
     this.registrarInventarioToolStripMenuItem});
     this.mnuInventarios.Image = global::Almacen.View.Properties.Resources.inventario1;
     this.mnuInventarios.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.mnuInventarios.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.mnuInventarios.Name = "mnuInventarios";
     this.mnuInventarios.Size = new System.Drawing.Size(77, 83);
     this.mnuInventarios.Text = "Inventarios";
     this.mnuInventarios.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.mnuInventarios.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     //
     // mnuInvCierre
     //
     this.mnuInvCierre.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.gen_cierre,
     this.imp_cierre,
     this.borrarCierreToolStripMenuItem});
     this.mnuInvCierre.Name = "mnuInvCierre";
     this.mnuInvCierre.Size = new System.Drawing.Size(153, 22);
     this.mnuInvCierre.Text = "Cierre Mensual";
     //
     // gen_cierre
     //
     this.gen_cierre.Name = "gen_cierre";
     this.gen_cierre.Size = new System.Drawing.Size(149, 22);
     this.gen_cierre.Text = "Generar Cierre";
     this.gen_cierre.Click += new System.EventHandler(this.gen_cierre_Click);
     //
     // imp_cierre
     //
     this.imp_cierre.Name = "imp_cierre";
     this.imp_cierre.Size = new System.Drawing.Size(149, 22);
     this.imp_cierre.Text = "Impresion";
     this.imp_cierre.Click += new System.EventHandler(this.imp_cierre_Click);
     //
     // borrarCierreToolStripMenuItem
     //
     this.borrarCierreToolStripMenuItem.Name = "borrarCierreToolStripMenuItem";
     this.borrarCierreToolStripMenuItem.Size = new System.Drawing.Size(149, 22);
     this.borrarCierreToolStripMenuItem.Text = "Borrar Cierre";
     this.borrarCierreToolStripMenuItem.Click += new System.EventHandler(this.borrarCierreToolStripMenuItem_Click);
     //
     // registrarInventarioToolStripMenuItem
     //
     this.registrarInventarioToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.registrarToolStripMenuItem,
     this.marbetesToolStripMenuItem,
     this.conteosToolStripMenuItem1,
     this.impresiónToolStripMenuItem1});
     this.registrarInventarioToolStripMenuItem.Name = "registrarInventarioToolStripMenuItem";
     this.registrarInventarioToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
     this.registrarInventarioToolStripMenuItem.Text = "Inventarios";
     //
     // registrarToolStripMenuItem
     //
     this.registrarToolStripMenuItem.Name = "registrarToolStripMenuItem";
     this.registrarToolStripMenuItem.Size = new System.Drawing.Size(127, 22);
     this.registrarToolStripMenuItem.Text = "Registrar";
     this.registrarToolStripMenuItem.Click += new System.EventHandler(this.registrarToolStripMenuItem_Click);
     //
     // marbetesToolStripMenuItem
     //
     this.marbetesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.asignaciónToolStripMenuItem,
     this.impresiónToolStripMenuItem});
     this.marbetesToolStripMenuItem.Name = "marbetesToolStripMenuItem";
     this.marbetesToolStripMenuItem.Size = new System.Drawing.Size(127, 22);
     this.marbetesToolStripMenuItem.Text = "Marbetes";
     //
     // asignaciónToolStripMenuItem
     //
     this.asignaciónToolStripMenuItem.Name = "asignaciónToolStripMenuItem";
     this.asignaciónToolStripMenuItem.Size = new System.Drawing.Size(133, 22);
     this.asignaciónToolStripMenuItem.Text = "Asignación";
     this.asignaciónToolStripMenuItem.Click += new System.EventHandler(this.asignaciónToolStripMenuItem_Click);
     //
     // impresiónToolStripMenuItem
     //
     this.impresiónToolStripMenuItem.Name = "impresiónToolStripMenuItem";
     this.impresiónToolStripMenuItem.Size = new System.Drawing.Size(133, 22);
     this.impresiónToolStripMenuItem.Text = "Impresión";
     this.impresiónToolStripMenuItem.Click += new System.EventHandler(this.impresiónToolStripMenuItem_Click);
     //
     // conteosToolStripMenuItem1
     //
     this.conteosToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.erConteoToolStripMenuItem,
     this.doConteoToolStripMenuItem,
     this.difConteosToolStripMenuItem});
     this.conteosToolStripMenuItem1.Name = "conteosToolStripMenuItem1";
     this.conteosToolStripMenuItem1.Size = new System.Drawing.Size(127, 22);
     this.conteosToolStripMenuItem1.Text = "Conteos";
     //
     // erConteoToolStripMenuItem
     //
     this.erConteoToolStripMenuItem.Name = "erConteoToolStripMenuItem";
     this.erConteoToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.erConteoToolStripMenuItem.Text = "1er Conteo";
     this.erConteoToolStripMenuItem.Click += new System.EventHandler(this.erConteoToolStripMenuItem_Click);
     //
     // doConteoToolStripMenuItem
     //
     this.doConteoToolStripMenuItem.Name = "doConteoToolStripMenuItem";
     this.doConteoToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.doConteoToolStripMenuItem.Text = "2do Conteo";
     this.doConteoToolStripMenuItem.Click += new System.EventHandler(this.doConteoToolStripMenuItem_Click);
     //
     // difConteosToolStripMenuItem
     //
     this.difConteosToolStripMenuItem.Name = "difConteosToolStripMenuItem";
     this.difConteosToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.difConteosToolStripMenuItem.Text = "Diferencia de Conteos";
     this.difConteosToolStripMenuItem.Click += new System.EventHandler(this.difConteosToolStripMenuItem_Click);
     //
     // impresiónToolStripMenuItem1
     //
     this.impresiónToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.difKardexInventarioToolStripMenuItem,
     this.impInventarioToolStripMenuItem});
     this.impresiónToolStripMenuItem1.Name = "impresiónToolStripMenuItem1";
     this.impresiónToolStripMenuItem1.Size = new System.Drawing.Size(127, 22);
     this.impresiónToolStripMenuItem1.Text = "Impresión";
     //
     // difKardexInventarioToolStripMenuItem
     //
     this.difKardexInventarioToolStripMenuItem.Name = "difKardexInventarioToolStripMenuItem";
     this.difKardexInventarioToolStripMenuItem.Size = new System.Drawing.Size(194, 22);
     this.difKardexInventarioToolStripMenuItem.Text = "Dif. Kardex - Inventario";
     this.difKardexInventarioToolStripMenuItem.Click += new System.EventHandler(this.difKardexInventarioToolStripMenuItem_Click);
     //
     // impInventarioToolStripMenuItem
     //
     this.impInventarioToolStripMenuItem.Name = "impInventarioToolStripMenuItem";
     this.impInventarioToolStripMenuItem.Size = new System.Drawing.Size(194, 22);
     this.impInventarioToolStripMenuItem.Text = "Imp. Inventario";
     this.impInventarioToolStripMenuItem.Click += new System.EventHandler(this.impInventarioToolStripMenuItem_Click);
     //
     // mnuRequisicion
     //
     this.mnuRequisicion.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.afectacionesToolStripMenuItem,
     this.impresiónToolStripMenuItem2,
     this.reportesToolStripMenuItem});
     this.mnuRequisicion.Image = global::Almacen.View.Properties.Resources.list;
     this.mnuRequisicion.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.mnuRequisicion.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.mnuRequisicion.Name = "mnuRequisicion";
     this.mnuRequisicion.Size = new System.Drawing.Size(80, 83);
     this.mnuRequisicion.Text = "Requisición";
     this.mnuRequisicion.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.mnuRequisicion.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     //
     // afectacionesToolStripMenuItem
     //
     this.afectacionesToolStripMenuItem.Name = "afectacionesToolStripMenuItem";
     this.afectacionesToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
     this.afectacionesToolStripMenuItem.Text = "Afectaciones";
     this.afectacionesToolStripMenuItem.Click += new System.EventHandler(this.afectacionesToolStripMenuItem_Click_1);
     //
     // impresiónToolStripMenuItem2
     //
     this.impresiónToolStripMenuItem2.Name = "impresiónToolStripMenuItem2";
     this.impresiónToolStripMenuItem2.Size = new System.Drawing.Size(142, 22);
     this.impresiónToolStripMenuItem2.Text = "Impresión";
     this.impresiónToolStripMenuItem2.Click += new System.EventHandler(this.impresiónToolStripMenuItem2_Click);
     //
     // reportesToolStripMenuItem
     //
     this.reportesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.costeadaToolStripMenuItem,
     this.porSolicitarToolStripMenuItem,
     this.cuadroLicitaciónToolStripMenuItem});
     this.reportesToolStripMenuItem.Name = "reportesToolStripMenuItem";
     this.reportesToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
     this.reportesToolStripMenuItem.Text = "Reportes";
     //
     // costeadaToolStripMenuItem
     //
     this.costeadaToolStripMenuItem.Name = "costeadaToolStripMenuItem";
     this.costeadaToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
     this.costeadaToolStripMenuItem.Text = "Costeada";
     this.costeadaToolStripMenuItem.Click += new System.EventHandler(this.costeadaToolStripMenuItem_Click);
     //
     // porSolicitarToolStripMenuItem
     //
     this.porSolicitarToolStripMenuItem.Name = "porSolicitarToolStripMenuItem";
     this.porSolicitarToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
     this.porSolicitarToolStripMenuItem.Text = "Por Solicitar";
     this.porSolicitarToolStripMenuItem.Click += new System.EventHandler(this.porSolicitarToolStripMenuItem_Click);
     //
     // cuadroLicitaciónToolStripMenuItem
     //
     this.cuadroLicitaciónToolStripMenuItem.Name = "cuadroLicitaciónToolStripMenuItem";
     this.cuadroLicitaciónToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
     this.cuadroLicitaciónToolStripMenuItem.Text = "Cuadro Licitación";
     this.cuadroLicitaciónToolStripMenuItem.Click += new System.EventHandler(this.cuadroLicitaciónToolStripMenuItem_Click);
     //
     // mnuReportes
     //
     this.mnuReportes.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuRptExistencias,
     this.mnuRptKardex,
     this.mnuRptCaducidades,
     this.mnuRptSaldos,
     this.mnuRptLento,
     this.mnuRptNulo,
     this.mnuRptConsumo,
     this.mnuRptPedidosGenerados});
     this.mnuReportes.Image = global::Almacen.View.Properties.Resources.report;
     this.mnuReportes.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.mnuReportes.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.mnuReportes.Name = "mnuReportes";
     this.mnuReportes.Size = new System.Drawing.Size(76, 83);
     this.mnuReportes.Text = "Reportes";
     this.mnuReportes.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.mnuReportes.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     //
     // mnuRptExistencias
     //
     this.mnuRptExistencias.Name = "mnuRptExistencias";
     this.mnuRptExistencias.Size = new System.Drawing.Size(194, 22);
     this.mnuRptExistencias.Text = "Existencias";
     this.mnuRptExistencias.Click += new System.EventHandler(this.rep_existencias_Click);
     //
     // mnuRptKardex
     //
     this.mnuRptKardex.ImageTransparentColor = System.Drawing.Color.Black;
     this.mnuRptKardex.Name = "mnuRptKardex";
     this.mnuRptKardex.Size = new System.Drawing.Size(194, 22);
     this.mnuRptKardex.Text = "Kardex";
     this.mnuRptKardex.Click += new System.EventHandler(this.rep_kardex_Click);
     //
     // mnuRptCaducidades
     //
     this.mnuRptCaducidades.ImageTransparentColor = System.Drawing.Color.Black;
     this.mnuRptCaducidades.Name = "mnuRptCaducidades";
     this.mnuRptCaducidades.Size = new System.Drawing.Size(194, 22);
     this.mnuRptCaducidades.Text = "Caducidades";
     this.mnuRptCaducidades.Click += new System.EventHandler(this.rep_caducidades_Click);
     //
     // mnuRptSaldos
     //
     this.mnuRptSaldos.Name = "mnuRptSaldos";
     this.mnuRptSaldos.Size = new System.Drawing.Size(194, 22);
     this.mnuRptSaldos.Text = "Saldos Representativos";
     this.mnuRptSaldos.Click += new System.EventHandler(this.rep_saldos_Click);
     //
     // mnuRptLento
     //
     this.mnuRptLento.Name = "mnuRptLento";
     this.mnuRptLento.Size = new System.Drawing.Size(194, 22);
     this.mnuRptLento.Text = "Lento Movimiento";
     this.mnuRptLento.Click += new System.EventHandler(this.rep_lento_Click);
     //
     // mnuRptNulo
     //
     this.mnuRptNulo.Name = "mnuRptNulo";
     this.mnuRptNulo.Size = new System.Drawing.Size(194, 22);
     this.mnuRptNulo.Text = "Nulo Movimiento";
     this.mnuRptNulo.Click += new System.EventHandler(this.rep_nulo_Click);
     //
     // mnuRptConsumo
     //
     this.mnuRptConsumo.Name = "mnuRptConsumo";
     this.mnuRptConsumo.Size = new System.Drawing.Size(194, 22);
     this.mnuRptConsumo.Text = "Consumo Promedio";
     //
     // mnuRptPedidosGenerados
     //
     this.mnuRptPedidosGenerados.Name = "mnuRptPedidosGenerados";
     this.mnuRptPedidosGenerados.Size = new System.Drawing.Size(194, 22);
     this.mnuRptPedidosGenerados.Text = "Pedidos Generados";
     this.mnuRptPedidosGenerados.Visible = false;
     this.mnuRptPedidosGenerados.Click += new System.EventHandler(this.mnuRptPedidosGenerados_Click);
     //
     // mnuCatalogos
     //
     this.mnuCatalogos.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuCatArticulo,
     this.mnuCatModificar,
     this.toolStripSeparator1,
     this.cat_area,
     this.cat_partida});
     this.mnuCatalogos.Image = global::Almacen.View.Properties.Resources.cata3;
     this.mnuCatalogos.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.mnuCatalogos.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.mnuCatalogos.Name = "mnuCatalogos";
     this.mnuCatalogos.Size = new System.Drawing.Size(76, 83);
     this.mnuCatalogos.Text = "Catálogos";
     this.mnuCatalogos.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.mnuCatalogos.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     //
     // mnuCatArticulo
     //
     this.mnuCatArticulo.Name = "mnuCatArticulo";
     this.mnuCatArticulo.Size = new System.Drawing.Size(153, 22);
     this.mnuCatArticulo.Text = "Artículos";
     this.mnuCatArticulo.Click += new System.EventHandler(this.cat_articulo_Click);
     //
     // mnuCatModificar
     //
     this.mnuCatModificar.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuCatModPartida,
     this.mnuCatModCuadro});
     this.mnuCatModificar.Name = "mnuCatModificar";
     this.mnuCatModificar.Size = new System.Drawing.Size(153, 22);
     this.mnuCatModificar.Text = "Cambiar de . . .";
     //
     // mnuCatModPartida
     //
     this.mnuCatModPartida.Name = "mnuCatModPartida";
     this.mnuCatModPartida.Size = new System.Drawing.Size(150, 22);
     this.mnuCatModPartida.Text = "Partida";
     this.mnuCatModPartida.Click += new System.EventHandler(this.partidaToolStripMenuItem_Click);
     //
     // mnuCatModCuadro
     //
     this.mnuCatModCuadro.Name = "mnuCatModCuadro";
     this.mnuCatModCuadro.Size = new System.Drawing.Size(150, 22);
     this.mnuCatModCuadro.Text = "Cuadro Basico";
     this.mnuCatModCuadro.Visible = false;
     this.mnuCatModCuadro.Click += new System.EventHandler(this.cuadroBasicoToolStripMenuItem_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(150, 6);
     //
     // cat_area
     //
     this.cat_area.Name = "cat_area";
     this.cat_area.Size = new System.Drawing.Size(153, 22);
     this.cat_area.Text = "Areas";
     this.cat_area.Click += new System.EventHandler(this.cat_area_Click);
     //
     // cat_partida
     //
     this.cat_partida.Name = "cat_partida";
     this.cat_partida.Size = new System.Drawing.Size(153, 22);
     this.cat_partida.Text = "Partidas";
     //
     // mnuCambiar
     //
     this.mnuCambiar.Image = global::Almacen.View.Properties.Resources.home_next_icon1;
     this.mnuCambiar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.mnuCambiar.Name = "mnuCambiar";
     this.mnuCambiar.Size = new System.Drawing.Size(130, 83);
     this.mnuCambiar.Text = "Cambiar de Almacen";
     this.mnuCambiar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.mnuCambiar.Click += new System.EventHandler(this.mnuCambiar_Click);
     //
     // mnuSalir
     //
     this.mnuSalir.Image = global::Almacen.View.Properties.Resources.exit;
     this.mnuSalir.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.mnuSalir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.mnuSalir.Name = "mnuSalir";
     this.mnuSalir.Size = new System.Drawing.Size(76, 83);
     this.mnuSalir.Text = "Salir";
     this.mnuSalir.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.mnuSalir.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.mnuSalir.Click += new System.EventHandler(this.exitMenu_Click);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(113, 20);
     this.toolStripMenuItem1.Text = "toolStripMenuItem1";
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(113, 68);
     this.toolStripMenuItem2.Text = "toolStripMenuItem2";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(109, 17);
     this.toolStripStatusLabel1.Text = "toolStripStatusLabel1";
     //
     // FrmMenu
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize = true;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize = new System.Drawing.Size(1025, 594);
     this.Controls.Add(this.estado);
     this.Controls.Add(this.menuStrip1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name = "FrmMenu";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frm_Menu_FormClosed);
     this.Load += new System.EventHandler(this.frm_Menu_Load);
     this.estado.ResumeLayout(false);
     this.estado.PerformLayout();
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.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()
 {
     this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.label1 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.txtUserId = new System.Windows.Forms.TextBox();
     this.txtPassword = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.btnLogin = new System.Windows.Forms.Button();
     this.btnCancel = new System.Windows.Forms.Button();
     this.panel11 = new System.Windows.Forms.Panel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.panel5 = new System.Windows.Forms.Panel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel4 = new System.Windows.Forms.Panel();
     this.panel2.SuspendLayout();
     this.panel5.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // statusLabel
     //
     this.statusLabel.BackColor = System.Drawing.Color.Transparent;
     this.statusLabel.Name = "statusLabel";
     this.statusLabel.Size = new System.Drawing.Size(272, 17);
     this.statusLabel.Text = "Masukkan User Id dan pilih Roles yang akan dipakai.";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Location = new System.Drawing.Point(65, 32);
     this.label1.Margin = new System.Windows.Forms.Padding(2);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(53, 17);
     this.label1.TabIndex = 0;
     this.label1.Text = "User &Id:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Location = new System.Drawing.Point(65, 61);
     this.label4.Margin = new System.Windows.Forms.Padding(2);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(67, 17);
     this.label4.TabIndex = 2;
     this.label4.Text = "&Password:"******"Font", global::QWControlCenter.Properties.Settings.Default, "BoldFont", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.txtUserId.Font = global::QWControlCenter.Properties.Settings.Default.BoldFont;
     this.txtUserId.Location = new System.Drawing.Point(164, 29);
     this.txtUserId.Margin = new System.Windows.Forms.Padding(2);
     this.txtUserId.Name = "txtUserId";
     this.txtUserId.Size = new System.Drawing.Size(137, 25);
     this.txtUserId.TabIndex = 1;
     this.txtUserId.TextChanged += new System.EventHandler(this.txtUserId_TextChanged);
     this.txtUserId.Validated += new System.EventHandler(this.txtUserId_Validated);
     //
     // txtPassword
     //
     this.txtPassword.DataBindings.Add(new System.Windows.Forms.Binding("Font", global::QWControlCenter.Properties.Settings.Default, "BoldFont", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.txtPassword.Font = global::QWControlCenter.Properties.Settings.Default.BoldFont;
     this.txtPassword.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.txtPassword.Location = new System.Drawing.Point(164, 58);
     this.txtPassword.Margin = new System.Windows.Forms.Padding(2);
     this.txtPassword.Name = "txtPassword";
     this.txtPassword.Size = new System.Drawing.Size(137, 25);
     this.txtPassword.TabIndex = 3;
     this.txtPassword.UseSystemPasswordChar = true;
     this.txtPassword.TextChanged += new System.EventHandler(this.txtPassword_TextChanged);
     //
     // label7
     //
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.label7.DataBindings.Add(new System.Windows.Forms.Binding("Font", global::QWControlCenter.Properties.Settings.Default, "SubTitleFont", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.label7.Font = global::QWControlCenter.Properties.Settings.Default.SubTitleFont;
     this.label7.Location = new System.Drawing.Point(184, 87);
     this.label7.Margin = new System.Windows.Forms.Padding(2);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(117, 34);
     this.label7.TabIndex = 43;
     this.label7.Text = "Password is case sensitive";
     //
     // btnLogin
     //
     this.btnLogin.DataBindings.Add(new System.Windows.Forms.Binding("Font", global::QWControlCenter.Properties.Settings.Default, "BoldFont", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.btnLogin.Font = global::QWControlCenter.Properties.Settings.Default.BoldFont;
     this.btnLogin.Image = global::QWControlCenter.Properties.Resources.login1;
     this.btnLogin.Location = new System.Drawing.Point(10, 6);
     this.btnLogin.Margin = new System.Windows.Forms.Padding(1);
     this.btnLogin.Name = "btnLogin";
     this.btnLogin.Size = new System.Drawing.Size(75, 26);
     this.btnLogin.TabIndex = 0;
     this.btnLogin.Text = "Login";
     this.btnLogin.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnLogin.UseVisualStyleBackColor = false;
     this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
     //
     // btnCancel
     //
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnCancel.Location = new System.Drawing.Point(87, 6);
     this.btnCancel.Margin = new System.Windows.Forms.Padding(1);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 26);
     this.btnCancel.TabIndex = 1;
     this.btnCancel.Text = "C&ancel";
     this.btnCancel.UseVisualStyleBackColor = false;
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // panel11
     //
     this.panel11.BackgroundImage = global::QWControlCenter.Properties.Resources.information;
     this.panel11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.panel11.Location = new System.Drawing.Point(164, 87);
     this.panel11.Margin = new System.Windows.Forms.Padding(2);
     this.panel11.Name = "panel11";
     this.panel11.Size = new System.Drawing.Size(16, 18);
     this.panel11.TabIndex = 42;
     //
     // panel2
     //
     this.panel2.BackgroundImage = global::QWControlCenter.Properties.Resources.banner_right;
     this.panel2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.panel2.Controls.Add(this.panel5);
     this.panel2.Controls.Add(this.panel1);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel2.Location = new System.Drawing.Point(0, 140);
     this.panel2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(388, 44);
     this.panel2.TabIndex = 6;
     //
     // panel5
     //
     this.panel5.BackColor = System.Drawing.Color.Transparent;
     this.panel5.Controls.Add(this.btnCancel);
     this.panel5.Controls.Add(this.btnLogin);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel5.Location = new System.Drawing.Point(216, 2);
     this.panel5.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(172, 42);
     this.panel5.TabIndex = 0;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlLight;
     this.panel1.Controls.Add(this.panel4);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(388, 2);
     this.panel1.TabIndex = 43;
     //
     // panel4
     //
     this.panel4.BackColor = System.Drawing.SystemColors.ControlDark;
     this.panel4.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel4.Location = new System.Drawing.Point(0, 0);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(388, 1);
     this.panel4.TabIndex = 33;
     //
     // LogonPresentation
     //
     this.AcceptButton = this.btnLogin;
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(388, 184);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.panel11);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.txtPassword);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.txtUserId);
     this.DataBindings.Add(new System.Windows.Forms.Binding("Font", global::QWControlCenter.Properties.Settings.Default, "RegularFont", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.Font = global::QWControlCenter.Properties.Settings.Default.RegularFont;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "LogonPresentation";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "QWine Control Center";
     this.panel2.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#53
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components   = new System.ComponentModel.Container();
     this.gameTimer    = new System.Windows.Forms.Timer(this.components);
     this.screen       = new System.Windows.Forms.PictureBox();
     this.statusBar    = new System.Windows.Forms.StatusStrip();
     this.timeLeftText = new System.Windows.Forms.ToolStripStatusLabel();
     this.timeLeft     = new System.Windows.Forms.ToolStripStatusLabel();
     this.scoresText   = new System.Windows.Forms.ToolStripStatusLabel();
     this.scores       = new System.Windows.Forms.ToolStripStatusLabel();
     this.playButton   = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.screen)).BeginInit();
     this.statusBar.SuspendLayout();
     this.SuspendLayout();
     //
     // gameTimer
     //
     this.gameTimer.Interval = 1;
     this.gameTimer.Tick    += new System.EventHandler(this.GameTimerTick);
     //
     // screen
     //
     this.screen.Location    = new System.Drawing.Point(12, 26);
     this.screen.Name        = "screen";
     this.screen.Size        = new System.Drawing.Size(320, 320);
     this.screen.TabIndex    = 0;
     this.screen.TabStop     = false;
     this.screen.Visible     = false;
     this.screen.Click      += new System.EventHandler(this.ScreenMouseClick);
     this.screen.Paint      += new System.Windows.Forms.PaintEventHandler(this.ScreenPaint);
     this.screen.MouseLeave += new System.EventHandler(this.ScreenMouseLeave);
     this.screen.MouseMove  += new System.Windows.Forms.MouseEventHandler(this.ScreenMouseMove);
     //
     // statusBar
     //
     this.statusBar.Dock             = System.Windows.Forms.DockStyle.Top;
     this.statusBar.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.timeLeftText,
         this.timeLeft,
         this.scoresText,
         this.scores
     });
     this.statusBar.Location   = new System.Drawing.Point(0, 0);
     this.statusBar.Name       = "statusBar";
     this.statusBar.Size       = new System.Drawing.Size(346, 24);
     this.statusBar.SizingGrip = false;
     this.statusBar.TabIndex   = 5;
     this.statusBar.Text       = "statusStrip1";
     this.statusBar.Visible    = false;
     //
     // timeLeftText
     //
     this.timeLeftText.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.timeLeftText.Name = "timeLeftText";
     this.timeLeftText.Size = new System.Drawing.Size(88, 19);
     this.timeLeftText.Text = "Time left:";
     //
     // timeLeft
     //
     this.timeLeft.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.timeLeft.Name = "timeLeft";
     this.timeLeft.Size = new System.Drawing.Size(24, 19);
     this.timeLeft.Text = "60";
     //
     // scoresText
     //
     this.scoresText.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.scoresText.Name = "scoresText";
     this.scoresText.Size = new System.Drawing.Size(80, 19);
     this.scoresText.Text = "| Scores:";
     //
     // scores
     //
     this.scores.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.scores.Name = "scores";
     this.scores.Size = new System.Drawing.Size(16, 19);
     this.scores.Text = "0";
     //
     // playButton
     //
     this.playButton.Location = new System.Drawing.Point(136, 157);
     this.playButton.Name     = "playButton";
     this.playButton.Size     = new System.Drawing.Size(75, 32);
     this.playButton.TabIndex = 6;
     this.playButton.Text     = "Play";
     this.playButton.UseVisualStyleBackColor = true;
     this.playButton.Click += new System.EventHandler(this.PlayButtonClick);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(346, 357);
     this.Controls.Add(this.playButton);
     this.Controls.Add(this.statusBar);
     this.Controls.Add(this.screen);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.Name            = "MainForm";
     this.SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Match3 | Bolotin S.E.";
     ((System.ComponentModel.ISupportInitialize)(this.screen)).EndInit();
     this.statusBar.ResumeLayout(false);
     this.statusBar.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()
        {
            this.saveButton = new System.Windows.Forms.Button();
            this.firstNameLabel = new System.Windows.Forms.Label();
            this.middleNameLabel = new System.Windows.Forms.Label();
            this.lastNameLabel = new System.Windows.Forms.Label();
            this.phoneNumberLabel = new System.Windows.Forms.Label();
            this.firstNameTextBox = new System.Windows.Forms.TextBox();
            this.middleNameTextBox = new System.Windows.Forms.TextBox();
            this.lastNameTextBox = new System.Windows.Forms.TextBox();
            this.phoneNumberTextBox = new System.Windows.Forms.TextBox();
            this.loadButton = new System.Windows.Forms.Button();
            this.deleteButton = new System.Windows.Forms.Button();
            this.statusStrip = new System.Windows.Forms.StatusStrip();
            this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
            this.statusStrip.SuspendLayout();
            this.SuspendLayout();
            // 
            // saveButton
            // 
            this.saveButton.Location = new System.Drawing.Point(16, 147);
            this.saveButton.Name = "saveButton";
            this.saveButton.Size = new System.Drawing.Size(75, 23);
            this.saveButton.TabIndex = 0;
            this.saveButton.Text = "Save";
            this.saveButton.UseVisualStyleBackColor = true;
            this.saveButton.Click += new System.EventHandler(this.SaveButton_Click);
            // 
            // firstNameLabel
            // 
            this.firstNameLabel.AutoSize = true;
            this.firstNameLabel.Location = new System.Drawing.Point(13, 13);
            this.firstNameLabel.Name = "firstNameLabel";
            this.firstNameLabel.Size = new System.Drawing.Size(57, 13);
            this.firstNameLabel.TabIndex = 1;
            this.firstNameLabel.Text = "First Name";
            // 
            // middleNameLabel
            // 
            this.middleNameLabel.AutoSize = true;
            this.middleNameLabel.Location = new System.Drawing.Point(13, 43);
            this.middleNameLabel.Name = "middleNameLabel";
            this.middleNameLabel.Size = new System.Drawing.Size(69, 13);
            this.middleNameLabel.TabIndex = 2;
            this.middleNameLabel.Text = "Middle Name";
            // 
            // lastNameLabel
            // 
            this.lastNameLabel.AutoSize = true;
            this.lastNameLabel.Location = new System.Drawing.Point(13, 79);
            this.lastNameLabel.Name = "lastNameLabel";
            this.lastNameLabel.Size = new System.Drawing.Size(58, 13);
            this.lastNameLabel.TabIndex = 3;
            this.lastNameLabel.Text = "Last Name";
            // 
            // phoneNumberLabel
            // 
            this.phoneNumberLabel.AutoSize = true;
            this.phoneNumberLabel.Location = new System.Drawing.Point(13, 109);
            this.phoneNumberLabel.Name = "phoneNumberLabel";
            this.phoneNumberLabel.Size = new System.Drawing.Size(78, 13);
            this.phoneNumberLabel.TabIndex = 4;
            this.phoneNumberLabel.Text = "Phone Number";
            // 
            // firstNameTextBox
            // 
            this.firstNameTextBox.Location = new System.Drawing.Point(123, 13);
            this.firstNameTextBox.Name = "firstNameTextBox";
            this.firstNameTextBox.Size = new System.Drawing.Size(157, 20);
            this.firstNameTextBox.TabIndex = 5;
            // 
            // middleNameTextBox
            // 
            this.middleNameTextBox.Location = new System.Drawing.Point(123, 43);
            this.middleNameTextBox.Name = "middleNameTextBox";
            this.middleNameTextBox.Size = new System.Drawing.Size(157, 20);
            this.middleNameTextBox.TabIndex = 6;
            // 
            // lastNameTextBox
            // 
            this.lastNameTextBox.Location = new System.Drawing.Point(123, 79);
            this.lastNameTextBox.Name = "lastNameTextBox";
            this.lastNameTextBox.Size = new System.Drawing.Size(157, 20);
            this.lastNameTextBox.TabIndex = 7;
            // 
            // phoneNumberTextBox
            // 
            this.phoneNumberTextBox.Location = new System.Drawing.Point(123, 109);
            this.phoneNumberTextBox.Name = "phoneNumberTextBox";
            this.phoneNumberTextBox.Size = new System.Drawing.Size(157, 20);
            this.phoneNumberTextBox.TabIndex = 8;
            // 
            // loadButton
            // 
            this.loadButton.Location = new System.Drawing.Point(112, 147);
            this.loadButton.Name = "loadButton";
            this.loadButton.Size = new System.Drawing.Size(75, 23);
            this.loadButton.TabIndex = 10;
            this.loadButton.Text = "Load";
            this.loadButton.UseVisualStyleBackColor = true;
            this.loadButton.Click += new System.EventHandler(this.LoadButton_Click);
            // 
            // deleteButton
            // 
            this.deleteButton.Location = new System.Drawing.Point(205, 147);
            this.deleteButton.Name = "deleteButton";
            this.deleteButton.Size = new System.Drawing.Size(75, 23);
            this.deleteButton.TabIndex = 11;
            this.deleteButton.Text = "Delete";
            this.deleteButton.UseVisualStyleBackColor = true;
            this.deleteButton.Click += new System.EventHandler(this.DeleteButton_Click);
            // 
            // statusStrip
            // 
            this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripStatusLabel1});
            this.statusStrip.Location = new System.Drawing.Point(0, 178);
            this.statusStrip.Name = "statusStrip";
            this.statusStrip.Size = new System.Drawing.Size(292, 22);
            this.statusStrip.TabIndex = 9;
            this.statusStrip.Text = "statusStrip1";
            // 
            // toolStripStatusLabel1
            // 
            this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
            this.toolStripStatusLabel1.Size = new System.Drawing.Size(0, 17);
            // 
            // SingleContactManagerForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(292, 200);
            this.Controls.Add(this.deleteButton);
            this.Controls.Add(this.loadButton);
            this.Controls.Add(this.statusStrip);
            this.Controls.Add(this.phoneNumberTextBox);
            this.Controls.Add(this.lastNameTextBox);
            this.Controls.Add(this.middleNameTextBox);
            this.Controls.Add(this.firstNameTextBox);
            this.Controls.Add(this.phoneNumberLabel);
            this.Controls.Add(this.lastNameLabel);
            this.Controls.Add(this.middleNameLabel);
            this.Controls.Add(this.firstNameLabel);
            this.Controls.Add(this.saveButton);
            this.Name = "SingleContactManagerForm";
            this.Text = "Clean Single Contact Manager";
            this.statusStrip.ResumeLayout(false);
            this.statusStrip.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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WinForm_Abstract));
     this.toolStripParent = new System.Windows.Forms.ToolStrip();
     this.CancelToolStrip = new System.Windows.Forms.ToolStripButton();
     this.SaveToolStrip = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStrip_Label = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
     this.toolStripParent.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStripParent
     //
     this.toolStripParent.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStripParent.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.CancelToolStrip,
     this.SaveToolStrip,
     this.toolStripSeparator1});
     this.toolStripParent.Location = new System.Drawing.Point(0, 0);
     this.toolStripParent.Name = "toolStripParent";
     this.toolStripParent.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
     this.toolStripParent.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.toolStripParent.Size = new System.Drawing.Size(590, 54);
     this.toolStripParent.TabIndex = 121;
     this.toolStripParent.Text = "toolStrip1";
     //
     // CancelToolStrip
     //
     this.CancelToolStrip.Image = ((System.Drawing.Image)(resources.GetObject("CancelToolStrip.Image")));
     this.CancelToolStrip.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.CancelToolStrip.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.CancelToolStrip.Margin = new System.Windows.Forms.Padding(10, 1, 0, 2);
     this.CancelToolStrip.Name = "CancelToolStrip";
     this.CancelToolStrip.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.CancelToolStrip.Size = new System.Drawing.Size(47, 51);
     this.CancelToolStrip.Text = "&Cancel";
     this.CancelToolStrip.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.CancelToolStrip.Click += new System.EventHandler(this.CancelToolStrip_Click);
     //
     // SaveToolStrip
     //
     this.SaveToolStrip.Image = ((System.Drawing.Image)(resources.GetObject("SaveToolStrip.Image")));
     this.SaveToolStrip.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.SaveToolStrip.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.SaveToolStrip.Name = "SaveToolStrip";
     this.SaveToolStrip.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.SaveToolStrip.Size = new System.Drawing.Size(36, 51);
     this.SaveToolStrip.Text = "&Save";
     this.SaveToolStrip.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.SaveToolStrip.ToolTipText = "Click to Save Customers";
     this.SaveToolStrip.Click += new System.EventHandler(this.SaveToolStrip_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 54);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStrip_Label,
     this.toolStripProgressBar1});
     this.statusStrip1.Location = new System.Drawing.Point(0, 365);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(590, 22);
     this.statusStrip1.TabIndex = 122;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStrip_Label
     //
     this.toolStrip_Label.Name = "toolStrip_Label";
     this.toolStrip_Label.Size = new System.Drawing.Size(442, 17);
     this.toolStrip_Label.Spring = true;
     this.toolStrip_Label.Text = "Enter Details and Click Save.";
     this.toolStrip_Label.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // toolStripProgressBar1
     //
     this.toolStripProgressBar1.Name = "toolStripProgressBar1";
     this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 16);
     //
     // WinForm_Abstract
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(590, 387);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.toolStripParent);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "WinForm_Abstract";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Load += new System.EventHandler(this.Winform_DetailsFormat_Load);
     this.toolStripParent.ResumeLayout(false);
     this.toolStripParent.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#56
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.файлToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.новыйNewFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.открытьToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.сохранитьToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.закрытьToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.выходToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.оПрограммеToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.menuStrip1            = new System.Windows.Forms.MenuStrip();
     this.panel1                = new System.Windows.Forms.Panel();
     this.button6               = new System.Windows.Forms.Button();
     this.button5               = new System.Windows.Forms.Button();
     this.button4               = new System.Windows.Forms.Button();
     this.button3               = new System.Windows.Forms.Button();
     this.button2               = new System.Windows.Forms.Button();
     this.button1               = new System.Windows.Forms.Button();
     this.panel2                = new System.Windows.Forms.Panel();
     this.label1                = new System.Windows.Forms.Label();
     this.statusStrip1          = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel4 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel5 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel6 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel7 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel8 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel9 = new System.Windows.Forms.ToolStripStatusLabel();
     this.panel3                = new System.Windows.Forms.Panel();
     this.button7               = new System.Windows.Forms.Button();
     this.button8               = new System.Windows.Forms.Button();
     this.button9               = new System.Windows.Forms.Button();
     this.button10              = new System.Windows.Forms.Button();
     this.button11              = new System.Windows.Forms.Button();
     this.button12              = new System.Windows.Forms.Button();
     this.openFileDialog1       = new System.Windows.Forms.OpenFileDialog();
     this.saveFileDialog1       = new System.Windows.Forms.SaveFileDialog();
     this.menuStrip1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // файлToolStripMenuItem
     //
     this.файлToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.новыйNewFileToolStripMenuItem,
         this.открытьToolStripMenuItem,
         this.сохранитьToolStripMenuItem,
         this.закрытьToolStripMenuItem,
         this.выходToolStripMenuItem
     });
     this.файлToolStripMenuItem.Name = "файлToolStripMenuItem";
     resources.ApplyResources(this.файлToolStripMenuItem, "файлToolStripMenuItem");
     //
     // новыйNewFileToolStripMenuItem
     //
     this.новыйNewFileToolStripMenuItem.Name = "новыйNewFileToolStripMenuItem";
     resources.ApplyResources(this.новыйNewFileToolStripMenuItem, "новыйNewFileToolStripMenuItem");
     //
     // открытьToolStripMenuItem
     //
     this.открытьToolStripMenuItem.Name = "открытьToolStripMenuItem";
     resources.ApplyResources(this.открытьToolStripMenuItem, "открытьToolStripMenuItem");
     //
     // сохранитьToolStripMenuItem
     //
     this.сохранитьToolStripMenuItem.Name = "сохранитьToolStripMenuItem";
     resources.ApplyResources(this.сохранитьToolStripMenuItem, "сохранитьToolStripMenuItem");
     //
     // закрытьToolStripMenuItem
     //
     this.закрытьToolStripMenuItem.Name = "закрытьToolStripMenuItem";
     resources.ApplyResources(this.закрытьToolStripMenuItem, "закрытьToolStripMenuItem");
     //
     // выходToolStripMenuItem
     //
     this.выходToolStripMenuItem.Name = "выходToolStripMenuItem";
     resources.ApplyResources(this.выходToolStripMenuItem, "выходToolStripMenuItem");
     //
     // оПрограммеToolStripMenuItem
     //
     this.оПрограммеToolStripMenuItem.Name = "оПрограммеToolStripMenuItem";
     resources.ApplyResources(this.оПрограммеToolStripMenuItem, "оПрограммеToolStripMenuItem");
     //
     // menuStrip1
     //
     this.menuStrip1.BackColor = System.Drawing.SystemColors.Control;
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.файлToolStripMenuItem,
         this.оПрограммеToolStripMenuItem
     });
     resources.ApplyResources(this.menuStrip1, "menuStrip1");
     this.menuStrip1.Name = "menuStrip1";
     //
     // panel1
     //
     resources.ApplyResources(this.panel1, "panel1");
     this.panel1.BackColor = System.Drawing.SystemColors.Control;
     this.panel1.Controls.Add(this.button6);
     this.panel1.Controls.Add(this.button5);
     this.panel1.Controls.Add(this.button4);
     this.panel1.Controls.Add(this.button3);
     this.panel1.Controls.Add(this.button2);
     this.panel1.Controls.Add(this.button1);
     this.panel1.Name = "panel1";
     //
     // button6
     //
     resources.ApplyResources(this.button6, "button6");
     this.button6.Name = "button6";
     this.button6.UseVisualStyleBackColor = true;
     //
     // button5
     //
     resources.ApplyResources(this.button5, "button5");
     this.button5.Name = "button5";
     this.button5.UseVisualStyleBackColor = true;
     //
     // button4
     //
     resources.ApplyResources(this.button4, "button4");
     this.button4.Name = "button4";
     this.button4.UseVisualStyleBackColor = true;
     //
     // button3
     //
     resources.ApplyResources(this.button3, "button3");
     this.button3.Name = "button3";
     this.button3.UseVisualStyleBackColor = true;
     //
     // button2
     //
     resources.ApplyResources(this.button2, "button2");
     this.button2.Name = "button2";
     this.button2.UseVisualStyleBackColor = true;
     //
     // button1
     //
     resources.ApplyResources(this.button1, "button1");
     this.button1.Name = "button1";
     this.button1.UseVisualStyleBackColor = true;
     //
     // panel2
     //
     resources.ApplyResources(this.panel2, "panel2");
     this.panel2.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.panel2.Controls.Add(this.label1);
     this.panel2.Name = "panel2";
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name   = "label1";
     this.label1.Click += new System.EventHandler(this.Label1Click);
     //
     // statusStrip1
     //
     resources.ApplyResources(this.statusStrip1, "statusStrip1");
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripStatusLabel4,
         this.toolStripStatusLabel1,
         this.toolStripStatusLabel2,
         this.toolStripStatusLabel5,
         this.toolStripStatusLabel3,
         this.toolStripStatusLabel6,
         this.toolStripStatusLabel7,
         this.toolStripStatusLabel8,
         this.toolStripStatusLabel9
     });
     this.statusStrip1.Name = "statusStrip1";
     //
     // toolStripStatusLabel4
     //
     this.toolStripStatusLabel4.Name = "toolStripStatusLabel4";
     resources.ApplyResources(this.toolStripStatusLabel4, "toolStripStatusLabel4");
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     resources.ApplyResources(this.toolStripStatusLabel1, "toolStripStatusLabel1");
     //
     // toolStripStatusLabel2
     //
     this.toolStripStatusLabel2.Name = "toolStripStatusLabel2";
     resources.ApplyResources(this.toolStripStatusLabel2, "toolStripStatusLabel2");
     //
     // toolStripStatusLabel5
     //
     this.toolStripStatusLabel5.Name = "toolStripStatusLabel5";
     resources.ApplyResources(this.toolStripStatusLabel5, "toolStripStatusLabel5");
     //
     // toolStripStatusLabel3
     //
     this.toolStripStatusLabel3.Name = "toolStripStatusLabel3";
     resources.ApplyResources(this.toolStripStatusLabel3, "toolStripStatusLabel3");
     //
     // toolStripStatusLabel6
     //
     this.toolStripStatusLabel6.Name = "toolStripStatusLabel6";
     resources.ApplyResources(this.toolStripStatusLabel6, "toolStripStatusLabel6");
     //
     // toolStripStatusLabel7
     //
     this.toolStripStatusLabel7.Name = "toolStripStatusLabel7";
     resources.ApplyResources(this.toolStripStatusLabel7, "toolStripStatusLabel7");
     //
     // toolStripStatusLabel8
     //
     this.toolStripStatusLabel8.Name = "toolStripStatusLabel8";
     resources.ApplyResources(this.toolStripStatusLabel8, "toolStripStatusLabel8");
     //
     // toolStripStatusLabel9
     //
     this.toolStripStatusLabel9.Name = "toolStripStatusLabel9";
     resources.ApplyResources(this.toolStripStatusLabel9, "toolStripStatusLabel9");
     //
     // panel3
     //
     resources.ApplyResources(this.panel3, "panel3");
     this.panel3.BackColor = System.Drawing.SystemColors.Control;
     this.panel3.Controls.Add(this.button7);
     this.panel3.Controls.Add(this.button8);
     this.panel3.Controls.Add(this.button9);
     this.panel3.Controls.Add(this.button10);
     this.panel3.Controls.Add(this.button11);
     this.panel3.Controls.Add(this.button12);
     this.panel3.Name = "panel3";
     //
     // button7
     //
     resources.ApplyResources(this.button7, "button7");
     this.button7.Name = "button7";
     this.button7.UseVisualStyleBackColor = true;
     //
     // button8
     //
     resources.ApplyResources(this.button8, "button8");
     this.button8.Name = "button8";
     this.button8.UseVisualStyleBackColor = true;
     //
     // button9
     //
     resources.ApplyResources(this.button9, "button9");
     this.button9.Name = "button9";
     this.button9.UseVisualStyleBackColor = true;
     //
     // button10
     //
     resources.ApplyResources(this.button10, "button10");
     this.button10.Name = "button10";
     this.button10.UseVisualStyleBackColor = true;
     //
     // button11
     //
     resources.ApplyResources(this.button11, "button11");
     this.button11.Name = "button11";
     this.button11.UseVisualStyleBackColor = true;
     //
     // button12
     //
     resources.ApplyResources(this.button12, "button12");
     this.button12.Name = "button12";
     this.button12.UseVisualStyleBackColor = true;
     //
     // openFileDialog1
     //
     this.openFileDialog1.FileName = "openFileDialog1";
     resources.ApplyResources(this.openFileDialog1, "openFileDialog1");
     //
     // saveFileDialog1
     //
     resources.ApplyResources(this.saveFileDialog1, "saveFileDialog1");
     //
     // MainForm
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.menuStrip1);
     this.MainMenuStrip = this.menuStrip1;
     this.Name          = "MainForm";
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.panel3.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#57
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1        = new System.Windows.Forms.GroupBox();
     this.lbl_Z1           = new System.Windows.Forms.Label();
     this.lbl_Y1           = new System.Windows.Forms.Label();
     this.lbl_X1           = new System.Windows.Forms.Label();
     this.txt_Z1           = new System.Windows.Forms.TextBox();
     this.txt_Y1           = new System.Windows.Forms.TextBox();
     this.txt_X1           = new System.Windows.Forms.TextBox();
     this.groupBox2        = new System.Windows.Forms.GroupBox();
     this.lbl_Z2           = new System.Windows.Forms.Label();
     this.lbl_Y2           = new System.Windows.Forms.Label();
     this.lbl_X2           = new System.Windows.Forms.Label();
     this.txt_Z2           = new System.Windows.Forms.TextBox();
     this.txt_Y2           = new System.Windows.Forms.TextBox();
     this.txt_X2           = new System.Windows.Forms.TextBox();
     this.statusStrip1     = new System.Windows.Forms.StatusStrip();
     this.toolStrip_Status = new System.Windows.Forms.ToolStripStatusLabel();
     this.btn_Move         = new System.Windows.Forms.Button();
     this.btn_Cancel       = new System.Windows.Forms.Button();
     this.btn_Ok           = new System.Windows.Forms.Button();
     this.rdbtn_meter      = new System.Windows.Forms.RadioButton();
     this.rdbtn_feet       = new System.Windows.Forms.RadioButton();
     this.groupBox3        = new System.Windows.Forms.GroupBox();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.lbl_Z1);
     this.groupBox1.Controls.Add(this.lbl_Y1);
     this.groupBox1.Controls.Add(this.lbl_X1);
     this.groupBox1.Controls.Add(this.txt_Z1);
     this.groupBox1.Controls.Add(this.txt_Y1);
     this.groupBox1.Controls.Add(this.txt_X1);
     this.groupBox1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(190, 131);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Existing Co-Ordinate";
     //
     // lbl_Z1
     //
     this.lbl_Z1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_Z1.Location = new System.Drawing.Point(12, 94);
     this.lbl_Z1.Name     = "lbl_Z1";
     this.lbl_Z1.Size     = new System.Drawing.Size(24, 23);
     this.lbl_Z1.TabIndex = 5;
     this.lbl_Z1.Text     = "Z:";
     //
     // lbl_Y1
     //
     this.lbl_Y1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_Y1.Location = new System.Drawing.Point(12, 61);
     this.lbl_Y1.Name     = "lbl_Y1";
     this.lbl_Y1.Size     = new System.Drawing.Size(24, 23);
     this.lbl_Y1.TabIndex = 4;
     this.lbl_Y1.Text     = "Y:";
     //
     // lbl_X1
     //
     this.lbl_X1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_X1.Location = new System.Drawing.Point(12, 26);
     this.lbl_X1.Name     = "lbl_X1";
     this.lbl_X1.Size     = new System.Drawing.Size(24, 23);
     this.lbl_X1.TabIndex = 3;
     this.lbl_X1.Text     = "X:";
     //
     // txt_Z1
     //
     this.txt_Z1.Location = new System.Drawing.Point(42, 94);
     this.txt_Z1.Name     = "txt_Z1";
     this.txt_Z1.ReadOnly = true;
     this.txt_Z1.Size     = new System.Drawing.Size(135, 20);
     this.txt_Z1.TabIndex = 2;
     //
     // txt_Y1
     //
     this.txt_Y1.Location = new System.Drawing.Point(42, 58);
     this.txt_Y1.Name     = "txt_Y1";
     this.txt_Y1.ReadOnly = true;
     this.txt_Y1.Size     = new System.Drawing.Size(135, 20);
     this.txt_Y1.TabIndex = 1;
     //
     // txt_X1
     //
     this.txt_X1.Location = new System.Drawing.Point(42, 23);
     this.txt_X1.Name     = "txt_X1";
     this.txt_X1.ReadOnly = true;
     this.txt_X1.Size     = new System.Drawing.Size(135, 20);
     this.txt_X1.TabIndex = 0;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.lbl_Z2);
     this.groupBox2.Controls.Add(this.lbl_Y2);
     this.groupBox2.Controls.Add(this.lbl_X2);
     this.groupBox2.Controls.Add(this.txt_Z2);
     this.groupBox2.Controls.Add(this.txt_Y2);
     this.groupBox2.Controls.Add(this.txt_X2);
     this.groupBox2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox2.Location = new System.Drawing.Point(212, 12);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(190, 131);
     this.groupBox2.TabIndex = 6;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "New Co-Ordinate";
     //
     // lbl_Z2
     //
     this.lbl_Z2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_Z2.Location = new System.Drawing.Point(12, 94);
     this.lbl_Z2.Name     = "lbl_Z2";
     this.lbl_Z2.Size     = new System.Drawing.Size(24, 23);
     this.lbl_Z2.TabIndex = 5;
     this.lbl_Z2.Text     = "Z:";
     //
     // lbl_Y2
     //
     this.lbl_Y2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_Y2.Location = new System.Drawing.Point(12, 61);
     this.lbl_Y2.Name     = "lbl_Y2";
     this.lbl_Y2.Size     = new System.Drawing.Size(24, 23);
     this.lbl_Y2.TabIndex = 4;
     this.lbl_Y2.Text     = "Y:";
     //
     // lbl_X2
     //
     this.lbl_X2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_X2.Location = new System.Drawing.Point(12, 26);
     this.lbl_X2.Name     = "lbl_X2";
     this.lbl_X2.Size     = new System.Drawing.Size(24, 23);
     this.lbl_X2.TabIndex = 3;
     this.lbl_X2.Text     = "X:";
     //
     // txt_Z2
     //
     this.txt_Z2.Location = new System.Drawing.Point(42, 94);
     this.txt_Z2.Name     = "txt_Z2";
     this.txt_Z2.Size     = new System.Drawing.Size(135, 20);
     this.txt_Z2.TabIndex = 2;
     //
     // txt_Y2
     //
     this.txt_Y2.Location = new System.Drawing.Point(42, 58);
     this.txt_Y2.Name     = "txt_Y2";
     this.txt_Y2.Size     = new System.Drawing.Size(135, 20);
     this.txt_Y2.TabIndex = 1;
     //
     // txt_X2
     //
     this.txt_X2.Location = new System.Drawing.Point(42, 23);
     this.txt_X2.Name     = "txt_X2";
     this.txt_X2.Size     = new System.Drawing.Size(135, 20);
     this.txt_X2.TabIndex = 0;
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStrip_Status
     });
     this.statusStrip1.Location = new System.Drawing.Point(0, 222);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Size     = new System.Drawing.Size(411, 22);
     this.statusStrip1.TabIndex = 7;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // toolStrip_Status
     //
     this.toolStrip_Status.Name = "toolStrip_Status";
     this.toolStrip_Status.Size = new System.Drawing.Size(0, 17);
     //
     // btn_Move
     //
     this.btn_Move.Location = new System.Drawing.Point(162, 184);
     this.btn_Move.Name     = "btn_Move";
     this.btn_Move.Size     = new System.Drawing.Size(75, 23);
     this.btn_Move.TabIndex = 8;
     this.btn_Move.Text     = "&Move";
     this.btn_Move.UseVisualStyleBackColor = true;
     this.btn_Move.Click += new System.EventHandler(this.Btn_MoveClick);
     //
     // btn_Cancel
     //
     this.btn_Cancel.Location = new System.Drawing.Point(324, 184);
     this.btn_Cancel.Name     = "btn_Cancel";
     this.btn_Cancel.Size     = new System.Drawing.Size(75, 23);
     this.btn_Cancel.TabIndex = 9;
     this.btn_Cancel.Text     = "&Cancel";
     this.btn_Cancel.UseVisualStyleBackColor = true;
     this.btn_Cancel.Click += new System.EventHandler(this.Btn_CancelClick);
     //
     // btn_Ok
     //
     this.btn_Ok.Location = new System.Drawing.Point(243, 184);
     this.btn_Ok.Name     = "btn_Ok";
     this.btn_Ok.Size     = new System.Drawing.Size(75, 23);
     this.btn_Ok.TabIndex = 10;
     this.btn_Ok.Text     = "&OK";
     this.btn_Ok.UseVisualStyleBackColor = true;
     this.btn_Ok.Click += new System.EventHandler(this.Btn_OkClick);
     //
     // rdbtn_meter
     //
     this.rdbtn_meter.Checked  = true;
     this.rdbtn_meter.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rdbtn_meter.Location = new System.Drawing.Point(12, 14);
     this.rdbtn_meter.Name     = "rdbtn_meter";
     this.rdbtn_meter.Size     = new System.Drawing.Size(84, 24);
     this.rdbtn_meter.TabIndex = 11;
     this.rdbtn_meter.TabStop  = true;
     this.rdbtn_meter.Text     = "in meters";
     this.rdbtn_meter.UseVisualStyleBackColor = true;
     this.rdbtn_meter.CheckedChanged         += new System.EventHandler(this.Rdbtn_meterCheckedChanged);
     //
     // rdbtn_feet
     //
     this.rdbtn_feet.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rdbtn_feet.Location = new System.Drawing.Point(12, 34);
     this.rdbtn_feet.Name     = "rdbtn_feet";
     this.rdbtn_feet.Size     = new System.Drawing.Size(68, 24);
     this.rdbtn_feet.TabIndex = 12;
     this.rdbtn_feet.Text     = "in feet";
     this.rdbtn_feet.UseVisualStyleBackColor = true;
     this.rdbtn_feet.CheckedChanged         += new System.EventHandler(this.Rdbtn_feetCheckedChanged);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.rdbtn_meter);
     this.groupBox3.Controls.Add(this.rdbtn_feet);
     this.groupBox3.Location = new System.Drawing.Point(12, 149);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(101, 61);
     this.groupBox3.TabIndex = 13;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "Units";
     //
     // Move
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(411, 244);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.btn_Ok);
     this.Controls.Add(this.btn_Cancel);
     this.Controls.Add(this.btn_Move);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name            = "Move";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Move Point";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SystemMain));
     this.appMainMenu = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.navClose = new System.Windows.Forms.ToolStripMenuItem();
     this.navExit = new System.Windows.Forms.ToolStripMenuItem();
     this.navAdministration = new System.Windows.Forms.ToolStripMenuItem();
     this.navTournamentList = new System.Windows.Forms.ToolStripMenuItem();
     this.navMemberList = new System.Windows.Forms.ToolStripMenuItem();
     this.memberImportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.currentFormatToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.collegiateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.navImportDataWstims = new System.Windows.Forms.ToolStripMenuItem();
     this.navTournament = new System.Windows.Forms.ToolStripMenuItem();
     this.navRegistration = new System.Windows.Forms.ToolStripMenuItem();
     this.navTourRunningOrder = new System.Windows.Forms.ToolStripMenuItem();
     this.navDivOrder = new System.Windows.Forms.ToolStripMenuItem();
     this.navTeamMngt = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.navOfficialWorkAsgmt = new System.Windows.Forms.ToolStripMenuItem();
     this.navOfficialWorkRecord = new System.Windows.Forms.ToolStripMenuItem();
     this.navBoatUse = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.navMasterScorebook = new System.Windows.Forms.ToolStripMenuItem();
     this.navMasterSummary = new System.Windows.Forms.ToolStripMenuItem();
     this.navTeamSummary = new System.Windows.Forms.ToolStripMenuItem();
     this.navEventRunStats = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.navLoadIwwfHomologation = new System.Windows.Forms.ToolStripMenuItem();
     this.navTourPackage = new System.Windows.Forms.ToolStripMenuItem();
     this.navSlalom = new System.Windows.Forms.ToolStripMenuItem();
     this.navSlalomEntry = new System.Windows.Forms.ToolStripMenuItem();
     this.navSlalomRunningOrder = new System.Windows.Forms.ToolStripMenuItem();
     this.navSlalomSummary = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
     this.navSlalomScorebook = new System.Windows.Forms.ToolStripMenuItem();
     this.navSlalomTeamSummary = new System.Windows.Forms.ToolStripMenuItem();
     this.navTrick = new System.Windows.Forms.ToolStripMenuItem();
     this.navTrickCalc = new System.Windows.Forms.ToolStripMenuItem();
     this.navTrickRunningOrder = new System.Windows.Forms.ToolStripMenuItem();
     this.navTrickSummary = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
     this.navTrickScorebook = new System.Windows.Forms.ToolStripMenuItem();
     this.navTrickTeamSummary = new System.Windows.Forms.ToolStripMenuItem();
     this.navLoadVideoFiles = new System.Windows.Forms.ToolStripMenuItem();
     this.navJump = new System.Windows.Forms.ToolStripMenuItem();
     this.navJumpEntryVideo3Seg = new System.Windows.Forms.ToolStripMenuItem();
     this.navJumpRunningOrder = new System.Windows.Forms.ToolStripMenuItem();
     this.navJumpSummary = new System.Windows.Forms.ToolStripMenuItem();
     this.navJumpSummaryAwards = new System.Windows.Forms.ToolStripMenuItem();
     this.navJumpScorebook = new System.Windows.Forms.ToolStripMenuItem();
     this.navJumpTeamSummary = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.navVideoJumpSetup = new System.Windows.Forms.ToolStripMenuItem();
     this.navMeterSetup = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.navNopsCalculator = new System.Windows.Forms.ToolStripMenuItem();
     this.navListMaintenance = new System.Windows.Forms.ToolStripMenuItem();
     this.navNopsDataMainenance = new System.Windows.Forms.ToolStripMenuItem();
     this.navViewRankingList = new System.Windows.Forms.ToolStripMenuItem();
     this.navTrickListMaint = new System.Windows.Forms.ToolStripMenuItem();
     this.navImportData = new System.Windows.Forms.ToolStripMenuItem();
     this.navMetricTool = new System.Windows.Forms.ToolStripMenuItem();
     this.shrinkDatabaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.databaseToolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.navSetDatabase = new System.Windows.Forms.ToolStripMenuItem();
     this.windowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.navHelp = new System.Windows.Forms.ToolStripMenuItem();
     this.gettingStartedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.overviewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.navHelpAbout = new System.Windows.Forms.ToolStripMenuItem();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.mdiStatusMsg = new System.Windows.Forms.ToolStripStatusLabel();
     this.appMainMenu.SuspendLayout();
     this.SuspendLayout();
     //
     // appMainMenu
     //
     this.appMainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.navAdministration,
     this.navTournament,
     this.navSlalom,
     this.navTrick,
     this.navJump,
     this.toolStripMenuItem2,
     this.windowToolStripMenuItem,
     this.navHelp});
     this.appMainMenu.Location = new System.Drawing.Point(0, 0);
     this.appMainMenu.MdiWindowListItem = this.windowToolStripMenuItem;
     this.appMainMenu.Name = "appMainMenu";
     this.appMainMenu.Size = new System.Drawing.Size(993, 24);
     this.appMainMenu.TabIndex = 1;
     this.appMainMenu.Text = "Main Menu";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripSeparator2,
     this.navClose,
     this.navExit});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "&File";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(100, 6);
     //
     // navClose
     //
     this.navClose.Name = "navClose";
     this.navClose.Size = new System.Drawing.Size(103, 22);
     this.navClose.Text = "&Close";
     //
     // navExit
     //
     this.navExit.Name = "navExit";
     this.navExit.Size = new System.Drawing.Size(103, 22);
     this.navExit.Text = "E&xit";
     this.navExit.Click += new System.EventHandler(this.navExit_Click);
     //
     // navAdministration
     //
     this.navAdministration.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.navTournamentList,
     this.navMemberList,
     this.memberImportToolStripMenuItem});
     this.navAdministration.Name = "navAdministration";
     this.navAdministration.Size = new System.Drawing.Size(98, 20);
     this.navAdministration.Text = "&Administration";
     //
     // navTournamentList
     //
     this.navTournamentList.Name = "navTournamentList";
     this.navTournamentList.Size = new System.Drawing.Size(160, 22);
     this.navTournamentList.Text = "&Tournament List";
     this.navTournamentList.Click += new System.EventHandler(this.navTournamentList_Click);
     //
     // navMemberList
     //
     this.navMemberList.Name = "navMemberList";
     this.navMemberList.Size = new System.Drawing.Size(160, 22);
     this.navMemberList.Text = "&Member List";
     this.navMemberList.Click += new System.EventHandler(this.navMemberList_Click);
     //
     // memberImportToolStripMenuItem
     //
     this.memberImportToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.currentFormatToolStripMenuItem,
     this.collegiateToolStripMenuItem,
     this.navImportDataWstims});
     this.memberImportToolStripMenuItem.Name = "memberImportToolStripMenuItem";
     this.memberImportToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
     this.memberImportToolStripMenuItem.Text = "Import";
     this.memberImportToolStripMenuItem.Click += new System.EventHandler(this.navImportNcwsaFile_Click);
     //
     // currentFormatToolStripMenuItem
     //
     this.currentFormatToolStripMenuItem.Name = "currentFormatToolStripMenuItem";
     this.currentFormatToolStripMenuItem.Size = new System.Drawing.Size(245, 22);
     this.currentFormatToolStripMenuItem.Text = "Standard Registration Template";
     this.currentFormatToolStripMenuItem.Click += new System.EventHandler(this.navImportFile_Click);
     //
     // collegiateToolStripMenuItem
     //
     this.collegiateToolStripMenuItem.Name = "collegiateToolStripMenuItem";
     this.collegiateToolStripMenuItem.Size = new System.Drawing.Size(245, 22);
     this.collegiateToolStripMenuItem.Text = "Collegiate Registration Template";
     this.collegiateToolStripMenuItem.Click += new System.EventHandler(this.navImportNcwsaFile_Click);
     //
     // navImportDataWstims
     //
     this.navImportDataWstims.Name = "navImportDataWstims";
     this.navImportDataWstims.Size = new System.Drawing.Size(245, 22);
     this.navImportDataWstims.Text = "WSTIMS For Windows";
     this.navImportDataWstims.Click += new System.EventHandler(this.navImportData_Click);
     //
     // navTournament
     //
     this.navTournament.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.navRegistration,
     this.navTourRunningOrder,
     this.navDivOrder,
     this.navTeamMngt,
     this.toolStripSeparator4,
     this.navOfficialWorkAsgmt,
     this.navOfficialWorkRecord,
     this.navBoatUse,
     this.toolStripSeparator5,
     this.navMasterScorebook,
     this.navMasterSummary,
     this.navTeamSummary,
     this.navEventRunStats,
     this.toolStripSeparator1,
     this.navLoadIwwfHomologation,
     this.navTourPackage});
     this.navTournament.Name = "navTournament";
     this.navTournament.Size = new System.Drawing.Size(84, 20);
     this.navTournament.Text = "&Tournament";
     //
     // navRegistration
     //
     this.navRegistration.Name = "navRegistration";
     this.navRegistration.Size = new System.Drawing.Size(230, 22);
     this.navRegistration.Text = "Registration";
     this.navRegistration.Click += new System.EventHandler(this.navRegistration_Click);
     //
     // navTourRunningOrder
     //
     this.navTourRunningOrder.Name = "navTourRunningOrder";
     this.navTourRunningOrder.Size = new System.Drawing.Size(230, 22);
     this.navTourRunningOrder.Text = "Running &Order";
     this.navTourRunningOrder.Click += new System.EventHandler(this.navTourRunningOrder_Click);
     //
     // navDivOrder
     //
     this.navDivOrder.Name = "navDivOrder";
     this.navDivOrder.Size = new System.Drawing.Size(230, 22);
     this.navDivOrder.Text = "Division Order";
     this.navDivOrder.Click += new System.EventHandler(this.navDivOrder_Click);
     //
     // navTeamMngt
     //
     this.navTeamMngt.Name = "navTeamMngt";
     this.navTeamMngt.Size = new System.Drawing.Size(230, 22);
     this.navTeamMngt.Text = "Team Management";
     this.navTeamMngt.Click += new System.EventHandler(this.navTeamMngt_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(227, 6);
     //
     // navOfficialWorkAsgmt
     //
     this.navOfficialWorkAsgmt.Name = "navOfficialWorkAsgmt";
     this.navOfficialWorkAsgmt.Size = new System.Drawing.Size(230, 22);
     this.navOfficialWorkAsgmt.Text = "Official Work Assignment";
     this.navOfficialWorkAsgmt.Click += new System.EventHandler(this.navOfficialWorkAssignment_Click);
     //
     // navOfficialWorkRecord
     //
     this.navOfficialWorkRecord.Name = "navOfficialWorkRecord";
     this.navOfficialWorkRecord.Size = new System.Drawing.Size(230, 22);
     this.navOfficialWorkRecord.Text = "Official &Work Record";
     this.navOfficialWorkRecord.Click += new System.EventHandler(this.navOfficialsWorkRecord_Click);
     //
     // navBoatUse
     //
     this.navBoatUse.Name = "navBoatUse";
     this.navBoatUse.Size = new System.Drawing.Size(230, 22);
     this.navBoatUse.Text = "Boat Use";
     this.navBoatUse.Click += new System.EventHandler(this.navBoatUse_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(227, 6);
     //
     // navMasterScorebook
     //
     this.navMasterScorebook.Name = "navMasterScorebook";
     this.navMasterScorebook.Size = new System.Drawing.Size(230, 22);
     this.navMasterScorebook.Text = "Master Scorebook";
     this.navMasterScorebook.Click += new System.EventHandler(this.navMasterScorebook_Click);
     //
     // navMasterSummary
     //
     this.navMasterSummary.Name = "navMasterSummary";
     this.navMasterSummary.Size = new System.Drawing.Size(230, 22);
     this.navMasterSummary.Text = "Overall Summary";
     this.navMasterSummary.Click += new System.EventHandler(this.navMasterSummary_Click);
     //
     // navTeamSummary
     //
     this.navTeamSummary.Name = "navTeamSummary";
     this.navTeamSummary.Size = new System.Drawing.Size(230, 22);
     this.navTeamSummary.Text = "Team Summary";
     this.navTeamSummary.Click += new System.EventHandler(this.navTeamSummary_Click);
     //
     // navEventRunStats
     //
     this.navEventRunStats.Name = "navEventRunStats";
     this.navEventRunStats.Size = new System.Drawing.Size(230, 22);
     this.navEventRunStats.Text = "Event Stats";
     this.navEventRunStats.Click += new System.EventHandler(this.navEventRunStats_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(227, 6);
     //
     // navLoadIwwfHomologation
     //
     this.navLoadIwwfHomologation.Enabled = false;
     this.navLoadIwwfHomologation.Name = "navLoadIwwfHomologation";
     this.navLoadIwwfHomologation.Size = new System.Drawing.Size(230, 22);
     this.navLoadIwwfHomologation.Text = "Load Iwwf Homologation File";
     this.navLoadIwwfHomologation.Visible = false;
     this.navLoadIwwfHomologation.Click += new System.EventHandler(this.navLoadIwwfHomologation_Click);
     //
     // navTourPackage
     //
     this.navTourPackage.Name = "navTourPackage";
     this.navTourPackage.Size = new System.Drawing.Size(230, 22);
     this.navTourPackage.Text = "Tournament Package Build";
     this.navTourPackage.Click += new System.EventHandler(this.navTourPackage_Click);
     //
     // navSlalom
     //
     this.navSlalom.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.navSlalomEntry,
     this.navSlalomRunningOrder,
     this.navSlalomSummary,
     this.toolStripMenuItem4,
     this.navSlalomScorebook,
     this.navSlalomTeamSummary});
     this.navSlalom.Name = "navSlalom";
     this.navSlalom.Size = new System.Drawing.Size(55, 20);
     this.navSlalom.Text = "&Slalom";
     //
     // navSlalomEntry
     //
     this.navSlalomEntry.Name = "navSlalomEntry";
     this.navSlalomEntry.Size = new System.Drawing.Size(167, 22);
     this.navSlalomEntry.Text = "Score &Entry";
     this.navSlalomEntry.Click += new System.EventHandler(this.navSlalomEntry_Click);
     //
     // navSlalomRunningOrder
     //
     this.navSlalomRunningOrder.Name = "navSlalomRunningOrder";
     this.navSlalomRunningOrder.Size = new System.Drawing.Size(167, 22);
     this.navSlalomRunningOrder.Text = "&Running Order";
     this.navSlalomRunningOrder.Click += new System.EventHandler(this.navSlalomRunningOrder_Click);
     //
     // navSlalomSummary
     //
     this.navSlalomSummary.Name = "navSlalomSummary";
     this.navSlalomSummary.Size = new System.Drawing.Size(167, 22);
     this.navSlalomSummary.Text = "&Summary";
     this.navSlalomSummary.Click += new System.EventHandler(this.navSlalomSummary_Click);
     //
     // toolStripMenuItem4
     //
     this.toolStripMenuItem4.Name = "toolStripMenuItem4";
     this.toolStripMenuItem4.Size = new System.Drawing.Size(167, 22);
     this.toolStripMenuItem4.Text = "&Awards Summary";
     this.toolStripMenuItem4.Click += new System.EventHandler(this.navSlalomSummaryAwards_Click);
     //
     // navSlalomScorebook
     //
     this.navSlalomScorebook.Name = "navSlalomScorebook";
     this.navSlalomScorebook.Size = new System.Drawing.Size(167, 22);
     this.navSlalomScorebook.Text = "Scorebook";
     this.navSlalomScorebook.Visible = false;
     this.navSlalomScorebook.Click += new System.EventHandler(this.navSlalomScorebook_Click);
     //
     // navSlalomTeamSummary
     //
     this.navSlalomTeamSummary.Name = "navSlalomTeamSummary";
     this.navSlalomTeamSummary.Size = new System.Drawing.Size(167, 22);
     this.navSlalomTeamSummary.Text = "&Team Summary";
     this.navSlalomTeamSummary.Click += new System.EventHandler(this.navSlalomTeamSummary_Click);
     //
     // navTrick
     //
     this.navTrick.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.navTrickCalc,
     this.navTrickRunningOrder,
     this.navTrickSummary,
     this.toolStripMenuItem3,
     this.navTrickScorebook,
     this.navTrickTeamSummary,
     this.navLoadVideoFiles});
     this.navTrick.Name = "navTrick";
     this.navTrick.Size = new System.Drawing.Size(44, 20);
     this.navTrick.Text = "T&rick";
     //
     // navTrickCalc
     //
     this.navTrickCalc.Name = "navTrickCalc";
     this.navTrickCalc.Size = new System.Drawing.Size(167, 22);
     this.navTrickCalc.Text = "Trick Calculator";
     this.navTrickCalc.Click += new System.EventHandler(this.navTrickCalc_Click);
     //
     // navTrickRunningOrder
     //
     this.navTrickRunningOrder.Name = "navTrickRunningOrder";
     this.navTrickRunningOrder.Size = new System.Drawing.Size(167, 22);
     this.navTrickRunningOrder.Text = "&Running Order";
     this.navTrickRunningOrder.Click += new System.EventHandler(this.navTrickRunningOrder_Click);
     //
     // navTrickSummary
     //
     this.navTrickSummary.Name = "navTrickSummary";
     this.navTrickSummary.Size = new System.Drawing.Size(167, 22);
     this.navTrickSummary.Text = "&Summary";
     this.navTrickSummary.Click += new System.EventHandler(this.navTrickSummary_Click);
     //
     // toolStripMenuItem3
     //
     this.toolStripMenuItem3.Name = "toolStripMenuItem3";
     this.toolStripMenuItem3.Size = new System.Drawing.Size(167, 22);
     this.toolStripMenuItem3.Text = "&Awards Summary";
     this.toolStripMenuItem3.Click += new System.EventHandler(this.navTrickSummaryAwards_Click);
     //
     // navTrickScorebook
     //
     this.navTrickScorebook.Name = "navTrickScorebook";
     this.navTrickScorebook.Size = new System.Drawing.Size(167, 22);
     this.navTrickScorebook.Text = "Scorebook";
     this.navTrickScorebook.Visible = false;
     this.navTrickScorebook.Click += new System.EventHandler(this.navTrickScorebook_Click);
     //
     // navTrickTeamSummary
     //
     this.navTrickTeamSummary.Name = "navTrickTeamSummary";
     this.navTrickTeamSummary.Size = new System.Drawing.Size(167, 22);
     this.navTrickTeamSummary.Text = "&Team Summary";
     this.navTrickTeamSummary.Click += new System.EventHandler(this.navTrickTeamSummary_Click);
     //
     // navLoadVideoFiles
     //
     this.navLoadVideoFiles.Name = "navLoadVideoFiles";
     this.navLoadVideoFiles.Size = new System.Drawing.Size(167, 22);
     this.navLoadVideoFiles.Text = "Load Video Files";
     this.navLoadVideoFiles.Click += new System.EventHandler(this.navLoadVideoFiles_Click);
     //
     // navJump
     //
     this.navJump.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.navJumpEntryVideo3Seg,
     this.navJumpRunningOrder,
     this.navJumpSummary,
     this.navJumpSummaryAwards,
     this.navJumpScorebook,
     this.navJumpTeamSummary,
     this.toolStripSeparator6,
     this.navVideoJumpSetup,
     this.navMeterSetup});
     this.navJump.Name = "navJump";
     this.navJump.Size = new System.Drawing.Size(48, 20);
     this.navJump.Text = "&Jump";
     //
     // navJumpEntryVideo3Seg
     //
     this.navJumpEntryVideo3Seg.Name = "navJumpEntryVideo3Seg";
     this.navJumpEntryVideo3Seg.Size = new System.Drawing.Size(165, 22);
     this.navJumpEntryVideo3Seg.Text = "Jump Score Entry";
     this.navJumpEntryVideo3Seg.Click += new System.EventHandler(this.navJumpEntryVideo3Seg_Click);
     //
     // navJumpRunningOrder
     //
     this.navJumpRunningOrder.Name = "navJumpRunningOrder";
     this.navJumpRunningOrder.Size = new System.Drawing.Size(165, 22);
     this.navJumpRunningOrder.Text = "&Running Order";
     this.navJumpRunningOrder.Click += new System.EventHandler(this.navJumpRunningOrder_Click);
     //
     // navJumpSummary
     //
     this.navJumpSummary.Name = "navJumpSummary";
     this.navJumpSummary.Size = new System.Drawing.Size(165, 22);
     this.navJumpSummary.Text = "&Summary";
     this.navJumpSummary.Click += new System.EventHandler(this.navJumpSummary_Click);
     //
     // navJumpSummaryAwards
     //
     this.navJumpSummaryAwards.Name = "navJumpSummaryAwards";
     this.navJumpSummaryAwards.Size = new System.Drawing.Size(165, 22);
     this.navJumpSummaryAwards.Text = "&Award Summary";
     this.navJumpSummaryAwards.Click += new System.EventHandler(this.navJumpSummaryAward_Click);
     //
     // navJumpScorebook
     //
     this.navJumpScorebook.Name = "navJumpScorebook";
     this.navJumpScorebook.Size = new System.Drawing.Size(165, 22);
     this.navJumpScorebook.Text = "Scorebook";
     this.navJumpScorebook.Visible = false;
     this.navJumpScorebook.Click += new System.EventHandler(this.navJumpScorebook_Click);
     //
     // navJumpTeamSummary
     //
     this.navJumpTeamSummary.Name = "navJumpTeamSummary";
     this.navJumpTeamSummary.Size = new System.Drawing.Size(165, 22);
     this.navJumpTeamSummary.Text = "&Team Summary";
     this.navJumpTeamSummary.Click += new System.EventHandler(this.navJumpTeamSummary_Click);
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(162, 6);
     //
     // navVideoJumpSetup
     //
     this.navVideoJumpSetup.Enabled = false;
     this.navVideoJumpSetup.Name = "navVideoJumpSetup";
     this.navVideoJumpSetup.Size = new System.Drawing.Size(165, 22);
     this.navVideoJumpSetup.Text = "&Video Setup";
     this.navVideoJumpSetup.Visible = false;
     //
     // navMeterSetup
     //
     this.navMeterSetup.Name = "navMeterSetup";
     this.navMeterSetup.Size = new System.Drawing.Size(165, 22);
     this.navMeterSetup.Text = "&Meter Setup";
     this.navMeterSetup.Click += new System.EventHandler(this.navMeterSetup_Click);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.navNopsCalculator,
     this.navListMaintenance,
     this.navNopsDataMainenance,
     this.navViewRankingList,
     this.navTrickListMaint,
     this.navImportData,
     this.navMetricTool,
     this.shrinkDatabaseToolStripMenuItem,
     this.toolStripMenuItem1,
     this.databaseToolToolStripMenuItem,
     this.navSetDatabase});
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(47, 20);
     this.toolStripMenuItem2.Text = "T&ools";
     //
     // navNopsCalculator
     //
     this.navNopsCalculator.Name = "navNopsCalculator";
     this.navNopsCalculator.Size = new System.Drawing.Size(184, 22);
     this.navNopsCalculator.Text = "&NOPS Calculator";
     this.navNopsCalculator.Click += new System.EventHandler(this.navNopsCalculator_Click);
     //
     // navListMaintenance
     //
     this.navListMaintenance.Name = "navListMaintenance";
     this.navListMaintenance.Size = new System.Drawing.Size(184, 22);
     this.navListMaintenance.Text = "&List View";
     this.navListMaintenance.Click += new System.EventHandler(this.navListMaintenance_Click);
     //
     // navNopsDataMainenance
     //
     this.navNopsDataMainenance.Name = "navNopsDataMainenance";
     this.navNopsDataMainenance.Size = new System.Drawing.Size(184, 22);
     this.navNopsDataMainenance.Text = "Nops Data View";
     this.navNopsDataMainenance.Click += new System.EventHandler(this.navNopsDataMainenance_Click);
     //
     // navViewRankingList
     //
     this.navViewRankingList.Name = "navViewRankingList";
     this.navViewRankingList.Size = new System.Drawing.Size(184, 22);
     this.navViewRankingList.Text = "&View Ranking List";
     this.navViewRankingList.Click += new System.EventHandler(this.navViewRankingList_Click);
     //
     // navTrickListMaint
     //
     this.navTrickListMaint.Name = "navTrickListMaint";
     this.navTrickListMaint.Size = new System.Drawing.Size(184, 22);
     this.navTrickListMaint.Text = "Trick List View";
     this.navTrickListMaint.Click += new System.EventHandler(this.navTrickListMaint_Click);
     //
     // navImportData
     //
     this.navImportData.Name = "navImportData";
     this.navImportData.Size = new System.Drawing.Size(184, 22);
     this.navImportData.Text = "Import WSTIMS Data";
     this.navImportData.Click += new System.EventHandler(this.navImportData_Click);
     //
     // navMetricTool
     //
     this.navMetricTool.Name = "navMetricTool";
     this.navMetricTool.Size = new System.Drawing.Size(184, 22);
     this.navMetricTool.Text = "Metric Conversion";
     this.navMetricTool.Click += new System.EventHandler(this.navMetricTool_Click);
     //
     // shrinkDatabaseToolStripMenuItem
     //
     this.shrinkDatabaseToolStripMenuItem.Name = "shrinkDatabaseToolStripMenuItem";
     this.shrinkDatabaseToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
     this.shrinkDatabaseToolStripMenuItem.Text = "Compress Database";
     this.shrinkDatabaseToolStripMenuItem.Click += new System.EventHandler(this.shrinkDatabaseToolStripMenuItem_Click);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(184, 22);
     this.toolStripMenuItem1.Text = "Load Data From Log";
     this.toolStripMenuItem1.Visible = false;
     this.toolStripMenuItem1.Click += new System.EventHandler(this.loadDataFromLog_Click);
     //
     // databaseToolToolStripMenuItem
     //
     this.databaseToolToolStripMenuItem.Name = "databaseToolToolStripMenuItem";
     this.databaseToolToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
     this.databaseToolToolStripMenuItem.Text = "Database Tool";
     this.databaseToolToolStripMenuItem.Click += new System.EventHandler(this.databaseToolToolStripMenuItem_Click);
     //
     // navSetDatabase
     //
     this.navSetDatabase.Name = "navSetDatabase";
     this.navSetDatabase.Size = new System.Drawing.Size(184, 22);
     this.navSetDatabase.Text = "Set Database";
     this.navSetDatabase.Click += new System.EventHandler(this.navSetDatabase_Click);
     //
     // windowToolStripMenuItem
     //
     this.windowToolStripMenuItem.Name = "windowToolStripMenuItem";
     this.windowToolStripMenuItem.Size = new System.Drawing.Size(63, 20);
     this.windowToolStripMenuItem.Text = "&Window";
     //
     // navHelp
     //
     this.navHelp.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.gettingStartedToolStripMenuItem,
     this.overviewToolStripMenuItem,
     this.navHelpAbout});
     this.navHelp.Name = "navHelp";
     this.navHelp.Size = new System.Drawing.Size(44, 20);
     this.navHelp.Text = "&Help";
     //
     // gettingStartedToolStripMenuItem
     //
     this.gettingStartedToolStripMenuItem.Name = "gettingStartedToolStripMenuItem";
     this.gettingStartedToolStripMenuItem.Size = new System.Drawing.Size(131, 22);
     this.gettingStartedToolStripMenuItem.Text = "&User Guide";
     this.gettingStartedToolStripMenuItem.Click += new System.EventHandler(this.overviewToolStripMenuItem_Click);
     //
     // overviewToolStripMenuItem
     //
     this.overviewToolStripMenuItem.Name = "overviewToolStripMenuItem";
     this.overviewToolStripMenuItem.Size = new System.Drawing.Size(131, 22);
     this.overviewToolStripMenuItem.Text = "&Overview";
     this.overviewToolStripMenuItem.Click += new System.EventHandler(this.overviewToolStripMenuItem_Click);
     //
     // navHelpAbout
     //
     this.navHelpAbout.Name = "navHelpAbout";
     this.navHelpAbout.Size = new System.Drawing.Size(131, 22);
     this.navHelpAbout.Text = "About";
     this.navHelpAbout.Click += new System.EventHandler(this.navHelpAbout_Click);
     //
     // statusStrip1
     //
     this.statusStrip1.Location = new System.Drawing.Point(0, 549);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(993, 22);
     this.statusStrip1.TabIndex = 3;
     this.statusStrip1.Text = "statusStrip1";
     //
     // mdiStatusMsg
     //
     this.mdiStatusMsg.Name = "mdiStatusMsg";
     this.mdiStatusMsg.Size = new System.Drawing.Size(168, 17);
     this.mdiStatusMsg.Text = "Opening Waterski Scoring System";
     //
     // SystemMain
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.ClientSize = new System.Drawing.Size(993, 571);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.appMainMenu);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.MainMenuStrip = this.appMainMenu;
     this.Name = "SystemMain";
     this.Text = "WSTIMS for Windows";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.SystemMain_FormClosed);
     this.Load += new System.EventHandler(this.SystemMain_Load);
     this.appMainMenu.ResumeLayout(false);
     this.appMainMenu.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#59
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(CMainForm));
     this.SysMngmntButton = new RMSUI.FunctionalButton();
     this.TableInfoButton = new RMSUI.FunctionalButton();
     this.NameTableButton = new RMSUI.FunctionalButton();
     this.ChangeDetailsButton = new RMSUI.FunctionalButton();
     this.TWButton = new RMSUI.FunctionalButton();
     this.BarServiceButton = new RMSUI.FunctionalButton();
     this.NewTableButton = new RMSUI.FunctionalButton();
     this.LogOffButton = new RMSUI.FunctionalButton();
     this.MainStatusStrip = new System.Windows.Forms.StatusStrip();
     this.tsLblCurrentUser = new System.Windows.Forms.ToolStripStatusLabel();
     this.UserStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.OpenOrdersLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.TerminalIDLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsCallerIdStatus = new System.Windows.Forms.ToolStripStatusLabel();
     this.RefreshTimer = new System.Windows.Forms.Timer(this.components);
     this.tmrCallerInfo = new System.Windows.Forms.Timer(this.components);
     this.tlTip = new System.Windows.Forms.ToolTip(this.components);
     this.btnCallRefresh = new RMSUI.FunctionalButton();
     this.label14 = new System.Windows.Forms.Label();
     this.TotalPageLabel = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.CurrentPageLabel = new System.Windows.Forms.Label();
     this.TablePanel = new System.Windows.Forms.FlowLayoutPanel();
     this.panelCallerID = new System.Windows.Forms.Panel();
     this.picBoxPhone = new RMSUI.FunctionalButton();
     this.lblPhoneNumber = new System.Windows.Forms.Label();
     this.txtCustomerName = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.txtFirstAddress = new System.Windows.Forms.TextBox();
     this.RefreshButton = new RMSUI.FunctionalButton();
     this.PreviousButton = new RMSUI.FunctionalButton();
     this.NextButton = new RMSUI.FunctionalButton();
     this.panel2 = new System.Windows.Forms.Panel();
     this.label21 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.panel9 = new System.Windows.Forms.Panel();
     this.label1 = new System.Windows.Forms.Label();
     this.refreshlobbyButton = new RMSUI.FunctionalButton();
     this.MainStatusStrip.SuspendLayout();
     this.panelCallerID.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel9.SuspendLayout();
     this.SuspendLayout();
     //
     // SysMngmntButton
     //
     this.SysMngmntButton.BackColor = System.Drawing.Color.Transparent;
     this.SysMngmntButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SysMngmntButton.BackgroundImage")));
     this.SysMngmntButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("SysMngmntButton.BgImageOnMouseDown")));
     this.SysMngmntButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("SysMngmntButton.BgImageOnMouseUp")));
     this.SysMngmntButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.SysMngmntButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.SysMngmntButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.SysMngmntButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.SysMngmntButton.Font = new System.Drawing.Font("Arial", 10F);
     this.SysMngmntButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.SysMngmntButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.SysMngmntButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Control;
     this.SysMngmntButton.Image = ((System.Drawing.Image)(resources.GetObject("SysMngmntButton.Image")));
     this.SysMngmntButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.SysMngmntButton.Location = new System.Drawing.Point(991, 533);
     this.SysMngmntButton.Name = "SysMngmntButton";
     this.SysMngmntButton.Size = new System.Drawing.Size(145, 90);
     this.SysMngmntButton.TabIndex = 0;
     this.SysMngmntButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.SysMngmntButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.SysMngmntButton.UseVisualStyleBackColor = false;
     this.SysMngmntButton.Click += new System.EventHandler(this.SysMngmntButton_Click);
     //
     // TableInfoButton
     //
     this.TableInfoButton.BackColor = System.Drawing.Color.Transparent;
     this.TableInfoButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TableInfoButton.BackgroundImage")));
     this.TableInfoButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("TableInfoButton.BgImageOnMouseDown")));
     this.TableInfoButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("TableInfoButton.BgImageOnMouseUp")));
     this.TableInfoButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.TableInfoButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.TableInfoButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.TableInfoButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.TableInfoButton.Font = new System.Drawing.Font("Arial", 10F);
     this.TableInfoButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.TableInfoButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.TableInfoButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Normal;
     this.TableInfoButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.TableInfoButton.Location = new System.Drawing.Point(991, 437);
     this.TableInfoButton.Name = "TableInfoButton";
     this.TableInfoButton.Size = new System.Drawing.Size(145, 90);
     this.TableInfoButton.TabIndex = 1;
     this.TableInfoButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.TableInfoButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.TableInfoButton.UseVisualStyleBackColor = false;
     this.TableInfoButton.Click += new System.EventHandler(this.TabInfoButton_Click);
     //
     // NameTableButton
     //
     this.NameTableButton.BackColor = System.Drawing.Color.Transparent;
     this.NameTableButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("NameTableButton.BackgroundImage")));
     this.NameTableButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("NameTableButton.BgImageOnMouseDown")));
     this.NameTableButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("NameTableButton.BgImageOnMouseUp")));
     this.NameTableButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.NameTableButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.NameTableButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.NameTableButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.NameTableButton.Font = new System.Drawing.Font("Arial", 10F);
     this.NameTableButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.NameTableButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.NameTableButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Normal;
     this.NameTableButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.NameTableButton.Location = new System.Drawing.Point(991, 245);
     this.NameTableButton.Name = "NameTableButton";
     this.NameTableButton.Size = new System.Drawing.Size(145, 90);
     this.NameTableButton.TabIndex = 2;
     this.NameTableButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.NameTableButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.NameTableButton.UseVisualStyleBackColor = false;
     this.NameTableButton.Click += new System.EventHandler(this.NameTableButton_Click);
     //
     // ChangeDetailsButton
     //
     this.ChangeDetailsButton.BackColor = System.Drawing.Color.Transparent;
     this.ChangeDetailsButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ChangeDetailsButton.BackgroundImage")));
     this.ChangeDetailsButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("ChangeDetailsButton.BgImageOnMouseDown")));
     this.ChangeDetailsButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("ChangeDetailsButton.BgImageOnMouseUp")));
     this.ChangeDetailsButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.ChangeDetailsButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.ChangeDetailsButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.ChangeDetailsButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.ChangeDetailsButton.Font = new System.Drawing.Font("Arial", 10F);
     this.ChangeDetailsButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.ChangeDetailsButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.ChangeDetailsButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Normal;
     this.ChangeDetailsButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.ChangeDetailsButton.Location = new System.Drawing.Point(991, 341);
     this.ChangeDetailsButton.Name = "ChangeDetailsButton";
     this.ChangeDetailsButton.Size = new System.Drawing.Size(145, 90);
     this.ChangeDetailsButton.TabIndex = 3;
     this.ChangeDetailsButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.ChangeDetailsButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.ChangeDetailsButton.UseVisualStyleBackColor = false;
     this.ChangeDetailsButton.Click += new System.EventHandler(this.ChangeDetailsButton_Click);
     //
     // TWButton
     //
     this.TWButton.BackColor = System.Drawing.Color.Transparent;
     this.TWButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TWButton.BackgroundImage")));
     this.TWButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("TWButton.BgImageOnMouseDown")));
     this.TWButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("TWButton.BgImageOnMouseUp")));
     this.TWButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.TWButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.TWButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.TWButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.TWButton.Font = new System.Drawing.Font("Arial", 10F);
     this.TWButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.TWButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.TWButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Normal;
     this.TWButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.TWButton.Location = new System.Drawing.Point(991, 149);
     this.TWButton.Name = "TWButton";
     this.TWButton.Size = new System.Drawing.Size(145, 90);
     this.TWButton.TabIndex = 8;
     this.TWButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.TWButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.TWButton.UseVisualStyleBackColor = false;
     this.TWButton.Click += new System.EventHandler(this.TWButton_Click);
     //
     // BarServiceButton
     //
     this.BarServiceButton.BackColor = System.Drawing.Color.Transparent;
     this.BarServiceButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("BarServiceButton.BackgroundImage")));
     this.BarServiceButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("BarServiceButton.BgImageOnMouseDown")));
     this.BarServiceButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("BarServiceButton.BgImageOnMouseUp")));
     this.BarServiceButton.Enabled = false;
     this.BarServiceButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.BarServiceButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.BarServiceButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.BarServiceButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.BarServiceButton.Font = new System.Drawing.Font("Arial", 10F);
     this.BarServiceButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.BarServiceButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.BarServiceButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Normal;
     this.BarServiceButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.BarServiceButton.Location = new System.Drawing.Point(825, 740);
     this.BarServiceButton.Name = "BarServiceButton";
     this.BarServiceButton.Size = new System.Drawing.Size(145, 40);
     this.BarServiceButton.TabIndex = 9;
     this.BarServiceButton.Text = "Bar Service";
     this.BarServiceButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.BarServiceButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.BarServiceButton.UseVisualStyleBackColor = false;
     this.BarServiceButton.Visible = false;
     this.BarServiceButton.Click += new System.EventHandler(this.BarServiceButton_Click);
     //
     // NewTableButton
     //
     this.NewTableButton.BackColor = System.Drawing.Color.Transparent;
     this.NewTableButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("NewTableButton.BackgroundImage")));
     this.NewTableButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("NewTableButton.BgImageOnMouseDown")));
     this.NewTableButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("NewTableButton.BgImageOnMouseUp")));
     this.NewTableButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.NewTableButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.NewTableButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.NewTableButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.NewTableButton.Font = new System.Drawing.Font("Arial", 10F);
     this.NewTableButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.NewTableButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.NewTableButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Add;
     this.NewTableButton.Image = ((System.Drawing.Image)(resources.GetObject("NewTableButton.Image")));
     this.NewTableButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.NewTableButton.Location = new System.Drawing.Point(991, 53);
     this.NewTableButton.Name = "NewTableButton";
     this.NewTableButton.Size = new System.Drawing.Size(145, 90);
     this.NewTableButton.TabIndex = 10;
     this.NewTableButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.NewTableButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.NewTableButton.UseVisualStyleBackColor = false;
     this.NewTableButton.Click += new System.EventHandler(this.NewTableButton_Click);
     //
     // LogOffButton
     //
     this.LogOffButton.BackColor = System.Drawing.Color.Transparent;
     this.LogOffButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("LogOffButton.BackgroundImage")));
     this.LogOffButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("LogOffButton.BgImageOnMouseDown")));
     this.LogOffButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("LogOffButton.BgImageOnMouseUp")));
     this.LogOffButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.LogOffButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.LogOffButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.LogOffButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.LogOffButton.Font = new System.Drawing.Font("Arial", 10F);
     this.LogOffButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.LogOffButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.LogOffButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.NormalCenter;
     this.LogOffButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.LogOffButton.Location = new System.Drawing.Point(991, 629);
     this.LogOffButton.Name = "LogOffButton";
     this.LogOffButton.Size = new System.Drawing.Size(145, 90);
     this.LogOffButton.TabIndex = 11;
     this.LogOffButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.LogOffButton.UseVisualStyleBackColor = false;
     this.LogOffButton.Click += new System.EventHandler(this.LogOffButton_Click);
     //
     // MainStatusStrip
     //
     this.MainStatusStrip.BackColor = System.Drawing.SystemColors.Control;
     this.MainStatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsLblCurrentUser});
     this.MainStatusStrip.Location = new System.Drawing.Point(3, 941);
     this.MainStatusStrip.Name = "MainStatusStrip";
     this.MainStatusStrip.Size = new System.Drawing.Size(1294, 24);
     this.MainStatusStrip.TabIndex = 9;
     //
     // tsLblCurrentUser
     //
     this.tsLblCurrentUser.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
     this.tsLblCurrentUser.BorderStyle = System.Windows.Forms.Border3DStyle.Sunken;
     this.tsLblCurrentUser.Name = "tsLblCurrentUser";
     this.tsLblCurrentUser.Size = new System.Drawing.Size(77, 19);
     this.tsLblCurrentUser.Text = "Current User";
     //
     // UserStatusLabel
     //
     this.UserStatusLabel.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
     this.UserStatusLabel.BorderStyle = System.Windows.Forms.Border3DStyle.Sunken;
     this.UserStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.UserStatusLabel.Name = "UserStatusLabel";
     this.UserStatusLabel.Size = new System.Drawing.Size(138, 17);
     this.UserStatusLabel.Text = "Logged in as Administrator";
     //
     // OpenOrdersLabel
     //
     this.OpenOrdersLabel.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
     this.OpenOrdersLabel.BorderStyle = System.Windows.Forms.Border3DStyle.Sunken;
     this.OpenOrdersLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.OpenOrdersLabel.Name = "OpenOrdersLabel";
     this.OpenOrdersLabel.Size = new System.Drawing.Size(126, 17);
     this.OpenOrdersLabel.Text = "Number of Open Orders";
     //
     // TerminalIDLabel
     //
     this.TerminalIDLabel.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
     this.TerminalIDLabel.BorderStyle = System.Windows.Forms.Border3DStyle.Sunken;
     this.TerminalIDLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.TerminalIDLabel.Name = "TerminalIDLabel";
     this.TerminalIDLabel.Size = new System.Drawing.Size(65, 17);
     this.TerminalIDLabel.Text = "Terminal ID";
     //
     // tsCallerIdStatus
     //
     this.tsCallerIdStatus.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
     this.tsCallerIdStatus.BorderStyle = System.Windows.Forms.Border3DStyle.Sunken;
     this.tsCallerIdStatus.Name = "tsCallerIdStatus";
     this.tsCallerIdStatus.Size = new System.Drawing.Size(52, 17);
     this.tsCallerIdStatus.Text = "Caller ID";
     //
     // RefreshTimer
     //
     this.RefreshTimer.Interval = 10000;
     this.RefreshTimer.Tick += new System.EventHandler(this.RefreshTimer_Tick);
     //
     // tmrCallerInfo
     //
     this.tmrCallerInfo.Tick += new System.EventHandler(this.tmrCallerInfo_Tick);
     //
     // tlTip
     //
     this.tlTip.IsBalloon = true;
     this.tlTip.ShowAlways = true;
     //
     // btnCallRefresh
     //
     this.btnCallRefresh.BackColor = System.Drawing.Color.Transparent;
     this.btnCallRefresh.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnCallRefresh.BackgroundImage")));
     this.btnCallRefresh.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("btnCallRefresh.BgImageOnMouseDown")));
     this.btnCallRefresh.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("btnCallRefresh.BgImageOnMouseUp")));
     this.btnCallRefresh.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.btnCallRefresh.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.btnCallRefresh.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.btnCallRefresh.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnCallRefresh.Font = new System.Drawing.Font("Arial", 10F);
     this.btnCallRefresh.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.btnCallRefresh.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.btnCallRefresh.FunctionType = RMSUI.RMSUIConstants.FunctionType.Normal;
     this.btnCallRefresh.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCallRefresh.Location = new System.Drawing.Point(286, 42);
     this.btnCallRefresh.Name = "btnCallRefresh";
     this.btnCallRefresh.Size = new System.Drawing.Size(55, 32);
     this.btnCallRefresh.TabIndex = 7;
     this.btnCallRefresh.Text = "Clear";
     this.btnCallRefresh.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCallRefresh.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.tlTip.SetToolTip(this.btnCallRefresh, "Refresh");
     this.btnCallRefresh.UseVisualStyleBackColor = false;
     this.btnCallRefresh.Click += new System.EventHandler(this.btnCallRefresh_Click);
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.BackColor = System.Drawing.Color.Transparent;
     this.label14.ForeColor = System.Drawing.Color.Black;
     this.label14.Location = new System.Drawing.Point(197, 504);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(16, 13);
     this.label14.TabIndex = 3;
     this.label14.Text = "of";
     //
     // TotalPageLabel
     //
     this.TotalPageLabel.AutoSize = true;
     this.TotalPageLabel.BackColor = System.Drawing.Color.Transparent;
     this.TotalPageLabel.ForeColor = System.Drawing.Color.Black;
     this.TotalPageLabel.Location = new System.Drawing.Point(221, 504);
     this.TotalPageLabel.Name = "TotalPageLabel";
     this.TotalPageLabel.Size = new System.Drawing.Size(13, 13);
     this.TotalPageLabel.TabIndex = 2;
     this.TotalPageLabel.Text = "1";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.BackColor = System.Drawing.Color.Transparent;
     this.label13.ForeColor = System.Drawing.Color.Black;
     this.label13.Location = new System.Drawing.Point(77, 504);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(96, 13);
     this.label13.TabIndex = 1;
     this.label13.Text = "Open Order - Page";
     //
     // CurrentPageLabel
     //
     this.CurrentPageLabel.AutoSize = true;
     this.CurrentPageLabel.BackColor = System.Drawing.Color.Transparent;
     this.CurrentPageLabel.ForeColor = System.Drawing.Color.Black;
     this.CurrentPageLabel.Location = new System.Drawing.Point(179, 504);
     this.CurrentPageLabel.Name = "CurrentPageLabel";
     this.CurrentPageLabel.Size = new System.Drawing.Size(13, 13);
     this.CurrentPageLabel.TabIndex = 0;
     this.CurrentPageLabel.Text = "1";
     //
     // TablePanel
     //
     this.TablePanel.BackColor = System.Drawing.Color.Teal;
     this.TablePanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.TablePanel.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.TablePanel.Location = new System.Drawing.Point(7, 0);
     this.TablePanel.Name = "TablePanel";
     this.TablePanel.Padding = new System.Windows.Forms.Padding(5);
     this.TablePanel.Size = new System.Drawing.Size(972, 484);
     this.TablePanel.TabIndex = 14;
     this.TablePanel.Paint += new System.Windows.Forms.PaintEventHandler(this.TablePanel_Paint);
     //
     // panelCallerID
     //
     this.panelCallerID.BackColor = System.Drawing.Color.White;
     this.panelCallerID.Controls.Add(this.picBoxPhone);
     this.panelCallerID.Controls.Add(this.lblPhoneNumber);
     this.panelCallerID.Controls.Add(this.txtCustomerName);
     this.panelCallerID.Controls.Add(this.btnCallRefresh);
     this.panelCallerID.Controls.Add(this.label18);
     this.panelCallerID.Controls.Add(this.label16);
     this.panelCallerID.Controls.Add(this.txtFirstAddress);
     this.panelCallerID.Location = new System.Drawing.Point(479, 762);
     this.panelCallerID.Name = "panelCallerID";
     this.panelCallerID.Size = new System.Drawing.Size(301, 99);
     this.panelCallerID.TabIndex = 10;
     this.panelCallerID.Visible = false;
     //
     // picBoxPhone
     //
     this.picBoxPhone.BackColor = System.Drawing.SystemColors.ButtonFace;
     this.picBoxPhone.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("picBoxPhone.BackgroundImage")));
     this.picBoxPhone.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("picBoxPhone.BgImageOnMouseDown")));
     this.picBoxPhone.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("picBoxPhone.BgImageOnMouseUp")));
     this.picBoxPhone.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.picBoxPhone.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.picBoxPhone.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.picBoxPhone.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.picBoxPhone.Font = new System.Drawing.Font("Arial", 10F);
     this.picBoxPhone.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.picBoxPhone.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.picBoxPhone.FunctionType = RMSUI.RMSUIConstants.FunctionType.Normal;
     this.picBoxPhone.Image = global::RMS.Properties.Resources.ring_stop;
     this.picBoxPhone.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.picBoxPhone.Location = new System.Drawing.Point(308, 5);
     this.picBoxPhone.Name = "picBoxPhone";
     this.picBoxPhone.Size = new System.Drawing.Size(32, 32);
     this.picBoxPhone.TabIndex = 12;
     this.picBoxPhone.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.picBoxPhone.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.picBoxPhone.UseVisualStyleBackColor = false;
     //
     // lblPhoneNumber
     //
     this.lblPhoneNumber.AutoSize = true;
     this.lblPhoneNumber.BackColor = System.Drawing.Color.Transparent;
     this.lblPhoneNumber.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(0)));
     this.lblPhoneNumber.ForeColor = System.Drawing.SystemColors.Desktop;
     this.lblPhoneNumber.Location = new System.Drawing.Point(15, 59);
     this.lblPhoneNumber.Name = "lblPhoneNumber";
     this.lblPhoneNumber.Size = new System.Drawing.Size(119, 15);
     this.lblPhoneNumber.TabIndex = 10;
     this.lblPhoneNumber.Text = "45445645646543";
     //
     // txtCustomerName
     //
     this.txtCustomerName.AutoSize = true;
     this.txtCustomerName.BackColor = System.Drawing.Color.Transparent;
     this.txtCustomerName.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCustomerName.ForeColor = System.Drawing.SystemColors.Desktop;
     this.txtCustomerName.Location = new System.Drawing.Point(15, 19);
     this.txtCustomerName.Name = "txtCustomerName";
     this.txtCustomerName.Size = new System.Drawing.Size(121, 17);
     this.txtCustomerName.TabIndex = 11;
     this.txtCustomerName.Text = "There is no call";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.BackColor = System.Drawing.Color.Transparent;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.ForeColor = System.Drawing.Color.Black;
     this.label18.Location = new System.Drawing.Point(5, 5);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(82, 13);
     this.label18.TabIndex = 5;
     this.label18.Text = "Customer Name";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.BackColor = System.Drawing.Color.Transparent;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.ForeColor = System.Drawing.Color.Black;
     this.label16.Location = new System.Drawing.Point(4, 43);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(78, 13);
     this.label16.TabIndex = 4;
     this.label16.Text = "Phone Number";
     //
     // txtFirstAddress
     //
     this.txtFirstAddress.BackColor = System.Drawing.Color.White;
     this.txtFirstAddress.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtFirstAddress.Enabled = false;
     this.txtFirstAddress.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtFirstAddress.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.txtFirstAddress.Location = new System.Drawing.Point(7, 78);
     this.txtFirstAddress.Multiline = true;
     this.txtFirstAddress.Name = "txtFirstAddress";
     this.txtFirstAddress.Size = new System.Drawing.Size(334, 42);
     this.txtFirstAddress.TabIndex = 2;
     this.txtFirstAddress.Text = "There is no call";
     //
     // RefreshButton
     //
     this.RefreshButton.BackColor = System.Drawing.Color.Transparent;
     this.RefreshButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("RefreshButton.BackgroundImage")));
     this.RefreshButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("RefreshButton.BgImageOnMouseDown")));
     this.RefreshButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("RefreshButton.BgImageOnMouseUp")));
     this.RefreshButton.Cursor = System.Windows.Forms.Cursors.Hand;
     this.RefreshButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.RefreshButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.RefreshButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.RefreshButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.RefreshButton.Font = new System.Drawing.Font("Arial", 10F);
     this.RefreshButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.RefreshButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.RefreshButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Refresh;
     this.RefreshButton.Image = ((System.Drawing.Image)(resources.GetObject("RefreshButton.Image")));
     this.RefreshButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.RefreshButton.Location = new System.Drawing.Point(895, 490);
     this.RefreshButton.Name = "RefreshButton";
     this.RefreshButton.Size = new System.Drawing.Size(35, 30);
     this.RefreshButton.TabIndex = 7;
     this.RefreshButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.RefreshButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.RefreshButton.UseVisualStyleBackColor = false;
     this.RefreshButton.Click += new System.EventHandler(this.RefreshButton_Click);
     //
     // PreviousButton
     //
     this.PreviousButton.BackColor = System.Drawing.Color.Transparent;
     this.PreviousButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("PreviousButton.BackgroundImage")));
     this.PreviousButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("PreviousButton.BgImageOnMouseDown")));
     this.PreviousButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("PreviousButton.BgImageOnMouseUp")));
     this.PreviousButton.Cursor = System.Windows.Forms.Cursors.Hand;
     this.PreviousButton.Enabled = false;
     this.PreviousButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.PreviousButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.PreviousButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.PreviousButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.PreviousButton.Font = new System.Drawing.Font("Arial", 10F);
     this.PreviousButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.PreviousButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.PreviousButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Previous;
     this.PreviousButton.Image = ((System.Drawing.Image)(resources.GetObject("PreviousButton.Image")));
     this.PreviousButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.PreviousButton.Location = new System.Drawing.Point(853, 490);
     this.PreviousButton.Name = "PreviousButton";
     this.PreviousButton.Size = new System.Drawing.Size(35, 30);
     this.PreviousButton.TabIndex = 11;
     this.PreviousButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.PreviousButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.PreviousButton.UseVisualStyleBackColor = false;
     this.PreviousButton.Click += new System.EventHandler(this.PreviousButton_Click);
     //
     // NextButton
     //
     this.NextButton.BackColor = System.Drawing.Color.Transparent;
     this.NextButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("NextButton.BackgroundImage")));
     this.NextButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("NextButton.BgImageOnMouseDown")));
     this.NextButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("NextButton.BgImageOnMouseUp")));
     this.NextButton.Cursor = System.Windows.Forms.Cursors.Hand;
     this.NextButton.Enabled = false;
     this.NextButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.NextButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.NextButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.NextButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.NextButton.Font = new System.Drawing.Font("Arial", 10F);
     this.NextButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.NextButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.NextButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Next;
     this.NextButton.Image = ((System.Drawing.Image)(resources.GetObject("NextButton.Image")));
     this.NextButton.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.NextButton.Location = new System.Drawing.Point(937, 490);
     this.NextButton.Name = "NextButton";
     this.NextButton.Size = new System.Drawing.Size(35, 30);
     this.NextButton.TabIndex = 5;
     this.NextButton.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.NextButton.TextImageRelation = System.Windows.Forms.TextImageRelation.TextBeforeImage;
     this.NextButton.UseVisualStyleBackColor = false;
     this.NextButton.Click += new System.EventHandler(this.NextButton_Click);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Transparent;
     this.panel2.Controls.Add(this.label21);
     this.panel2.Controls.Add(this.label15);
     this.panel2.Controls.Add(this.label17);
     this.panel2.Location = new System.Drawing.Point(11, 99);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(68, 35);
     this.panel2.TabIndex = 4;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.BackColor = System.Drawing.Color.Transparent;
     this.label21.ForeColor = System.Drawing.Color.White;
     this.label21.Location = new System.Drawing.Point(4, 18);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(59, 13);
     this.label21.TabIndex = 13;
     this.label21.Text = "Information";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label15.Location = new System.Drawing.Point(3, 1);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(62, 17);
     this.label15.TabIndex = 13;
     this.label15.Text = "Caller\'s";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label17.Location = new System.Drawing.Point(140, 0);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(13, 13);
     this.label17.TabIndex = 2;
     this.label17.Text = "1";
     //
     // panel9
     //
     this.panel9.BackColor = System.Drawing.Color.Transparent;
     this.panel9.BackgroundImage = global::RMS.Properties.Resources.lobby_window_bg;
     this.panel9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.panel9.Controls.Add(this.RefreshButton);
     this.panel9.Controls.Add(this.label1);
     this.panel9.Controls.Add(this.TablePanel);
     this.panel9.Controls.Add(this.label13);
     this.panel9.Controls.Add(this.TotalPageLabel);
     this.panel9.Controls.Add(this.CurrentPageLabel);
     this.panel9.Controls.Add(this.PreviousButton);
     this.panel9.Controls.Add(this.label14);
     this.panel9.Controls.Add(this.NextButton);
     this.panel9.Location = new System.Drawing.Point(6, 53);
     this.panel9.Name = "panel9";
     this.panel9.Size = new System.Drawing.Size(984, 532);
     this.panel9.TabIndex = 15;
     this.panel9.Paint += new System.Windows.Forms.PaintEventHandler(this.panel9_Paint);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.SystemColors.Desktop;
     this.label1.Location = new System.Drawing.Point(11, 499);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(57, 20);
     this.label1.TabIndex = 15;
     this.label1.Text = "Lobby";
     //
     // refreshlobbyButton
     //
     this.refreshlobbyButton.BackColor = System.Drawing.Color.Transparent;
     this.refreshlobbyButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("refreshlobbyButton.BackgroundImage")));
     this.refreshlobbyButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("refreshlobbyButton.BgImageOnMouseDown")));
     this.refreshlobbyButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("refreshlobbyButton.BgImageOnMouseUp")));
     this.refreshlobbyButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.refreshlobbyButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.refreshlobbyButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.refreshlobbyButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.refreshlobbyButton.Font = new System.Drawing.Font("Arial", 10F);
     this.refreshlobbyButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.refreshlobbyButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.refreshlobbyButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Normal;
     this.refreshlobbyButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.refreshlobbyButton.Location = new System.Drawing.Point(833, 804);
     this.refreshlobbyButton.Name = "refreshlobbyButton";
     this.refreshlobbyButton.Size = new System.Drawing.Size(145, 90);
     this.refreshlobbyButton.TabIndex = 16;
     this.refreshlobbyButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.refreshlobbyButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.refreshlobbyButton.UseVisualStyleBackColor = false;
     this.refreshlobbyButton.Visible = false;
     this.refreshlobbyButton.Click += new System.EventHandler(this.refreshlobbyButton_Click);
     //
     // CMainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.ControlText;
     this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
     this.ClientSize = new System.Drawing.Size(1300, 968);
     this.Controls.Add(this.refreshlobbyButton);
     this.Controls.Add(this.panel9);
     this.Controls.Add(this.LogOffButton);
     this.Controls.Add(this.NewTableButton);
     this.Controls.Add(this.BarServiceButton);
     this.Controls.Add(this.TWButton);
     this.Controls.Add(this.ChangeDetailsButton);
     this.Controls.Add(this.NameTableButton);
     this.Controls.Add(this.TableInfoButton);
     this.Controls.Add(this.SysMngmntButton);
     this.Controls.Add(this.MainStatusStrip);
     this.Controls.Add(this.panelCallerID);
     this.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.Name = "CMainForm";
     this.Activated += new System.EventHandler(this.CMainForm_Activated);
     this.Deactivate += new System.EventHandler(this.CMainForm_Deactivate);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.CMainForm_FormClosing);
     this.Load += new System.EventHandler(this.CMainForm_Load);
     this.Controls.SetChildIndex(this.panelCallerID, 0);
     this.Controls.SetChildIndex(this.MainStatusStrip, 0);
     this.Controls.SetChildIndex(this.SysMngmntButton, 0);
     this.Controls.SetChildIndex(this.TableInfoButton, 0);
     this.Controls.SetChildIndex(this.NameTableButton, 0);
     this.Controls.SetChildIndex(this.ChangeDetailsButton, 0);
     this.Controls.SetChildIndex(this.TWButton, 0);
     this.Controls.SetChildIndex(this.BarServiceButton, 0);
     this.Controls.SetChildIndex(this.NewTableButton, 0);
     this.Controls.SetChildIndex(this.LogOffButton, 0);
     this.Controls.SetChildIndex(this.panel9, 0);
     this.Controls.SetChildIndex(this.refreshlobbyButton, 0);
     this.MainStatusStrip.ResumeLayout(false);
     this.MainStatusStrip.PerformLayout();
     this.panelCallerID.ResumeLayout(false);
     this.panelCallerID.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.panel9.ResumeLayout(false);
     this.panel9.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()
 {
     this.pntop = new System.Windows.Forms.Panel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.rdbtimkiem1 = new System.Windows.Forms.RadioButton();
     this.txttimkiem = new System.Windows.Forms.TextBox();
     this.rdbtimkiem3 = new System.Windows.Forms.RadioButton();
     this.rdbtimkiem2 = new System.Windows.Forms.RadioButton();
     this.lbtenbaocao = new System.Windows.Forms.Label();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsslchitiet = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsslPdf = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsslWord = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsslexcel = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsslthoat = new System.Windows.Forms.ToolStripStatusLabel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.dtgvhienthi = new System.Windows.Forms.DataGridView();
     this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
     this.pntop.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtgvhienthi)).BeginInit();
     this.SuspendLayout();
     //
     // pntop
     //
     this.pntop.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
     this.pntop.Controls.Add(this.groupBox1);
     this.pntop.Controls.Add(this.lbtenbaocao);
     this.pntop.Dock = System.Windows.Forms.DockStyle.Top;
     this.pntop.Location = new System.Drawing.Point(0, 0);
     this.pntop.Name = "pntop";
     this.pntop.Size = new System.Drawing.Size(594, 94);
     this.pntop.TabIndex = 0;
     this.pntop.DoubleClick += new System.EventHandler(this.pntop_DoubleClick);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.rdbtimkiem1);
     this.groupBox1.Controls.Add(this.txttimkiem);
     this.groupBox1.Controls.Add(this.rdbtimkiem3);
     this.groupBox1.Controls.Add(this.rdbtimkiem2);
     this.groupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupBox1.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.groupBox1.Location = new System.Drawing.Point(0, 40);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(594, 54);
     this.groupBox1.TabIndex = 89;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Tìm kiếm";
     //
     // rdbtimkiem1
     //
     this.rdbtimkiem1.AutoSize = true;
     this.rdbtimkiem1.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rdbtimkiem1.Location = new System.Drawing.Point(12, 29);
     this.rdbtimkiem1.Name = "rdbtimkiem1";
     this.rdbtimkiem1.Size = new System.Drawing.Size(61, 18);
     this.rdbtimkiem1.TabIndex = 4;
     this.rdbtimkiem1.TabStop = true;
     this.rdbtimkiem1.Text = "Mã kho";
     this.rdbtimkiem1.UseVisualStyleBackColor = true;
     //
     // txttimkiem
     //
     this.txttimkiem.Location = new System.Drawing.Point(211, 26);
     this.txttimkiem.Name = "txttimkiem";
     this.txttimkiem.Size = new System.Drawing.Size(377, 20);
     this.txttimkiem.TabIndex = 3;
     this.txttimkiem.TextChanged += new System.EventHandler(this.txttimkiem_TextChanged);
     //
     // rdbtimkiem3
     //
     this.rdbtimkiem3.AutoSize = true;
     this.rdbtimkiem3.Checked = true;
     this.rdbtimkiem3.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rdbtimkiem3.Location = new System.Drawing.Point(150, 29);
     this.rdbtimkiem3.Name = "rdbtimkiem3";
     this.rdbtimkiem3.Size = new System.Drawing.Size(55, 18);
     this.rdbtimkiem3.TabIndex = 2;
     this.rdbtimkiem3.TabStop = true;
     this.rdbtimkiem3.Text = "Tất cả";
     this.rdbtimkiem3.UseVisualStyleBackColor = true;
     this.rdbtimkiem3.CheckedChanged += new System.EventHandler(this.rdbtimkiem3_CheckedChanged);
     //
     // rdbtimkiem2
     //
     this.rdbtimkiem2.AutoSize = true;
     this.rdbtimkiem2.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rdbtimkiem2.Location = new System.Drawing.Point(79, 29);
     this.rdbtimkiem2.Name = "rdbtimkiem2";
     this.rdbtimkiem2.Size = new System.Drawing.Size(65, 18);
     this.rdbtimkiem2.TabIndex = 1;
     this.rdbtimkiem2.TabStop = true;
     this.rdbtimkiem2.Text = "Tên kho";
     this.rdbtimkiem2.UseVisualStyleBackColor = true;
     //
     // lbtenbaocao
     //
     this.lbtenbaocao.AutoSize = true;
     this.lbtenbaocao.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbtenbaocao.ForeColor = System.Drawing.Color.White;
     this.lbtenbaocao.Location = new System.Drawing.Point(12, 10);
     this.lbtenbaocao.Name = "lbtenbaocao";
     this.lbtenbaocao.Size = new System.Drawing.Size(259, 20);
     this.lbtenbaocao.TabIndex = 0;
     this.lbtenbaocao.Text = "Báo Cáo Tồn Tối Thiểu - Tối Đa";
     //
     // statusStrip1
     //
     this.statusStrip1.BackColor = System.Drawing.Color.LightSteelBlue;
     this.statusStrip1.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel1,
     this.tsslchitiet,
     this.tsslPdf,
     this.tsslWord,
     this.tsslexcel,
     this.tsslthoat});
     this.statusStrip1.Location = new System.Drawing.Point(0, 375);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(594, 26);
     this.statusStrip1.TabIndex = 1;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Image = global::GUI.Properties.Resources.refresh;
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(91, 21);
     this.toolStripStatusLabel1.Spring = true;
     this.toolStripStatusLabel1.Text = "Nạp lại";
     this.toolStripStatusLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripStatusLabel1.Click += new System.EventHandler(this.toolStripStatusLabel1_Click);
     this.toolStripStatusLabel1.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.toolStripStatusLabel1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // tsslchitiet
     //
     this.tsslchitiet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.tsslchitiet.Enabled = false;
     this.tsslchitiet.Image = global::GUI.Properties.Resources.In;
     this.tsslchitiet.Name = "tsslchitiet";
     this.tsslchitiet.Size = new System.Drawing.Size(91, 21);
     this.tsslchitiet.Spring = true;
     this.tsslchitiet.Text = "Xem";
     this.tsslchitiet.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.tsslchitiet.Click += new System.EventHandler(this.tsslchitiet_Click);
     this.tsslchitiet.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.tsslchitiet.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // tsslPdf
     //
     this.tsslPdf.Enabled = false;
     this.tsslPdf.Image = global::GUI.Properties.Resources.icon_pdf;
     this.tsslPdf.Name = "tsslPdf";
     this.tsslPdf.Size = new System.Drawing.Size(91, 21);
     this.tsslPdf.Spring = true;
     this.tsslPdf.Text = "PDF";
     this.tsslPdf.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.tsslPdf.Click += new System.EventHandler(this.tsslPdf_Click);
     this.tsslPdf.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.tsslPdf.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // tsslWord
     //
     this.tsslWord.Enabled = false;
     this.tsslWord.Image = global::GUI.Properties.Resources.DocX_Viewer_icon;
     this.tsslWord.Name = "tsslWord";
     this.tsslWord.Size = new System.Drawing.Size(91, 21);
     this.tsslWord.Spring = true;
     this.tsslWord.Text = "Word";
     this.tsslWord.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.tsslWord.Click += new System.EventHandler(this.tsslWord_Click);
     this.tsslWord.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.tsslWord.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // tsslexcel
     //
     this.tsslexcel.Enabled = false;
     this.tsslexcel.Image = global::GUI.Properties.Resources.excel_icon4;
     this.tsslexcel.Name = "tsslexcel";
     this.tsslexcel.Size = new System.Drawing.Size(91, 21);
     this.tsslexcel.Spring = true;
     this.tsslexcel.Text = "Excel";
     this.tsslexcel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.tsslexcel.Click += new System.EventHandler(this.tsslexcel_Click);
     this.tsslexcel.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.tsslexcel.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // tsslthoat
     //
     this.tsslthoat.Image = global::GUI.Properties.Resources.Xoa;
     this.tsslthoat.Name = "tsslthoat";
     this.tsslthoat.Size = new System.Drawing.Size(91, 21);
     this.tsslthoat.Spring = true;
     this.tsslthoat.Text = "Thoát";
     this.tsslthoat.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.tsslthoat.Click += new System.EventHandler(this.tsslthoat_Click);
     this.tsslthoat.MouseLeave += new System.EventHandler(this.MouseLeave);
     this.tsslthoat.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMove);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.dtgvhienthi);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 94);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(594, 281);
     this.panel1.TabIndex = 2;
     //
     // dtgvhienthi
     //
     this.dtgvhienthi.BackgroundColor = System.Drawing.Color.White;
     this.dtgvhienthi.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dtgvhienthi.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dtgvhienthi.Location = new System.Drawing.Point(0, 0);
     this.dtgvhienthi.Name = "dtgvhienthi";
     this.dtgvhienthi.Size = new System.Drawing.Size(594, 281);
     this.dtgvhienthi.TabIndex = 0;
     this.dtgvhienthi.TabStop = false;
     this.dtgvhienthi.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dtgvhienthi_CellClick);
     this.dtgvhienthi.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dtgvhienthi_CellDoubleClick);
     //
     // frmBCMucTonToiThieuToiDa
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(594, 401);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.pntop);
     this.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name = "frmBCMucTonToiThieuToiDa";
     this.ShowIcon = false;
     this.ShowInTaskbar = false;
     this.Text = " ";
     this.Load += new System.EventHandler(this.frmBCMucTonToiThieuToiDa_Load);
     this.pntop.ResumeLayout(false);
     this.pntop.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dtgvhienthi)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }