public bool ModifyRecord(ClusterInfo cluster, int numberOfRecords, System.Windows.Forms.ToolStripProgressBar bar)
        {
            Comm comm = new Comm(cluster.username, cluster.password, cluster.server, cluster.keyspace);

            comm.Connect();
            ISession session = comm.GetSession();

            string queryString = "SELECT key FROM patient_record LIMIT " + numberOfRecords;

            PreparedStatement preparedStatement = session.Prepare(queryString);
            BoundStatement    boundStatement    = preparedStatement.Bind();
            RowSet            result            = session.Execute(boundStatement);

            foreach (Row row in result)
            {
                string updateString = "UPDATE patient_record SET phone_no='"
                                      + GetRandomTelNo() + "', address='"
                                      + GetRandomAddress() + "' WHERE key="
                                      + row[0].ToString();
                PreparedStatement ps = session.Prepare(updateString);
                BoundStatement    bs = ps.Bind();
                session.Execute(bs);
                bar.PerformStep();
            }
            bar.Visible = false;
            return(true);
        }
Пример #2
0
        internal static long getHitoricalData(short sExchange, string FileName, System.Windows.Forms.ToolStripProgressBar pBarDM)
        {
/*
 * http://ichart.finance.yahoo.com/table.csv?s=BHEL.NS&d=9&e=13&f=2009&g=d&a=7&b=12&c=2002&ignore=.csv
 * http://ichart.finance.yahoo.com/table.csv?s=BHEL.NS&a=08&b=12&c=2002&d=09&e=13&f=2009&g=d&ignore=.csv
 * http://in.rd.yahoo.com/finance/quotes/internal/historical/download/*http://ichart.finance.yahoo.com/table.csv?s=BHEL.NS&a=04&b=12&c=2002&d=09&e=13&f=2009&g=d&ignore=.csv
 */
            const string sNSE = "http://www.nseindia.com/content/historical/EQUITIES/{0}/{1}/cm{2}bhav.csv"; //"http://www.nseindia.com/content/historical/EQUITIES/2009/SEP/cm16SEP2009bhav.csv";
            const string sBSE = "http://www.bseindia.com/bhavcopy/eq{0}{1}{2}_csv.zip";                      //"http://www.bseindia.com/bhavcopy/eq160909_csv.zip";

            string sURL = string.Empty;

            switch (sExchange)
            {
            case (short)StockExchange.NSE:
                sURL = string.Format(sNSE, _SelectedDateTime.ToString("yyyy"), _SelectedDateTime.ToString("MMM").ToUpper(), _SelectedDateTime.ToString("ddMMMyyyy").ToUpper());
                break;

            case (short)StockExchange.BSE:
                sURL = string.Format(sBSE, _SelectedDateTime.ToString("dd"), _SelectedDateTime.ToString("MM"), _SelectedDateTime.ToString("yy"));
                break;

            default:
                break;
            }
            return(DownloadFile(sURL, FileName, pBarDM));
        }
Пример #3
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;
 }
Пример #4
0
 public ProgressUpdater(System.Windows.Forms.ToolStripProgressBar bar
                        , System.Windows.Forms.ToolStripLabel l)
 {
     progressReporter = new ProgressReporter();
     bar.Maximum      = 0;
     bar.Step         = 10;
     progress         = bar;
     label            = l;
 }
Пример #5
0
 public void LoadInvitados(IList <Invitado> invitadosLeidos, System.Windows.Forms.ToolStripProgressBar updateProgress)
 {
     using (SqliteConnection db = CreateConnection())
     {
         db.Open();
         for (int idInvitado = 0; idInvitado < invitadosLeidos.Count(); idInvitado++)
         {
             insertInvitado(db, invitadosLeidos[idInvitado]);
             updateProgress.Value = (100 * idInvitado) / invitadosLeidos.Count();
         }
         db.Close();
     }
     updateProgress.Value = 100;
 }
Пример #6
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;
 }
Пример #7
0
        public IList <Invitado> ReadFileInvitados(string filename, System.Windows.Forms.ToolStripProgressBar updateProgress)
        {
            string[] lineas = File.ReadAllLines(filename, Encoding.GetEncoding("iso-8859-15"));
            updateProgress.Value = 0;
            IList <Invitado> invitados = new List <Invitado>();

            for (int lineaId = 1; lineaId < lineas.Count(); lineaId++)
            {
                Invitado invitado = ConvertLineToInvitado(lineas[lineaId]);
                invitados.Add(invitado);
                updateProgress.Value = (100 * lineaId) / lineas.Count();
            }
            updateProgress.Value = 100;
            return(invitados);
        }
Пример #8
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;
 }
Пример #9
0
        /// <summary>
        /// Uploads the schedule to the database
        /// </summary>
        /// <param name="db_conn">database connection object</param>
        /// <param name="pbBar">progress bar</param>
        public void SubmitSchedule(DBConnect db_conn, System.Windows.Forms.ToolStripProgressBar pbBar)
        {
            // upload database info
            string query = "INSERT INTO route (schedule_ID, payment_due, is_paid, posted_by, posted_on, starting_date, ending_date)" +
                           " VALUES ('"
                           + this.ScheduleID + "', '"
                           + this.PayDay + "', '0', '"
                           + this.Author + "', '"
                           + DateTime.Today.ToString("yyyy-MM-dd") + "', '"
                           + this.Start + "', '"
                           + this._endDay + "');";

            // used to count if timed out
            int timeout = 0;

            // keeps trying until command either runs successfully or connection times out
            while (!db_conn.RunCommand(query))
            {
                timeout++;
                if (timeout > TIMEOUT)
                {
                    System.Windows.Forms.MessageBox.Show("Connecting to database timed out while trying to run the following mysql statement: " + query);
                    return;
                }
            }

            pbBar.Maximum = 1 + this._employees.ToList().Count + this._skeleton.ToList().Count;

            pbBar.PerformStep();

            // second part
            bool result = this.UploadEmployeeTables(db_conn, pbBar);

            // final part
            result = result && this.UploadMainTable(db_conn, pbBar);

            if (result)
            {
                System.Threading.Thread.Sleep(600);
                System.Windows.Forms.MessageBox.Show("Uploaded Schedule successfully.");
            }

            return;
        }
        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();
        }
Пример #11
0
        /// <summary>
        /// uploads shift data to each employee's table
        /// </summary>
        /// <param name="db_conn">database connection object</param>
        /// <param name="pbBar">progress bar</param>
        /// <returns>true if successful, false otherwise</returns>
        private bool UploadEmployeeTables(DBConnect db_conn, System.Windows.Forms.ToolStripProgressBar pbBar)
        {
            // format for time display
            string format = "HH:mm:ss";

            // go through each employee
            foreach (Employee employee in this._employees.ToList())
            {
                // go through each shift this person is working
                foreach (Shift shift in employee._shiftsWorking.ToList())
                {
                    // upload this info
                    string query = "INSERT INTO " + employee.Username + " (date, schedule_ID, shift_ID, type, start, end, length, is_paid) "
                                   + "VALUES ("
                                   + "'" + shift.Date.ToString("yyyy-MM-dd") + "', "
                                   + "'" + this.ScheduleID + "', "
                                   + "'" + shift.ShiftNumber + "', "
                                   + "'" + shift.Name.ToUpper() + "', "
                                   + "'" + shift.StartTime.ToString(format) + "', "
                                   + "'" + shift.EndTime.ToString(format) + "', "
                                   + "'" + shift.Length.TotalHours + "', "
                                   + "'0');";

                    int timeout = 0;
                    // keeps trying until command either runs successfully or connection times out
                    while (!db_conn.RunCommand(query))
                    {
                        timeout++;
                        if (timeout > TIMEOUT)
                        {
                            System.Windows.Forms.MessageBox.Show("Connecting to database timed out while trying to run the following mysql statement: " + query);;
                            return(false);
                        }
                    }
                }

                // update progress bar
                pbBar.PerformStep();
            }

            return(true);
        }
Пример #12
0
        /// <summary>
        /// Uploads the main schedule table to the database
        /// </summary>
        /// <param name="db_conn">database connection object</param>
        /// <param name="pbBar">progress bar</param>
        /// <returns>true if successful, false otherwise</returns>
        private bool UploadShiftsNewSite(DBConnect db_conn, System.Windows.Forms.ToolStripProgressBar pbBar)
        {
            string format = "HH:mm:ss";
            int    timeout;
            string query;

            // for each shift in this schedule
            foreach (ScheduleSlot slot in this._skeleton.ToList())
            {
                // generate insert query
                query = "INSERT INTO `shifts_list` (`shift_id`, sched_id, `date`, `day`, `when`, `type`, `start`, `end`, length)  "
                        + "VALUES ("
                        + "'" + slot._shiftInfo.ShiftNumber + "', "
                        + "'" + this.ScheduleID + "', "
                        + "'" + slot.Date.ToString("yyyy-MM-dd") + "', "
                        + "'" + new CultureInfo("en-US").TextInfo.ToTitleCase(slot.Day) + "', "
                        + "'" + slot._shiftInfo.When() + "', "
                        + "'" + slot.Name.ToUpper() + "', "
                        + "'" + slot._shiftInfo.StartTime.ToString(format) + "', "
                        + "'" + slot._shiftInfo.EndTime.ToString(format) + "', "
                        + "'" + slot.Length.TotalHours + "');";

                // update progress bar
                pbBar.PerformStep();

                timeout = 0;
                // keeps trying until command either runs successfully or connection times out
                while (!db_conn.RunCommand(query))
                {
                    timeout++;
                    if (timeout > TIMEOUT)
                    {
                        System.Windows.Forms.MessageBox.Show("Connecting to database timed out while trying to run the following mysql statement: " + query);;
                        return(false);
                    }
                }
            }

            return(true);
        }
Пример #13
0
        public void DownloadFile(string URL, String filename, System.Windows.Forms.ToolStripProgressBar prog)
        {
            try
            {
                System.Net.HttpWebRequest  Myrq = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(URL);
                System.Net.HttpWebResponse myrp = (System.Net.HttpWebResponse)Myrq.GetResponse();
                long totalBytes = myrp.ContentLength;

                if (prog != null)
                {
                    prog.Maximum = (int)totalBytes;
                }

                System.IO.Stream st = myrp.GetResponseStream();
                System.IO.Stream so = new System.IO.FileStream(filename, System.IO.FileMode.Create);
                long             totalDownloadedByte = 0;
                byte[]           by = new byte[1024];
                int osize           = st.Read(by, 0, (int)by.Length);
                while (osize > 0)
                {
                    totalDownloadedByte = osize + totalDownloadedByte;
                    System.Windows.Forms.Application.DoEvents();
                    so.Write(by, 0, osize);

                    if (prog != null)
                    {
                        prog.Value = (int)totalDownloadedByte;
                    }
                    osize = st.Read(by, 0, (int)by.Length);
                }
                so.Close();
                st.Close();
            }
            catch (System.Exception)
            {
                throw;
            }
        }
Пример #14
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(Initialization));
     this.button1 = new System.Windows.Forms.Button();
     this.versionBox = new System.Windows.Forms.ComboBox();
     this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.pathBox = new System.Windows.Forms.ComboBox();
     this.button2 = new System.Windows.Forms.Button();
     this.debugButton = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // button1
     //
     this.button1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.button1.Location = new System.Drawing.Point(12, 65);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(268, 28);
     this.button1.TabIndex = 1;
     this.button1.Text = "Initialize";
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // versionBox
     //
     this.versionBox.FormattingEnabled = true;
     this.versionBox.Items.AddRange(new object[] {
     "GMS",
     "EMS , MSEA , KMS",
     "BMS , JMS",
     "Auto-Detect"});
     this.versionBox.Location = new System.Drawing.Point(79, 38);
     this.versionBox.Name = "versionBox";
     this.versionBox.Size = new System.Drawing.Size(201, 21);
     this.versionBox.TabIndex = 3;
     //
     // toolStripProgressBar1
     //
     this.toolStripProgressBar1.Name = "toolStripProgressBar1";
     this.toolStripProgressBar1.Size = new System.Drawing.Size(150, 16);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(12, 41);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(57, 13);
     this.label2.TabIndex = 8;
     this.label2.Text = "Encryption";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(12, 15);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(48, 13);
     this.label3.TabIndex = 9;
     this.label3.Text = "MS Path";
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(12, 99);
     this.textBox2.Name = "textBox2";
     this.textBox2.ReadOnly = true;
     this.textBox2.Size = new System.Drawing.Size(268, 20);
     this.textBox2.TabIndex = 2;
     //
     // pathBox
     //
     this.pathBox.FormattingEnabled = true;
     this.pathBox.Location = new System.Drawing.Point(79, 12);
     this.pathBox.Name = "pathBox";
     this.pathBox.Size = new System.Drawing.Size(159, 21);
     this.pathBox.TabIndex = 13;
     //
     // button2
     //
     this.button2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.button2.Location = new System.Drawing.Point(244, 12);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(36, 21);
     this.button2.TabIndex = 14;
     this.button2.Text = "...";
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // debugButton
     //
     this.debugButton.Location = new System.Drawing.Point(174, 56);
     this.debugButton.Name = "debugButton";
     this.debugButton.Size = new System.Drawing.Size(106, 46);
     this.debugButton.TabIndex = 15;
     this.debugButton.Text = "DEBUG MODE ONLY";
     this.debugButton.UseVisualStyleBackColor = true;
     this.debugButton.Visible = false;
     this.debugButton.Click += new System.EventHandler(this.debugButton_Click);
     //
     // Initialization
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(292, 131);
     this.Controls.Add(this.debugButton);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.pathBox);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.versionBox);
     this.Controls.Add(this.textBox2);
     this.Controls.Add(this.button1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Initialization";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "HaCreator";
     this.Load += new System.EventHandler(this.Initialization_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Initialization_KeyDown);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #15
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.textBoxInputFilename  = new System.Windows.Forms.TextBox();
     this.openFileDialog1       = new System.Windows.Forms.OpenFileDialog();
     this.buttonInputFile       = new System.Windows.Forms.Button();
     this.textBoxOutputFilename = new System.Windows.Forms.TextBox();
     this.buttonOutputFile      = new System.Windows.Forms.Button();
     this.saveFileDialog1       = new System.Windows.Forms.SaveFileDialog();
     this.buttonStart           = new System.Windows.Forms.Button();
     this.Close      = new System.Windows.Forms.Button();
     this.buttonHelp = new System.Windows.Forms.Button();
     this.textBoxMaxLatLongDeviation = new System.Windows.Forms.TextBox();
     this.checkBoxEarthTools         = new System.Windows.Forms.CheckBox();
     this.statusStrip1          = new System.Windows.Forms.StatusStrip();
     this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.label1 = new System.Windows.Forms.Label();
     this.statusStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // textBoxInputFilename
     //
     this.textBoxInputFilename.Location = new System.Drawing.Point(15, 41);
     this.textBoxInputFilename.Name     = "textBoxInputFilename";
     this.textBoxInputFilename.Size     = new System.Drawing.Size(396, 20);
     this.textBoxInputFilename.TabIndex = 0;
     //
     // openFileDialog1
     //
     this.openFileDialog1.FileName = "openFileDialog1";
     //
     // buttonInputFile
     //
     this.buttonInputFile.Location = new System.Drawing.Point(12, 12);
     this.buttonInputFile.Name     = "buttonInputFile";
     this.buttonInputFile.Size     = new System.Drawing.Size(75, 23);
     this.buttonInputFile.TabIndex = 1;
     this.buttonInputFile.Text     = "Input File";
     this.buttonInputFile.UseVisualStyleBackColor = true;
     this.buttonInputFile.Click += new System.EventHandler(this.ButtonClickInputFile);
     //
     // textBoxOutputFilename
     //
     this.textBoxOutputFilename.Location     = new System.Drawing.Point(15, 100);
     this.textBoxOutputFilename.Name         = "textBoxOutputFilename";
     this.textBoxOutputFilename.Size         = new System.Drawing.Size(396, 20);
     this.textBoxOutputFilename.TabIndex     = 2;
     this.textBoxOutputFilename.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
     //
     // buttonOutputFile
     //
     this.buttonOutputFile.Location = new System.Drawing.Point(15, 70);
     this.buttonOutputFile.Name     = "buttonOutputFile";
     this.buttonOutputFile.Size     = new System.Drawing.Size(75, 23);
     this.buttonOutputFile.TabIndex = 3;
     this.buttonOutputFile.Text     = "Output File";
     this.buttonOutputFile.UseVisualStyleBackColor = true;
     this.buttonOutputFile.Click += new System.EventHandler(this.ButtonClickOutputFile);
     //
     // buttonStart
     //
     this.buttonStart.Enabled  = false;
     this.buttonStart.Location = new System.Drawing.Point(171, 171);
     this.buttonStart.Name     = "buttonStart";
     this.buttonStart.Size     = new System.Drawing.Size(75, 23);
     this.buttonStart.TabIndex = 4;
     this.buttonStart.Text     = "Start";
     this.buttonStart.UseVisualStyleBackColor = true;
     this.buttonStart.Click += new System.EventHandler(this.ButtonClickStart);
     //
     // Close
     //
     this.Close.Location = new System.Drawing.Point(252, 171);
     this.Close.Name     = "Close";
     this.Close.Size     = new System.Drawing.Size(75, 23);
     this.Close.TabIndex = 7;
     this.Close.Text     = "Close";
     this.Close.UseVisualStyleBackColor = true;
     this.Close.Click += new System.EventHandler(this.CancelClick);
     //
     // buttonHelp
     //
     this.buttonHelp.Location = new System.Drawing.Point(333, 171);
     this.buttonHelp.Name     = "buttonHelp";
     this.buttonHelp.Size     = new System.Drawing.Size(75, 23);
     this.buttonHelp.TabIndex = 8;
     this.buttonHelp.Text     = "Help";
     this.buttonHelp.UseVisualStyleBackColor = true;
     this.buttonHelp.Click += new System.EventHandler(this.ButtonClickHelp);
     //
     // textBoxMaxLatLongDeviation
     //
     this.textBoxMaxLatLongDeviation.Location     = new System.Drawing.Point(12, 156);
     this.textBoxMaxLatLongDeviation.Name         = "textBoxMaxLatLongDeviation";
     this.textBoxMaxLatLongDeviation.Size         = new System.Drawing.Size(32, 20);
     this.textBoxMaxLatLongDeviation.TabIndex     = 10;
     this.textBoxMaxLatLongDeviation.Text         = "2\r\n";
     this.textBoxMaxLatLongDeviation.TextAlign    = System.Windows.Forms.HorizontalAlignment.Center;
     this.textBoxMaxLatLongDeviation.TextChanged += new System.EventHandler(this.textBox3_TextChanged);
     //
     // checkBoxEarthTools
     //
     this.checkBoxEarthTools.Checked    = true;
     this.checkBoxEarthTools.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxEarthTools.Location   = new System.Drawing.Point(15, 126);
     this.checkBoxEarthTools.Name       = "checkBoxEarthTools";
     this.checkBoxEarthTools.Size       = new System.Drawing.Size(234, 24);
     this.checkBoxEarthTools.TabIndex   = 12;
     this.checkBoxEarthTools.Text       = "use earthtools.org to calculate altitude";
     this.checkBoxEarthTools.UseVisualStyleBackColor = true;
     this.checkBoxEarthTools.CheckedChanged         += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripProgressBar1,
         this.toolStripStatusLabel1
     });
     this.statusStrip1.Location = new System.Drawing.Point(0, 210);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Size     = new System.Drawing.Size(423, 22);
     this.statusStrip1.TabIndex = 13;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // toolStripProgressBar1
     //
     this.toolStripProgressBar1.Name = "toolStripProgressBar1";
     this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 16);
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name   = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size   = new System.Drawing.Size(107, 17);
     this.toolStripStatusLabel1.Text   = "st2dash Version 1.4";
     this.toolStripStatusLabel1.Click += new System.EventHandler(this.ToolStripStatusLabel1Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(50, 159);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(111, 13);
     this.label1.TabIndex = 15;
     this.label1.Text     = "max lat/long deviation";
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(423, 232);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.checkBoxEarthTools);
     this.Controls.Add(this.textBoxMaxLatLongDeviation);
     this.Controls.Add(this.buttonHelp);
     this.Controls.Add(this.Close);
     this.Controls.Add(this.buttonInputFile);
     this.Controls.Add(this.textBoxInputFilename);
     this.Controls.Add(this.buttonStart);
     this.Controls.Add(this.buttonOutputFile);
     this.Controls.Add(this.textBoxOutputFilename);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Name            = "MainForm";
     this.Text            = "st2dash";
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
     this.buttonOK = new System.Windows.Forms.Button();
     this.buttonCancel = new System.Windows.Forms.Button();
     this.label2 = new System.Windows.Forms.Label();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.tabPage3 = new System.Windows.Forms.TabPage();
     this.tabPage4 = new System.Windows.Forms.TabPage();
     this.tabPage5 = new System.Windows.Forms.TabPage();
     this.tabPage6 = new System.Windows.Forms.TabPage();
     this.tabPage7 = new System.Windows.Forms.TabPage();
     this.tabPage8 = new System.Windows.Forms.TabPage();
     this.tabPage9 = new System.Windows.Forms.TabPage();
     this.tabPage10 = new System.Windows.Forms.TabPage();
     this.tabPage11 = new System.Windows.Forms.TabPage();
     this.tabPage12 = new System.Windows.Forms.TabPage();
     this.logTextBox1 = new HydroSharedAddIn.gui.LogTextBox();
     this.elapsedTimeLabel1 = new HydroSharedAddIn.gui.ElapsedTimeLabel();
     this.currentSimulationLabel1 = new HydroSharedAddIn.gui.CurrentSimulationLabel();
     this.statusStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(12, 9);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(93, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Current Subreach:";
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel1,
     this.toolStripProgressBar1});
     this.statusStrip1.Location = new System.Drawing.Point(0, 540);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(635, 22);
     this.statusStrip1.TabIndex = 3;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(118, 17);
     this.toolStripStatusLabel1.Text = "toolStripStatusLabel1";
     //
     // toolStripProgressBar1
     //
     this.toolStripProgressBar1.Name = "toolStripProgressBar1";
     this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 16);
     //
     // buttonOK
     //
     this.buttonOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.buttonOK.Location = new System.Drawing.Point(227, 502);
     this.buttonOK.Name = "buttonOK";
     this.buttonOK.Size = new System.Drawing.Size(75, 23);
     this.buttonOK.TabIndex = 4;
     this.buttonOK.Text = "OK";
     this.buttonOK.UseVisualStyleBackColor = true;
     //
     // buttonCancel
     //
     this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.buttonCancel.Location = new System.Drawing.Point(308, 502);
     this.buttonCancel.Name = "buttonCancel";
     this.buttonCancel.Size = new System.Drawing.Size(75, 23);
     this.buttonCancel.TabIndex = 5;
     this.buttonCancel.Text = "Cancel";
     this.buttonCancel.UseVisualStyleBackColor = true;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(305, 9);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(74, 13);
     this.label2.TabIndex = 6;
     this.label2.Text = "Elapsed Time:";
     //
     // tabPage1
     //
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(603, 433);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "tabPage1";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // tabPage2
     //
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size = new System.Drawing.Size(603, 433);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "tabPage2";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // tabPage3
     //
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name = "tabPage3";
     this.tabPage3.Size = new System.Drawing.Size(603, 433);
     this.tabPage3.TabIndex = 0;
     this.tabPage3.Text = "log";
     this.tabPage3.Visible = false;
     //
     // tabPage4
     //
     this.tabPage4.Location = new System.Drawing.Point(4, 22);
     this.tabPage4.Name = "tabPage4";
     this.tabPage4.Size = new System.Drawing.Size(603, 433);
     this.tabPage4.TabIndex = 0;
     this.tabPage4.Text = "log";
     this.tabPage4.Visible = false;
     //
     // tabPage5
     //
     this.tabPage5.Location = new System.Drawing.Point(4, 22);
     this.tabPage5.Name = "tabPage5";
     this.tabPage5.Size = new System.Drawing.Size(603, 433);
     this.tabPage5.TabIndex = 0;
     this.tabPage5.Text = "log";
     this.tabPage5.Visible = false;
     //
     // tabPage6
     //
     this.tabPage6.Location = new System.Drawing.Point(4, 22);
     this.tabPage6.Name = "tabPage6";
     this.tabPage6.Size = new System.Drawing.Size(603, 433);
     this.tabPage6.TabIndex = 0;
     this.tabPage6.Text = "log";
     this.tabPage6.Visible = false;
     //
     // tabPage7
     //
     this.tabPage7.Location = new System.Drawing.Point(4, 22);
     this.tabPage7.Name = "tabPage7";
     this.tabPage7.Size = new System.Drawing.Size(603, 433);
     this.tabPage7.TabIndex = 0;
     this.tabPage7.Text = "log";
     this.tabPage7.Visible = false;
     //
     // tabPage8
     //
     this.tabPage8.Location = new System.Drawing.Point(4, 22);
     this.tabPage8.Name = "tabPage8";
     this.tabPage8.Size = new System.Drawing.Size(603, 433);
     this.tabPage8.TabIndex = 0;
     this.tabPage8.Text = "log";
     this.tabPage8.Visible = false;
     //
     // tabPage9
     //
     this.tabPage9.Location = new System.Drawing.Point(4, 22);
     this.tabPage9.Name = "tabPage9";
     this.tabPage9.Size = new System.Drawing.Size(603, 433);
     this.tabPage9.TabIndex = 0;
     this.tabPage9.Text = "log";
     this.tabPage9.Visible = false;
     //
     // tabPage10
     //
     this.tabPage10.Location = new System.Drawing.Point(4, 22);
     this.tabPage10.Name = "tabPage10";
     this.tabPage10.Size = new System.Drawing.Size(603, 433);
     this.tabPage10.TabIndex = 0;
     this.tabPage10.Text = "log";
     this.tabPage10.Visible = false;
     //
     // tabPage11
     //
     this.tabPage11.Location = new System.Drawing.Point(4, 22);
     this.tabPage11.Name = "tabPage11";
     this.tabPage11.Size = new System.Drawing.Size(603, 433);
     this.tabPage11.TabIndex = 0;
     this.tabPage11.Text = "log";
     this.tabPage11.Visible = false;
     //
     // tabPage12
     //
     this.tabPage12.Location = new System.Drawing.Point(4, 22);
     this.tabPage12.Name = "tabPage12";
     this.tabPage12.Size = new System.Drawing.Size(603, 433);
     this.tabPage12.TabIndex = 0;
     this.tabPage12.Text = "log";
     this.tabPage12.Visible = false;
     //
     // logTextBox1
     //
     this.logTextBox1.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.logTextBox1.Location = new System.Drawing.Point(12, 38);
     this.logTextBox1.Multiline = true;
     this.logTextBox1.Name = "logTextBox1";
     this.logTextBox1.Size = new System.Drawing.Size(611, 458);
     this.logTextBox1.TabIndex = 9;
     //
     // elapsedTimeLabel1
     //
     this.elapsedTimeLabel1.AutoSize = true;
     this.elapsedTimeLabel1.Location = new System.Drawing.Point(403, 9);
     this.elapsedTimeLabel1.Name = "elapsedTimeLabel1";
     this.elapsedTimeLabel1.Size = new System.Drawing.Size(99, 13);
     this.elapsedTimeLabel1.TabIndex = 8;
     this.elapsedTimeLabel1.Text = "elapsedTimeLabel1";
     //
     // currentSimulationLabel1
     //
     this.currentSimulationLabel1.AutoSize = true;
     this.currentSimulationLabel1.Location = new System.Drawing.Point(123, 9);
     this.currentSimulationLabel1.Name = "currentSimulationLabel1";
     this.currentSimulationLabel1.Size = new System.Drawing.Size(120, 13);
     this.currentSimulationLabel1.TabIndex = 1;
     this.currentSimulationLabel1.Text = "currentSimulationLabel1";
     //
     // RunDialog
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(635, 300);
     this.Controls.Add(this.logTextBox1);
     this.Controls.Add(this.elapsedTimeLabel1);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.buttonCancel);
     this.Controls.Add(this.buttonOK);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.currentSimulationLabel1);
     this.Controls.Add(this.label1);
     this.Name = "RunDialog";
     this.Text = "j349 Subreach Simulations";
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary>
        ///
        /// </summary>
        /// <param name="pic"></param>
        /// <param name="XpatM"></param>
        /// <param name="YpatN"></param>
        /// <param name="psay"></param>
        /// <param name="isColored"></param>

        public ImageOPER(UnsafeBitmap pic, int XpatM, int YpatN, double psay, bool?isColored, System.Windows.Forms.ToolStripStatusLabel statusLabel, System.Windows.Forms.ToolStripProgressBar progressBar, System.Windows.Forms.StatusStrip strip)
        {
            this.statusLabel  = statusLabel;
            this.progressBar  = progressBar;
            this.strip        = strip;
            progressBar.Value = 0;
            //DrawingThread = new Thread(new ParameterizedThreadStart(doDrawing));
            link = new Bar_Sta("Initializing", 0);
            //DrawingThread.Start(link);
            doDrawing(link);
            source = pic;
            source.LockBitmap();
            if (isColored == null)
            {
                PixelData data;
                Random    ra = new Random();
                data = source.GetPixel(ra.Next(source.Width), ra.Next(source.Height));
                if (data.red == data.green && data.red == data.blue)
                {
                    imageType = GRAY;
                }
                else
                {
                    imageType = COLORED;
                }
            }
            else if (isColored.Value)
            {
                imageType = COLORED;
            }
            else
            {
                imageType = GRAY;
            }
            M         = XpatM; N = YpatN;
            this.psay = psay;
            ////////////
            W    = new double[M][][][];
            card = new double[M][];
            for (int i = 0; i < M; i++)
            {
                W[i]    = new double[N][][];
                card[i] = new double[N];
                for (int j = 0; j < N; j++)
                {
                    W[i][j] = new double[source.Width][];
                    for (int x = 0; x < source.Width; x++)
                    {
                        W[i][j][x] = new double[source.Height];
                    }
                }
            }
            ////////////
            link.status = "Filling Qx and Qy"; link.val = 3;
            //DrawingThread = new Thread(new ParameterizedThreadStart(doDrawing));
            //DrawingThread.Start(link);
            doDrawing(link);
            fillQ();
            link.status = "Filling W [i,j,x,y] "; link.val = 7;
            //DrawingThread = new Thread(new ParameterizedThreadStart(doDrawing));
            //DrawingThread.Start(link);
            doDrawing(link);
            fillW();
            if (imageType == GRAY)
            {
                imageType = GRAY;
                //////
                link.status = "Moving to E space"; link.val = 12;
                doDrawing(link);
                //////
                transformTo_Espace();
                //////
                link.status = "Calculating the MEANS"; link.val = 8;
                doDrawing(link);
                //////
                calculate_Means();
                //////
                link.status = "Calculating the VARIANCES"; link.val = 13;
                doDrawing(link);
                //////
                calculate_Variances();
                //////
                link.status = "Calculating the LAMBDAs and TAWs"; link.val = 17;
                doDrawing(link);
                //////
                calculate_Lambdas_Taws();
                //////
                link.status = "Computing the Enhanced Image"; link.val = 10;
                doDrawing(link);
                //////
            }
            else
            {
                imageType   = COLORED;
                link.status = "Moving to E space"; link.val = 12;
                doDrawing(link);
                transformTo_E_Colored_Space();
                link.status = "Calculating the MEANS"; link.val = 8;
                doDrawing(link);
                calculate_Colored_Means();
                link.status = "Calculating the VARIANCES"; link.val = 13;
                doDrawing(link);
                calculate_Colored_Variances();
                link.status = "Calculating the LAMBDAs and TAWs"; link.val = 17;
                doDrawing(link);
                calculate_Lambdas_Taws();
                link.status = "Computing the Enhanced Image"; link.val = 10;
                doDrawing(link);

/*                UnsafeBitmap temp;
 *              temp = new UnsafeBitmap(source.Width, source.Height);
 *              temp.LockBitmap();
 *              transformTo_EspaceR();
 *              calculate_Means();
 *              calculate_Variances();
 *              calculate_Lambdas_Taws();
 *              temp = getEnhancedColoredImageR(temp,0);
 *              ////
 *              transformTo_EspaceG();
 *              calculate_Means();
 *              calculate_Variances();
 *              calculate_Lambdas_Taws();
 *              temp = getEnhancedColoredImageR(temp, 1);
 *              ////
 *              transformTo_EspaceB();
 *              calculate_Means();
 *              calculate_Variances();
 *              calculate_Lambdas_Taws();
 *              temp = getEnhancedColoredImageR(temp, 2);*/
            }
        }
Пример #18
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.statusStrip1          = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel4 = new System.Windows.Forms.ToolStripStatusLabel();
     this.richTextBox1          = new System.Windows.Forms.RichTextBox();
     this.monthCalendar1        = new System.Windows.Forms.MonthCalendar();
     this.monthCalendar2        = new System.Windows.Forms.MonthCalendar();
     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.openFileDialog1       = new System.Windows.Forms.OpenFileDialog();
     this.timer1                = new System.Windows.Forms.Timer(this.components);
     this.label3                = new System.Windows.Forms.Label();
     this.label4                = new System.Windows.Forms.Label();
     this.dateTimePicker1       = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker2       = new System.Windows.Forms.DateTimePicker();
     this.listView1             = new System.Windows.Forms.ListView();
     this.button5               = new System.Windows.Forms.Button();
     this.button6               = new System.Windows.Forms.Button();
     this.checkBox1             = new System.Windows.Forms.CheckBox();
     this.panel1                = new System.Windows.Forms.Panel();
     this.panel2                = new System.Windows.Forms.Panel();
     this.panel3                = new System.Windows.Forms.Panel();
     this.label2                = new System.Windows.Forms.Label();
     this.label1                = new System.Windows.Forms.Label();
     this.button7               = new System.Windows.Forms.Button();
     this.backgroundWorker1     = new System.ComponentModel.BackgroundWorker();
     this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
     this.statusStrip1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripStatusLabel1,
         this.toolStripStatusLabel3,
         this.toolStripStatusLabel4,
         this.toolStripProgressBar1
     });
     this.statusStrip1.Location = new System.Drawing.Point(0, 532);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Size     = new System.Drawing.Size(724, 22);
     this.statusStrip1.TabIndex = 0;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(85, 17);
     this.toolStripStatusLabel1.Text = "..........................";
     //
     // toolStripStatusLabel3
     //
     this.toolStripStatusLabel3.Name = "toolStripStatusLabel3";
     this.toolStripStatusLabel3.Size = new System.Drawing.Size(118, 17);
     this.toolStripStatusLabel3.Text = "toolStripStatusLabel3";
     //
     // toolStripStatusLabel4
     //
     this.toolStripStatusLabel4.IsLink      = true;
     this.toolStripStatusLabel4.Name        = "toolStripStatusLabel4";
     this.toolStripStatusLabel4.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.toolStripStatusLabel4.Size        = new System.Drawing.Size(74, 17);
     this.toolStripStatusLabel4.Text        = "www.ema.ru";
     this.toolStripStatusLabel4.TextAlign   = System.Drawing.ContentAlignment.MiddleRight;
     //
     // richTextBox1
     //
     this.richTextBox1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.richTextBox1.Location = new System.Drawing.Point(0, 366);
     this.richTextBox1.Name     = "richTextBox1";
     this.richTextBox1.Size     = new System.Drawing.Size(724, 166);
     this.richTextBox1.TabIndex = 2;
     this.richTextBox1.Text     = "";
     //
     // monthCalendar1
     //
     this.monthCalendar1.Location          = new System.Drawing.Point(50, 4);
     this.monthCalendar1.MaxSelectionCount = 1;
     this.monthCalendar1.MinDate           = new System.DateTime(2010, 1, 1, 0, 0, 0, 0);
     this.monthCalendar1.Name      = "monthCalendar1";
     this.monthCalendar1.TabIndex  = 3;
     this.monthCalendar1.TodayDate = new System.DateTime(2016, 5, 6, 0, 0, 0, 0);
     //
     // monthCalendar2
     //
     this.monthCalendar2.Location          = new System.Drawing.Point(353, 4);
     this.monthCalendar2.MaxSelectionCount = 1;
     this.monthCalendar2.MinDate           = new System.DateTime(2000, 1, 1, 0, 0, 0, 0);
     this.monthCalendar2.Name     = "monthCalendar2";
     this.monthCalendar2.TabIndex = 4;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(3, 12);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(37, 23);
     this.button1.TabIndex = 7;
     this.button1.Text     = "+";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.Button1Click);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(2, 189);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(40, 23);
     this.button2.TabIndex = 10;
     this.button2.Text     = "Start";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.Button2Click);
     //
     // button3
     //
     this.button3.Enabled  = false;
     this.button3.Location = new System.Drawing.Point(2, 234);
     this.button3.Name     = "button3";
     this.button3.Size     = new System.Drawing.Size(40, 23);
     this.button3.TabIndex = 11;
     this.button3.Text     = "Stop";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.Button3Click);
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(2, 273);
     this.button4.Name     = "button4";
     this.button4.Size     = new System.Drawing.Size(40, 23);
     this.button4.TabIndex = 12;
     this.button4.Text     = "Clear";
     this.button4.UseVisualStyleBackColor = true;
     this.button4.Click += new System.EventHandler(this.Button4Click);
     //
     // openFileDialog1
     //
     this.openFileDialog1.FileName    = "openFileDialog1";
     this.openFileDialog1.Multiselect = true;
     //
     // timer1
     //
     this.timer1.Enabled = true;
     this.timer1.Tick   += new System.EventHandler(this.Timer1Tick);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(3, 4);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(35, 23);
     this.label3.TabIndex = 13;
     this.label3.Text     = "From:";
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(311, 6);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(21, 23);
     this.label4.TabIndex  = 14;
     this.label4.Text      = "To";
     this.label4.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.Checked    = false;
     this.dateTimePicker1.Format     = System.Windows.Forms.DateTimePickerFormat.Time;
     this.dateTimePicker1.Location   = new System.Drawing.Point(92, 178);
     this.dateTimePicker1.Name       = "dateTimePicker1";
     this.dateTimePicker1.ShowUpDown = true;
     this.dateTimePicker1.Size       = new System.Drawing.Size(72, 20);
     this.dateTimePicker1.TabIndex   = 15;
     //
     // dateTimePicker2
     //
     this.dateTimePicker2.Format     = System.Windows.Forms.DateTimePickerFormat.Time;
     this.dateTimePicker2.Location   = new System.Drawing.Point(397, 178);
     this.dateTimePicker2.Name       = "dateTimePicker2";
     this.dateTimePicker2.ShowUpDown = true;
     this.dateTimePicker2.Size       = new System.Drawing.Size(77, 20);
     this.dateTimePicker2.TabIndex   = 16;
     //
     // listView1
     //
     this.listView1.CheckBoxes = true;
     this.listView1.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.listView1.GridLines  = true;
     this.listView1.Location   = new System.Drawing.Point(0, 0);
     this.listView1.Name       = "listView1";
     this.listView1.Size       = new System.Drawing.Size(724, 366);
     this.listView1.TabIndex   = 17;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View       = System.Windows.Forms.View.Details;
     this.listView1.DragDrop  += new System.Windows.Forms.DragEventHandler(this.ListView1DragDrop);
     this.listView1.DragEnter += new System.Windows.Forms.DragEventHandler(this.ListView1DragEnter);
     //
     // button5
     //
     this.button5.Location = new System.Drawing.Point(560, 6);
     this.button5.Name     = "button5";
     this.button5.Size     = new System.Drawing.Size(85, 23);
     this.button5.TabIndex = 18;
     this.button5.Text     = "Find";
     this.button5.UseVisualStyleBackColor = true;
     this.button5.Click += new System.EventHandler(this.Button5Click);
     //
     // button6
     //
     this.button6.Location = new System.Drawing.Point(3, 41);
     this.button6.Name     = "button6";
     this.button6.Size     = new System.Drawing.Size(37, 23);
     this.button6.TabIndex = 19;
     this.button6.Text     = "-";
     this.button6.UseVisualStyleBackColor = true;
     this.button6.Click += new System.EventHandler(this.Button6Click);
     //
     // checkBox1
     //
     this.checkBox1.Location = new System.Drawing.Point(560, 109);
     this.checkBox1.Name     = "checkBox1";
     this.checkBox1.Size     = new System.Drawing.Size(86, 24);
     this.checkBox1.TabIndex = 20;
     this.checkBox1.Text     = "Output file";
     this.checkBox1.UseVisualStyleBackColor = true;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.listView1);
     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(724, 366);
     this.panel1.TabIndex = 21;
     //
     // panel2
     //
     this.panel2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.panel2.BorderStyle           = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.button1);
     this.panel2.Controls.Add(this.button6);
     this.panel2.Controls.Add(this.button2);
     this.panel2.Controls.Add(this.button3);
     this.panel2.Controls.Add(this.button4);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Right;
     this.panel2.Location = new System.Drawing.Point(677, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(47, 366);
     this.panel2.TabIndex = 22;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.label2);
     this.panel3.Controls.Add(this.label1);
     this.panel3.Controls.Add(this.button7);
     this.panel3.Controls.Add(this.label3);
     this.panel3.Controls.Add(this.monthCalendar1);
     this.panel3.Controls.Add(this.checkBox1);
     this.panel3.Controls.Add(this.dateTimePicker1);
     this.panel3.Controls.Add(this.button5);
     this.panel3.Controls.Add(this.dateTimePicker2);
     this.panel3.Controls.Add(this.label4);
     this.panel3.Controls.Add(this.monthCalendar2);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel3.Location = new System.Drawing.Point(0, 155);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(677, 211);
     this.panel3.TabIndex = 23;
     //
     // label2
     //
     this.label2.ForeColor = System.Drawing.SystemColors.Highlight;
     this.label2.Location  = new System.Drawing.Point(538, 181);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(122, 17);
     this.label2.TabIndex  = 23;
     this.label2.Text      = "mailto:[email protected]";
     //
     // label1
     //
     this.label1.ForeColor = System.Drawing.SystemColors.Highlight;
     this.label1.Location  = new System.Drawing.Point(538, 166);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(100, 15);
     this.label1.TabIndex  = 22;
     this.label1.Text      = "http://www.ema.ru";
     //
     // button7
     //
     this.button7.Location = new System.Drawing.Point(560, 44);
     this.button7.Name     = "button7";
     this.button7.Size     = new System.Drawing.Size(85, 23);
     this.button7.TabIndex = 21;
     this.button7.Text     = "set [start;end]";
     this.button7.UseVisualStyleBackColor = true;
     this.button7.Click += new System.EventHandler(this.Button7Click);
     //
     // backgroundWorker1
     //
     this.backgroundWorker1.WorkerReportsProgress      = true;
     this.backgroundWorker1.WorkerSupportsCancellation = true;
     this.backgroundWorker1.DoWork             += new System.ComponentModel.DoWorkEventHandler(this.BackgroundWorker1DoWork);
     this.backgroundWorker1.ProgressChanged    += new System.ComponentModel.ProgressChangedEventHandler(this.BackgroundWorker1ProgressChanged);
     this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.BackgroundWorker1RunWorkerCompleted);
     //
     // toolStripProgressBar1
     //
     this.toolStripProgressBar1.Name = "toolStripProgressBar1";
     this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 16);
     //
     // MainForm
     //
     this.AllowDrop           = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(724, 554);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.richTextBox1);
     this.Controls.Add(this.statusStrip1);
     this.Name  = "MainForm";
     this.Text  = "ArcWrite";
     this.Load += new System.EventHandler(this.MainFormLoad);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #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.menuStrip1                         = new System.Windows.Forms.MenuStrip();
     this.animeToolStripMenuItem             = new System.Windows.Forms.ToolStripMenuItem();
     this.downloadAnimeInfoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.otakustreamToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.abortToolStripMenuItem             = new System.Windows.Forms.ToolStripMenuItem();
     this.statusStrip1                       = new System.Windows.Forms.StatusStrip();
     this.toolStripProgressBar1              = new System.Windows.Forms.ToolStripProgressBar();
     this.toolStripStatusLabel1              = new System.Windows.Forms.ToolStripStatusLabel();
     this.webBrowser1                        = new System.Windows.Forms.WebBrowser();
     this.menuStrip1.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.animeToolStripMenuItem
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Size     = new System.Drawing.Size(743, 24);
     this.menuStrip1.TabIndex = 1;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // animeToolStripMenuItem
     //
     this.animeToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.downloadAnimeInfoToolStripMenuItem,
         this.abortToolStripMenuItem
     });
     this.animeToolStripMenuItem.Name = "animeToolStripMenuItem";
     this.animeToolStripMenuItem.Size = new System.Drawing.Size(54, 20);
     this.animeToolStripMenuItem.Text = "Anime";
     //
     // downloadAnimeInfoToolStripMenuItem
     //
     this.downloadAnimeInfoToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.otakustreamToolStripMenuItem
     });
     this.downloadAnimeInfoToolStripMenuItem.Name = "downloadAnimeInfoToolStripMenuItem";
     this.downloadAnimeInfoToolStripMenuItem.Size = new System.Drawing.Size(188, 22);
     this.downloadAnimeInfoToolStripMenuItem.Text = "Download anime info";
     //
     // otakustreamToolStripMenuItem
     //
     this.otakustreamToolStripMenuItem.Name   = "otakustreamToolStripMenuItem";
     this.otakustreamToolStripMenuItem.Size   = new System.Drawing.Size(153, 22);
     this.otakustreamToolStripMenuItem.Text   = "otakustream.tv";
     this.otakustreamToolStripMenuItem.Click += new System.EventHandler(this.OtakustreamToolStripMenuItemClick);
     //
     // abortToolStripMenuItem
     //
     this.abortToolStripMenuItem.Name   = "abortToolStripMenuItem";
     this.abortToolStripMenuItem.Size   = new System.Drawing.Size(188, 22);
     this.abortToolStripMenuItem.Text   = "Abort";
     this.abortToolStripMenuItem.Click += new System.EventHandler(this.AbortToolStripMenuItemClick);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripProgressBar1,
         this.toolStripStatusLabel1
     });
     this.statusStrip1.Location = new System.Drawing.Point(0, 316);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Size     = new System.Drawing.Size(743, 22);
     this.statusStrip1.TabIndex = 2;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // toolStripProgressBar1
     //
     this.toolStripProgressBar1.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.toolStripProgressBar1.Maximum   = 45;
     this.toolStripProgressBar1.Name      = "toolStripProgressBar1";
     this.toolStripProgressBar1.Size      = new System.Drawing.Size(120, 16);
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(39, 17);
     this.toolStripStatusLabel1.Text = "Ready";
     //
     // webBrowser1
     //
     this.webBrowser1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.webBrowser1.Location    = new System.Drawing.Point(0, 24);
     this.webBrowser1.MinimumSize = new System.Drawing.Size(20, 20);
     this.webBrowser1.Name        = "webBrowser1";
     this.webBrowser1.Size        = new System.Drawing.Size(743, 292);
     this.webBrowser1.TabIndex    = 3;
     this.webBrowser1.Url         = new System.Uri("", System.UriKind.Relative);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(743, 338);
     this.Controls.Add(this.webBrowser1);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.menuStrip1);
     this.KeyPreview    = true;
     this.MainMenuStrip = this.menuStrip1;
     this.Name          = "MainForm";
     this.Text          = "LoliBot";
     this.WindowState   = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.MainFormFormClosing);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #20
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.tsmiFile = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiOpenTop = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiSaveAs = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiPageProperty = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.tsmiPageSetup = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiPrint = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiPrintPreview = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.tsmiClose = new System.Windows.Forms.ToolStripMenuItem();
     this.tsgmiGenreTop = new Yusen.GExplorer.UserInterfaces.ToolStripGenreMenuItem();
     this.tsmiTools = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiExportContentListToCrawlResultView = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiExtractImages = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
     this.tsmiOptions = new System.Windows.Forms.ToolStripMenuItem();
     this.tshmiHelp = new Yusen.GExplorer.UserInterfaces.ToolStripHelpMenuItem();
     this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.gwbMain = new Yusen.GExplorer.UserInterfaces.GWebBrowser();
     this.tsStandard = new System.Windows.Forms.ToolStrip();
     this.tsbBack = new System.Windows.Forms.ToolStripButton();
     this.tsbForward = new System.Windows.Forms.ToolStripButton();
     this.tscbAddress = new System.Windows.Forms.ToolStripComboBox();
     this.tsbGo = new System.Windows.Forms.ToolStripButton();
     this.tsbStop = new System.Windows.Forms.ToolStripButton();
     this.tstbLivedoor = new System.Windows.Forms.ToolStripTextBox();
     this.tsbLivedoor = new System.Windows.Forms.ToolStripButton();
     this.menuStrip1.SuspendLayout();
     this.toolStripContainer1.BottomToolStripPanel.SuspendLayout();
     this.toolStripContainer1.ContentPanel.SuspendLayout();
     this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
     this.toolStripContainer1.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.tsStandard.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Dock = System.Windows.Forms.DockStyle.None;
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsmiFile,
     this.tsgmiGenreTop,
     this.tsmiTools,
     this.tshmiHelp});
     this.menuStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.Flow;
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(842, 26);
     this.menuStrip1.TabIndex = 0;
     this.menuStrip1.Text = "menuStrip1";
     //
     // tsmiFile
     //
     this.tsmiFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsmiOpenTop,
     this.tsmiSaveAs,
     this.tsmiPageProperty,
     this.toolStripSeparator3,
     this.tsmiPageSetup,
     this.tsmiPrint,
     this.tsmiPrintPreview,
     this.toolStripSeparator4,
     this.tsmiClose});
     this.tsmiFile.Name = "tsmiFile";
     this.tsmiFile.Size = new System.Drawing.Size(85, 22);
     this.tsmiFile.Text = "ファイル(&F)";
     //
     // tsmiOpenTop
     //
     this.tsmiOpenTop.Image = global::Yusen.GExplorer.Properties.Resources.home;
     this.tsmiOpenTop.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsmiOpenTop.Name = "tsmiOpenTop";
     this.tsmiOpenTop.Size = new System.Drawing.Size(286, 22);
     this.tsmiOpenTop.Text = "トップページを開く(T)";
     this.tsmiOpenTop.Click += new System.EventHandler(this.tsmiOpenTop_Click);
     //
     // tsmiSaveAs
     //
     this.tsmiSaveAs.Image = global::Yusen.GExplorer.Properties.Resources.Save;
     this.tsmiSaveAs.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsmiSaveAs.Name = "tsmiSaveAs";
     this.tsmiSaveAs.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
                 | System.Windows.Forms.Keys.S)));
     this.tsmiSaveAs.Size = new System.Drawing.Size(286, 22);
     this.tsmiSaveAs.Text = "名前をつけて保存(&A)...";
     this.tsmiSaveAs.Click += new System.EventHandler(this.tsmiSaveAs_Click);
     //
     // tsmiPageProperty
     //
     this.tsmiPageProperty.Image = global::Yusen.GExplorer.Properties.Resources.Properties;
     this.tsmiPageProperty.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsmiPageProperty.Name = "tsmiPageProperty";
     this.tsmiPageProperty.Size = new System.Drawing.Size(286, 22);
     this.tsmiPageProperty.Text = "ページのプロパティ(&R)...";
     this.tsmiPageProperty.Click += new System.EventHandler(this.tsmiPageProperty_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(283, 6);
     //
     // tsmiPageSetup
     //
     this.tsmiPageSetup.Image = global::Yusen.GExplorer.Properties.Resources.PrintSetup;
     this.tsmiPageSetup.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsmiPageSetup.Name = "tsmiPageSetup";
     this.tsmiPageSetup.Size = new System.Drawing.Size(286, 22);
     this.tsmiPageSetup.Text = "ページ設定(&U)...";
     this.tsmiPageSetup.Click += new System.EventHandler(this.tsmiPageSetup_Click);
     //
     // tsmiPrint
     //
     this.tsmiPrint.Image = global::Yusen.GExplorer.Properties.Resources.Print;
     this.tsmiPrint.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsmiPrint.Name = "tsmiPrint";
     this.tsmiPrint.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.P)));
     this.tsmiPrint.Size = new System.Drawing.Size(286, 22);
     this.tsmiPrint.Text = "印刷(&P)...";
     this.tsmiPrint.Click += new System.EventHandler(this.tsmiPrint_Click);
     //
     // tsmiPrintPreview
     //
     this.tsmiPrintPreview.Image = global::Yusen.GExplorer.Properties.Resources.PrintPreview;
     this.tsmiPrintPreview.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsmiPrintPreview.Name = "tsmiPrintPreview";
     this.tsmiPrintPreview.Size = new System.Drawing.Size(286, 22);
     this.tsmiPrintPreview.Text = "印刷プレビュー(&V)...";
     this.tsmiPrintPreview.Click += new System.EventHandler(this.tsmiPrintPreview_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(283, 6);
     //
     // tsmiClose
     //
     this.tsmiClose.Name = "tsmiClose";
     this.tsmiClose.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.W)));
     this.tsmiClose.Size = new System.Drawing.Size(286, 22);
     this.tsmiClose.Text = "閉じる(&W)";
     this.tsmiClose.Click += new System.EventHandler(this.tsmiClose_Click);
     //
     // tsgmiGenreTop
     //
     this.tsgmiGenreTop.Name = "tsgmiGenreTop";
     this.tsgmiGenreTop.Size = new System.Drawing.Size(122, 22);
     this.tsgmiGenreTop.Text = "ジャンルトップ(&T)";
     this.tsgmiGenreTop.GenreSelected += new System.EventHandler(this.tsgmiGenreTop_GenreSelected);
     //
     // tsmiTools
     //
     this.tsmiTools.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsmiExportContentListToCrawlResultView,
     this.tsmiExtractImages,
     this.toolStripMenuItem1,
     this.tsmiOptions});
     this.tsmiTools.Name = "tsmiTools";
     this.tsmiTools.Size = new System.Drawing.Size(74, 22);
     this.tsmiTools.Text = "ツール(&T)";
     //
     // tsmiExportContentListToCrawlResultView
     //
     this.tsmiExportContentListToCrawlResultView.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsmiExportContentListToCrawlResultView.Name = "tsmiExportContentListToCrawlResultView";
     this.tsmiExportContentListToCrawlResultView.Size = new System.Drawing.Size(394, 22);
     this.tsmiExportContentListToCrawlResultView.Text = "ページ内のコンテンツをクロール結果ビューに書き出す(&R)";
     this.tsmiExportContentListToCrawlResultView.Click += new System.EventHandler(this.tsmiExportContentListToCrawlResultView_Click);
     //
     // tsmiExtractImages
     //
     this.tsmiExtractImages.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsmiExtractImages.Name = "tsmiExtractImages";
     this.tsmiExtractImages.Size = new System.Drawing.Size(394, 22);
     this.tsmiExtractImages.Text = "ページ内の画像を抽出する(&I)";
     this.tsmiExtractImages.Click += new System.EventHandler(this.tsmiExtractImages_Click);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(391, 6);
     //
     // tsmiOptions
     //
     this.tsmiOptions.Name = "tsmiOptions";
     this.tsmiOptions.Size = new System.Drawing.Size(394, 22);
     this.tsmiOptions.Text = "オプション(&O)";
     this.tsmiOptions.Click += new System.EventHandler(this.tsmiOptions_Click);
     //
     // tshmiHelp
     //
     this.tshmiHelp.Name = "tshmiHelp";
     this.tshmiHelp.Size = new System.Drawing.Size(75, 22);
     this.tshmiHelp.Text = "ヘルプ(&H)";
     //
     // toolStripContainer1
     //
     //
     // toolStripContainer1.BottomToolStripPanel
     //
     this.toolStripContainer1.BottomToolStripPanel.Controls.Add(this.statusStrip1);
     //
     // toolStripContainer1.ContentPanel
     //
     this.toolStripContainer1.ContentPanel.AutoScroll = true;
     this.toolStripContainer1.ContentPanel.Controls.Add(this.gwbMain);
     this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(842, 521);
     this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
     this.toolStripContainer1.Name = "toolStripContainer1";
     this.toolStripContainer1.Size = new System.Drawing.Size(842, 596);
     this.toolStripContainer1.TabIndex = 0;
     this.toolStripContainer1.Text = "toolStripContainer1";
     //
     // toolStripContainer1.TopToolStripPanel
     //
     this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.menuStrip1);
     this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.tsStandard);
     //
     // statusStrip1
     //
     this.statusStrip1.Dock = System.Windows.Forms.DockStyle.None;
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripProgressBar1,
     this.toolStripStatusLabel1});
     this.statusStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.Flow;
     this.statusStrip1.Location = new System.Drawing.Point(0, 0);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode;
     this.statusStrip1.Size = new System.Drawing.Size(842, 23);
     this.statusStrip1.TabIndex = 1;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripProgressBar1
     //
     this.toolStripProgressBar1.Name = "toolStripProgressBar1";
     this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 16);
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(134, 18);
     this.toolStripStatusLabel1.Text = "toolStripStatusLabel1";
     //
     // gwbMain
     //
     this.gwbMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gwbMain.Location = new System.Drawing.Point(0, 0);
     this.gwbMain.MinimumSize = new System.Drawing.Size(20, 20);
     this.gwbMain.Name = "gwbMain";
     this.gwbMain.Size = new System.Drawing.Size(842, 521);
     this.gwbMain.TabIndex = 0;
     this.gwbMain.Navigated += new System.Windows.Forms.WebBrowserNavigatedEventHandler(this.gwbMain_Navigated);
     this.gwbMain.ProgressChanged += new System.Windows.Forms.WebBrowserProgressChangedEventHandler(this.gwbMain_ProgressChanged);
     this.gwbMain.Navigating += new System.Windows.Forms.WebBrowserNavigatingEventHandler(this.gwbMain_Navigating);
     this.gwbMain.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.gwbMain_DocumentCompleted);
     //
     // tsStandard
     //
     this.tsStandard.Dock = System.Windows.Forms.DockStyle.None;
     this.tsStandard.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.tsStandard.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsbBack,
     this.tsbForward,
     this.tscbAddress,
     this.tsbGo,
     this.tsbStop,
     this.tstbLivedoor,
     this.tsbLivedoor});
     this.tsStandard.Location = new System.Drawing.Point(3, 26);
     this.tsStandard.Name = "tsStandard";
     this.tsStandard.Size = new System.Drawing.Size(772, 26);
     this.tsStandard.TabIndex = 3;
     this.tsStandard.Text = "標準バー";
     //
     // tsbBack
     //
     this.tsbBack.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.tsbBack.Enabled = false;
     this.tsbBack.Image = global::Yusen.GExplorer.Properties.Resources.NavBack;
     this.tsbBack.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbBack.Name = "tsbBack";
     this.tsbBack.Size = new System.Drawing.Size(23, 23);
     this.tsbBack.Text = "戻る";
     this.tsbBack.Click += new System.EventHandler(this.tsbBack_Click);
     //
     // tsbForward
     //
     this.tsbForward.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.tsbForward.Enabled = false;
     this.tsbForward.Image = global::Yusen.GExplorer.Properties.Resources.NavForward;
     this.tsbForward.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbForward.Name = "tsbForward";
     this.tsbForward.Size = new System.Drawing.Size(23, 23);
     this.tsbForward.Text = "進む";
     this.tsbForward.Click += new System.EventHandler(this.tsbForward_Click);
     //
     // tscbAddress
     //
     this.tscbAddress.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.tscbAddress.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.AllUrl;
     this.tscbAddress.Name = "tscbAddress";
     this.tscbAddress.Size = new System.Drawing.Size(500, 26);
     this.tscbAddress.Text = "tscbAddress";
     this.tscbAddress.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tscbAddress_KeyDown);
     this.tscbAddress.SelectedIndexChanged += new System.EventHandler(this.GoToAddressBarUri);
     //
     // tsbGo
     //
     this.tsbGo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.tsbGo.Image = global::Yusen.GExplorer.Properties.Resources.RefreshDocView;
     this.tsbGo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbGo.Name = "tsbGo";
     this.tsbGo.Size = new System.Drawing.Size(23, 23);
     this.tsbGo.Text = "移動";
     this.tsbGo.Click += new System.EventHandler(this.GoToAddressBarUri);
     //
     // tsbStop
     //
     this.tsbStop.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.tsbStop.Enabled = false;
     this.tsbStop.Image = global::Yusen.GExplorer.Properties.Resources.Refresh_Cancel;
     this.tsbStop.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbStop.Name = "tsbStop";
     this.tsbStop.Size = new System.Drawing.Size(23, 23);
     this.tsbStop.Text = "中止";
     this.tsbStop.Click += new System.EventHandler(this.tsbStop_Click);
     //
     // tstbLivedoor
     //
     this.tstbLivedoor.ForeColor = System.Drawing.SystemColors.GrayText;
     this.tstbLivedoor.Name = "tstbLivedoor";
     this.tstbLivedoor.Size = new System.Drawing.Size(150, 26);
     this.tstbLivedoor.Text = "livedoor動画でGyaO検索";
     this.tstbLivedoor.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tstbLivedoor_KeyDown);
     this.tstbLivedoor.Enter += new System.EventHandler(this.tstbLivedoor_Enter);
     this.tstbLivedoor.Leave += new System.EventHandler(this.tstbLivedoor_Leave);
     //
     // tsbLivedoor
     //
     this.tsbLivedoor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.tsbLivedoor.Image = global::Yusen.GExplorer.Properties.Resources.searchWeb;
     this.tsbLivedoor.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbLivedoor.Name = "tsbLivedoor";
     this.tsbLivedoor.Size = new System.Drawing.Size(23, 23);
     this.tsbLivedoor.Text = "livedoor動画でGyaO検索";
     this.tsbLivedoor.Click += new System.EventHandler(this.tsbLivedoor_Click);
     //
     // BrowserForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(842, 596);
     this.Controls.Add(this.toolStripContainer1);
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "BrowserForm";
     this.Text = "BrowserForm";
     this.Load += new System.EventHandler(this.BrowserForm_Load);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.toolStripContainer1.BottomToolStripPanel.ResumeLayout(false);
     this.toolStripContainer1.BottomToolStripPanel.PerformLayout();
     this.toolStripContainer1.ContentPanel.ResumeLayout(false);
     this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
     this.toolStripContainer1.TopToolStripPanel.PerformLayout();
     this.toolStripContainer1.ResumeLayout(false);
     this.toolStripContainer1.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.tsStandard.ResumeLayout(false);
     this.tsStandard.PerformLayout();
     this.ResumeLayout(false);
 }
Пример #21
0
        public Surface(int w, int h, string pathToFile, System.Windows.Forms.ToolStripProgressBar bar = null, System.Windows.Forms.ToolStripLabel label = null, Form1 form = null, bool shaderOption = false)
        {
            this.shaderOption = shaderOption;
            this.form = form;
            toolStripBar = bar;
            toolStripLabel = label;
            WhatToDraw = 1;
            Status = colrscl = rotate = false;
            minX = minY = min = float.MaxValue;
            maxX = maxY = max = float.MinValue;
            scale = 1.0f;
            angleX = angleY = 0.0f;
            width = w; height = h;
            NumOfIndexes = NumOfVertices = Xwidth = Ywidth = 0;
            //svetlo - smer,ambient,specular,diffuse
            light = new DirectionalLight(new Vector3(0.0f, 0.0f, -1.0f), new Vector3(1.0f, 1.0f, 1.0f), new Vector3(1.0f, 1.0f, 1.0f), new Vector3(1.0f, 1.0f, 1.0f));
            //material - ambient,specular,diffuse,koeficienty - ambient, specular, diffuse, shininess
            material = new Material(0.29f, 0.86f, 0.57f, 128);
            //BigBrother = new Kamera(new Vector3(0.0f, 0.0f, 3.5f), new Vector3(0.0f, 0.0f, 0.0f), new Vector3(0.0f, 1.0f, 0.0f));

            coords = new List<Vector3>();
            VBO = new int[4];
            VAO = new int[1];
            VertexShader = new Shaders.Shader();
            FragmentShader = new Shaders.Shader();
            spMain = new Shaders.ShaderProgram();

            var bw = new System.ComponentModel.BackgroundWorker();

            bw.DoWork += (sender, args) =>
            {
                // do your lengthy stuff here -- this will happen in a separate thread
                LoadData(pathToFile);
                if (Status = SetWidth())
                {
                    vertices = new Vector3[NumOfVertices];
                    color = new Vector3[NumOfVertices];
                    normals = new Vector3[NumOfVertices];
                    Indices = new List<int>();
                    Indexes = new int[NumOfIndexes];
                    //SetIndices();
                    SetIndexes();
                    if (Ywidth > Xwidth)
                    {
                        rotate = true;
                        MatrixStore_Rotations = Matrix4.CreateFromAxisAngle(new Vector3(0.0f, 0.0f, 1.0f), -90.0f * (float)Math.PI / 180.0f);
                    }
                }
                else
                {
                    //dorobit sem este resetovanie progressBaru/labelu
                    System.Windows.Forms.MessageBox.Show("Súbor " + pathToFile + " nemá podporu!", "Vnimanie!", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Warning);
                    label lab = new label(SetToolStripLabel);
                    progres progres = new progres(SetProgressBar);
                    form.statusStrip1.Invoke(lab, "Súbor nemá podporu...");
                    form.statusStrip1.Invoke(progres, 0);
                }
            };

            bw.RunWorkerCompleted += (sender, args) =>
            {
                if (args.Error != null)  // if an exception occurred during DoWork,
                    System.Windows.Forms.MessageBox.Show(args.Error.ToString());  // do your error handling here

                if (Status)
                {
                    colorScale = new ColorScale(min, max, width, height);
                    CalculateColor();
                    ScaleHeights(10.0f);
                    CalculateNormals();
                    InitScene(false);
                    FirstDraw();
                    form.SetBoolean_surface(true);
                }
                else
                    form.SetMenuStrip_Enabled(true);
            };

            bw.RunWorkerAsync(); // starts the background worker
        }
Пример #22
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 internal void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.StatusLabel                   = new System.Windows.Forms.ToolStripStatusLabel();
     this.MainProgressBar               = new System.Windows.Forms.ToolStripProgressBar();
     this.Images                        = new System.Windows.Forms.ImageList(this.components);
     this.ToolTipManager                = new System.Windows.Forms.ToolTip(this.components);
     this.YouTubeButton                 = new System.Windows.Forms.Button();
     this.ManageDataButton              = new System.Windows.Forms.Button();
     this.StatusListBox                 = new System.Windows.Forms.ListView();
     this.ProjectLabel                  = new System.Windows.Forms.Label();
     this.CurrentProjectLabel           = new System.Windows.Forms.Label();
     this.NewProjectButton              = new System.Windows.Forms.Button();
     this.OpenProjectButton             = new System.Windows.Forms.Button();
     this.EditProjectButton             = new System.Windows.Forms.Button();
     this.CloseProjectButton            = new System.Windows.Forms.Button();
     this.BuildAllButton                = new System.Windows.Forms.Button();
     this.HiddenButton                  = new System.Windows.Forms.Button();
     this.StoredProcedureSQLButton      = new System.Windows.Forms.Label();
     this.RunSetupButton                = new System.Windows.Forms.Label();
     this.MainPanel                     = new DataTierClient.Objects.PanelExtender();
     this.RightContainer                = new DataTierClient.Objects.PanelExtender();
     this.BottomPanel                   = new DataTierClient.Objects.PanelExtender();
     this.YouTubeButtonRightMarginPanel = new DataTierClient.Objects.PanelExtender();
     this.BottomRightMarginpanel        = new DataTierClient.Objects.PanelExtender();
     this.RightPanel                    = new DataTierClient.Objects.PanelExtender();
     this.ViewPDFButton2                = new System.Windows.Forms.Button();
     this.ViewWordButton2               = new System.Windows.Forms.Button();
     this.UsersGuideLabel               = new System.Windows.Forms.Label();
     this.ViewPDFButton                 = new System.Windows.Forms.Button();
     this.ViewWordButton                = new System.Windows.Forms.Button();
     this.QuickStartLabel               = new System.Windows.Forms.Label();
     this.ClassRoomImage                = new System.Windows.Forms.PictureBox();
     this.MainStatus                    = new System.Windows.Forms.Label();
     this.StatusTimer                   = new System.Windows.Forms.Timer(this.components);
     this.MainPanel.SuspendLayout();
     this.RightContainer.SuspendLayout();
     this.BottomPanel.SuspendLayout();
     this.RightPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ClassRoomImage)).BeginInit();
     this.SuspendLayout();
     //
     // StatusLabel
     //
     this.StatusLabel.BackColor = System.Drawing.SystemColors.Control;
     this.StatusLabel.Name      = "StatusLabel";
     this.StatusLabel.Size      = new System.Drawing.Size(39, 17);
     this.StatusLabel.Text      = "Ready";
     //
     // MainProgressBar
     //
     this.MainProgressBar.Name    = "MainProgressBar";
     this.MainProgressBar.Size    = new System.Drawing.Size(100, 16);
     this.MainProgressBar.Visible = false;
     //
     // Images
     //
     this.Images.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("Images.ImageStream")));
     this.Images.TransparentColor = System.Drawing.Color.Transparent;
     this.Images.Images.SetKeyName(0, "success.ico");
     this.Images.Images.SetKeyName(1, "Failed.ico");
     //
     // YouTubeButton
     //
     this.YouTubeButton.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("YouTubeButton.BackgroundImage")));
     this.YouTubeButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.YouTubeButton.Dock      = System.Windows.Forms.DockStyle.Right;
     this.YouTubeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.YouTubeButton.Location  = new System.Drawing.Point(228, 0);
     this.YouTubeButton.Name      = "YouTubeButton";
     this.YouTubeButton.Size      = new System.Drawing.Size(128, 64);
     this.YouTubeButton.TabIndex  = 68;
     this.ToolTipManager.SetToolTip(this.YouTubeButton, "Click here to launch your browser to watch the DataTier.Net Intro Movie");
     this.YouTubeButton.UseVisualStyleBackColor = true;
     this.YouTubeButton.Click      += new System.EventHandler(this.YouTubeButton_Click);
     this.YouTubeButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.YouTubeButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // ManageDataButton
     //
     this.ManageDataButton.BackgroundImage       = global::DataTierClient.Properties.Resources.BlackButton;
     this.ManageDataButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ManageDataButton.Enabled = false;
     this.ManageDataButton.FlatAppearance.BorderSize         = 0;
     this.ManageDataButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.ManageDataButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.ManageDataButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.ManageDataButton.Font      = new System.Drawing.Font("Arial Rounded MT Bold", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ManageDataButton.ForeColor = System.Drawing.Color.LemonChiffon;
     this.ManageDataButton.Location  = new System.Drawing.Point(186, 114);
     this.ManageDataButton.Name      = "ManageDataButton";
     this.ManageDataButton.Size      = new System.Drawing.Size(150, 40);
     this.ManageDataButton.TabIndex  = 107;
     this.ManageDataButton.Text      = "Manage Data";
     this.ManageDataButton.UseVisualStyleBackColor = true;
     this.ManageDataButton.Click      += new System.EventHandler(this.ManageDataButton_Click);
     this.ManageDataButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.ManageDataButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // StatusListBox
     //
     this.StatusListBox.AutoArrange    = false;
     this.StatusListBox.Font           = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.StatusListBox.FullRowSelect  = true;
     this.StatusListBox.HideSelection  = false;
     this.StatusListBox.Location       = new System.Drawing.Point(20, 170);
     this.StatusListBox.Name           = "StatusListBox";
     this.StatusListBox.Size           = new System.Drawing.Size(482, 440);
     this.StatusListBox.SmallImageList = this.Images;
     this.StatusListBox.TabIndex       = 56;
     this.StatusListBox.UseCompatibleStateImageBehavior = false;
     this.StatusListBox.View         = System.Windows.Forms.View.List;
     this.StatusListBox.DoubleClick += new System.EventHandler(this.StatusListBox_DoubleClick);
     //
     // ProjectLabel
     //
     this.ProjectLabel.AutoSize  = true;
     this.ProjectLabel.BackColor = System.Drawing.Color.Transparent;
     this.ProjectLabel.Font      = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ProjectLabel.ForeColor = System.Drawing.Color.LemonChiffon;
     this.ProjectLabel.Location  = new System.Drawing.Point(21, 19);
     this.ProjectLabel.Name      = "ProjectLabel";
     this.ProjectLabel.Size      = new System.Drawing.Size(78, 18);
     this.ProjectLabel.TabIndex  = 70;
     this.ProjectLabel.Text      = "Project:";
     this.ProjectLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // CurrentProjectLabel
     //
     this.CurrentProjectLabel.AutoSize  = true;
     this.CurrentProjectLabel.BackColor = System.Drawing.Color.Transparent;
     this.CurrentProjectLabel.Font      = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.CurrentProjectLabel.ForeColor = System.Drawing.Color.DimGray;
     this.CurrentProjectLabel.Location  = new System.Drawing.Point(94, 20);
     this.CurrentProjectLabel.Name      = "CurrentProjectLabel";
     this.CurrentProjectLabel.Size      = new System.Drawing.Size(169, 18);
     this.CurrentProjectLabel.TabIndex  = 71;
     this.CurrentProjectLabel.Text      = "No Project Selected";
     this.CurrentProjectLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // NewProjectButton
     //
     this.NewProjectButton.BackgroundImage                   = global::DataTierClient.Properties.Resources.BlackButton;
     this.NewProjectButton.BackgroundImageLayout             = System.Windows.Forms.ImageLayout.Stretch;
     this.NewProjectButton.FlatAppearance.BorderSize         = 0;
     this.NewProjectButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.NewProjectButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.NewProjectButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.NewProjectButton.Font      = new System.Drawing.Font("Arial Rounded MT Bold", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.NewProjectButton.ForeColor = System.Drawing.Color.LemonChiffon;
     this.NewProjectButton.Location  = new System.Drawing.Point(20, 57);
     this.NewProjectButton.Name      = "NewProjectButton";
     this.NewProjectButton.Size      = new System.Drawing.Size(150, 40);
     this.NewProjectButton.TabIndex  = 87;
     this.NewProjectButton.Text      = "New Project";
     this.NewProjectButton.UseVisualStyleBackColor = true;
     this.NewProjectButton.Click      += new System.EventHandler(this.NewProjectButton_Click);
     this.NewProjectButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.NewProjectButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // OpenProjectButton
     //
     this.OpenProjectButton.BackgroundImage                   = ((System.Drawing.Image)(resources.GetObject("OpenProjectButton.BackgroundImage")));
     this.OpenProjectButton.BackgroundImageLayout             = System.Windows.Forms.ImageLayout.Stretch;
     this.OpenProjectButton.FlatAppearance.BorderSize         = 0;
     this.OpenProjectButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.OpenProjectButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.OpenProjectButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.OpenProjectButton.Font      = new System.Drawing.Font("Arial Rounded MT Bold", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.OpenProjectButton.ForeColor = System.Drawing.Color.LemonChiffon;
     this.OpenProjectButton.Location  = new System.Drawing.Point(186, 57);
     this.OpenProjectButton.Name      = "OpenProjectButton";
     this.OpenProjectButton.Size      = new System.Drawing.Size(150, 40);
     this.OpenProjectButton.TabIndex  = 88;
     this.OpenProjectButton.Text      = "Open Project";
     this.OpenProjectButton.UseVisualStyleBackColor = true;
     this.OpenProjectButton.Click      += new System.EventHandler(this.OpenProjectButton_Click);
     this.OpenProjectButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.OpenProjectButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // EditProjectButton
     //
     this.EditProjectButton.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("EditProjectButton.BackgroundImage")));
     this.EditProjectButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.EditProjectButton.Enabled = false;
     this.EditProjectButton.FlatAppearance.BorderSize         = 0;
     this.EditProjectButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.EditProjectButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.EditProjectButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.EditProjectButton.Font      = new System.Drawing.Font("Arial Rounded MT Bold", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.EditProjectButton.ForeColor = System.Drawing.Color.DimGray;
     this.EditProjectButton.Location  = new System.Drawing.Point(352, 57);
     this.EditProjectButton.Name      = "EditProjectButton";
     this.EditProjectButton.Size      = new System.Drawing.Size(150, 40);
     this.EditProjectButton.TabIndex  = 89;
     this.EditProjectButton.Text      = "Edit Project";
     this.EditProjectButton.UseVisualStyleBackColor = true;
     this.EditProjectButton.Click      += new System.EventHandler(this.EditProjectButton_Click);
     this.EditProjectButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.EditProjectButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // CloseProjectButton
     //
     this.CloseProjectButton.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("CloseProjectButton.BackgroundImage")));
     this.CloseProjectButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.CloseProjectButton.Enabled = false;
     this.CloseProjectButton.FlatAppearance.BorderSize         = 0;
     this.CloseProjectButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.CloseProjectButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.CloseProjectButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.CloseProjectButton.Font      = new System.Drawing.Font("Arial Rounded MT Bold", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.CloseProjectButton.ForeColor = System.Drawing.Color.DimGray;
     this.CloseProjectButton.Location  = new System.Drawing.Point(352, 114);
     this.CloseProjectButton.Name      = "CloseProjectButton";
     this.CloseProjectButton.Size      = new System.Drawing.Size(150, 40);
     this.CloseProjectButton.TabIndex  = 90;
     this.CloseProjectButton.Text      = "Close Project";
     this.CloseProjectButton.UseVisualStyleBackColor = true;
     this.CloseProjectButton.Click      += new System.EventHandler(this.CloseProjectButton_Click);
     this.CloseProjectButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.CloseProjectButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // BuildAllButton
     //
     this.BuildAllButton.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("BuildAllButton.BackgroundImage")));
     this.BuildAllButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.BuildAllButton.Enabled = false;
     this.BuildAllButton.FlatAppearance.BorderSize         = 0;
     this.BuildAllButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.BuildAllButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.BuildAllButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.BuildAllButton.Font      = new System.Drawing.Font("Arial Rounded MT Bold", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BuildAllButton.ForeColor = System.Drawing.Color.DimGray;
     this.BuildAllButton.Location  = new System.Drawing.Point(20, 114);
     this.BuildAllButton.Name      = "BuildAllButton";
     this.BuildAllButton.Size      = new System.Drawing.Size(150, 40);
     this.BuildAllButton.TabIndex  = 91;
     this.BuildAllButton.Text      = "Build All";
     this.BuildAllButton.UseVisualStyleBackColor = true;
     this.BuildAllButton.Click      += new System.EventHandler(this.BuildAllButton_Click);
     this.BuildAllButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.BuildAllButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // HiddenButton
     //
     this.HiddenButton.BackgroundImage                   = global::DataTierClient.Properties.Resources.BlackButton;
     this.HiddenButton.BackgroundImageLayout             = System.Windows.Forms.ImageLayout.Stretch;
     this.HiddenButton.FlatAppearance.BorderSize         = 0;
     this.HiddenButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.HiddenButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.HiddenButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.HiddenButton.Font      = new System.Drawing.Font("Arial Rounded MT Bold", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.HiddenButton.ForeColor = System.Drawing.Color.LemonChiffon;
     this.HiddenButton.Location  = new System.Drawing.Point(-1000, 655);
     this.HiddenButton.Name      = "HiddenButton";
     this.HiddenButton.Size      = new System.Drawing.Size(160, 40);
     this.HiddenButton.TabIndex  = 94;
     this.HiddenButton.Text      = "New Project";
     this.HiddenButton.UseVisualStyleBackColor = true;
     //
     // StoredProcedureSQLButton
     //
     this.StoredProcedureSQLButton.ForeColor   = System.Drawing.Color.GhostWhite;
     this.StoredProcedureSQLButton.Location    = new System.Drawing.Point(18, 616);
     this.StoredProcedureSQLButton.Name        = "StoredProcedureSQLButton";
     this.StoredProcedureSQLButton.Size        = new System.Drawing.Size(220, 24);
     this.StoredProcedureSQLButton.TabIndex    = 109;
     this.StoredProcedureSQLButton.Text        = "StoredProcedures.sql";
     this.StoredProcedureSQLButton.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.StoredProcedureSQLButton.Visible     = false;
     this.StoredProcedureSQLButton.Click      += new System.EventHandler(this.StoredProcedureSQLButton_Click);
     this.StoredProcedureSQLButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.StoredProcedureSQLButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // RunSetupButton
     //
     this.RunSetupButton.Font        = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.RunSetupButton.ForeColor   = System.Drawing.Color.LemonChiffon;
     this.RunSetupButton.Location    = new System.Drawing.Point(262, 20);
     this.RunSetupButton.Name        = "RunSetupButton";
     this.RunSetupButton.Size        = new System.Drawing.Size(240, 18);
     this.RunSetupButton.TabIndex    = 110;
     this.RunSetupButton.Text        = "Run Setup Again";
     this.RunSetupButton.TextAlign   = System.Drawing.ContentAlignment.MiddleRight;
     this.RunSetupButton.Click      += new System.EventHandler(this.RunSetupButton_Click);
     this.RunSetupButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.RunSetupButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // MainPanel
     //
     this.MainPanel.BackColor             = System.Drawing.Color.Transparent;
     this.MainPanel.BackgroundImage       = global::DataTierClient.Properties.Resources.Deep_Black;
     this.MainPanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.MainPanel.Controls.Add(this.RightContainer);
     this.MainPanel.Controls.Add(this.MainStatus);
     this.MainPanel.Controls.Add(this.RunSetupButton);
     this.MainPanel.Controls.Add(this.StoredProcedureSQLButton);
     this.MainPanel.Controls.Add(this.HiddenButton);
     this.MainPanel.Controls.Add(this.BuildAllButton);
     this.MainPanel.Controls.Add(this.CloseProjectButton);
     this.MainPanel.Controls.Add(this.EditProjectButton);
     this.MainPanel.Controls.Add(this.OpenProjectButton);
     this.MainPanel.Controls.Add(this.NewProjectButton);
     this.MainPanel.Controls.Add(this.CurrentProjectLabel);
     this.MainPanel.Controls.Add(this.ProjectLabel);
     this.MainPanel.Controls.Add(this.StatusListBox);
     this.MainPanel.Controls.Add(this.ManageDataButton);
     this.MainPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.MainPanel.Font     = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.MainPanel.Location = new System.Drawing.Point(0, 0);
     this.MainPanel.Name     = "MainPanel";
     this.MainPanel.Size     = new System.Drawing.Size(900, 681);
     this.MainPanel.TabIndex = 17;
     //
     // RightContainer
     //
     this.RightContainer.Controls.Add(this.BottomPanel);
     this.RightContainer.Controls.Add(this.RightPanel);
     this.RightContainer.Dock     = System.Windows.Forms.DockStyle.Right;
     this.RightContainer.Location = new System.Drawing.Point(520, 0);
     this.RightContainer.Name     = "RightContainer";
     this.RightContainer.Size     = new System.Drawing.Size(380, 649);
     this.RightContainer.TabIndex = 112;
     //
     // BottomPanel
     //
     this.BottomPanel.Controls.Add(this.YouTubeButton);
     this.BottomPanel.Controls.Add(this.YouTubeButtonRightMarginPanel);
     this.BottomPanel.Controls.Add(this.BottomRightMarginpanel);
     this.BottomPanel.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.BottomPanel.Location = new System.Drawing.Point(0, 585);
     this.BottomPanel.Name     = "BottomPanel";
     this.BottomPanel.Size     = new System.Drawing.Size(380, 64);
     this.BottomPanel.TabIndex = 104;
     //
     // YouTubeButtonRightMarginPanel
     //
     this.YouTubeButtonRightMarginPanel.Dock     = System.Windows.Forms.DockStyle.Right;
     this.YouTubeButtonRightMarginPanel.Location = new System.Drawing.Point(356, 0);
     this.YouTubeButtonRightMarginPanel.Name     = "YouTubeButtonRightMarginPanel";
     this.YouTubeButtonRightMarginPanel.Size     = new System.Drawing.Size(16, 64);
     this.YouTubeButtonRightMarginPanel.TabIndex = 67;
     //
     // BottomRightMarginpanel
     //
     this.BottomRightMarginpanel.Dock     = System.Windows.Forms.DockStyle.Right;
     this.BottomRightMarginpanel.Location = new System.Drawing.Point(372, 0);
     this.BottomRightMarginpanel.Name     = "BottomRightMarginpanel";
     this.BottomRightMarginpanel.Size     = new System.Drawing.Size(8, 64);
     this.BottomRightMarginpanel.TabIndex = 1;
     //
     // RightPanel
     //
     this.RightPanel.Controls.Add(this.ViewPDFButton2);
     this.RightPanel.Controls.Add(this.ViewWordButton2);
     this.RightPanel.Controls.Add(this.UsersGuideLabel);
     this.RightPanel.Controls.Add(this.ViewPDFButton);
     this.RightPanel.Controls.Add(this.ViewWordButton);
     this.RightPanel.Controls.Add(this.QuickStartLabel);
     this.RightPanel.Controls.Add(this.ClassRoomImage);
     this.RightPanel.Location = new System.Drawing.Point(31, 57);
     this.RightPanel.Name     = "RightPanel";
     this.RightPanel.Size     = new System.Drawing.Size(319, 370);
     this.RightPanel.TabIndex = 101;
     //
     // ViewPDFButton2
     //
     this.ViewPDFButton2.BackgroundImage                   = ((System.Drawing.Image)(resources.GetObject("ViewPDFButton2.BackgroundImage")));
     this.ViewPDFButton2.BackgroundImageLayout             = System.Windows.Forms.ImageLayout.Stretch;
     this.ViewPDFButton2.FlatAppearance.BorderSize         = 0;
     this.ViewPDFButton2.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.ViewPDFButton2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.ViewPDFButton2.Location  = new System.Drawing.Point(164, 263);
     this.ViewPDFButton2.Name      = "ViewPDFButton2";
     this.ViewPDFButton2.Size      = new System.Drawing.Size(64, 64);
     this.ViewPDFButton2.TabIndex  = 104;
     this.ViewPDFButton2.UseVisualStyleBackColor = true;
     this.ViewPDFButton2.Click      += new System.EventHandler(this.ViewPDFButton2_Click);
     this.ViewPDFButton2.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.ViewPDFButton2.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // ViewWordButton2
     //
     this.ViewWordButton2.BackgroundImage                   = ((System.Drawing.Image)(resources.GetObject("ViewWordButton2.BackgroundImage")));
     this.ViewWordButton2.BackgroundImageLayout             = System.Windows.Forms.ImageLayout.Stretch;
     this.ViewWordButton2.FlatAppearance.BorderSize         = 0;
     this.ViewWordButton2.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.ViewWordButton2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.ViewWordButton2.Location  = new System.Drawing.Point(76, 263);
     this.ViewWordButton2.Name      = "ViewWordButton2";
     this.ViewWordButton2.Size      = new System.Drawing.Size(64, 64);
     this.ViewWordButton2.TabIndex  = 103;
     this.ViewWordButton2.UseVisualStyleBackColor = true;
     this.ViewWordButton2.Click      += new System.EventHandler(this.ViewWordButton2_Click);
     this.ViewWordButton2.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.ViewWordButton2.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // UsersGuideLabel
     //
     this.UsersGuideLabel.Font      = new System.Drawing.Font("Arial Rounded MT Bold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.UsersGuideLabel.ForeColor = System.Drawing.Color.LemonChiffon;
     this.UsersGuideLabel.Location  = new System.Drawing.Point(34, 335);
     this.UsersGuideLabel.Name      = "UsersGuideLabel";
     this.UsersGuideLabel.Size      = new System.Drawing.Size(236, 17);
     this.UsersGuideLabel.TabIndex  = 105;
     this.UsersGuideLabel.Text      = "DataTier.Net User\'s Guide";
     this.UsersGuideLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ViewPDFButton
     //
     this.ViewPDFButton.BackgroundImage                   = ((System.Drawing.Image)(resources.GetObject("ViewPDFButton.BackgroundImage")));
     this.ViewPDFButton.BackgroundImageLayout             = System.Windows.Forms.ImageLayout.Stretch;
     this.ViewPDFButton.FlatAppearance.BorderSize         = 0;
     this.ViewPDFButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.ViewPDFButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.ViewPDFButton.Location  = new System.Drawing.Point(164, 146);
     this.ViewPDFButton.Name      = "ViewPDFButton";
     this.ViewPDFButton.Size      = new System.Drawing.Size(64, 64);
     this.ViewPDFButton.TabIndex  = 101;
     this.ViewPDFButton.UseVisualStyleBackColor = true;
     this.ViewPDFButton.Click      += new System.EventHandler(this.ViewPDFButton_Click);
     this.ViewPDFButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.ViewPDFButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // ViewWordButton
     //
     this.ViewWordButton.BackgroundImage                   = ((System.Drawing.Image)(resources.GetObject("ViewWordButton.BackgroundImage")));
     this.ViewWordButton.BackgroundImageLayout             = System.Windows.Forms.ImageLayout.Stretch;
     this.ViewWordButton.FlatAppearance.BorderSize         = 0;
     this.ViewWordButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.ViewWordButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.ViewWordButton.Location  = new System.Drawing.Point(76, 146);
     this.ViewWordButton.Name      = "ViewWordButton";
     this.ViewWordButton.Size      = new System.Drawing.Size(64, 64);
     this.ViewWordButton.TabIndex  = 100;
     this.ViewWordButton.UseVisualStyleBackColor = true;
     this.ViewWordButton.Click      += new System.EventHandler(this.ViewWordButton_Click);
     this.ViewWordButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.ViewWordButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // QuickStartLabel
     //
     this.QuickStartLabel.Font      = new System.Drawing.Font("Arial Rounded MT Bold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.QuickStartLabel.ForeColor = System.Drawing.Color.LemonChiffon;
     this.QuickStartLabel.Location  = new System.Drawing.Point(34, 218);
     this.QuickStartLabel.Name      = "QuickStartLabel";
     this.QuickStartLabel.Size      = new System.Drawing.Size(236, 17);
     this.QuickStartLabel.TabIndex  = 102;
     this.QuickStartLabel.Text      = "DataTier.Net Quick Start";
     this.QuickStartLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ClassRoomImage
     //
     this.ClassRoomImage.Image    = ((System.Drawing.Image)(resources.GetObject("ClassRoomImage.Image")));
     this.ClassRoomImage.Location = new System.Drawing.Point(9, 9);
     this.ClassRoomImage.Name     = "ClassRoomImage";
     this.ClassRoomImage.Size     = new System.Drawing.Size(300, 113);
     this.ClassRoomImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.ClassRoomImage.TabIndex = 99;
     this.ClassRoomImage.TabStop  = false;
     //
     // MainStatus
     //
     this.MainStatus.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.MainStatus.Font      = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.MainStatus.ForeColor = System.Drawing.Color.LemonChiffon;
     this.MainStatus.Location  = new System.Drawing.Point(0, 649);
     this.MainStatus.Name      = "MainStatus";
     this.MainStatus.Size      = new System.Drawing.Size(900, 32);
     this.MainStatus.TabIndex  = 111;
     this.MainStatus.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // StatusTimer
     //
     this.StatusTimer.Interval = 5000;
     this.StatusTimer.Tick    += new System.EventHandler(this.StatusTimer_Tick);
     //
     // MainForm
     //
     this.AutoScaleMode         = System.Windows.Forms.AutoScaleMode.None;
     this.BackColor             = System.Drawing.Color.White;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize            = new System.Drawing.Size(900, 681);
     this.Controls.Add(this.MainPanel);
     this.Cursor         = System.Windows.Forms.Cursors.Default;
     this.DoubleBuffered = true;
     this.Icon           = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name           = "MainForm";
     this.StartPosition  = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text           = "DataTier.Net";
     this.MainPanel.ResumeLayout(false);
     this.MainPanel.PerformLayout();
     this.RightContainer.ResumeLayout(false);
     this.BottomPanel.ResumeLayout(false);
     this.RightPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ClassRoomImage)).EndInit();
     this.ResumeLayout(false);
 }
Пример #23
0
        internal static long DownloadFile(String remoteFilename, String localFilename, System.Windows.Forms.ToolStripProgressBar pBarDoubleM)
        {
            //Code taken from
            //http://www.codeguru.com/csharp/csharp/cs_network/internetweb/article.php/c7005/

            // Function will return the number of bytes processed
            // to the caller. Initialize to 0 here.
            long bytesProcessed = 0;
            // Assign values to these objects here so that they can
            // be referenced in the finally block
            Stream      remoteStream = null;
            Stream      localStream  = null;
            WebResponse response     = null;

            // Use a try/catch/finally block as both the WebRequest and Stream
            // classes throw exceptions upon error
            try
            {
                // Create a request for the specified remote file name
                WebRequest request = null;
                if (_blnFirewll)
                {
                    request.Proxy = wpInternetAccessAuthentication();
                }
                request = WebRequest.Create(remoteFilename);

                if (request != null)
                {
                    // Send the request to the server and retrieve the
                    // WebResponse object
                    response = request.GetResponse();
                    if (response != null)
                    {
                        // Once the WebResponse object has been retrieved,
                        // get the stream object associated with the response's data
                        remoteStream = response.GetResponseStream();

                        // Create the local file
                        localStream         = File.Create(localFilename);
                        pBarDoubleM.Visible = true;
                        pBarDoubleM.Maximum = 1024 * 1024;
                        // Allocate a 1k buffer
                        byte[] buffer = new byte[1024];
                        int    bytesRead;
                        LogDM("Downloading " + remoteFilename);

                        // Simple do/while loop to read from stream until
                        // no bytes are returned
                        do
                        {
                            // Read data (up to 1k) from the stream
                            bytesRead = remoteStream.Read(buffer, 0, buffer.Length);

                            // Write the data to the local file
                            localStream.Write(buffer, 0, bytesRead);

                            // Increment total bytes processed
                            bytesProcessed += bytesRead;
                            if (bytesRead < pBarDoubleM.Maximum)
                            {
                                pBarDoubleM.Value += bytesRead;
                            }
                        } while (bytesRead > 0);
                    }
                }
            }
            catch (Exception ex)
            {
                LogDM("Function DownloadFile: " + remoteFilename + " " + ex.Message);
                if (ex.Message.Contains("404"))
                {
                    bytesProcessed = -1;
                }
            }
            finally
            {
                // Close the response and streams objects here
                // to make sure they're closed even if an exception
                // is thrown at some point
                if (response != null)
                {
                    response.Close();
                }
                if (remoteStream != null)
                {
                    remoteStream.Close();
                }
                if (localStream != null)
                {
                    localStream.Close();
                }
                pBarDoubleM.Visible = false;
            }

            // Return total bytes processed to caller.
            return(bytesProcessed);
        }
Пример #24
0
 /// <summary>
 /// Erforderliche Methode für die Designerunterstützung.
 /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormSlippyMap));
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveAsImageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.closeMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.navigateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.moveToCoordinateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.settingsToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.backgroundMapToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteCacheToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemHelp = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.imageListOnline = new System.Windows.Forms.ImageList(this.components);
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripProgressBar = new System.Windows.Forms.ToolStripProgressBar();
     this.timerProgressStepper = new System.Windows.Forms.Timer(this.components);
     this.mapControl = new OpenStreetMapPictures.MapControl();
     this.menuStrip1.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.navigateToolStripMenuItem,
     this.settingsToolStripMenuItem1,
     this.toolStripMenuItemHelp});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.menuStrip1.Size = new System.Drawing.Size(592, 24);
     this.menuStrip1.TabIndex = 0;
     this.menuStrip1.Text = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.saveAsImageToolStripMenuItem,
     this.closeMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "File";
     //
     // saveAsImageToolStripMenuItem
     //
     this.saveAsImageToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("saveAsImageToolStripMenuItem.Image")));
     this.saveAsImageToolStripMenuItem.Name = "saveAsImageToolStripMenuItem";
     this.saveAsImageToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.saveAsImageToolStripMenuItem.Text = "Save as Image";
     this.saveAsImageToolStripMenuItem.Click += new System.EventHandler(this.saveAsImageToolStripMenuItem_Click);
     //
     // closeMenuItem
     //
     this.closeMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("closeMenuItem.Image")));
     this.closeMenuItem.Name = "closeMenuItem";
     this.closeMenuItem.Size = new System.Drawing.Size(199, 22);
     this.closeMenuItem.Text = "Save Position and Close";
     this.closeMenuItem.Click += new System.EventHandler(this.CloseMenuItem_Click);
     //
     // navigateToolStripMenuItem
     //
     this.navigateToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.moveToCoordinateToolStripMenuItem});
     this.navigateToolStripMenuItem.Name = "navigateToolStripMenuItem";
     this.navigateToolStripMenuItem.Size = new System.Drawing.Size(66, 20);
     this.navigateToolStripMenuItem.Text = "Navigate";
     //
     // moveToCoordinateToolStripMenuItem
     //
     this.moveToCoordinateToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("moveToCoordinateToolStripMenuItem.Image")));
     this.moveToCoordinateToolStripMenuItem.Name = "moveToCoordinateToolStripMenuItem";
     this.moveToCoordinateToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
     this.moveToCoordinateToolStripMenuItem.Text = "&Move to Coordinate";
     this.moveToCoordinateToolStripMenuItem.Click += new System.EventHandler(this.MoveToCoordinateToolStripMenuItem_Click);
     //
     // settingsToolStripMenuItem1
     //
     this.settingsToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.backgroundMapToolStripMenuItem,
     this.deleteCacheToolStripMenuItem});
     this.settingsToolStripMenuItem1.Name = "settingsToolStripMenuItem1";
     this.settingsToolStripMenuItem1.Size = new System.Drawing.Size(61, 20);
     this.settingsToolStripMenuItem1.Text = "Settings";
     //
     // backgroundMapToolStripMenuItem
     //
     this.backgroundMapToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("backgroundMapToolStripMenuItem.Image")));
     this.backgroundMapToolStripMenuItem.Name = "backgroundMapToolStripMenuItem";
     this.backgroundMapToolStripMenuItem.Size = new System.Drawing.Size(210, 22);
     this.backgroundMapToolStripMenuItem.Text = "Background Map Options";
     this.backgroundMapToolStripMenuItem.Click += new System.EventHandler(this.backgroundMapToolStripMenuItem_Click);
     //
     // deleteCacheToolStripMenuItem
     //
     this.deleteCacheToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("deleteCacheToolStripMenuItem.Image")));
     this.deleteCacheToolStripMenuItem.Name = "deleteCacheToolStripMenuItem";
     this.deleteCacheToolStripMenuItem.Size = new System.Drawing.Size(210, 22);
     this.deleteCacheToolStripMenuItem.Text = "Delete Map Cache";
     this.deleteCacheToolStripMenuItem.Click += new System.EventHandler(this.DeleteCacheToolStripMenuItem_Click);
     //
     // toolStripMenuItemHelp
     //
     this.toolStripMenuItemHelp.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.aboutToolStripMenuItem});
     this.toolStripMenuItemHelp.Name = "toolStripMenuItemHelp";
     this.toolStripMenuItemHelp.Size = new System.Drawing.Size(44, 20);
     this.toolStripMenuItemHelp.Text = "Help";
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("aboutToolStripMenuItem.Image")));
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(169, 22);
     this.aboutToolStripMenuItem.Text = "About OSM Scout";
     this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
     //
     // imageListOnline
     //
     this.imageListOnline.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListOnline.ImageStream")));
     this.imageListOnline.TransparentColor = System.Drawing.Color.Transparent;
     this.imageListOnline.Images.SetKeyName(0, "online.png");
     this.imageListOnline.Images.SetKeyName(1, "offline.png");
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel1,
     this.toolStripProgressBar});
     this.statusStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.statusStrip1.Location = new System.Drawing.Point(0, 344);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(592, 22);
     this.statusStrip1.TabIndex = 3;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(38, 17);
     this.toolStripStatusLabel1.Text = "status";
     //
     // toolStripProgressBar
     //
     this.toolStripProgressBar.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.toolStripProgressBar.Maximum = 1000;
     this.toolStripProgressBar.Name = "toolStripProgressBar";
     this.toolStripProgressBar.Size = new System.Drawing.Size(100, 16);
     this.toolStripProgressBar.Visible = false;
     //
     // timerProgressStepper
     //
     this.timerProgressStepper.Tick += new System.EventHandler(this.TimerProgressStepper_Tick);
     //
     // mapControl
     //
     this.mapControl.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.mapControl.AutoSize = true;
     this.mapControl.BackColor = System.Drawing.Color.White;
     this.mapControl.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.mapControl.DownloadInProgress = false;
     this.mapControl.Location = new System.Drawing.Point(0, 22);
     this.mapControl.MinimumSize = new System.Drawing.Size(256, 256);
     this.mapControl.Name = "mapControl";
     this.mapControl.Size = new System.Drawing.Size(592, 344);
     this.mapControl.TabIndex = 4;
     //
     // FormSlippyMap
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(592, 366);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.mapControl);
     this.Controls.Add(this.menuStrip1);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "FormSlippyMap";
     this.Text = "OpenStreetMap Scout";
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
     this.btnStart = new System.Windows.Forms.Button();
     this.btnCancel = new System.Windows.Forms.Button();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.statusStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // backgroundWorker1
     //
     this.backgroundWorker1.WorkerReportsProgress = true;
     this.backgroundWorker1.WorkerSupportsCancellation = true;
     this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
     this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
     this.backgroundWorker1.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundWorker1_ProgressChanged);
     //
     // btnStart
     //
     this.btnStart.Location = new System.Drawing.Point(12, 12);
     this.btnStart.Name = "btnStart";
     this.btnStart.Size = new System.Drawing.Size(75, 49);
     this.btnStart.TabIndex = 1;
     this.btnStart.Text = "Start";
     this.btnStart.UseVisualStyleBackColor = true;
     this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(94, 12);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 49);
     this.btnCancel.TabIndex = 2;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.UseVisualStyleBackColor = true;
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripProgressBar1,
     this.toolStripStatusLabel1});
     this.statusStrip1.Location = new System.Drawing.Point(0, 118);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(348, 22);
     this.statusStrip1.TabIndex = 3;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripProgressBar1
     //
     this.toolStripProgressBar1.Name = "toolStripProgressBar1";
     this.toolStripProgressBar1.Size = new System.Drawing.Size(200, 16);
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(131, 17);
     this.toolStripStatusLabel1.Text = "toolStripStatusLabel1";
     //
     // BackgroundWorker
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(348, 140);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnStart);
     this.Name = "BackgroundWorker";
     this.Text = "BackgroundWorker Demo";
     this.Load += new System.EventHandler(this.BackgroundWorker_Load);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #26
0
        private bool UploadAssignmentsNewSite(DBConnect db_conn, System.Windows.Forms.ToolStripProgressBar pbBar)
        {
            int    timeout;
            string query;

            // for each shift in this schedule
            foreach (ScheduleSlot slot in this._skeleton.ToList())
            {
                foreach (string employee in slot.Assigned)
                {
                    // generate insert query
                    query = "INSERT INTO `shift_assignments` (`shift_id`, sched_id, username)  "
                            + "VALUES ("
                            + "'" + slot._shiftInfo.ShiftNumber + "', "
                            + "'" + this.ScheduleID + "', "
                            + "'" + employee + "');";

                    // update progress bar
                    pbBar.PerformStep();

                    timeout = 0;
                    // keeps trying until command either runs successfully or connection times out
                    while (!db_conn.RunCommand(query))
                    {
                        timeout++;
                        if (timeout > TIMEOUT)
                        {
                            System.Windows.Forms.MessageBox.Show("Connecting to database timed out while trying to run the following mysql statement: " + query);;
                            return(false);
                        }
                    }
                }

                if (slot.EmployeeWorkingCount < slot.EmployeeNeededCount)
                {
                    for (int x = 0; x < slot.EmployeeNeededCount - slot.EmployeeWorkingCount; x++)
                    {
                        query = "INSERT INTO `shift_assignments` (`shift_id`, sched_id, username, details)  "
                                + "VALUES ("
                                + "'" + slot._shiftInfo.ShiftNumber + "', "
                                + "'" + this.ScheduleID + "', "
                                + "'**AV**', "
                                + "'" + "Available" + x.ToString() + "');";

                        // update progress bar
                        pbBar.PerformStep();

                        timeout = 0;
                        // keeps trying until command either runs successfully or connection times out
                        while (!db_conn.RunCommand(query))
                        {
                            timeout++;
                            if (timeout > TIMEOUT)
                            {
                                System.Windows.Forms.MessageBox.Show("Connecting to database timed out while trying to run the following mysql statement: " + query);;
                                return(false);
                            }
                        }
                    }
                }
            }

            return(true);
        }
Пример #27
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.pictureBox1           = new System.Windows.Forms.PictureBox();
     this.button1               = new System.Windows.Forms.Button();
     this.button2               = new System.Windows.Forms.Button();
     this.button3               = new System.Windows.Forms.Button();
     this.label1                = new System.Windows.Forms.Label();
     this.textBox3              = new System.Windows.Forms.TextBox();
     this.label2                = new System.Windows.Forms.Label();
     this.label3                = new System.Windows.Forms.Label();
     this.statusStrip1          = new System.Windows.Forms.StatusStrip();
     this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
     this.button4               = new System.Windows.Forms.Button();
     this.button5               = new System.Windows.Forms.Button();
     this.folderBrowserDialog1  = new System.Windows.Forms.FolderBrowserDialog();
     this.openFileDialog1       = new System.Windows.Forms.OpenFileDialog();
     this.label4                = new System.Windows.Forms.Label();
     this.label5                = new System.Windows.Forms.Label();
     this.splitContainer1       = new System.Windows.Forms.SplitContainer();
     this.richTextBox1          = new System.Windows.Forms.RichTextBox();
     this.groupBox2             = new System.Windows.Forms.GroupBox();
     this.checkvkdevices        = new System.Windows.Forms.CheckBox();
     this.groupBox1             = new System.Windows.Forms.GroupBox();
     this.textBoxExit           = new System.Windows.Forms.TextBox();
     this.label7                = new System.Windows.Forms.Label();
     this.textBox1              = new System.Windows.Forms.TextBox();
     this.label6                = new System.Windows.Forms.Label();
     this.checkBox2             = new System.Windows.Forms.CheckBox();
     this.checkBox1             = new System.Windows.Forms.CheckBox();
     this.label8                = new System.Windows.Forms.Label();
     this.label9                = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.statusStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor   = System.Drawing.Color.Black;
     this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pictureBox1.Image       = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location    = new System.Drawing.Point(0, 0);
     this.pictureBox1.Name        = "pictureBox1";
     this.pictureBox1.Size        = new System.Drawing.Size(357, 106);
     this.pictureBox1.TabIndex    = 0;
     this.pictureBox1.TabStop     = false;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(363, 7);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(88, 23);
     this.button1.TabIndex = 1;
     this.button1.Text     = "Select Xml File";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.Button1Click);
     //
     // 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(732, 7);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(61, 23);
     this.button2.TabIndex = 2;
     this.button2.Text     = "From Net";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.Button2Click);
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(363, 36);
     this.button3.Name     = "button3";
     this.button3.Size     = new System.Drawing.Size(130, 23);
     this.button3.TabIndex = 4;
     this.button3.Text     = "Select Destination Path";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.Button3Click);
     //
     // label1
     //
     this.label1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location  = new System.Drawing.Point(364, 64);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(71, 19);
     this.label1.TabIndex  = 6;
     this.label1.Text      = "namespace";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // textBox3
     //
     this.textBox3.Location = new System.Drawing.Point(441, 64);
     this.textBox3.Name     = "textBox3";
     this.textBox3.Size     = new System.Drawing.Size(107, 20);
     this.textBox3.TabIndex = 7;
     this.textBox3.Text     = "ENTK";
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(548, 67);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(52, 16);
     this.label2.TabIndex = 8;
     this.label2.Text     = ".Vulkan";
     //
     // label3
     //
     this.label3.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location  = new System.Drawing.Point(363, 83);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(24, 19);
     this.label3.TabIndex  = 9;
     this.label3.Text      = "{";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripProgressBar1,
         this.toolStripStatusLabel1,
         this.toolStripStatusLabel2
     });
     this.statusStrip1.Location = new System.Drawing.Point(0, 466);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Size     = new System.Drawing.Size(804, 22);
     this.statusStrip1.TabIndex = 10;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // toolStripProgressBar1
     //
     this.toolStripProgressBar1.Name        = "toolStripProgressBar1";
     this.toolStripProgressBar1.Size        = new System.Drawing.Size(350, 16);
     this.toolStripProgressBar1.Style       = System.Windows.Forms.ProgressBarStyle.Continuous;
     this.toolStripProgressBar1.ToolTipText = "PARCIAL:";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.AutoSize  = false;
     this.toolStripStatusLabel1.Name      = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size      = new System.Drawing.Size(35, 17);
     this.toolStripStatusLabel1.Text      = "0%";
     this.toolStripStatusLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // 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.BorderStyle  = System.Windows.Forms.Border3DStyle.Sunken;
     this.toolStripStatusLabel2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.toolStripStatusLabel2.Name         = "toolStripStatusLabel2";
     this.toolStripStatusLabel2.Size         = new System.Drawing.Size(380, 17);
     this.toolStripStatusLabel2.Text         = "Estado";
     this.toolStripStatusLabel2.TextAlign    = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // button4
     //
     this.button4.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.button4.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.button4.Location  = new System.Drawing.Point(702, 64);
     this.button4.Name      = "button4";
     this.button4.Size      = new System.Drawing.Size(91, 42);
     this.button4.TabIndex  = 11;
     this.button4.Text      = "INIT PARSING";
     this.button4.UseVisualStyleBackColor = true;
     this.button4.Click += new System.EventHandler(this.Button4Click);
     //
     // button5
     //
     this.button5.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.button5.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button5.ForeColor = System.Drawing.Color.Red;
     this.button5.Location  = new System.Drawing.Point(605, 64);
     this.button5.Name      = "button5";
     this.button5.Size      = new System.Drawing.Size(91, 42);
     this.button5.TabIndex  = 12;
     this.button5.Text      = "ABORT PARSING";
     this.button5.UseVisualStyleBackColor = true;
     //
     // folderBrowserDialog1
     //
     this.folderBrowserDialog1.RootFolder   = System.Environment.SpecialFolder.MyComputer;
     this.folderBrowserDialog1.SelectedPath = "./";
     //
     // openFileDialog1
     //
     this.openFileDialog1.FileName         = "vk.xml";
     this.openFileDialog1.Filter           = "XML|*.xml";
     this.openFileDialog1.InitialDirectory = "./";
     this.openFileDialog1.Title            = "Selecciona archivo vk.xml";
     //
     // label4
     //
     this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.label4.BackColor   = System.Drawing.Color.White;
     this.label4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.label4.Location    = new System.Drawing.Point(457, 8);
     this.label4.Name        = "label4";
     this.label4.Size        = new System.Drawing.Size(269, 20);
     this.label4.TabIndex    = 13;
     this.label4.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label5
     //
     this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.label5.BackColor   = System.Drawing.Color.White;
     this.label5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.label5.Location    = new System.Drawing.Point(499, 37);
     this.label5.Name        = "label5";
     this.label5.Size        = new System.Drawing.Size(294, 20);
     this.label5.TabIndex    = 14;
     this.label5.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // splitContainer1
     //
     this.splitContainer1.Location = new System.Drawing.Point(0, 112);
     this.splitContainer1.Name     = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.richTextBox1);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.groupBox2);
     this.splitContainer1.Panel2.Controls.Add(this.groupBox1);
     this.splitContainer1.Size             = new System.Drawing.Size(800, 351);
     this.splitContainer1.SplitterDistance = 408;
     this.splitContainer1.TabIndex         = 15;
     //
     // richTextBox1
     //
     this.richTextBox1.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.richTextBox1.Location   = new System.Drawing.Point(0, 0);
     this.richTextBox1.Name       = "richTextBox1";
     this.richTextBox1.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedVertical;
     this.richTextBox1.Size       = new System.Drawing.Size(408, 351);
     this.richTextBox1.TabIndex   = 0;
     this.richTextBox1.Text       = "";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.label9);
     this.groupBox2.Controls.Add(this.label8);
     this.groupBox2.Controls.Add(this.checkvkdevices);
     this.groupBox2.Location = new System.Drawing.Point(3, 3);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(382, 160);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Crear Clases Extra:";
     //
     // checkvkdevices
     //
     this.checkvkdevices.Location = new System.Drawing.Point(6, 19);
     this.checkvkdevices.Name     = "checkvkdevices";
     this.checkvkdevices.Size     = new System.Drawing.Size(104, 24);
     this.checkvkdevices.TabIndex = 0;
     this.checkvkdevices.Text     = "VKDevice.cs";
     this.checkvkdevices.UseVisualStyleBackColor = true;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.textBoxExit);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.textBox1);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.checkBox2);
     this.groupBox1.Controls.Add(this.checkBox1);
     this.groupBox1.Location = new System.Drawing.Point(3, 169);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(382, 179);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Crear Biblioteca .dll independiente:";
     //
     // textBoxExit
     //
     this.textBoxExit.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.textBoxExit.BackColor  = System.Drawing.Color.Black;
     this.textBoxExit.Font       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxExit.ForeColor  = System.Drawing.Color.White;
     this.textBoxExit.Location   = new System.Drawing.Point(6, 69);
     this.textBoxExit.Multiline  = true;
     this.textBoxExit.Name       = "textBoxExit";
     this.textBoxExit.ReadOnly   = true;
     this.textBoxExit.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.textBoxExit.Size       = new System.Drawing.Size(370, 104);
     this.textBoxExit.TabIndex   = 5;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(162, 46);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(24, 13);
     this.label7.TabIndex = 4;
     this.label7.Text     = ".dll";
     //
     // textBox1
     //
     this.textBox1.Enabled  = false;
     this.textBox1.Location = new System.Drawing.Point(60, 43);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(100, 20);
     this.textBox1.TabIndex = 3;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(6, 46);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(48, 17);
     this.label6.TabIndex = 2;
     this.label6.Text     = "Nombre:";
     //
     // checkBox2
     //
     this.checkBox2.Enabled  = false;
     this.checkBox2.Location = new System.Drawing.Point(253, 41);
     this.checkBox2.Name     = "checkBox2";
     this.checkBox2.Size     = new System.Drawing.Size(123, 24);
     this.checkBox2.TabIndex = 1;
     this.checkBox2.Text     = "Eliminar archivos .cs";
     this.checkBox2.UseVisualStyleBackColor = true;
     //
     // checkBox1
     //
     this.checkBox1.Location = new System.Drawing.Point(6, 19);
     this.checkBox1.Name     = "checkBox1";
     this.checkBox1.Size     = new System.Drawing.Size(104, 24);
     this.checkBox1.TabIndex = 0;
     this.checkBox1.Text     = "Crear Biblioteca";
     this.checkBox1.UseVisualStyleBackColor = true;
     this.checkBox1.CheckedChanged         += new System.EventHandler(this.CheckBox1CheckedChanged);
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(26, 46);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(100, 23);
     this.label8.TabIndex = 1;
     this.label8.Text     = "VKDelegates.cs";
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(26, 69);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(115, 23);
     this.label9.TabIndex = 2;
     this.label9.Text     = "VKDelegatesTools.cs";
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(804, 488);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.button5);
     this.Controls.Add(this.button4);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.textBox3);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.button3);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.pictureBox1);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimumSize = new System.Drawing.Size(820, 526);
     this.Name        = "MainForm";
     this.Text        = "C# Vulkan XML Parser";
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #28
0
 public AppStatus(System.Windows.Forms.ToolStripProgressBar _ProgressBar, System.Windows.Forms.ToolStripStatusLabel _MsgStatusLabel)
 {
     this.ProgressBar       = _ProgressBar;
     this.MsgStatusLabel    = _MsgStatusLabel;
     synchronizationContext = SynchronizationContext.Current;
 }
Пример #29
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem(new string[] {
     "srt",
     "简体中文&英文"}, -1);
     System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem(new string[] {
     "srt",
     "繁体中文&英文"}, -1);
     System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem(new string[] {
     "srt",
     "简体中文"}, -1);
     System.Windows.Forms.ListViewItem listViewItem4 = new System.Windows.Forms.ListViewItem(new string[] {
     "srt",
     "繁体中文"}, -1);
     System.Windows.Forms.ListViewItem listViewItem5 = new System.Windows.Forms.ListViewItem(new string[] {
     "srt",
     "英文"}, -1);
     System.Windows.Forms.ListViewItem listViewItem6 = new System.Windows.Forms.ListViewItem(new string[] {
     "ass",
     "简体中文&英文"}, -1);
     System.Windows.Forms.ListViewItem listViewItem7 = new System.Windows.Forms.ListViewItem(new string[] {
     "ass",
     "繁体中文&英文"}, -1);
     System.Windows.Forms.ListViewItem listViewItem8 = new System.Windows.Forms.ListViewItem(new string[] {
     "ass",
     "简体中文"}, -1);
     System.Windows.Forms.ListViewItem listViewItem9 = new System.Windows.Forms.ListViewItem(new string[] {
     "ass",
     "繁体中文"}, -1);
     System.Windows.Forms.ListViewItem listViewItem10 = new System.Windows.Forms.ListViewItem("1");
     System.Windows.Forms.ListViewItem listViewItem11 = new System.Windows.Forms.ListViewItem("2");
     System.Windows.Forms.ListViewItem listViewItem12 = new System.Windows.Forms.ListViewItem("3");
     System.Windows.Forms.ListViewItem listViewItem13 = new System.Windows.Forms.ListViewItem("4");
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     System.Windows.Forms.ListViewItem listViewItem14 = new System.Windows.Forms.ListViewItem("1");
     System.Windows.Forms.ListViewItem listViewItem15 = new System.Windows.Forms.ListViewItem("2");
     System.Windows.Forms.ListViewItem listViewItem16 = new System.Windows.Forms.ListViewItem("3");
     System.Windows.Forms.ListViewItem listViewItem17 = new System.Windows.Forms.ListViewItem("4");
     this.gbVersions = new System.Windows.Forms.GroupBox();
     this.rbChi = new System.Windows.Forms.RadioButton();
     this.rbChinEng = new System.Windows.Forms.RadioButton();
     this.lvVersionSelection = new System.Windows.Forms.ListView();
     this.chExtension = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.chLanguage = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.gbAssFile = new System.Windows.Forms.GroupBox();
     this.lvASSFileSelection = new System.Windows.Forms.ListView();
     this.chFileIcon = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.chFileName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.ilIcons = new System.Windows.Forms.ImageList(this.components);
     this.gbSrtOutputFolder = new System.Windows.Forms.GroupBox();
     this.btnSrtFdSelection = new System.Windows.Forms.Button();
     this.tbSrtOutputFolder = new System.Windows.Forms.TextBox();
     this.btnA2SStartProcessing = new System.Windows.Forms.Button();
     this.bgwA2SOutput = new System.ComponentModel.BackgroundWorker();
     this.fbdSelectDestDir = new System.Windows.Forms.FolderBrowserDialog();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.ssProgressBar = new System.Windows.Forms.ToolStripProgressBar();
     this.tabControl = new System.Windows.Forms.TabControl();
     this.tpAss2Srt = new System.Windows.Forms.TabPage();
     this.tpSrt2Ass = new System.Windows.Forms.TabPage();
     this.gbEffCfg = new System.Windows.Forms.GroupBox();
     this.btnModifyEff = new System.Windows.Forms.Button();
     this.btnImportEffFiles = new System.Windows.Forms.Button();
     this.btnDelEff = new System.Windows.Forms.Button();
     this.btnAddEff = new System.Windows.Forms.Button();
     this.lbEffCfgSelection = new System.Windows.Forms.Label();
     this.cbEffCfg = new System.Windows.Forms.ComboBox();
     this.gbASSOutputFolder = new System.Windows.Forms.GroupBox();
     this.btnASSFolderSelection = new System.Windows.Forms.Button();
     this.tbASSOutputFolder = new System.Windows.Forms.TextBox();
     this.btnS2AStartProcessing = new System.Windows.Forms.Button();
     this.gbSrtFile = new System.Windows.Forms.GroupBox();
     this.lvSrtFileSelection = 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.bgwS2AOutput = new System.ComponentModel.BackgroundWorker();
     this.ofdSelectFile = new System.Windows.Forms.OpenFileDialog();
     this.gbVersions.SuspendLayout();
     this.gbAssFile.SuspendLayout();
     this.gbSrtOutputFolder.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.tabControl.SuspendLayout();
     this.tpAss2Srt.SuspendLayout();
     this.tpSrt2Ass.SuspendLayout();
     this.gbEffCfg.SuspendLayout();
     this.gbASSOutputFolder.SuspendLayout();
     this.gbSrtFile.SuspendLayout();
     this.SuspendLayout();
     //
     // gbVersions
     //
     this.gbVersions.Controls.Add(this.rbChi);
     this.gbVersions.Controls.Add(this.rbChinEng);
     this.gbVersions.Controls.Add(this.lvVersionSelection);
     this.gbVersions.Location = new System.Drawing.Point(6, 204);
     this.gbVersions.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.gbVersions.Name = "gbVersions";
     this.gbVersions.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.gbVersions.Size = new System.Drawing.Size(367, 161);
     this.gbVersions.TabIndex = 0;
     this.gbVersions.TabStop = false;
     this.gbVersions.Text = "输出版本";
     //
     // rbChi
     //
     this.rbChi.AutoSize = true;
     this.rbChi.Location = new System.Drawing.Point(89, 18);
     this.rbChi.Name = "rbChi";
     this.rbChi.Size = new System.Drawing.Size(74, 21);
     this.rbChi.TabIndex = 1;
     this.rbChi.TabStop = true;
     this.rbChi.Text = "中文单语";
     this.rbChi.UseVisualStyleBackColor = true;
     this.rbChi.CheckedChanged += new System.EventHandler(this.rbChi_CheckedChanged);
     //
     // rbChinEng
     //
     this.rbChinEng.AutoSize = true;
     this.rbChinEng.Location = new System.Drawing.Point(9, 18);
     this.rbChinEng.Name = "rbChinEng";
     this.rbChinEng.Size = new System.Drawing.Size(74, 21);
     this.rbChinEng.TabIndex = 1;
     this.rbChinEng.TabStop = true;
     this.rbChinEng.Text = "中英双语";
     this.rbChinEng.UseVisualStyleBackColor = true;
     this.rbChinEng.CheckedChanged += new System.EventHandler(this.rbChinEng_CheckedChanged);
     //
     // lvVersionSelection
     //
     this.lvVersionSelection.CheckBoxes = true;
     this.lvVersionSelection.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.chExtension,
     this.chLanguage});
     listViewItem1.Checked = true;
     listViewItem1.StateImageIndex = 1;
     listViewItem2.Checked = true;
     listViewItem2.StateImageIndex = 1;
     listViewItem3.Checked = true;
     listViewItem3.StateImageIndex = 1;
     listViewItem4.Checked = true;
     listViewItem4.StateImageIndex = 1;
     listViewItem5.Checked = true;
     listViewItem5.StateImageIndex = 1;
     listViewItem5.Tag = "";
     listViewItem6.Checked = true;
     listViewItem6.StateImageIndex = 1;
     listViewItem7.StateImageIndex = 0;
     listViewItem8.StateImageIndex = 0;
     listViewItem9.StateImageIndex = 0;
     this.lvVersionSelection.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
     listViewItem1,
     listViewItem2,
     listViewItem3,
     listViewItem4,
     listViewItem5,
     listViewItem6,
     listViewItem7,
     listViewItem8,
     listViewItem9});
     this.lvVersionSelection.Location = new System.Drawing.Point(6, 46);
     this.lvVersionSelection.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.lvVersionSelection.Name = "lvVersionSelection";
     this.lvVersionSelection.Size = new System.Drawing.Size(355, 110);
     this.lvVersionSelection.TabIndex = 0;
     this.lvVersionSelection.UseCompatibleStateImageBehavior = false;
     this.lvVersionSelection.View = System.Windows.Forms.View.Details;
     //
     // chExtension
     //
     this.chExtension.Text = "文件类型";
     this.chExtension.Width = 92;
     //
     // chLanguage
     //
     this.chLanguage.Text = "字幕语言";
     this.chLanguage.Width = 133;
     //
     // gbAssFile
     //
     this.gbAssFile.Controls.Add(this.lvASSFileSelection);
     this.gbAssFile.Location = new System.Drawing.Point(6, 7);
     this.gbAssFile.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.gbAssFile.Name = "gbAssFile";
     this.gbAssFile.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.gbAssFile.Size = new System.Drawing.Size(367, 195);
     this.gbAssFile.TabIndex = 1;
     this.gbAssFile.TabStop = false;
     this.gbAssFile.Text = "ASS文件";
     //
     // lvASSFileSelection
     //
     this.lvASSFileSelection.AllowDrop = true;
     this.lvASSFileSelection.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.chFileIcon,
     this.chFileName});
     listViewItem10.StateImageIndex = 0;
     listViewItem11.StateImageIndex = 0;
     listViewItem12.StateImageIndex = 0;
     listViewItem13.StateImageIndex = 0;
     this.lvASSFileSelection.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
     listViewItem10,
     listViewItem11,
     listViewItem12,
     listViewItem13});
     this.lvASSFileSelection.Location = new System.Drawing.Point(6, 15);
     this.lvASSFileSelection.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.lvASSFileSelection.Name = "lvASSFileSelection";
     this.lvASSFileSelection.Size = new System.Drawing.Size(355, 174);
     this.lvASSFileSelection.StateImageList = this.ilIcons;
     this.lvASSFileSelection.TabIndex = 0;
     this.lvASSFileSelection.UseCompatibleStateImageBehavior = false;
     this.lvASSFileSelection.View = System.Windows.Forms.View.SmallIcon;
     this.lvASSFileSelection.DragDrop += new System.Windows.Forms.DragEventHandler(this.lvASSFileSelection_DragDrop);
     this.lvASSFileSelection.DragEnter += new System.Windows.Forms.DragEventHandler(this.lvASSFileSelection_DragEnter);
     //
     // ilIcons
     //
     this.ilIcons.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilIcons.ImageStream")));
     this.ilIcons.TransparentColor = System.Drawing.Color.Transparent;
     this.ilIcons.Images.SetKeyName(0, "gzwjtb 026.png");
     //
     // gbSrtOutputFolder
     //
     this.gbSrtOutputFolder.Controls.Add(this.btnSrtFdSelection);
     this.gbSrtOutputFolder.Controls.Add(this.tbSrtOutputFolder);
     this.gbSrtOutputFolder.Location = new System.Drawing.Point(6, 368);
     this.gbSrtOutputFolder.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.gbSrtOutputFolder.Name = "gbSrtOutputFolder";
     this.gbSrtOutputFolder.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.gbSrtOutputFolder.Size = new System.Drawing.Size(367, 51);
     this.gbSrtOutputFolder.TabIndex = 2;
     this.gbSrtOutputFolder.TabStop = false;
     this.gbSrtOutputFolder.Text = "输出根目录";
     //
     // btnSrtFdSelection
     //
     this.btnSrtFdSelection.Font = new System.Drawing.Font("Times New Roman", 7.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSrtFdSelection.Location = new System.Drawing.Point(337, 19);
     this.btnSrtFdSelection.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btnSrtFdSelection.Name = "btnSrtFdSelection";
     this.btnSrtFdSelection.Size = new System.Drawing.Size(24, 23);
     this.btnSrtFdSelection.TabIndex = 1;
     this.btnSrtFdSelection.Text = "...";
     this.btnSrtFdSelection.UseVisualStyleBackColor = true;
     this.btnSrtFdSelection.Click += new System.EventHandler(this.btnSrtFdSelection_Click);
     //
     // tbSrtOutputFolder
     //
     this.tbSrtOutputFolder.BackColor = System.Drawing.SystemColors.Window;
     this.tbSrtOutputFolder.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.tbSrtOutputFolder.Location = new System.Drawing.Point(6, 19);
     this.tbSrtOutputFolder.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.tbSrtOutputFolder.Name = "tbSrtOutputFolder";
     this.tbSrtOutputFolder.ReadOnly = true;
     this.tbSrtOutputFolder.Size = new System.Drawing.Size(330, 23);
     this.tbSrtOutputFolder.TabIndex = 0;
     this.tbSrtOutputFolder.TabStop = false;
     //
     // btnA2SStartProcessing
     //
     this.btnA2SStartProcessing.Location = new System.Drawing.Point(268, 426);
     this.btnA2SStartProcessing.Name = "btnA2SStartProcessing";
     this.btnA2SStartProcessing.Size = new System.Drawing.Size(105, 23);
     this.btnA2SStartProcessing.TabIndex = 3;
     this.btnA2SStartProcessing.Text = "开始输出";
     this.btnA2SStartProcessing.UseVisualStyleBackColor = true;
     this.btnA2SStartProcessing.Click += new System.EventHandler(this.btnA2SStartProcessing_Click);
     //
     // bgwA2SOutput
     //
     this.bgwA2SOutput.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgwA2SOutput_DoWork);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.ssProgressBar});
     this.statusStrip1.Location = new System.Drawing.Point(0, 485);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(383, 22);
     this.statusStrip1.TabIndex = 4;
     this.statusStrip1.Text = "ssStatusStrip";
     //
     // ssProgressBar
     //
     this.ssProgressBar.Name = "ssProgressBar";
     this.ssProgressBar.Size = new System.Drawing.Size(200, 16);
     //
     // tabControl
     //
     this.tabControl.Controls.Add(this.tpAss2Srt);
     this.tabControl.Controls.Add(this.tpSrt2Ass);
     this.tabControl.Location = new System.Drawing.Point(0, 0);
     this.tabControl.Name = "tabControl";
     this.tabControl.SelectedIndex = 0;
     this.tabControl.Size = new System.Drawing.Size(385, 485);
     this.tabControl.TabIndex = 6;
     //
     // tpAss2Srt
     //
     this.tpAss2Srt.Controls.Add(this.gbAssFile);
     this.tpAss2Srt.Controls.Add(this.gbVersions);
     this.tpAss2Srt.Controls.Add(this.gbSrtOutputFolder);
     this.tpAss2Srt.Controls.Add(this.btnA2SStartProcessing);
     this.tpAss2Srt.Location = new System.Drawing.Point(4, 26);
     this.tpAss2Srt.Name = "tpAss2Srt";
     this.tpAss2Srt.Padding = new System.Windows.Forms.Padding(3);
     this.tpAss2Srt.Size = new System.Drawing.Size(377, 455);
     this.tpAss2Srt.TabIndex = 0;
     this.tpAss2Srt.Text = "Ass->Srt";
     this.tpAss2Srt.UseVisualStyleBackColor = true;
     //
     // tpSrt2Ass
     //
     this.tpSrt2Ass.Controls.Add(this.gbEffCfg);
     this.tpSrt2Ass.Controls.Add(this.gbASSOutputFolder);
     this.tpSrt2Ass.Controls.Add(this.btnS2AStartProcessing);
     this.tpSrt2Ass.Controls.Add(this.gbSrtFile);
     this.tpSrt2Ass.Location = new System.Drawing.Point(4, 26);
     this.tpSrt2Ass.Name = "tpSrt2Ass";
     this.tpSrt2Ass.Padding = new System.Windows.Forms.Padding(3);
     this.tpSrt2Ass.Size = new System.Drawing.Size(377, 455);
     this.tpSrt2Ass.TabIndex = 1;
     this.tpSrt2Ass.Text = "Srt->Ass";
     this.tpSrt2Ass.UseVisualStyleBackColor = true;
     //
     // gbEffCfg
     //
     this.gbEffCfg.Controls.Add(this.btnModifyEff);
     this.gbEffCfg.Controls.Add(this.btnImportEffFiles);
     this.gbEffCfg.Controls.Add(this.btnDelEff);
     this.gbEffCfg.Controls.Add(this.btnAddEff);
     this.gbEffCfg.Controls.Add(this.lbEffCfgSelection);
     this.gbEffCfg.Controls.Add(this.cbEffCfg);
     this.gbEffCfg.Location = new System.Drawing.Point(6, 255);
     this.gbEffCfg.Name = "gbEffCfg";
     this.gbEffCfg.Size = new System.Drawing.Size(367, 104);
     this.gbEffCfg.TabIndex = 29;
     this.gbEffCfg.TabStop = false;
     this.gbEffCfg.Text = "特效";
     //
     // btnModifyEff
     //
     this.btnModifyEff.Location = new System.Drawing.Point(157, 70);
     this.btnModifyEff.Name = "btnModifyEff";
     this.btnModifyEff.Size = new System.Drawing.Size(78, 23);
     this.btnModifyEff.TabIndex = 4;
     this.btnModifyEff.Text = "修改该特效";
     this.btnModifyEff.UseVisualStyleBackColor = true;
     this.btnModifyEff.Click += new System.EventHandler(this.btnModifyEff_Click);
     //
     // btnImportEffFiles
     //
     this.btnImportEffFiles.Location = new System.Drawing.Point(83, 70);
     this.btnImportEffFiles.Name = "btnImportEffFiles";
     this.btnImportEffFiles.Size = new System.Drawing.Size(68, 23);
     this.btnImportEffFiles.TabIndex = 3;
     this.btnImportEffFiles.Text = "导入特效";
     this.btnImportEffFiles.UseVisualStyleBackColor = true;
     this.btnImportEffFiles.Click += new System.EventHandler(this.btnImportEffFiles_Click);
     //
     // btnDelEff
     //
     this.btnDelEff.Location = new System.Drawing.Point(241, 70);
     this.btnDelEff.Name = "btnDelEff";
     this.btnDelEff.Size = new System.Drawing.Size(78, 23);
     this.btnDelEff.TabIndex = 2;
     this.btnDelEff.Text = "删除该特效";
     this.btnDelEff.UseVisualStyleBackColor = true;
     this.btnDelEff.Click += new System.EventHandler(this.btnDelEff_Click);
     //
     // btnAddEff
     //
     this.btnAddEff.Location = new System.Drawing.Point(9, 70);
     this.btnAddEff.Name = "btnAddEff";
     this.btnAddEff.Size = new System.Drawing.Size(68, 23);
     this.btnAddEff.TabIndex = 2;
     this.btnAddEff.Text = "新增特效";
     this.btnAddEff.UseVisualStyleBackColor = true;
     this.btnAddEff.Click += new System.EventHandler(this.btnAddEff_Click);
     //
     // lbEffCfgSelection
     //
     this.lbEffCfgSelection.AutoSize = true;
     this.lbEffCfgSelection.Location = new System.Drawing.Point(6, 19);
     this.lbEffCfgSelection.Name = "lbEffCfgSelection";
     this.lbEffCfgSelection.Size = new System.Drawing.Size(56, 17);
     this.lbEffCfgSelection.TabIndex = 1;
     this.lbEffCfgSelection.Text = "选择特效";
     //
     // cbEffCfg
     //
     this.cbEffCfg.FormattingEnabled = true;
     this.cbEffCfg.Location = new System.Drawing.Point(9, 39);
     this.cbEffCfg.Name = "cbEffCfg";
     this.cbEffCfg.Size = new System.Drawing.Size(352, 25);
     this.cbEffCfg.TabIndex = 0;
     //
     // gbASSOutputFolder
     //
     this.gbASSOutputFolder.Controls.Add(this.btnASSFolderSelection);
     this.gbASSOutputFolder.Controls.Add(this.tbASSOutputFolder);
     this.gbASSOutputFolder.Location = new System.Drawing.Point(6, 364);
     this.gbASSOutputFolder.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.gbASSOutputFolder.Name = "gbASSOutputFolder";
     this.gbASSOutputFolder.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.gbASSOutputFolder.Size = new System.Drawing.Size(367, 51);
     this.gbASSOutputFolder.TabIndex = 27;
     this.gbASSOutputFolder.TabStop = false;
     this.gbASSOutputFolder.Text = "输出根目录";
     //
     // btnASSFolderSelection
     //
     this.btnASSFolderSelection.Font = new System.Drawing.Font("Times New Roman", 7.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnASSFolderSelection.Location = new System.Drawing.Point(337, 19);
     this.btnASSFolderSelection.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btnASSFolderSelection.Name = "btnASSFolderSelection";
     this.btnASSFolderSelection.Size = new System.Drawing.Size(24, 23);
     this.btnASSFolderSelection.TabIndex = 1;
     this.btnASSFolderSelection.Text = "...";
     this.btnASSFolderSelection.UseVisualStyleBackColor = true;
     this.btnASSFolderSelection.Click += new System.EventHandler(this.btnASSFolderSelection_Click);
     //
     // tbASSOutputFolder
     //
     this.tbASSOutputFolder.BackColor = System.Drawing.SystemColors.Window;
     this.tbASSOutputFolder.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.tbASSOutputFolder.Location = new System.Drawing.Point(6, 19);
     this.tbASSOutputFolder.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.tbASSOutputFolder.Name = "tbASSOutputFolder";
     this.tbASSOutputFolder.ReadOnly = true;
     this.tbASSOutputFolder.Size = new System.Drawing.Size(330, 23);
     this.tbASSOutputFolder.TabIndex = 0;
     this.tbASSOutputFolder.TabStop = false;
     //
     // btnS2AStartProcessing
     //
     this.btnS2AStartProcessing.Location = new System.Drawing.Point(268, 426);
     this.btnS2AStartProcessing.Name = "btnS2AStartProcessing";
     this.btnS2AStartProcessing.Size = new System.Drawing.Size(105, 23);
     this.btnS2AStartProcessing.TabIndex = 28;
     this.btnS2AStartProcessing.Text = "开始输出";
     this.btnS2AStartProcessing.UseVisualStyleBackColor = true;
     this.btnS2AStartProcessing.Click += new System.EventHandler(this.btnS2AStartProcessing_Click);
     //
     // gbSrtFile
     //
     this.gbSrtFile.Controls.Add(this.lvSrtFileSelection);
     this.gbSrtFile.Location = new System.Drawing.Point(6, 7);
     this.gbSrtFile.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.gbSrtFile.Name = "gbSrtFile";
     this.gbSrtFile.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.gbSrtFile.Size = new System.Drawing.Size(367, 249);
     this.gbSrtFile.TabIndex = 26;
     this.gbSrtFile.TabStop = false;
     this.gbSrtFile.Text = "SRT文件";
     //
     // lvSrtFileSelection
     //
     this.lvSrtFileSelection.AllowDrop = true;
     this.lvSrtFileSelection.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2});
     listViewItem14.StateImageIndex = 0;
     listViewItem15.StateImageIndex = 0;
     listViewItem16.StateImageIndex = 0;
     listViewItem17.StateImageIndex = 0;
     this.lvSrtFileSelection.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
     listViewItem14,
     listViewItem15,
     listViewItem16,
     listViewItem17});
     this.lvSrtFileSelection.Location = new System.Drawing.Point(6, 15);
     this.lvSrtFileSelection.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.lvSrtFileSelection.Name = "lvSrtFileSelection";
     this.lvSrtFileSelection.Size = new System.Drawing.Size(355, 226);
     this.lvSrtFileSelection.StateImageList = this.ilIcons;
     this.lvSrtFileSelection.TabIndex = 0;
     this.lvSrtFileSelection.UseCompatibleStateImageBehavior = false;
     this.lvSrtFileSelection.View = System.Windows.Forms.View.SmallIcon;
     this.lvSrtFileSelection.DragDrop += new System.Windows.Forms.DragEventHandler(this.lvSrtFileSelection_DragDrop);
     this.lvSrtFileSelection.DragEnter += new System.Windows.Forms.DragEventHandler(this.lvSrtFileSelection_DragEnter);
     //
     // bgwS2AOutput
     //
     this.bgwS2AOutput.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgwS2AOutput_DoWork);
     //
     // ofdSelectFile
     //
     this.ofdSelectFile.FileName = "ofdSelectFile";
     //
     // MainForm
     //
     this.AllowDrop = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(383, 507);
     this.Controls.Add(this.tabControl);
     this.Controls.Add(this.statusStrip1);
     this.Font = new System.Drawing.Font("Microsoft YaHei", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name = "MainForm";
     this.Text = "ASSToolkit V1.5.1";
     this.gbVersions.ResumeLayout(false);
     this.gbVersions.PerformLayout();
     this.gbAssFile.ResumeLayout(false);
     this.gbSrtOutputFolder.ResumeLayout(false);
     this.gbSrtOutputFolder.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.tabControl.ResumeLayout(false);
     this.tpAss2Srt.ResumeLayout(false);
     this.tpSrt2Ass.ResumeLayout(false);
     this.gbEffCfg.ResumeLayout(false);
     this.gbEffCfg.PerformLayout();
     this.gbASSOutputFolder.ResumeLayout(false);
     this.gbASSOutputFolder.PerformLayout();
     this.gbSrtFile.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #30
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(Main));
     this.main_tabPage = new System.Windows.Forms.TabControl();
     this.tabPage_Start = new System.Windows.Forms.TabPage();
     this.Start_Geometry_groupBox = new System.Windows.Forms.GroupBox();
     this.Start_MultiType_comboBox = new System.Windows.Forms.ComboBox();
     this.Start_Model_label = new System.Windows.Forms.Label();
     this.Start_DataTypeGroup_label = new System.Windows.Forms.Label();
     this.Start_MultiTypeGroup_label = new System.Windows.Forms.Label();
     this.Start_MultiGeometryGroup_label = new System.Windows.Forms.Label();
     this.Start_DataType_label = new System.Windows.Forms.Label();
     this.Start_MultiType_label = new System.Windows.Forms.Label();
     this.Start_Model_checkBox = new System.Windows.Forms.CheckBox();
     this.Start_MultiGeometry_checkBox = new System.Windows.Forms.CheckBox();
     this.Start_DataTypeGroup_comboBox = new System.Windows.Forms.ComboBox();
     this.Start_MultiTypeGroup_comboBox = new System.Windows.Forms.ComboBox();
     this.Start_Model_comboBox = new System.Windows.Forms.ComboBox();
     this.Start_MultiGeometryGroup_comboBox = new System.Windows.Forms.ComboBox();
     this.Start_DataType_comboBox = new System.Windows.Forms.ComboBox();
     this.Start_BasicFields_groupBox = new System.Windows.Forms.GroupBox();
     this.Start_SnippetMaxLines_label = new System.Windows.Forms.Label();
     this.Start_Name_label = new System.Windows.Forms.Label();
     this.Start_SnippetMaxLines_numericUpDown = new System.Windows.Forms.NumericUpDown();
     this.Start_Snippet_comboBox = new System.Windows.Forms.ComboBox();
     this.Start_Name_comboBox = new System.Windows.Forms.ComboBox();
     this.Start_Snippet_checkBox = new System.Windows.Forms.CheckBox();
     this.Start_DataRange_groupBox = new System.Windows.Forms.GroupBox();
     this.Start_DataRange_textBox = new System.Windows.Forms.TextBox();
     this.Start_DataRange_button = new System.Windows.Forms.Button();
     this.Start_DataRange_label = new System.Windows.Forms.Label();
     this.Start_Headers_checkBox = new System.Windows.Forms.CheckBox();
     this.Start_DataRange_checkBox = new System.Windows.Forms.CheckBox();
     this.tabPage_Location = new System.Windows.Forms.TabPage();
     this.Location_Track_groupBox = new System.Windows.Forms.GroupBox();
     this.Location_TrackRoll_label = new System.Windows.Forms.Label();
     this.Location_TrackInterpolate_checkBox = new System.Windows.Forms.CheckBox();
     this.Location_TrackTilt_label = new System.Windows.Forms.Label();
     this.Location_TrackRoll_comboBox = new System.Windows.Forms.ComboBox();
     this.Location_TrackHeading_label = new System.Windows.Forms.Label();
     this.Location_TrackTilt_comboBox = new System.Windows.Forms.ComboBox();
     this.Location_TrackHeading_comboBox = new System.Windows.Forms.ComboBox();
     this.Location_Model_groupBox = new System.Windows.Forms.GroupBox();
     this.Location_ModelZScale_label = new System.Windows.Forms.Label();
     this.Location_ModelYScale_label = new System.Windows.Forms.Label();
     this.Location_ModelXScale_label = new System.Windows.Forms.Label();
     this.Location_ModelRoll_label = new System.Windows.Forms.Label();
     this.Location_ModelTilt_label = new System.Windows.Forms.Label();
     this.Location_ModelHeading_label = new System.Windows.Forms.Label();
     this.Location_ModelZScale_comboBox = new System.Windows.Forms.ComboBox();
     this.Location_ModelYScale_comboBox = new System.Windows.Forms.ComboBox();
     this.Location_ModelXScale_comboBox = new System.Windows.Forms.ComboBox();
     this.Location_ModelRoll_comboBox = new System.Windows.Forms.ComboBox();
     this.Location_ModelTilt_comboBox = new System.Windows.Forms.ComboBox();
     this.Location_ModelHeading_comboBox = new System.Windows.Forms.ComboBox();
     this.Location_Coordinates_groupBox = new System.Windows.Forms.GroupBox();
     this.Location_AltitudeTessellate_checkBox = new System.Windows.Forms.CheckBox();
     this.Location_AltitudeExtrude_checkBox = new System.Windows.Forms.CheckBox();
     this.Location_Altitude_checkBox = new System.Windows.Forms.CheckBox();
     this.Location_AltitudeUnit_label = new System.Windows.Forms.Label();
     this.Location_AltitudeMode_label = new System.Windows.Forms.Label();
     this.Location_Field2_label = new System.Windows.Forms.Label();
     this.Location_Field1_label = new System.Windows.Forms.Label();
     this.Location_Format_label = new System.Windows.Forms.Label();
     this.Location_AltitudeUnit_comboBox = new System.Windows.Forms.ComboBox();
     this.Location_AltitudeMode_comboBox = new System.Windows.Forms.ComboBox();
     this.Location_Altitude_comboBox = new System.Windows.Forms.ComboBox();
     this.Location_Field2_comboBox = new System.Windows.Forms.ComboBox();
     this.Location_Field1_comboBox = new System.Windows.Forms.ComboBox();
     this.Location_Format_comboBox = new System.Windows.Forms.ComboBox();
     this.tabPage_DateTime = new System.Windows.Forms.TabPage();
     this.DateTime_Fields_groupBox = new System.Windows.Forms.GroupBox();
     this.DateTime_End_label = new System.Windows.Forms.Label();
     this.DateTime_Begin_label = new System.Windows.Forms.Label();
     this.DateTime_Format2_label = new System.Windows.Forms.Label();
     this.DateTime_Format1_label = new System.Windows.Forms.Label();
     this.DateTime_Field4_label = new System.Windows.Forms.Label();
     this.DateTime_Field3_label = new System.Windows.Forms.Label();
     this.DateTime_Field2_label = new System.Windows.Forms.Label();
     this.DateTime_Field1_label = new System.Windows.Forms.Label();
     this.DateTime_Format2_comboBox = new System.Windows.Forms.ComboBox();
     this.DateTime_Field4_comboBox = new System.Windows.Forms.ComboBox();
     this.DateTime_Field3_comboBox = new System.Windows.Forms.ComboBox();
     this.DateTime_Format1_comboBox = new System.Windows.Forms.ComboBox();
     this.DateTime_Field2_comboBox = new System.Windows.Forms.ComboBox();
     this.DateTime_Field1_comboBox = new System.Windows.Forms.ComboBox();
     this.DateTime_Type_groupBox = new System.Windows.Forms.GroupBox();
     this.DateTime_None_radioButton = new System.Windows.Forms.RadioButton();
     this.DateTime_TimeStamp_radioButton = new System.Windows.Forms.RadioButton();
     this.DateTime_TimeSpan_radioButton = new System.Windows.Forms.RadioButton();
     this.tabPage_Description = new System.Windows.Forms.TabPage();
     this.Description_MoveDown_button = new System.Windows.Forms.Button();
     this.Description_MoveUp_button = new System.Windows.Forms.Button();
     this.Description_SwapToColumns_button = new System.Windows.Forms.Button();
     this.Description_SwapToTable_button = new System.Windows.Forms.Button();
     this.Description_Table_label = new System.Windows.Forms.Label();
     this.Description_Columns_label = new System.Windows.Forms.Label();
     this.Description_MoveToBottom_button = new System.Windows.Forms.Button();
     this.Description_MoveToTop_button = new System.Windows.Forms.Button();
     this.Description_RemoveAll_button = new System.Windows.Forms.Button();
     this.Description_AddAll_button = new System.Windows.Forms.Button();
     this.Description_Table_listBox = new System.Windows.Forms.ListBox();
     this.Description_Columns_listBox = new System.Windows.Forms.ListBox();
     this.tabPage_Folders = new System.Windows.Forms.TabPage();
     this.Folders_Folders_treeView = new System.Windows.Forms.TreeView();
     this.Folders_MoveDown_button = new System.Windows.Forms.Button();
     this.Folders_MoveUp_button = new System.Windows.Forms.Button();
     this.Folders_SwapToColumns_button = new System.Windows.Forms.Button();
     this.Folders_SwapToFolders_button = new System.Windows.Forms.Button();
     this.Folders_Folders_label = new System.Windows.Forms.Label();
     this.Folders_Columns_label = new System.Windows.Forms.Label();
     this.Folders_MoveToBottom_button = new System.Windows.Forms.Button();
     this.Folders_MoveToTop_button = new System.Windows.Forms.Button();
     this.Folders_RemoveAll_button = new System.Windows.Forms.Button();
     this.Folders_AddAll_button = new System.Windows.Forms.Button();
     this.Folders_Columns_listBox = new System.Windows.Forms.ListBox();
     this.tabPage_Icons = new System.Windows.Forms.TabPage();
     this.Icons_tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
     this.Icons_NoIcon_button = new System.Windows.Forms.Button();
     this.Icons_ClearCustomIcons_button = new System.Windows.Forms.Button();
     this.Icons_AddCustomIcon_button = new System.Windows.Forms.Button();
     this.Icons_IconOpacity_textBox = new System.Windows.Forms.TextBox();
     this.Icons_IconOpacity_label = new System.Windows.Forms.Label();
     this.Icons_IconScale_label = new System.Windows.Forms.Label();
     this.Icons_IconColor_label = new System.Windows.Forms.Label();
     this.Icons_IconScale_numericUpDown = new System.Windows.Forms.NumericUpDown();
     this.Icons_IconColor_button = new System.Windows.Forms.Button();
     this.Icons_Columns_comboBox = new System.Windows.Forms.ComboBox();
     this.Icons_Preview_pictureBox = new System.Windows.Forms.PictureBox();
     this.Icons_SymbolCategories_listBox = new System.Windows.Forms.ListBox();
     this.Icons_IconOpacity_numericUpDown = new System.Windows.Forms.NumericUpDown();
     this.statusStrip = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripProgressBar = new System.Windows.Forms.ToolStripProgressBar();
     this.Settings_openFileDialog = new System.Windows.Forms.OpenFileDialog();
     this.KMZKML_saveFileDialog = new System.Windows.Forms.SaveFileDialog();
     this.main_Next_button = new System.Windows.Forms.Button();
     this.main_Back_button = new System.Windows.Forms.Button();
     this.main_Finish_button = new System.Windows.Forms.Button();
     this.Icons_imageList = new System.Windows.Forms.ImageList(this.components);
     this.Icons_IconColor_colorDialog = new System.Windows.Forms.ColorDialog();
     this.menuStrip = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.loadSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.simpleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutExcel2earthToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.Settings_saveFileDialog = new System.Windows.Forms.SaveFileDialog();
     this.errors_toolTip = new System.Windows.Forms.ToolTip(this.components);
     this.main_OpenAfterCreation_checkBox = new System.Windows.Forms.CheckBox();
     this.Icons_AddCustomIcon_openFileDialog = new System.Windows.Forms.OpenFileDialog();
     this.Icons_panel = new System.Windows.Forms.Panel();
     this.main_tabPage.SuspendLayout();
     this.tabPage_Start.SuspendLayout();
     this.Start_Geometry_groupBox.SuspendLayout();
     this.Start_BasicFields_groupBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Start_SnippetMaxLines_numericUpDown)).BeginInit();
     this.Start_DataRange_groupBox.SuspendLayout();
     this.tabPage_Location.SuspendLayout();
     this.Location_Track_groupBox.SuspendLayout();
     this.Location_Model_groupBox.SuspendLayout();
     this.Location_Coordinates_groupBox.SuspendLayout();
     this.tabPage_DateTime.SuspendLayout();
     this.DateTime_Fields_groupBox.SuspendLayout();
     this.DateTime_Type_groupBox.SuspendLayout();
     this.tabPage_Description.SuspendLayout();
     this.tabPage_Folders.SuspendLayout();
     this.tabPage_Icons.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Icons_IconScale_numericUpDown)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Icons_Preview_pictureBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Icons_IconOpacity_numericUpDown)).BeginInit();
     this.statusStrip.SuspendLayout();
     this.menuStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // main_tabPage
     //
     this.main_tabPage.Controls.Add(this.tabPage_Start);
     this.main_tabPage.Controls.Add(this.tabPage_Location);
     this.main_tabPage.Controls.Add(this.tabPage_DateTime);
     this.main_tabPage.Controls.Add(this.tabPage_Description);
     this.main_tabPage.Controls.Add(this.tabPage_Folders);
     this.main_tabPage.Controls.Add(this.tabPage_Icons);
     this.main_tabPage.Location = new System.Drawing.Point(12, 27);
     this.main_tabPage.Name = "main_tabPage";
     this.main_tabPage.SelectedIndex = 0;
     this.main_tabPage.Size = new System.Drawing.Size(770, 342);
     this.main_tabPage.TabIndex = 0;
     this.main_tabPage.Tag = "";
     this.main_tabPage.SelectedIndexChanged += new System.EventHandler(this.main_tabPage_SelectedIndexChanged);
     //
     // tabPage_Start
     //
     this.tabPage_Start.Controls.Add(this.Start_Geometry_groupBox);
     this.tabPage_Start.Controls.Add(this.Start_BasicFields_groupBox);
     this.tabPage_Start.Controls.Add(this.Start_DataRange_groupBox);
     this.tabPage_Start.Location = new System.Drawing.Point(4, 22);
     this.tabPage_Start.Name = "tabPage_Start";
     this.tabPage_Start.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage_Start.Size = new System.Drawing.Size(762, 316);
     this.tabPage_Start.TabIndex = 0;
     this.tabPage_Start.Text = "Start";
     this.tabPage_Start.UseVisualStyleBackColor = true;
     //
     // Start_Geometry_groupBox
     //
     this.Start_Geometry_groupBox.Controls.Add(this.Start_MultiType_comboBox);
     this.Start_Geometry_groupBox.Controls.Add(this.Start_Model_label);
     this.Start_Geometry_groupBox.Controls.Add(this.Start_DataTypeGroup_label);
     this.Start_Geometry_groupBox.Controls.Add(this.Start_MultiTypeGroup_label);
     this.Start_Geometry_groupBox.Controls.Add(this.Start_MultiGeometryGroup_label);
     this.Start_Geometry_groupBox.Controls.Add(this.Start_DataType_label);
     this.Start_Geometry_groupBox.Controls.Add(this.Start_MultiType_label);
     this.Start_Geometry_groupBox.Controls.Add(this.Start_Model_checkBox);
     this.Start_Geometry_groupBox.Controls.Add(this.Start_MultiGeometry_checkBox);
     this.Start_Geometry_groupBox.Controls.Add(this.Start_DataTypeGroup_comboBox);
     this.Start_Geometry_groupBox.Controls.Add(this.Start_MultiTypeGroup_comboBox);
     this.Start_Geometry_groupBox.Controls.Add(this.Start_Model_comboBox);
     this.Start_Geometry_groupBox.Controls.Add(this.Start_MultiGeometryGroup_comboBox);
     this.Start_Geometry_groupBox.Controls.Add(this.Start_DataType_comboBox);
     this.Start_Geometry_groupBox.Location = new System.Drawing.Point(6, 177);
     this.Start_Geometry_groupBox.Name = "Start_Geometry_groupBox";
     this.Start_Geometry_groupBox.Size = new System.Drawing.Size(750, 133);
     this.Start_Geometry_groupBox.TabIndex = 3;
     this.Start_Geometry_groupBox.TabStop = false;
     this.Start_Geometry_groupBox.Text = "Geometry";
     //
     // Start_MultiType_comboBox
     //
     this.Start_MultiType_comboBox.DisplayMember = "None";
     this.Start_MultiType_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Start_MultiType_comboBox.FormattingEnabled = true;
     this.Start_MultiType_comboBox.Items.AddRange(new object[] {
     "None",
     "Polygon",
     "Multi Track"});
     this.Start_MultiType_comboBox.Location = new System.Drawing.Point(110, 46);
     this.Start_MultiType_comboBox.Name = "Start_MultiType_comboBox";
     this.Start_MultiType_comboBox.Size = new System.Drawing.Size(200, 21);
     this.Start_MultiType_comboBox.TabIndex = 9;
     this.Start_MultiType_comboBox.ValueMember = "None";
     this.Start_MultiType_comboBox.SelectionChangeCommitted += new System.EventHandler(this.Start_MultiType_comboBox_SelectionChangeCommitted);
     //
     // Start_Model_label
     //
     this.Start_Model_label.AutoSize = true;
     this.Start_Model_label.Enabled = false;
     this.Start_Model_label.Location = new System.Drawing.Point(493, 103);
     this.Start_Model_label.Name = "Start_Model_label";
     this.Start_Model_label.Size = new System.Drawing.Size(30, 13);
     this.Start_Model_label.TabIndex = 15;
     this.Start_Model_label.Text = "Link:";
     //
     // Start_DataTypeGroup_label
     //
     this.Start_DataTypeGroup_label.AutoSize = true;
     this.Start_DataTypeGroup_label.Enabled = false;
     this.Start_DataTypeGroup_label.Location = new System.Drawing.Point(364, 76);
     this.Start_DataTypeGroup_label.Name = "Start_DataTypeGroup_label";
     this.Start_DataTypeGroup_label.Size = new System.Drawing.Size(139, 13);
     this.Start_DataTypeGroup_label.TabIndex = 0;
     this.Start_DataTypeGroup_label.Text = "Group Data Type based on:";
     //
     // Start_MultiTypeGroup_label
     //
     this.Start_MultiTypeGroup_label.AutoSize = true;
     this.Start_MultiTypeGroup_label.Enabled = false;
     this.Start_MultiTypeGroup_label.Location = new System.Drawing.Point(364, 49);
     this.Start_MultiTypeGroup_label.Name = "Start_MultiTypeGroup_label";
     this.Start_MultiTypeGroup_label.Size = new System.Drawing.Size(138, 13);
     this.Start_MultiTypeGroup_label.TabIndex = 0;
     this.Start_MultiTypeGroup_label.Text = "Group Multi Type based on:";
     //
     // Start_MultiGeometryGroup_label
     //
     this.Start_MultiGeometryGroup_label.AutoSize = true;
     this.Start_MultiGeometryGroup_label.Enabled = false;
     this.Start_MultiGeometryGroup_label.Location = new System.Drawing.Point(364, 22);
     this.Start_MultiGeometryGroup_label.Name = "Start_MultiGeometryGroup_label";
     this.Start_MultiGeometryGroup_label.Size = new System.Drawing.Size(159, 13);
     this.Start_MultiGeometryGroup_label.TabIndex = 0;
     this.Start_MultiGeometryGroup_label.Text = "Group Multi Geometry based on:";
     //
     // Start_DataType_label
     //
     this.Start_DataType_label.AutoSize = true;
     this.Start_DataType_label.Location = new System.Drawing.Point(22, 76);
     this.Start_DataType_label.Name = "Start_DataType_label";
     this.Start_DataType_label.Size = new System.Drawing.Size(60, 13);
     this.Start_DataType_label.TabIndex = 0;
     this.Start_DataType_label.Text = "Data Type:";
     //
     // Start_MultiType_label
     //
     this.Start_MultiType_label.AutoSize = true;
     this.Start_MultiType_label.Location = new System.Drawing.Point(23, 49);
     this.Start_MultiType_label.Name = "Start_MultiType_label";
     this.Start_MultiType_label.Size = new System.Drawing.Size(59, 13);
     this.Start_MultiType_label.TabIndex = 0;
     this.Start_MultiType_label.Text = "Multi Type:";
     //
     // Start_Model_checkBox
     //
     this.Start_Model_checkBox.AutoSize = true;
     this.Start_Model_checkBox.Enabled = false;
     this.Start_Model_checkBox.Location = new System.Drawing.Point(367, 102);
     this.Start_Model_checkBox.Name = "Start_Model_checkBox";
     this.Start_Model_checkBox.Size = new System.Drawing.Size(55, 17);
     this.Start_Model_checkBox.TabIndex = 13;
     this.Start_Model_checkBox.Text = "Model";
     this.Start_Model_checkBox.UseVisualStyleBackColor = true;
     this.Start_Model_checkBox.CheckedChanged += new System.EventHandler(this.Start_Model_checkBox_CheckedChanged);
     this.Start_Model_checkBox.EnabledChanged += new System.EventHandler(this.Start_Model_checkBox_EnabledChanged);
     //
     // Start_MultiGeometry_checkBox
     //
     this.Start_MultiGeometry_checkBox.AutoSize = true;
     this.Start_MultiGeometry_checkBox.Location = new System.Drawing.Point(110, 21);
     this.Start_MultiGeometry_checkBox.Name = "Start_MultiGeometry_checkBox";
     this.Start_MultiGeometry_checkBox.Size = new System.Drawing.Size(96, 17);
     this.Start_MultiGeometry_checkBox.TabIndex = 7;
     this.Start_MultiGeometry_checkBox.Text = "Multi Geometry";
     this.Start_MultiGeometry_checkBox.UseVisualStyleBackColor = true;
     this.Start_MultiGeometry_checkBox.CheckedChanged += new System.EventHandler(this.Start_MultiGeometry_checkBox_CheckedChanged);
     //
     // Start_DataTypeGroup_comboBox
     //
     this.Start_DataTypeGroup_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Start_DataTypeGroup_comboBox.Enabled = false;
     this.Start_DataTypeGroup_comboBox.FormattingEnabled = true;
     this.Start_DataTypeGroup_comboBox.Location = new System.Drawing.Point(544, 73);
     this.Start_DataTypeGroup_comboBox.Name = "Start_DataTypeGroup_comboBox";
     this.Start_DataTypeGroup_comboBox.Size = new System.Drawing.Size(200, 21);
     this.Start_DataTypeGroup_comboBox.TabIndex = 12;
     //
     // Start_MultiTypeGroup_comboBox
     //
     this.Start_MultiTypeGroup_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Start_MultiTypeGroup_comboBox.Enabled = false;
     this.Start_MultiTypeGroup_comboBox.FormattingEnabled = true;
     this.Start_MultiTypeGroup_comboBox.Location = new System.Drawing.Point(544, 46);
     this.Start_MultiTypeGroup_comboBox.Name = "Start_MultiTypeGroup_comboBox";
     this.Start_MultiTypeGroup_comboBox.Size = new System.Drawing.Size(200, 21);
     this.Start_MultiTypeGroup_comboBox.TabIndex = 10;
     //
     // Start_Model_comboBox
     //
     this.Start_Model_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Start_Model_comboBox.Enabled = false;
     this.Start_Model_comboBox.FormattingEnabled = true;
     this.Start_Model_comboBox.Location = new System.Drawing.Point(544, 100);
     this.Start_Model_comboBox.Name = "Start_Model_comboBox";
     this.Start_Model_comboBox.Size = new System.Drawing.Size(200, 21);
     this.Start_Model_comboBox.TabIndex = 14;
     //
     // Start_MultiGeometryGroup_comboBox
     //
     this.Start_MultiGeometryGroup_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Start_MultiGeometryGroup_comboBox.Enabled = false;
     this.Start_MultiGeometryGroup_comboBox.FormattingEnabled = true;
     this.Start_MultiGeometryGroup_comboBox.Location = new System.Drawing.Point(544, 19);
     this.Start_MultiGeometryGroup_comboBox.Name = "Start_MultiGeometryGroup_comboBox";
     this.Start_MultiGeometryGroup_comboBox.Size = new System.Drawing.Size(200, 21);
     this.Start_MultiGeometryGroup_comboBox.TabIndex = 8;
     //
     // Start_DataType_comboBox
     //
     this.Start_DataType_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Start_DataType_comboBox.FormattingEnabled = true;
     this.Start_DataType_comboBox.Items.AddRange(new object[] {
     "Point",
     "Line String",
     "Linear Ring",
     "Model",
     "Track"});
     this.Start_DataType_comboBox.Location = new System.Drawing.Point(110, 73);
     this.Start_DataType_comboBox.Name = "Start_DataType_comboBox";
     this.Start_DataType_comboBox.Size = new System.Drawing.Size(200, 21);
     this.Start_DataType_comboBox.TabIndex = 11;
     this.Start_DataType_comboBox.SelectedIndexChanged += new System.EventHandler(this.Start_DataType_comboBox_SelectedIndexChanged);
     this.Start_DataType_comboBox.SelectionChangeCommitted += new System.EventHandler(this.Start_DataType_comboBox_SelectionChangeCommitted);
     this.Start_DataType_comboBox.SelectedValueChanged += new System.EventHandler(this.Start_DataType_comboBox_SelectedValueChanged);
     //
     // Start_BasicFields_groupBox
     //
     this.Start_BasicFields_groupBox.Controls.Add(this.Start_SnippetMaxLines_label);
     this.Start_BasicFields_groupBox.Controls.Add(this.Start_Name_label);
     this.Start_BasicFields_groupBox.Controls.Add(this.Start_SnippetMaxLines_numericUpDown);
     this.Start_BasicFields_groupBox.Controls.Add(this.Start_Snippet_comboBox);
     this.Start_BasicFields_groupBox.Controls.Add(this.Start_Name_comboBox);
     this.Start_BasicFields_groupBox.Controls.Add(this.Start_Snippet_checkBox);
     this.Start_BasicFields_groupBox.Location = new System.Drawing.Point(6, 88);
     this.Start_BasicFields_groupBox.Name = "Start_BasicFields_groupBox";
     this.Start_BasicFields_groupBox.Size = new System.Drawing.Size(750, 83);
     this.Start_BasicFields_groupBox.TabIndex = 2;
     this.Start_BasicFields_groupBox.TabStop = false;
     this.Start_BasicFields_groupBox.Text = "Basic Fields";
     //
     // Start_SnippetMaxLines_label
     //
     this.Start_SnippetMaxLines_label.AutoSize = true;
     this.Start_SnippetMaxLines_label.Enabled = false;
     this.Start_SnippetMaxLines_label.Location = new System.Drawing.Point(320, 49);
     this.Start_SnippetMaxLines_label.Name = "Start_SnippetMaxLines_label";
     this.Start_SnippetMaxLines_label.Size = new System.Drawing.Size(58, 13);
     this.Start_SnippetMaxLines_label.TabIndex = 0;
     this.Start_SnippetMaxLines_label.Text = "Max Lines:";
     //
     // Start_Name_label
     //
     this.Start_Name_label.AutoSize = true;
     this.Start_Name_label.Location = new System.Drawing.Point(26, 23);
     this.Start_Name_label.Name = "Start_Name_label";
     this.Start_Name_label.Size = new System.Drawing.Size(38, 13);
     this.Start_Name_label.TabIndex = 0;
     this.Start_Name_label.Text = "Name:";
     //
     // Start_SnippetMaxLines_numericUpDown
     //
     this.Start_SnippetMaxLines_numericUpDown.Enabled = false;
     this.Start_SnippetMaxLines_numericUpDown.Location = new System.Drawing.Point(384, 47);
     this.Start_SnippetMaxLines_numericUpDown.Name = "Start_SnippetMaxLines_numericUpDown";
     this.Start_SnippetMaxLines_numericUpDown.Size = new System.Drawing.Size(39, 20);
     this.Start_SnippetMaxLines_numericUpDown.TabIndex = 6;
     this.Start_SnippetMaxLines_numericUpDown.Value = new decimal(new int[] {
     2,
     0,
     0,
     0});
     //
     // Start_Snippet_comboBox
     //
     this.Start_Snippet_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Start_Snippet_comboBox.Enabled = false;
     this.Start_Snippet_comboBox.FormattingEnabled = true;
     this.Start_Snippet_comboBox.Location = new System.Drawing.Point(110, 46);
     this.Start_Snippet_comboBox.Name = "Start_Snippet_comboBox";
     this.Start_Snippet_comboBox.Size = new System.Drawing.Size(200, 21);
     this.Start_Snippet_comboBox.TabIndex = 5;
     //
     // Start_Name_comboBox
     //
     this.Start_Name_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Start_Name_comboBox.FormattingEnabled = true;
     this.Start_Name_comboBox.Location = new System.Drawing.Point(110, 19);
     this.Start_Name_comboBox.Name = "Start_Name_comboBox";
     this.Start_Name_comboBox.Size = new System.Drawing.Size(200, 21);
     this.Start_Name_comboBox.TabIndex = 3;
     this.Start_Name_comboBox.SelectedIndexChanged += new System.EventHandler(this.Start_Name_comboBox_SelectedIndexChanged);
     //
     // Start_Snippet_checkBox
     //
     this.Start_Snippet_checkBox.AutoSize = true;
     this.Start_Snippet_checkBox.Location = new System.Drawing.Point(9, 48);
     this.Start_Snippet_checkBox.Name = "Start_Snippet_checkBox";
     this.Start_Snippet_checkBox.Size = new System.Drawing.Size(65, 17);
     this.Start_Snippet_checkBox.TabIndex = 4;
     this.Start_Snippet_checkBox.Text = "Snippet:";
     this.Start_Snippet_checkBox.UseVisualStyleBackColor = true;
     this.Start_Snippet_checkBox.CheckedChanged += new System.EventHandler(this.Start_Snippet_checkBox_CheckedChanged);
     //
     // Start_DataRange_groupBox
     //
     this.Start_DataRange_groupBox.Controls.Add(this.Start_DataRange_textBox);
     this.Start_DataRange_groupBox.Controls.Add(this.Start_DataRange_button);
     this.Start_DataRange_groupBox.Controls.Add(this.Start_DataRange_label);
     this.Start_DataRange_groupBox.Controls.Add(this.Start_Headers_checkBox);
     this.Start_DataRange_groupBox.Controls.Add(this.Start_DataRange_checkBox);
     this.Start_DataRange_groupBox.Location = new System.Drawing.Point(6, 6);
     this.Start_DataRange_groupBox.Name = "Start_DataRange_groupBox";
     this.Start_DataRange_groupBox.Size = new System.Drawing.Size(750, 76);
     this.Start_DataRange_groupBox.TabIndex = 1;
     this.Start_DataRange_groupBox.TabStop = false;
     this.Start_DataRange_groupBox.Text = "Data Range";
     //
     // Start_DataRange_textBox
     //
     this.Start_DataRange_textBox.Enabled = false;
     this.Start_DataRange_textBox.Location = new System.Drawing.Point(273, 20);
     this.Start_DataRange_textBox.Multiline = true;
     this.Start_DataRange_textBox.Name = "Start_DataRange_textBox";
     this.Start_DataRange_textBox.ReadOnly = true;
     this.Start_DataRange_textBox.Size = new System.Drawing.Size(442, 42);
     this.Start_DataRange_textBox.TabIndex = 0;
     //
     // Start_DataRange_button
     //
     this.Start_DataRange_button.Enabled = false;
     this.Start_DataRange_button.Image = ((System.Drawing.Image)(resources.GetObject("Start_DataRange_button.Image")));
     this.Start_DataRange_button.Location = new System.Drawing.Point(718, 20);
     this.Start_DataRange_button.Margin = new System.Windows.Forms.Padding(0);
     this.Start_DataRange_button.Name = "Start_DataRange_button";
     this.Start_DataRange_button.Size = new System.Drawing.Size(26, 42);
     this.Start_DataRange_button.TabIndex = 1;
     this.Start_DataRange_button.UseVisualStyleBackColor = true;
     this.Start_DataRange_button.Click += new System.EventHandler(this.Start_DataRange_button_Click);
     //
     // Start_DataRange_label
     //
     this.Start_DataRange_label.AutoSize = true;
     this.Start_DataRange_label.Location = new System.Drawing.Point(177, 22);
     this.Start_DataRange_label.Name = "Start_DataRange_label";
     this.Start_DataRange_label.Size = new System.Drawing.Size(90, 13);
     this.Start_DataRange_label.TabIndex = 0;
     this.Start_DataRange_label.Text = "or             Range:";
     //
     // Start_Headers_checkBox
     //
     this.Start_Headers_checkBox.AutoSize = true;
     this.Start_Headers_checkBox.Checked = true;
     this.Start_Headers_checkBox.CheckState = System.Windows.Forms.CheckState.Checked;
     this.Start_Headers_checkBox.Location = new System.Drawing.Point(9, 45);
     this.Start_Headers_checkBox.Name = "Start_Headers_checkBox";
     this.Start_Headers_checkBox.Size = new System.Drawing.Size(112, 17);
     this.Start_Headers_checkBox.TabIndex = 2;
     this.Start_Headers_checkBox.Text = "Data has Headers";
     this.Start_Headers_checkBox.UseVisualStyleBackColor = true;
     this.Start_Headers_checkBox.CheckedChanged += new System.EventHandler(this.Start_Headers_checkBox_CheckedChanged);
     //
     // Start_DataRange_checkBox
     //
     this.Start_DataRange_checkBox.AutoSize = true;
     this.Start_DataRange_checkBox.Checked = true;
     this.Start_DataRange_checkBox.CheckState = System.Windows.Forms.CheckState.Checked;
     this.Start_DataRange_checkBox.Location = new System.Drawing.Point(9, 22);
     this.Start_DataRange_checkBox.Name = "Start_DataRange_checkBox";
     this.Start_DataRange_checkBox.Size = new System.Drawing.Size(151, 17);
     this.Start_DataRange_checkBox.TabIndex = 1;
     this.Start_DataRange_checkBox.Text = "Everything in Active Sheet";
     this.Start_DataRange_checkBox.UseVisualStyleBackColor = true;
     this.Start_DataRange_checkBox.CheckedChanged += new System.EventHandler(this.Start_DataRange_checkBox_CheckedChanged);
     //
     // tabPage_Location
     //
     this.tabPage_Location.Controls.Add(this.Location_Track_groupBox);
     this.tabPage_Location.Controls.Add(this.Location_Model_groupBox);
     this.tabPage_Location.Controls.Add(this.Location_Coordinates_groupBox);
     this.tabPage_Location.Location = new System.Drawing.Point(4, 22);
     this.tabPage_Location.Name = "tabPage_Location";
     this.tabPage_Location.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage_Location.Size = new System.Drawing.Size(762, 316);
     this.tabPage_Location.TabIndex = 1;
     this.tabPage_Location.Text = "Location";
     this.tabPage_Location.UseVisualStyleBackColor = true;
     //
     // Location_Track_groupBox
     //
     this.Location_Track_groupBox.Controls.Add(this.Location_TrackRoll_label);
     this.Location_Track_groupBox.Controls.Add(this.Location_TrackInterpolate_checkBox);
     this.Location_Track_groupBox.Controls.Add(this.Location_TrackTilt_label);
     this.Location_Track_groupBox.Controls.Add(this.Location_TrackRoll_comboBox);
     this.Location_Track_groupBox.Controls.Add(this.Location_TrackHeading_label);
     this.Location_Track_groupBox.Controls.Add(this.Location_TrackTilt_comboBox);
     this.Location_Track_groupBox.Controls.Add(this.Location_TrackHeading_comboBox);
     this.Location_Track_groupBox.Enabled = false;
     this.Location_Track_groupBox.Location = new System.Drawing.Point(426, 6);
     this.Location_Track_groupBox.Name = "Location_Track_groupBox";
     this.Location_Track_groupBox.Size = new System.Drawing.Size(330, 187);
     this.Location_Track_groupBox.TabIndex = 0;
     this.Location_Track_groupBox.TabStop = false;
     this.Location_Track_groupBox.Text = "Track";
     //
     // Location_TrackRoll_label
     //
     this.Location_TrackRoll_label.AutoSize = true;
     this.Location_TrackRoll_label.Location = new System.Drawing.Point(6, 76);
     this.Location_TrackRoll_label.Name = "Location_TrackRoll_label";
     this.Location_TrackRoll_label.Size = new System.Drawing.Size(28, 13);
     this.Location_TrackRoll_label.TabIndex = 0;
     this.Location_TrackRoll_label.Text = "Roll:";
     //
     // Location_TrackInterpolate_checkBox
     //
     this.Location_TrackInterpolate_checkBox.AutoSize = true;
     this.Location_TrackInterpolate_checkBox.Checked = true;
     this.Location_TrackInterpolate_checkBox.CheckState = System.Windows.Forms.CheckState.Checked;
     this.Location_TrackInterpolate_checkBox.Enabled = false;
     this.Location_TrackInterpolate_checkBox.Location = new System.Drawing.Point(9, 102);
     this.Location_TrackInterpolate_checkBox.Name = "Location_TrackInterpolate_checkBox";
     this.Location_TrackInterpolate_checkBox.Size = new System.Drawing.Size(157, 17);
     this.Location_TrackInterpolate_checkBox.TabIndex = 13;
     this.Location_TrackInterpolate_checkBox.Text = "Interpolate Between Tracks";
     this.Location_TrackInterpolate_checkBox.UseVisualStyleBackColor = true;
     //
     // Location_TrackTilt_label
     //
     this.Location_TrackTilt_label.AutoSize = true;
     this.Location_TrackTilt_label.Location = new System.Drawing.Point(6, 49);
     this.Location_TrackTilt_label.Name = "Location_TrackTilt_label";
     this.Location_TrackTilt_label.Size = new System.Drawing.Size(24, 13);
     this.Location_TrackTilt_label.TabIndex = 0;
     this.Location_TrackTilt_label.Text = "Tilt:";
     //
     // Location_TrackRoll_comboBox
     //
     this.Location_TrackRoll_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Location_TrackRoll_comboBox.FormattingEnabled = true;
     this.Location_TrackRoll_comboBox.Location = new System.Drawing.Point(124, 73);
     this.Location_TrackRoll_comboBox.Name = "Location_TrackRoll_comboBox";
     this.Location_TrackRoll_comboBox.Size = new System.Drawing.Size(200, 21);
     this.Location_TrackRoll_comboBox.TabIndex = 12;
     //
     // Location_TrackHeading_label
     //
     this.Location_TrackHeading_label.AutoSize = true;
     this.Location_TrackHeading_label.Location = new System.Drawing.Point(6, 22);
     this.Location_TrackHeading_label.Name = "Location_TrackHeading_label";
     this.Location_TrackHeading_label.Size = new System.Drawing.Size(50, 13);
     this.Location_TrackHeading_label.TabIndex = 0;
     this.Location_TrackHeading_label.Text = "Heading:";
     //
     // Location_TrackTilt_comboBox
     //
     this.Location_TrackTilt_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Location_TrackTilt_comboBox.FormattingEnabled = true;
     this.Location_TrackTilt_comboBox.Location = new System.Drawing.Point(124, 46);
     this.Location_TrackTilt_comboBox.Name = "Location_TrackTilt_comboBox";
     this.Location_TrackTilt_comboBox.Size = new System.Drawing.Size(200, 21);
     this.Location_TrackTilt_comboBox.TabIndex = 11;
     //
     // Location_TrackHeading_comboBox
     //
     this.Location_TrackHeading_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Location_TrackHeading_comboBox.FormattingEnabled = true;
     this.Location_TrackHeading_comboBox.Location = new System.Drawing.Point(124, 19);
     this.Location_TrackHeading_comboBox.Name = "Location_TrackHeading_comboBox";
     this.Location_TrackHeading_comboBox.Size = new System.Drawing.Size(200, 21);
     this.Location_TrackHeading_comboBox.TabIndex = 10;
     //
     // Location_Model_groupBox
     //
     this.Location_Model_groupBox.Controls.Add(this.Location_ModelZScale_label);
     this.Location_Model_groupBox.Controls.Add(this.Location_ModelYScale_label);
     this.Location_Model_groupBox.Controls.Add(this.Location_ModelXScale_label);
     this.Location_Model_groupBox.Controls.Add(this.Location_ModelRoll_label);
     this.Location_Model_groupBox.Controls.Add(this.Location_ModelTilt_label);
     this.Location_Model_groupBox.Controls.Add(this.Location_ModelHeading_label);
     this.Location_Model_groupBox.Controls.Add(this.Location_ModelZScale_comboBox);
     this.Location_Model_groupBox.Controls.Add(this.Location_ModelYScale_comboBox);
     this.Location_Model_groupBox.Controls.Add(this.Location_ModelXScale_comboBox);
     this.Location_Model_groupBox.Controls.Add(this.Location_ModelRoll_comboBox);
     this.Location_Model_groupBox.Controls.Add(this.Location_ModelTilt_comboBox);
     this.Location_Model_groupBox.Controls.Add(this.Location_ModelHeading_comboBox);
     this.Location_Model_groupBox.Enabled = false;
     this.Location_Model_groupBox.Location = new System.Drawing.Point(6, 199);
     this.Location_Model_groupBox.Name = "Location_Model_groupBox";
     this.Location_Model_groupBox.Size = new System.Drawing.Size(750, 111);
     this.Location_Model_groupBox.TabIndex = 0;
     this.Location_Model_groupBox.TabStop = false;
     this.Location_Model_groupBox.Text = "Model";
     //
     // Location_ModelZScale_label
     //
     this.Location_ModelZScale_label.AutoSize = true;
     this.Location_ModelZScale_label.Location = new System.Drawing.Point(426, 76);
     this.Location_ModelZScale_label.Name = "Location_ModelZScale_label";
     this.Location_ModelZScale_label.Size = new System.Drawing.Size(47, 13);
     this.Location_ModelZScale_label.TabIndex = 0;
     this.Location_ModelZScale_label.Text = "Z Scale:";
     //
     // Location_ModelYScale_label
     //
     this.Location_ModelYScale_label.AutoSize = true;
     this.Location_ModelYScale_label.Location = new System.Drawing.Point(426, 49);
     this.Location_ModelYScale_label.Name = "Location_ModelYScale_label";
     this.Location_ModelYScale_label.Size = new System.Drawing.Size(47, 13);
     this.Location_ModelYScale_label.TabIndex = 0;
     this.Location_ModelYScale_label.Text = "Y Scale:";
     //
     // Location_ModelXScale_label
     //
     this.Location_ModelXScale_label.AutoSize = true;
     this.Location_ModelXScale_label.Location = new System.Drawing.Point(426, 22);
     this.Location_ModelXScale_label.Name = "Location_ModelXScale_label";
     this.Location_ModelXScale_label.Size = new System.Drawing.Size(47, 13);
     this.Location_ModelXScale_label.TabIndex = 0;
     this.Location_ModelXScale_label.Text = "X Scale:";
     //
     // Location_ModelRoll_label
     //
     this.Location_ModelRoll_label.AutoSize = true;
     this.Location_ModelRoll_label.Location = new System.Drawing.Point(26, 76);
     this.Location_ModelRoll_label.Name = "Location_ModelRoll_label";
     this.Location_ModelRoll_label.Size = new System.Drawing.Size(28, 13);
     this.Location_ModelRoll_label.TabIndex = 0;
     this.Location_ModelRoll_label.Text = "Roll:";
     //
     // Location_ModelTilt_label
     //
     this.Location_ModelTilt_label.AutoSize = true;
     this.Location_ModelTilt_label.Location = new System.Drawing.Point(26, 49);
     this.Location_ModelTilt_label.Name = "Location_ModelTilt_label";
     this.Location_ModelTilt_label.Size = new System.Drawing.Size(24, 13);
     this.Location_ModelTilt_label.TabIndex = 0;
     this.Location_ModelTilt_label.Text = "Tilt:";
     //
     // Location_ModelHeading_label
     //
     this.Location_ModelHeading_label.AutoSize = true;
     this.Location_ModelHeading_label.Location = new System.Drawing.Point(26, 22);
     this.Location_ModelHeading_label.Name = "Location_ModelHeading_label";
     this.Location_ModelHeading_label.Size = new System.Drawing.Size(50, 13);
     this.Location_ModelHeading_label.TabIndex = 0;
     this.Location_ModelHeading_label.Text = "Heading:";
     //
     // Location_ModelZScale_comboBox
     //
     this.Location_ModelZScale_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Location_ModelZScale_comboBox.FormattingEnabled = true;
     this.Location_ModelZScale_comboBox.Location = new System.Drawing.Point(544, 73);
     this.Location_ModelZScale_comboBox.Name = "Location_ModelZScale_comboBox";
     this.Location_ModelZScale_comboBox.Size = new System.Drawing.Size(200, 21);
     this.Location_ModelZScale_comboBox.TabIndex = 19;
     //
     // Location_ModelYScale_comboBox
     //
     this.Location_ModelYScale_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Location_ModelYScale_comboBox.FormattingEnabled = true;
     this.Location_ModelYScale_comboBox.Location = new System.Drawing.Point(544, 46);
     this.Location_ModelYScale_comboBox.Name = "Location_ModelYScale_comboBox";
     this.Location_ModelYScale_comboBox.Size = new System.Drawing.Size(200, 21);
     this.Location_ModelYScale_comboBox.TabIndex = 18;
     //
     // Location_ModelXScale_comboBox
     //
     this.Location_ModelXScale_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Location_ModelXScale_comboBox.FormattingEnabled = true;
     this.Location_ModelXScale_comboBox.Location = new System.Drawing.Point(544, 19);
     this.Location_ModelXScale_comboBox.Name = "Location_ModelXScale_comboBox";
     this.Location_ModelXScale_comboBox.Size = new System.Drawing.Size(200, 21);
     this.Location_ModelXScale_comboBox.TabIndex = 17;
     //
     // Location_ModelRoll_comboBox
     //
     this.Location_ModelRoll_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Location_ModelRoll_comboBox.FormattingEnabled = true;
     this.Location_ModelRoll_comboBox.Location = new System.Drawing.Point(110, 73);
     this.Location_ModelRoll_comboBox.Name = "Location_ModelRoll_comboBox";
     this.Location_ModelRoll_comboBox.Size = new System.Drawing.Size(200, 21);
     this.Location_ModelRoll_comboBox.TabIndex = 8;
     //
     // Location_ModelTilt_comboBox
     //
     this.Location_ModelTilt_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Location_ModelTilt_comboBox.FormattingEnabled = true;
     this.Location_ModelTilt_comboBox.Location = new System.Drawing.Point(110, 46);
     this.Location_ModelTilt_comboBox.Name = "Location_ModelTilt_comboBox";
     this.Location_ModelTilt_comboBox.Size = new System.Drawing.Size(200, 21);
     this.Location_ModelTilt_comboBox.TabIndex = 7;
     //
     // Location_ModelHeading_comboBox
     //
     this.Location_ModelHeading_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Location_ModelHeading_comboBox.FormattingEnabled = true;
     this.Location_ModelHeading_comboBox.Location = new System.Drawing.Point(110, 19);
     this.Location_ModelHeading_comboBox.Name = "Location_ModelHeading_comboBox";
     this.Location_ModelHeading_comboBox.Size = new System.Drawing.Size(200, 21);
     this.Location_ModelHeading_comboBox.TabIndex = 14;
     //
     // Location_Coordinates_groupBox
     //
     this.Location_Coordinates_groupBox.Controls.Add(this.Location_AltitudeTessellate_checkBox);
     this.Location_Coordinates_groupBox.Controls.Add(this.Location_AltitudeExtrude_checkBox);
     this.Location_Coordinates_groupBox.Controls.Add(this.Location_Altitude_checkBox);
     this.Location_Coordinates_groupBox.Controls.Add(this.Location_AltitudeUnit_label);
     this.Location_Coordinates_groupBox.Controls.Add(this.Location_AltitudeMode_label);
     this.Location_Coordinates_groupBox.Controls.Add(this.Location_Field2_label);
     this.Location_Coordinates_groupBox.Controls.Add(this.Location_Field1_label);
     this.Location_Coordinates_groupBox.Controls.Add(this.Location_Format_label);
     this.Location_Coordinates_groupBox.Controls.Add(this.Location_AltitudeUnit_comboBox);
     this.Location_Coordinates_groupBox.Controls.Add(this.Location_AltitudeMode_comboBox);
     this.Location_Coordinates_groupBox.Controls.Add(this.Location_Altitude_comboBox);
     this.Location_Coordinates_groupBox.Controls.Add(this.Location_Field2_comboBox);
     this.Location_Coordinates_groupBox.Controls.Add(this.Location_Field1_comboBox);
     this.Location_Coordinates_groupBox.Controls.Add(this.Location_Format_comboBox);
     this.Location_Coordinates_groupBox.Location = new System.Drawing.Point(6, 6);
     this.Location_Coordinates_groupBox.Name = "Location_Coordinates_groupBox";
     this.Location_Coordinates_groupBox.Size = new System.Drawing.Size(414, 187);
     this.Location_Coordinates_groupBox.TabIndex = 0;
     this.Location_Coordinates_groupBox.TabStop = false;
     this.Location_Coordinates_groupBox.Text = "Coordinates";
     //
     // Location_AltitudeTessellate_checkBox
     //
     this.Location_AltitudeTessellate_checkBox.AutoSize = true;
     this.Location_AltitudeTessellate_checkBox.Checked = true;
     this.Location_AltitudeTessellate_checkBox.CheckState = System.Windows.Forms.CheckState.Checked;
     this.Location_AltitudeTessellate_checkBox.Enabled = false;
     this.Location_AltitudeTessellate_checkBox.Location = new System.Drawing.Point(320, 156);
     this.Location_AltitudeTessellate_checkBox.Name = "Location_AltitudeTessellate_checkBox";
     this.Location_AltitudeTessellate_checkBox.Size = new System.Drawing.Size(74, 17);
     this.Location_AltitudeTessellate_checkBox.TabIndex = 9;
     this.Location_AltitudeTessellate_checkBox.Text = "Tessellate";
     this.Location_AltitudeTessellate_checkBox.UseVisualStyleBackColor = true;
     //
     // Location_AltitudeExtrude_checkBox
     //
     this.Location_AltitudeExtrude_checkBox.AutoSize = true;
     this.Location_AltitudeExtrude_checkBox.Enabled = false;
     this.Location_AltitudeExtrude_checkBox.Location = new System.Drawing.Point(320, 129);
     this.Location_AltitudeExtrude_checkBox.Name = "Location_AltitudeExtrude_checkBox";
     this.Location_AltitudeExtrude_checkBox.Size = new System.Drawing.Size(62, 17);
     this.Location_AltitudeExtrude_checkBox.TabIndex = 8;
     this.Location_AltitudeExtrude_checkBox.Text = "Extrude";
     this.Location_AltitudeExtrude_checkBox.UseVisualStyleBackColor = true;
     //
     // Location_Altitude_checkBox
     //
     this.Location_Altitude_checkBox.AutoSize = true;
     this.Location_Altitude_checkBox.Location = new System.Drawing.Point(10, 102);
     this.Location_Altitude_checkBox.Name = "Location_Altitude_checkBox";
     this.Location_Altitude_checkBox.Size = new System.Drawing.Size(80, 17);
     this.Location_Altitude_checkBox.TabIndex = 4;
     this.Location_Altitude_checkBox.Text = "Altitude (Z):";
     this.Location_Altitude_checkBox.UseVisualStyleBackColor = true;
     this.Location_Altitude_checkBox.CheckedChanged += new System.EventHandler(this.Location_Altitude_checkBox_CheckedChanged);
     //
     // Location_AltitudeUnit_label
     //
     this.Location_AltitudeUnit_label.AutoSize = true;
     this.Location_AltitudeUnit_label.Enabled = false;
     this.Location_AltitudeUnit_label.Location = new System.Drawing.Point(26, 157);
     this.Location_AltitudeUnit_label.Name = "Location_AltitudeUnit_label";
     this.Location_AltitudeUnit_label.Size = new System.Drawing.Size(29, 13);
     this.Location_AltitudeUnit_label.TabIndex = 0;
     this.Location_AltitudeUnit_label.Text = "Unit:";
     //
     // Location_AltitudeMode_label
     //
     this.Location_AltitudeMode_label.AutoSize = true;
     this.Location_AltitudeMode_label.Enabled = false;
     this.Location_AltitudeMode_label.Location = new System.Drawing.Point(26, 130);
     this.Location_AltitudeMode_label.Name = "Location_AltitudeMode_label";
     this.Location_AltitudeMode_label.Size = new System.Drawing.Size(37, 13);
     this.Location_AltitudeMode_label.TabIndex = 0;
     this.Location_AltitudeMode_label.Text = "Mode:";
     //
     // Location_Field2_label
     //
     this.Location_Field2_label.AutoSize = true;
     this.Location_Field2_label.Location = new System.Drawing.Point(26, 76);
     this.Location_Field2_label.Name = "Location_Field2_label";
     this.Location_Field2_label.Size = new System.Drawing.Size(73, 13);
     this.Location_Field2_label.TabIndex = 0;
     this.Location_Field2_label.Text = "Longitude (X):";
     //
     // Location_Field1_label
     //
     this.Location_Field1_label.AutoSize = true;
     this.Location_Field1_label.Location = new System.Drawing.Point(26, 49);
     this.Location_Field1_label.Name = "Location_Field1_label";
     this.Location_Field1_label.Size = new System.Drawing.Size(64, 13);
     this.Location_Field1_label.TabIndex = 0;
     this.Location_Field1_label.Text = "Latitude (Y):";
     //
     // Location_Format_label
     //
     this.Location_Format_label.AutoSize = true;
     this.Location_Format_label.Location = new System.Drawing.Point(26, 22);
     this.Location_Format_label.Name = "Location_Format_label";
     this.Location_Format_label.Size = new System.Drawing.Size(42, 13);
     this.Location_Format_label.TabIndex = 0;
     this.Location_Format_label.Text = "Format:";
     //
     // Location_AltitudeUnit_comboBox
     //
     this.Location_AltitudeUnit_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Location_AltitudeUnit_comboBox.Enabled = false;
     this.Location_AltitudeUnit_comboBox.FormattingEnabled = true;
     this.Location_AltitudeUnit_comboBox.Items.AddRange(new object[] {
     "Meters",
     "Kilometers",
     "Feet",
     "Yards",
     "Statute Miles",
     "Nautical Miles",
     "Fathoms",
     "Furlongs",
     "Leagues"});
     this.Location_AltitudeUnit_comboBox.Location = new System.Drawing.Point(110, 154);
     this.Location_AltitudeUnit_comboBox.Name = "Location_AltitudeUnit_comboBox";
     this.Location_AltitudeUnit_comboBox.Size = new System.Drawing.Size(121, 21);
     this.Location_AltitudeUnit_comboBox.TabIndex = 7;
     //
     // Location_AltitudeMode_comboBox
     //
     this.Location_AltitudeMode_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Location_AltitudeMode_comboBox.Enabled = false;
     this.Location_AltitudeMode_comboBox.FormattingEnabled = true;
     this.Location_AltitudeMode_comboBox.Items.AddRange(new object[] {
     "clampToGround",
     "relativeToGround",
     "absolute",
     "clampToSeaFloor",
     "relativeToSeaFloor"});
     this.Location_AltitudeMode_comboBox.Location = new System.Drawing.Point(110, 127);
     this.Location_AltitudeMode_comboBox.Name = "Location_AltitudeMode_comboBox";
     this.Location_AltitudeMode_comboBox.Size = new System.Drawing.Size(160, 21);
     this.Location_AltitudeMode_comboBox.TabIndex = 6;
     this.Location_AltitudeMode_comboBox.SelectedIndexChanged += new System.EventHandler(this.Location_AltitudeMode_comboBox_SelectedIndexChanged);
     //
     // Location_Altitude_comboBox
     //
     this.Location_Altitude_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Location_Altitude_comboBox.Enabled = false;
     this.Location_Altitude_comboBox.FormattingEnabled = true;
     this.Location_Altitude_comboBox.Location = new System.Drawing.Point(110, 100);
     this.Location_Altitude_comboBox.Name = "Location_Altitude_comboBox";
     this.Location_Altitude_comboBox.Size = new System.Drawing.Size(200, 21);
     this.Location_Altitude_comboBox.TabIndex = 5;
     //
     // Location_Field2_comboBox
     //
     this.Location_Field2_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Location_Field2_comboBox.FormattingEnabled = true;
     this.Location_Field2_comboBox.Location = new System.Drawing.Point(110, 73);
     this.Location_Field2_comboBox.Name = "Location_Field2_comboBox";
     this.Location_Field2_comboBox.Size = new System.Drawing.Size(200, 21);
     this.Location_Field2_comboBox.TabIndex = 3;
     this.Location_Field2_comboBox.SelectedIndexChanged += new System.EventHandler(this.Location_Field2_comboBox_SelectedIndexChanged);
     //
     // Location_Field1_comboBox
     //
     this.Location_Field1_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Location_Field1_comboBox.FormattingEnabled = true;
     this.Location_Field1_comboBox.Location = new System.Drawing.Point(110, 46);
     this.Location_Field1_comboBox.Name = "Location_Field1_comboBox";
     this.Location_Field1_comboBox.Size = new System.Drawing.Size(200, 21);
     this.Location_Field1_comboBox.TabIndex = 2;
     this.Location_Field1_comboBox.SelectedIndexChanged += new System.EventHandler(this.Location_Field1_comboBox_SelectedIndexChanged);
     //
     // Location_Format_comboBox
     //
     this.Location_Format_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Location_Format_comboBox.FormattingEnabled = true;
     this.Location_Format_comboBox.Items.AddRange(new object[] {
     "Decimal Degrees",
     "Degrees Decimal Minutes",
     "Degrees Minutes Seconds",
     "Military Grid Reference System"});
     this.Location_Format_comboBox.Location = new System.Drawing.Point(110, 19);
     this.Location_Format_comboBox.Name = "Location_Format_comboBox";
     this.Location_Format_comboBox.Size = new System.Drawing.Size(200, 21);
     this.Location_Format_comboBox.TabIndex = 1;
     this.Location_Format_comboBox.SelectedIndexChanged += new System.EventHandler(this.Location_Format_comboBox_SelectedIndexChanged);
     //
     // tabPage_DateTime
     //
     this.tabPage_DateTime.Controls.Add(this.DateTime_Fields_groupBox);
     this.tabPage_DateTime.Controls.Add(this.DateTime_Type_groupBox);
     this.tabPage_DateTime.Location = new System.Drawing.Point(4, 22);
     this.tabPage_DateTime.Name = "tabPage_DateTime";
     this.tabPage_DateTime.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage_DateTime.Size = new System.Drawing.Size(762, 316);
     this.tabPage_DateTime.TabIndex = 2;
     this.tabPage_DateTime.Text = "Date/Time";
     this.tabPage_DateTime.UseVisualStyleBackColor = true;
     //
     // DateTime_Fields_groupBox
     //
     this.DateTime_Fields_groupBox.Controls.Add(this.DateTime_End_label);
     this.DateTime_Fields_groupBox.Controls.Add(this.DateTime_Begin_label);
     this.DateTime_Fields_groupBox.Controls.Add(this.DateTime_Format2_label);
     this.DateTime_Fields_groupBox.Controls.Add(this.DateTime_Format1_label);
     this.DateTime_Fields_groupBox.Controls.Add(this.DateTime_Field4_label);
     this.DateTime_Fields_groupBox.Controls.Add(this.DateTime_Field3_label);
     this.DateTime_Fields_groupBox.Controls.Add(this.DateTime_Field2_label);
     this.DateTime_Fields_groupBox.Controls.Add(this.DateTime_Field1_label);
     this.DateTime_Fields_groupBox.Controls.Add(this.DateTime_Format2_comboBox);
     this.DateTime_Fields_groupBox.Controls.Add(this.DateTime_Field4_comboBox);
     this.DateTime_Fields_groupBox.Controls.Add(this.DateTime_Field3_comboBox);
     this.DateTime_Fields_groupBox.Controls.Add(this.DateTime_Format1_comboBox);
     this.DateTime_Fields_groupBox.Controls.Add(this.DateTime_Field2_comboBox);
     this.DateTime_Fields_groupBox.Controls.Add(this.DateTime_Field1_comboBox);
     this.DateTime_Fields_groupBox.Enabled = false;
     this.DateTime_Fields_groupBox.Location = new System.Drawing.Point(6, 116);
     this.DateTime_Fields_groupBox.Name = "DateTime_Fields_groupBox";
     this.DateTime_Fields_groupBox.Size = new System.Drawing.Size(750, 194);
     this.DateTime_Fields_groupBox.TabIndex = 4;
     this.DateTime_Fields_groupBox.TabStop = false;
     this.DateTime_Fields_groupBox.Text = "Fields";
     //
     // DateTime_End_label
     //
     this.DateTime_End_label.AutoSize = true;
     this.DateTime_End_label.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DateTime_End_label.Location = new System.Drawing.Point(20, 108);
     this.DateTime_End_label.Name = "DateTime_End_label";
     this.DateTime_End_label.Size = new System.Drawing.Size(36, 17);
     this.DateTime_End_label.TabIndex = 13;
     this.DateTime_End_label.Text = "End";
     this.DateTime_End_label.Visible = false;
     //
     // DateTime_Begin_label
     //
     this.DateTime_Begin_label.AutoSize = true;
     this.DateTime_Begin_label.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DateTime_Begin_label.Location = new System.Drawing.Point(20, 20);
     this.DateTime_Begin_label.Name = "DateTime_Begin_label";
     this.DateTime_Begin_label.Size = new System.Drawing.Size(49, 17);
     this.DateTime_Begin_label.TabIndex = 12;
     this.DateTime_Begin_label.Text = "Begin";
     this.DateTime_Begin_label.Visible = false;
     //
     // DateTime_Format2_label
     //
     this.DateTime_Format2_label.AutoSize = true;
     this.DateTime_Format2_label.Enabled = false;
     this.DateTime_Format2_label.Location = new System.Drawing.Point(475, 110);
     this.DateTime_Format2_label.Name = "DateTime_Format2_label";
     this.DateTime_Format2_label.Size = new System.Drawing.Size(42, 13);
     this.DateTime_Format2_label.TabIndex = 11;
     this.DateTime_Format2_label.Text = "Format:";
     //
     // DateTime_Format1_label
     //
     this.DateTime_Format1_label.AutoSize = true;
     this.DateTime_Format1_label.Location = new System.Drawing.Point(475, 22);
     this.DateTime_Format1_label.Name = "DateTime_Format1_label";
     this.DateTime_Format1_label.Size = new System.Drawing.Size(42, 13);
     this.DateTime_Format1_label.TabIndex = 10;
     this.DateTime_Format1_label.Text = "Format:";
     //
     // DateTime_Field4_label
     //
     this.DateTime_Field4_label.AutoSize = true;
     this.DateTime_Field4_label.Enabled = false;
     this.DateTime_Field4_label.Location = new System.Drawing.Point(98, 133);
     this.DateTime_Field4_label.Name = "DateTime_Field4_label";
     this.DateTime_Field4_label.Size = new System.Drawing.Size(33, 13);
     this.DateTime_Field4_label.TabIndex = 9;
     this.DateTime_Field4_label.Text = "Time:";
     this.DateTime_Field4_label.Visible = false;
     //
     // DateTime_Field3_label
     //
     this.DateTime_Field3_label.AutoSize = true;
     this.DateTime_Field3_label.Enabled = false;
     this.DateTime_Field3_label.Location = new System.Drawing.Point(98, 106);
     this.DateTime_Field3_label.Name = "DateTime_Field3_label";
     this.DateTime_Field3_label.Size = new System.Drawing.Size(33, 13);
     this.DateTime_Field3_label.TabIndex = 8;
     this.DateTime_Field3_label.Text = "Date:";
     //
     // DateTime_Field2_label
     //
     this.DateTime_Field2_label.AutoSize = true;
     this.DateTime_Field2_label.Enabled = false;
     this.DateTime_Field2_label.Location = new System.Drawing.Point(98, 45);
     this.DateTime_Field2_label.Name = "DateTime_Field2_label";
     this.DateTime_Field2_label.Size = new System.Drawing.Size(33, 13);
     this.DateTime_Field2_label.TabIndex = 7;
     this.DateTime_Field2_label.Text = "Time:";
     this.DateTime_Field2_label.Visible = false;
     //
     // DateTime_Field1_label
     //
     this.DateTime_Field1_label.AutoSize = true;
     this.DateTime_Field1_label.Enabled = false;
     this.DateTime_Field1_label.Location = new System.Drawing.Point(98, 22);
     this.DateTime_Field1_label.Name = "DateTime_Field1_label";
     this.DateTime_Field1_label.Size = new System.Drawing.Size(33, 13);
     this.DateTime_Field1_label.TabIndex = 6;
     this.DateTime_Field1_label.Text = "Date:";
     //
     // DateTime_Format2_comboBox
     //
     this.DateTime_Format2_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.DateTime_Format2_comboBox.Enabled = false;
     this.DateTime_Format2_comboBox.FormattingEnabled = true;
     this.DateTime_Format2_comboBox.Items.AddRange(new object[] {
     "yyyy-MM-dd HH:mm:ss (1 Field)",
     "yyyy-MM-dd HH:mm:ss (2 Fields)",
     "yyyy-MM-dd",
     "yyyy-MM",
     "yyyy"});
     this.DateTime_Format2_comboBox.Location = new System.Drawing.Point(544, 107);
     this.DateTime_Format2_comboBox.Name = "DateTime_Format2_comboBox";
     this.DateTime_Format2_comboBox.Size = new System.Drawing.Size(200, 21);
     this.DateTime_Format2_comboBox.TabIndex = 8;
     this.DateTime_Format2_comboBox.SelectedIndexChanged += new System.EventHandler(this.DateTime_Format2_comboBox_SelectedIndexChanged);
     //
     // DateTime_Field4_comboBox
     //
     this.DateTime_Field4_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.DateTime_Field4_comboBox.Enabled = false;
     this.DateTime_Field4_comboBox.FormattingEnabled = true;
     this.DateTime_Field4_comboBox.Location = new System.Drawing.Point(166, 134);
     this.DateTime_Field4_comboBox.Name = "DateTime_Field4_comboBox";
     this.DateTime_Field4_comboBox.Size = new System.Drawing.Size(200, 21);
     this.DateTime_Field4_comboBox.TabIndex = 9;
     this.DateTime_Field4_comboBox.Visible = false;
     //
     // DateTime_Field3_comboBox
     //
     this.DateTime_Field3_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.DateTime_Field3_comboBox.Enabled = false;
     this.DateTime_Field3_comboBox.FormattingEnabled = true;
     this.DateTime_Field3_comboBox.Location = new System.Drawing.Point(166, 107);
     this.DateTime_Field3_comboBox.Name = "DateTime_Field3_comboBox";
     this.DateTime_Field3_comboBox.Size = new System.Drawing.Size(200, 21);
     this.DateTime_Field3_comboBox.TabIndex = 7;
     //
     // DateTime_Format1_comboBox
     //
     this.DateTime_Format1_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.DateTime_Format1_comboBox.Enabled = false;
     this.DateTime_Format1_comboBox.FormattingEnabled = true;
     this.DateTime_Format1_comboBox.Items.AddRange(new object[] {
     "yyyy-MM-dd HH:mm:ss (1 Field)",
     "yyyy-MM-dd HH:mm:ss (2 Fields)",
     "yyyy-MM-dd",
     "yyyy-MM",
     "yyyy"});
     this.DateTime_Format1_comboBox.Location = new System.Drawing.Point(544, 19);
     this.DateTime_Format1_comboBox.Name = "DateTime_Format1_comboBox";
     this.DateTime_Format1_comboBox.Size = new System.Drawing.Size(200, 21);
     this.DateTime_Format1_comboBox.TabIndex = 5;
     this.DateTime_Format1_comboBox.SelectedIndexChanged += new System.EventHandler(this.DateTime_Format1_comboBox_SelectedIndexChanged);
     //
     // DateTime_Field2_comboBox
     //
     this.DateTime_Field2_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.DateTime_Field2_comboBox.Enabled = false;
     this.DateTime_Field2_comboBox.FormattingEnabled = true;
     this.DateTime_Field2_comboBox.Location = new System.Drawing.Point(166, 46);
     this.DateTime_Field2_comboBox.Name = "DateTime_Field2_comboBox";
     this.DateTime_Field2_comboBox.Size = new System.Drawing.Size(200, 21);
     this.DateTime_Field2_comboBox.TabIndex = 6;
     this.DateTime_Field2_comboBox.Visible = false;
     //
     // DateTime_Field1_comboBox
     //
     this.DateTime_Field1_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.DateTime_Field1_comboBox.Enabled = false;
     this.DateTime_Field1_comboBox.FormattingEnabled = true;
     this.DateTime_Field1_comboBox.Location = new System.Drawing.Point(166, 19);
     this.DateTime_Field1_comboBox.Name = "DateTime_Field1_comboBox";
     this.DateTime_Field1_comboBox.Size = new System.Drawing.Size(200, 21);
     this.DateTime_Field1_comboBox.TabIndex = 4;
     //
     // DateTime_Type_groupBox
     //
     this.DateTime_Type_groupBox.Controls.Add(this.DateTime_None_radioButton);
     this.DateTime_Type_groupBox.Controls.Add(this.DateTime_TimeStamp_radioButton);
     this.DateTime_Type_groupBox.Controls.Add(this.DateTime_TimeSpan_radioButton);
     this.DateTime_Type_groupBox.Location = new System.Drawing.Point(6, 15);
     this.DateTime_Type_groupBox.Name = "DateTime_Type_groupBox";
     this.DateTime_Type_groupBox.Size = new System.Drawing.Size(750, 95);
     this.DateTime_Type_groupBox.TabIndex = 3;
     this.DateTime_Type_groupBox.TabStop = false;
     this.DateTime_Type_groupBox.Text = "Type";
     //
     // DateTime_None_radioButton
     //
     this.DateTime_None_radioButton.AutoSize = true;
     this.DateTime_None_radioButton.Checked = true;
     this.DateTime_None_radioButton.Location = new System.Drawing.Point(122, 43);
     this.DateTime_None_radioButton.Name = "DateTime_None_radioButton";
     this.DateTime_None_radioButton.Size = new System.Drawing.Size(133, 17);
     this.DateTime_None_radioButton.TabIndex = 1;
     this.DateTime_None_radioButton.TabStop = true;
     this.DateTime_None_radioButton.Text = "No Date or Time Fields";
     this.DateTime_None_radioButton.UseVisualStyleBackColor = true;
     this.DateTime_None_radioButton.CheckedChanged += new System.EventHandler(this.DateTime_None_radioButton_CheckedChanged);
     //
     // DateTime_TimeStamp_radioButton
     //
     this.DateTime_TimeStamp_radioButton.AutoSize = true;
     this.DateTime_TimeStamp_radioButton.Location = new System.Drawing.Point(339, 43);
     this.DateTime_TimeStamp_radioButton.Name = "DateTime_TimeStamp_radioButton";
     this.DateTime_TimeStamp_radioButton.Size = new System.Drawing.Size(81, 17);
     this.DateTime_TimeStamp_radioButton.TabIndex = 2;
     this.DateTime_TimeStamp_radioButton.Text = "Time Stamp";
     this.DateTime_TimeStamp_radioButton.UseVisualStyleBackColor = true;
     //
     // DateTime_TimeSpan_radioButton
     //
     this.DateTime_TimeSpan_radioButton.AutoSize = true;
     this.DateTime_TimeSpan_radioButton.Location = new System.Drawing.Point(514, 43);
     this.DateTime_TimeSpan_radioButton.Name = "DateTime_TimeSpan_radioButton";
     this.DateTime_TimeSpan_radioButton.Size = new System.Drawing.Size(76, 17);
     this.DateTime_TimeSpan_radioButton.TabIndex = 3;
     this.DateTime_TimeSpan_radioButton.Text = "Time Span";
     this.DateTime_TimeSpan_radioButton.UseVisualStyleBackColor = true;
     this.DateTime_TimeSpan_radioButton.CheckedChanged += new System.EventHandler(this.DateTime_TimeSpan_radioButton_CheckedChanged);
     //
     // tabPage_Description
     //
     this.tabPage_Description.Controls.Add(this.Description_MoveDown_button);
     this.tabPage_Description.Controls.Add(this.Description_MoveUp_button);
     this.tabPage_Description.Controls.Add(this.Description_SwapToColumns_button);
     this.tabPage_Description.Controls.Add(this.Description_SwapToTable_button);
     this.tabPage_Description.Controls.Add(this.Description_Table_label);
     this.tabPage_Description.Controls.Add(this.Description_Columns_label);
     this.tabPage_Description.Controls.Add(this.Description_MoveToBottom_button);
     this.tabPage_Description.Controls.Add(this.Description_MoveToTop_button);
     this.tabPage_Description.Controls.Add(this.Description_RemoveAll_button);
     this.tabPage_Description.Controls.Add(this.Description_AddAll_button);
     this.tabPage_Description.Controls.Add(this.Description_Table_listBox);
     this.tabPage_Description.Controls.Add(this.Description_Columns_listBox);
     this.tabPage_Description.Location = new System.Drawing.Point(4, 22);
     this.tabPage_Description.Name = "tabPage_Description";
     this.tabPage_Description.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage_Description.Size = new System.Drawing.Size(762, 316);
     this.tabPage_Description.TabIndex = 3;
     this.tabPage_Description.Text = "Description";
     this.tabPage_Description.UseVisualStyleBackColor = true;
     //
     // Description_MoveDown_button
     //
     this.Description_MoveDown_button.Font = new System.Drawing.Font("Wingdings 3", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(2)));
     this.Description_MoveDown_button.Location = new System.Drawing.Point(694, 171);
     this.Description_MoveDown_button.Name = "Description_MoveDown_button";
     this.Description_MoveDown_button.Size = new System.Drawing.Size(25, 30);
     this.Description_MoveDown_button.TabIndex = 9;
     this.Description_MoveDown_button.Text = "È";
     this.Description_MoveDown_button.UseVisualStyleBackColor = true;
     this.Description_MoveDown_button.Click += new System.EventHandler(this.Description_MoveDown_button_Click);
     //
     // Description_MoveUp_button
     //
     this.Description_MoveUp_button.Font = new System.Drawing.Font("Wingdings 3", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(2)));
     this.Description_MoveUp_button.Location = new System.Drawing.Point(694, 135);
     this.Description_MoveUp_button.Name = "Description_MoveUp_button";
     this.Description_MoveUp_button.Size = new System.Drawing.Size(25, 30);
     this.Description_MoveUp_button.TabIndex = 8;
     this.Description_MoveUp_button.Text = "Ç";
     this.Description_MoveUp_button.UseVisualStyleBackColor = true;
     this.Description_MoveUp_button.Click += new System.EventHandler(this.Description_MoveUp_button_Click);
     //
     // Description_SwapToColumns_button
     //
     this.Description_SwapToColumns_button.Font = new System.Drawing.Font("Wingdings 3", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(2)));
     this.Description_SwapToColumns_button.Location = new System.Drawing.Point(297, 153);
     this.Description_SwapToColumns_button.Name = "Description_SwapToColumns_button";
     this.Description_SwapToColumns_button.Size = new System.Drawing.Size(30, 25);
     this.Description_SwapToColumns_button.TabIndex = 3;
     this.Description_SwapToColumns_button.Text = "Å";
     this.Description_SwapToColumns_button.UseVisualStyleBackColor = true;
     this.Description_SwapToColumns_button.Click += new System.EventHandler(this.Description_SwapToColumns_button_Click);
     //
     // Description_SwapToTable_button
     //
     this.Description_SwapToTable_button.Font = new System.Drawing.Font("Wingdings 3", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(2)));
     this.Description_SwapToTable_button.Location = new System.Drawing.Point(333, 153);
     this.Description_SwapToTable_button.Name = "Description_SwapToTable_button";
     this.Description_SwapToTable_button.Size = new System.Drawing.Size(30, 25);
     this.Description_SwapToTable_button.TabIndex = 4;
     this.Description_SwapToTable_button.Text = "Æ";
     this.Description_SwapToTable_button.UseVisualStyleBackColor = true;
     this.Description_SwapToTable_button.Click += new System.EventHandler(this.Description_SwapToTable_button_Click);
     //
     // Description_Table_label
     //
     this.Description_Table_label.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
     this.Description_Table_label.AutoSize = true;
     this.Description_Table_label.Location = new System.Drawing.Point(502, 2);
     this.Description_Table_label.Name = "Description_Table_label";
     this.Description_Table_label.Size = new System.Drawing.Size(34, 13);
     this.Description_Table_label.TabIndex = 13;
     this.Description_Table_label.Text = "Table";
     //
     // Description_Columns_label
     //
     this.Description_Columns_label.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
     this.Description_Columns_label.AutoSize = true;
     this.Description_Columns_label.Location = new System.Drawing.Point(118, 3);
     this.Description_Columns_label.Name = "Description_Columns_label";
     this.Description_Columns_label.Size = new System.Drawing.Size(47, 13);
     this.Description_Columns_label.TabIndex = 12;
     this.Description_Columns_label.Text = "Columns";
     //
     // Description_MoveToBottom_button
     //
     this.Description_MoveToBottom_button.Location = new System.Drawing.Point(659, 287);
     this.Description_MoveToBottom_button.Name = "Description_MoveToBottom_button";
     this.Description_MoveToBottom_button.Size = new System.Drawing.Size(95, 23);
     this.Description_MoveToBottom_button.TabIndex = 10;
     this.Description_MoveToBottom_button.Text = "Move to Bottom";
     this.Description_MoveToBottom_button.UseVisualStyleBackColor = true;
     this.Description_MoveToBottom_button.Click += new System.EventHandler(this.Description_MoveToBottom_button_Click);
     //
     // Description_MoveToTop_button
     //
     this.Description_MoveToTop_button.Location = new System.Drawing.Point(659, 20);
     this.Description_MoveToTop_button.Name = "Description_MoveToTop_button";
     this.Description_MoveToTop_button.Size = new System.Drawing.Size(95, 23);
     this.Description_MoveToTop_button.TabIndex = 7;
     this.Description_MoveToTop_button.Text = "Move to Top";
     this.Description_MoveToTop_button.UseVisualStyleBackColor = true;
     this.Description_MoveToTop_button.Click += new System.EventHandler(this.Description_MoveToTop_button_Click);
     //
     // Description_RemoveAll_button
     //
     this.Description_RemoveAll_button.Location = new System.Drawing.Point(282, 287);
     this.Description_RemoveAll_button.Name = "Description_RemoveAll_button";
     this.Description_RemoveAll_button.Size = new System.Drawing.Size(95, 23);
     this.Description_RemoveAll_button.TabIndex = 5;
     this.Description_RemoveAll_button.Text = "<< Remove All";
     this.Description_RemoveAll_button.UseVisualStyleBackColor = true;
     this.Description_RemoveAll_button.Click += new System.EventHandler(this.Description_RemoveAll_button_Click);
     //
     // Description_AddAll_button
     //
     this.Description_AddAll_button.Location = new System.Drawing.Point(282, 20);
     this.Description_AddAll_button.Name = "Description_AddAll_button";
     this.Description_AddAll_button.Size = new System.Drawing.Size(95, 23);
     this.Description_AddAll_button.TabIndex = 2;
     this.Description_AddAll_button.Text = "Add All >>";
     this.Description_AddAll_button.UseVisualStyleBackColor = true;
     this.Description_AddAll_button.Click += new System.EventHandler(this.Description_AddAll_button_Click);
     //
     // Description_Table_listBox
     //
     this.Description_Table_listBox.FormattingEnabled = true;
     this.Description_Table_listBox.Location = new System.Drawing.Point(383, 20);
     this.Description_Table_listBox.Name = "Description_Table_listBox";
     this.Description_Table_listBox.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.Description_Table_listBox.Size = new System.Drawing.Size(270, 290);
     this.Description_Table_listBox.TabIndex = 6;
     //
     // Description_Columns_listBox
     //
     this.Description_Columns_listBox.FormattingEnabled = true;
     this.Description_Columns_listBox.Location = new System.Drawing.Point(6, 20);
     this.Description_Columns_listBox.Name = "Description_Columns_listBox";
     this.Description_Columns_listBox.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.Description_Columns_listBox.Size = new System.Drawing.Size(270, 290);
     this.Description_Columns_listBox.TabIndex = 1;
     //
     // tabPage_Folders
     //
     this.tabPage_Folders.Controls.Add(this.Folders_Folders_treeView);
     this.tabPage_Folders.Controls.Add(this.Folders_MoveDown_button);
     this.tabPage_Folders.Controls.Add(this.Folders_MoveUp_button);
     this.tabPage_Folders.Controls.Add(this.Folders_SwapToColumns_button);
     this.tabPage_Folders.Controls.Add(this.Folders_SwapToFolders_button);
     this.tabPage_Folders.Controls.Add(this.Folders_Folders_label);
     this.tabPage_Folders.Controls.Add(this.Folders_Columns_label);
     this.tabPage_Folders.Controls.Add(this.Folders_MoveToBottom_button);
     this.tabPage_Folders.Controls.Add(this.Folders_MoveToTop_button);
     this.tabPage_Folders.Controls.Add(this.Folders_RemoveAll_button);
     this.tabPage_Folders.Controls.Add(this.Folders_AddAll_button);
     this.tabPage_Folders.Controls.Add(this.Folders_Columns_listBox);
     this.tabPage_Folders.Location = new System.Drawing.Point(4, 22);
     this.tabPage_Folders.Name = "tabPage_Folders";
     this.tabPage_Folders.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage_Folders.Size = new System.Drawing.Size(762, 316);
     this.tabPage_Folders.TabIndex = 6;
     this.tabPage_Folders.Text = "Folders";
     this.tabPage_Folders.UseVisualStyleBackColor = true;
     //
     // Folders_Folders_treeView
     //
     this.Folders_Folders_treeView.FullRowSelect = true;
     this.Folders_Folders_treeView.Indent = 8;
     this.Folders_Folders_treeView.Location = new System.Drawing.Point(383, 20);
     this.Folders_Folders_treeView.Name = "Folders_Folders_treeView";
     this.Folders_Folders_treeView.ShowPlusMinus = false;
     this.Folders_Folders_treeView.ShowRootLines = false;
     this.Folders_Folders_treeView.Size = new System.Drawing.Size(270, 290);
     this.Folders_Folders_treeView.TabIndex = 6;
     //
     // Folders_MoveDown_button
     //
     this.Folders_MoveDown_button.Font = new System.Drawing.Font("Wingdings 3", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(2)));
     this.Folders_MoveDown_button.Location = new System.Drawing.Point(694, 171);
     this.Folders_MoveDown_button.Name = "Folders_MoveDown_button";
     this.Folders_MoveDown_button.Size = new System.Drawing.Size(25, 30);
     this.Folders_MoveDown_button.TabIndex = 9;
     this.Folders_MoveDown_button.Text = "È";
     this.Folders_MoveDown_button.UseVisualStyleBackColor = true;
     this.Folders_MoveDown_button.Click += new System.EventHandler(this.Folders_MoveDown_button_Click);
     //
     // Folders_MoveUp_button
     //
     this.Folders_MoveUp_button.Font = new System.Drawing.Font("Wingdings 3", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(2)));
     this.Folders_MoveUp_button.Location = new System.Drawing.Point(694, 135);
     this.Folders_MoveUp_button.Name = "Folders_MoveUp_button";
     this.Folders_MoveUp_button.Size = new System.Drawing.Size(25, 30);
     this.Folders_MoveUp_button.TabIndex = 8;
     this.Folders_MoveUp_button.Text = "Ç";
     this.Folders_MoveUp_button.UseVisualStyleBackColor = true;
     this.Folders_MoveUp_button.Click += new System.EventHandler(this.Folders_MoveUp_button_Click);
     //
     // Folders_SwapToColumns_button
     //
     this.Folders_SwapToColumns_button.Font = new System.Drawing.Font("Wingdings 3", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(2)));
     this.Folders_SwapToColumns_button.Location = new System.Drawing.Point(297, 153);
     this.Folders_SwapToColumns_button.Name = "Folders_SwapToColumns_button";
     this.Folders_SwapToColumns_button.Size = new System.Drawing.Size(30, 25);
     this.Folders_SwapToColumns_button.TabIndex = 3;
     this.Folders_SwapToColumns_button.Text = "Å";
     this.Folders_SwapToColumns_button.UseVisualStyleBackColor = true;
     this.Folders_SwapToColumns_button.Click += new System.EventHandler(this.Folders_SwapToColumns_button_Click);
     //
     // Folders_SwapToFolders_button
     //
     this.Folders_SwapToFolders_button.Font = new System.Drawing.Font("Wingdings 3", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(2)));
     this.Folders_SwapToFolders_button.Location = new System.Drawing.Point(333, 153);
     this.Folders_SwapToFolders_button.Name = "Folders_SwapToFolders_button";
     this.Folders_SwapToFolders_button.Size = new System.Drawing.Size(30, 25);
     this.Folders_SwapToFolders_button.TabIndex = 4;
     this.Folders_SwapToFolders_button.Text = "Æ";
     this.Folders_SwapToFolders_button.UseVisualStyleBackColor = true;
     this.Folders_SwapToFolders_button.Click += new System.EventHandler(this.Folders_SwapToFolders_button_Click);
     //
     // Folders_Folders_label
     //
     this.Folders_Folders_label.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
     this.Folders_Folders_label.AutoSize = true;
     this.Folders_Folders_label.Location = new System.Drawing.Point(498, 3);
     this.Folders_Folders_label.Name = "Folders_Folders_label";
     this.Folders_Folders_label.Size = new System.Drawing.Size(41, 13);
     this.Folders_Folders_label.TabIndex = 13;
     this.Folders_Folders_label.Text = "Folders";
     //
     // Folders_Columns_label
     //
     this.Folders_Columns_label.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
     this.Folders_Columns_label.AutoSize = true;
     this.Folders_Columns_label.Location = new System.Drawing.Point(118, 3);
     this.Folders_Columns_label.Name = "Folders_Columns_label";
     this.Folders_Columns_label.Size = new System.Drawing.Size(47, 13);
     this.Folders_Columns_label.TabIndex = 12;
     this.Folders_Columns_label.Text = "Columns";
     //
     // Folders_MoveToBottom_button
     //
     this.Folders_MoveToBottom_button.Location = new System.Drawing.Point(659, 287);
     this.Folders_MoveToBottom_button.Name = "Folders_MoveToBottom_button";
     this.Folders_MoveToBottom_button.Size = new System.Drawing.Size(95, 23);
     this.Folders_MoveToBottom_button.TabIndex = 10;
     this.Folders_MoveToBottom_button.Text = "Move to Bottom";
     this.Folders_MoveToBottom_button.UseVisualStyleBackColor = true;
     this.Folders_MoveToBottom_button.Click += new System.EventHandler(this.Folders_MoveToBottom_button_Click);
     //
     // Folders_MoveToTop_button
     //
     this.Folders_MoveToTop_button.Location = new System.Drawing.Point(659, 20);
     this.Folders_MoveToTop_button.Name = "Folders_MoveToTop_button";
     this.Folders_MoveToTop_button.Size = new System.Drawing.Size(95, 23);
     this.Folders_MoveToTop_button.TabIndex = 7;
     this.Folders_MoveToTop_button.Text = "Move to Top";
     this.Folders_MoveToTop_button.UseVisualStyleBackColor = true;
     this.Folders_MoveToTop_button.Click += new System.EventHandler(this.Folders_MoveToTop_button_Click);
     //
     // Folders_RemoveAll_button
     //
     this.Folders_RemoveAll_button.Location = new System.Drawing.Point(282, 287);
     this.Folders_RemoveAll_button.Name = "Folders_RemoveAll_button";
     this.Folders_RemoveAll_button.Size = new System.Drawing.Size(95, 23);
     this.Folders_RemoveAll_button.TabIndex = 5;
     this.Folders_RemoveAll_button.Text = "<< Remove All";
     this.Folders_RemoveAll_button.UseVisualStyleBackColor = true;
     this.Folders_RemoveAll_button.Click += new System.EventHandler(this.Folders_RemoveAll_button_Click);
     //
     // Folders_AddAll_button
     //
     this.Folders_AddAll_button.Location = new System.Drawing.Point(282, 20);
     this.Folders_AddAll_button.Name = "Folders_AddAll_button";
     this.Folders_AddAll_button.Size = new System.Drawing.Size(95, 23);
     this.Folders_AddAll_button.TabIndex = 2;
     this.Folders_AddAll_button.Text = "Add All >>";
     this.Folders_AddAll_button.UseVisualStyleBackColor = true;
     this.Folders_AddAll_button.Click += new System.EventHandler(this.Folders_AddAll_button_Click);
     //
     // Folders_Columns_listBox
     //
     this.Folders_Columns_listBox.FormattingEnabled = true;
     this.Folders_Columns_listBox.Location = new System.Drawing.Point(6, 20);
     this.Folders_Columns_listBox.Name = "Folders_Columns_listBox";
     this.Folders_Columns_listBox.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.Folders_Columns_listBox.Size = new System.Drawing.Size(270, 290);
     this.Folders_Columns_listBox.TabIndex = 1;
     //
     // tabPage_Icons
     //
     this.tabPage_Icons.Controls.Add(this.Icons_NoIcon_button);
     this.tabPage_Icons.Controls.Add(this.Icons_ClearCustomIcons_button);
     this.tabPage_Icons.Controls.Add(this.Icons_AddCustomIcon_button);
     this.tabPage_Icons.Controls.Add(this.Icons_IconOpacity_textBox);
     this.tabPage_Icons.Controls.Add(this.Icons_IconOpacity_label);
     this.tabPage_Icons.Controls.Add(this.Icons_IconScale_label);
     this.tabPage_Icons.Controls.Add(this.Icons_IconColor_label);
     this.tabPage_Icons.Controls.Add(this.Icons_IconScale_numericUpDown);
     this.tabPage_Icons.Controls.Add(this.Icons_IconColor_button);
     this.tabPage_Icons.Controls.Add(this.Icons_Columns_comboBox);
     this.tabPage_Icons.Controls.Add(this.Icons_Preview_pictureBox);
     this.tabPage_Icons.Controls.Add(this.Icons_SymbolCategories_listBox);
     this.tabPage_Icons.Controls.Add(this.Icons_IconOpacity_numericUpDown);
     this.tabPage_Icons.Controls.Add(this.Icons_tableLayoutPanel);
     this.tabPage_Icons.Controls.Add(this.Icons_panel);
     this.tabPage_Icons.Location = new System.Drawing.Point(4, 22);
     this.tabPage_Icons.Name = "tabPage_Icons";
     this.tabPage_Icons.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage_Icons.Size = new System.Drawing.Size(762, 316);
     this.tabPage_Icons.TabIndex = 5;
     this.tabPage_Icons.Text = "Icons";
     this.tabPage_Icons.UseVisualStyleBackColor = true;
     //
     // Icons_tableLayoutPanel
     //
     this.Icons_tableLayoutPanel.AutoScroll = true;
     this.Icons_tableLayoutPanel.AutoScrollMinSize = new System.Drawing.Size(285, 0);
     this.Icons_tableLayoutPanel.ColumnCount = 8;
     this.Icons_tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.Icons_tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.Icons_tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.Icons_tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.Icons_tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.Icons_tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.Icons_tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.Icons_tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.Icons_tableLayoutPanel.Location = new System.Drawing.Point(354, 33);
     this.Icons_tableLayoutPanel.Margin = new System.Windows.Forms.Padding(0);
     this.Icons_tableLayoutPanel.Name = "Icons_tableLayoutPanel";
     this.Icons_tableLayoutPanel.RowCount = 1;
     this.Icons_tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.Icons_tableLayoutPanel.Size = new System.Drawing.Size(321, 277);
     this.Icons_tableLayoutPanel.TabIndex = 20;
     //
     // Icons_NoIcon_button
     //
     this.Icons_NoIcon_button.Location = new System.Drawing.Point(274, 209);
     this.Icons_NoIcon_button.Name = "Icons_NoIcon_button";
     this.Icons_NoIcon_button.Size = new System.Drawing.Size(75, 23);
     this.Icons_NoIcon_button.TabIndex = 19;
     this.Icons_NoIcon_button.Text = "No Icon";
     this.Icons_NoIcon_button.UseVisualStyleBackColor = true;
     this.Icons_NoIcon_button.Click += new System.EventHandler(this.Icons_NoIcon_button_Click);
     //
     // Icons_ClearCustomIcons_button
     //
     this.Icons_ClearCustomIcons_button.Location = new System.Drawing.Point(679, 75);
     this.Icons_ClearCustomIcons_button.Name = "Icons_ClearCustomIcons_button";
     this.Icons_ClearCustomIcons_button.Size = new System.Drawing.Size(78, 36);
     this.Icons_ClearCustomIcons_button.TabIndex = 18;
     this.Icons_ClearCustomIcons_button.Text = "Clear Custom Icons";
     this.Icons_ClearCustomIcons_button.UseVisualStyleBackColor = true;
     this.Icons_ClearCustomIcons_button.Click += new System.EventHandler(this.Icons_ClearCustomIcons_button_Click);
     //
     // Icons_AddCustomIcon_button
     //
     this.Icons_AddCustomIcon_button.Location = new System.Drawing.Point(679, 33);
     this.Icons_AddCustomIcon_button.Name = "Icons_AddCustomIcon_button";
     this.Icons_AddCustomIcon_button.Size = new System.Drawing.Size(78, 36);
     this.Icons_AddCustomIcon_button.TabIndex = 17;
     this.Icons_AddCustomIcon_button.Text = "Add Custom Icon...";
     this.Icons_AddCustomIcon_button.UseVisualStyleBackColor = true;
     this.Icons_AddCustomIcon_button.Click += new System.EventHandler(this.Icons_AddCustomIcon_button_Click);
     //
     // Icons_IconOpacity_textBox
     //
     this.Icons_IconOpacity_textBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Icons_IconOpacity_textBox.Location = new System.Drawing.Point(629, 9);
     this.Icons_IconOpacity_textBox.Name = "Icons_IconOpacity_textBox";
     this.Icons_IconOpacity_textBox.Size = new System.Drawing.Size(28, 13);
     this.Icons_IconOpacity_textBox.TabIndex = 16;
     this.Icons_IconOpacity_textBox.Text = "100%";
     this.Icons_IconOpacity_textBox.MouseWheel += new System.Windows.Forms.MouseEventHandler(this.Icons_IconOpacity_textBox_MouseWheel);
     this.Icons_IconOpacity_textBox.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.Icons_IconOpacity_textBox_PreviewKeyDown);
     //
     // Icons_IconOpacity_label
     //
     this.Icons_IconOpacity_label.AutoSize = true;
     this.Icons_IconOpacity_label.Location = new System.Drawing.Point(577, 11);
     this.Icons_IconOpacity_label.Name = "Icons_IconOpacity_label";
     this.Icons_IconOpacity_label.Size = new System.Drawing.Size(46, 13);
     this.Icons_IconOpacity_label.TabIndex = 0;
     this.Icons_IconOpacity_label.Text = "Opacity:";
     //
     // Icons_IconScale_label
     //
     this.Icons_IconScale_label.AutoSize = true;
     this.Icons_IconScale_label.Location = new System.Drawing.Point(453, 11);
     this.Icons_IconScale_label.Name = "Icons_IconScale_label";
     this.Icons_IconScale_label.Size = new System.Drawing.Size(37, 13);
     this.Icons_IconScale_label.TabIndex = 0;
     this.Icons_IconScale_label.Text = "Scale:";
     //
     // Icons_IconColor_label
     //
     this.Icons_IconColor_label.AutoSize = true;
     this.Icons_IconColor_label.Location = new System.Drawing.Point(351, 11);
     this.Icons_IconColor_label.Name = "Icons_IconColor_label";
     this.Icons_IconColor_label.Size = new System.Drawing.Size(34, 13);
     this.Icons_IconColor_label.TabIndex = 0;
     this.Icons_IconColor_label.Text = "Color:";
     //
     // Icons_IconScale_numericUpDown
     //
     this.Icons_IconScale_numericUpDown.DecimalPlaces = 1;
     this.Icons_IconScale_numericUpDown.Increment = new decimal(new int[] {
     1,
     0,
     0,
     65536});
     this.Icons_IconScale_numericUpDown.Location = new System.Drawing.Point(496, 7);
     this.Icons_IconScale_numericUpDown.Name = "Icons_IconScale_numericUpDown";
     this.Icons_IconScale_numericUpDown.Size = new System.Drawing.Size(48, 20);
     this.Icons_IconScale_numericUpDown.TabIndex = 12;
     this.Icons_IconScale_numericUpDown.ValueChanged += new System.EventHandler(this.Icons_IconScale_numericUpDown_ValueChanged);
     //
     // Icons_IconColor_button
     //
     this.Icons_IconColor_button.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Icons_IconColor_button.Location = new System.Drawing.Point(391, 7);
     this.Icons_IconColor_button.Name = "Icons_IconColor_button";
     this.Icons_IconColor_button.Size = new System.Drawing.Size(20, 20);
     this.Icons_IconColor_button.TabIndex = 11;
     this.Icons_IconColor_button.UseVisualStyleBackColor = true;
     this.Icons_IconColor_button.Click += new System.EventHandler(this.Icons_IconColor_button_Click);
     //
     // Icons_Columns_comboBox
     //
     this.Icons_Columns_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Icons_Columns_comboBox.FormattingEnabled = true;
     this.Icons_Columns_comboBox.Location = new System.Drawing.Point(7, 6);
     this.Icons_Columns_comboBox.Name = "Icons_Columns_comboBox";
     this.Icons_Columns_comboBox.Size = new System.Drawing.Size(263, 21);
     this.Icons_Columns_comboBox.TabIndex = 1;
     this.Icons_Columns_comboBox.SelectedIndexChanged += new System.EventHandler(this.Icons_Columns_comboBox_SelectedIndexChanged);
     //
     // Icons_Preview_pictureBox
     //
     this.Icons_Preview_pictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Icons_Preview_pictureBox.InitialImage = null;
     this.Icons_Preview_pictureBox.Location = new System.Drawing.Point(279, 139);
     this.Icons_Preview_pictureBox.Name = "Icons_Preview_pictureBox";
     this.Icons_Preview_pictureBox.Size = new System.Drawing.Size(64, 64);
     this.Icons_Preview_pictureBox.TabIndex = 9;
     this.Icons_Preview_pictureBox.TabStop = false;
     //
     // Icons_SymbolCategories_listBox
     //
     this.Icons_SymbolCategories_listBox.FormattingEnabled = true;
     this.Icons_SymbolCategories_listBox.Location = new System.Drawing.Point(6, 33);
     this.Icons_SymbolCategories_listBox.Name = "Icons_SymbolCategories_listBox";
     this.Icons_SymbolCategories_listBox.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.Icons_SymbolCategories_listBox.Size = new System.Drawing.Size(264, 277);
     this.Icons_SymbolCategories_listBox.Sorted = true;
     this.Icons_SymbolCategories_listBox.TabIndex = 2;
     this.Icons_SymbolCategories_listBox.SelectedIndexChanged += new System.EventHandler(this.Icons_SymbolCategories_listBox_SelectedIndexChanged);
     //
     // Icons_IconOpacity_numericUpDown
     //
     this.Icons_IconOpacity_numericUpDown.ForeColor = System.Drawing.Color.Transparent;
     this.Icons_IconOpacity_numericUpDown.Location = new System.Drawing.Point(627, 7);
     this.Icons_IconOpacity_numericUpDown.Name = "Icons_IconOpacity_numericUpDown";
     this.Icons_IconOpacity_numericUpDown.Size = new System.Drawing.Size(48, 20);
     this.Icons_IconOpacity_numericUpDown.TabIndex = 0;
     this.Icons_IconOpacity_numericUpDown.Value = new decimal(new int[] {
     100,
     0,
     0,
     0});
     this.Icons_IconOpacity_numericUpDown.ValueChanged += new System.EventHandler(this.Icons_IconOpacity_numericUpDown_ValueChanged);
     //
     // statusStrip
     //
     this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel,
     this.toolStripProgressBar});
     this.statusStrip.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.statusStrip.Location = new System.Drawing.Point(0, 397);
     this.statusStrip.Name = "statusStrip";
     this.statusStrip.Size = new System.Drawing.Size(792, 22);
     this.statusStrip.TabIndex = 1;
     this.statusStrip.Text = "statusStrip";
     //
     // toolStripStatusLabel
     //
     this.toolStripStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.toolStripStatusLabel.IsLink = true;
     this.toolStripStatusLabel.Name = "toolStripStatusLabel";
     this.toolStripStatusLabel.Size = new System.Drawing.Size(66, 17);
     this.toolStripStatusLabel.Text = "excel2earth";
     this.toolStripStatusLabel.Click += new System.EventHandler(this.toolStripStatusLabel_Click);
     //
     // toolStripProgressBar
     //
     this.toolStripProgressBar.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.toolStripProgressBar.Margin = new System.Windows.Forms.Padding(1, 3, 5, 3);
     this.toolStripProgressBar.Maximum = 1;
     this.toolStripProgressBar.Name = "toolStripProgressBar";
     this.toolStripProgressBar.RightToLeftLayout = true;
     this.toolStripProgressBar.Size = new System.Drawing.Size(100, 16);
     this.toolStripProgressBar.Step = 1;
     this.toolStripProgressBar.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
     //
     // Settings_openFileDialog
     //
     this.Settings_openFileDialog.Filter = "excel2earth Settings (*.e2e)|*.e2e";
     //
     // KMZKML_saveFileDialog
     //
     this.KMZKML_saveFileDialog.Filter = "KMZ Files (*.kmz)|*.kmz|KML Files (*.kml)|*.kml";
     this.KMZKML_saveFileDialog.Title = "Where do you want to save your Google Earth file?";
     //
     // main_Next_button
     //
     this.main_Next_button.Location = new System.Drawing.Point(626, 371);
     this.main_Next_button.Name = "main_Next_button";
     this.main_Next_button.Size = new System.Drawing.Size(75, 23);
     this.main_Next_button.TabIndex = 1;
     this.main_Next_button.Text = "Next >>";
     this.main_Next_button.UseVisualStyleBackColor = true;
     this.main_Next_button.Click += new System.EventHandler(this.main_Next_button_Click);
     //
     // main_Back_button
     //
     this.main_Back_button.Enabled = false;
     this.main_Back_button.Location = new System.Drawing.Point(545, 371);
     this.main_Back_button.Name = "main_Back_button";
     this.main_Back_button.Size = new System.Drawing.Size(75, 23);
     this.main_Back_button.TabIndex = 3;
     this.main_Back_button.Text = "<< Back";
     this.main_Back_button.UseVisualStyleBackColor = true;
     this.main_Back_button.Click += new System.EventHandler(this.main_Back_button_Click);
     //
     // main_Finish_button
     //
     this.main_Finish_button.Enabled = false;
     this.main_Finish_button.Location = new System.Drawing.Point(707, 371);
     this.main_Finish_button.Name = "main_Finish_button";
     this.main_Finish_button.Size = new System.Drawing.Size(75, 23);
     this.main_Finish_button.TabIndex = 2;
     this.main_Finish_button.Text = "Finish";
     this.main_Finish_button.UseVisualStyleBackColor = true;
     this.main_Finish_button.Click += new System.EventHandler(this.main_Finish_button_Click);
     //
     // Icons_imageList
     //
     this.Icons_imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("Icons_imageList.ImageStream")));
     this.Icons_imageList.TransparentColor = System.Drawing.Color.Transparent;
     this.Icons_imageList.Images.SetKeyName(0, "ylw-pushpin.png");
     this.Icons_imageList.Images.SetKeyName(1, "blue-pushpin.png");
     this.Icons_imageList.Images.SetKeyName(2, "grn-pushpin.png");
     this.Icons_imageList.Images.SetKeyName(3, "ltblu-pushpin.png");
     this.Icons_imageList.Images.SetKeyName(4, "pink-pushpin.png");
     this.Icons_imageList.Images.SetKeyName(5, "purple-pushpin.png");
     this.Icons_imageList.Images.SetKeyName(6, "red-pushpin.png");
     this.Icons_imageList.Images.SetKeyName(7, "wht-pushpin.png");
     this.Icons_imageList.Images.SetKeyName(8, "a.png");
     this.Icons_imageList.Images.SetKeyName(9, "b.png");
     this.Icons_imageList.Images.SetKeyName(10, "c.png");
     this.Icons_imageList.Images.SetKeyName(11, "d.png");
     this.Icons_imageList.Images.SetKeyName(12, "e.png");
     this.Icons_imageList.Images.SetKeyName(13, "f.png");
     this.Icons_imageList.Images.SetKeyName(14, "g.png");
     this.Icons_imageList.Images.SetKeyName(15, "h.png");
     this.Icons_imageList.Images.SetKeyName(16, "i.png");
     this.Icons_imageList.Images.SetKeyName(17, "j.png");
     this.Icons_imageList.Images.SetKeyName(18, "k.png");
     this.Icons_imageList.Images.SetKeyName(19, "l.png");
     this.Icons_imageList.Images.SetKeyName(20, "m.png");
     this.Icons_imageList.Images.SetKeyName(21, "n.png");
     this.Icons_imageList.Images.SetKeyName(22, "o.png");
     this.Icons_imageList.Images.SetKeyName(23, "p.png");
     this.Icons_imageList.Images.SetKeyName(24, "q.png");
     this.Icons_imageList.Images.SetKeyName(25, "r.png");
     this.Icons_imageList.Images.SetKeyName(26, "s.png");
     this.Icons_imageList.Images.SetKeyName(27, "t.png");
     this.Icons_imageList.Images.SetKeyName(28, "u.png");
     this.Icons_imageList.Images.SetKeyName(29, "v.png");
     this.Icons_imageList.Images.SetKeyName(30, "w.png");
     this.Icons_imageList.Images.SetKeyName(31, "x.png");
     this.Icons_imageList.Images.SetKeyName(32, "y.png");
     this.Icons_imageList.Images.SetKeyName(33, "z.png");
     this.Icons_imageList.Images.SetKeyName(34, "1.png");
     this.Icons_imageList.Images.SetKeyName(35, "2.png");
     this.Icons_imageList.Images.SetKeyName(36, "3.png");
     this.Icons_imageList.Images.SetKeyName(37, "4.png");
     this.Icons_imageList.Images.SetKeyName(38, "5.png");
     this.Icons_imageList.Images.SetKeyName(39, "6.png");
     this.Icons_imageList.Images.SetKeyName(40, "7.png");
     this.Icons_imageList.Images.SetKeyName(41, "8.png");
     this.Icons_imageList.Images.SetKeyName(42, "9.png");
     this.Icons_imageList.Images.SetKeyName(43, "10.png");
     this.Icons_imageList.Images.SetKeyName(44, "blu-blank.png");
     this.Icons_imageList.Images.SetKeyName(45, "blu-diamond.png");
     this.Icons_imageList.Images.SetKeyName(46, "blu-circle.png");
     this.Icons_imageList.Images.SetKeyName(47, "blu-square.png");
     this.Icons_imageList.Images.SetKeyName(48, "blu-stars.png");
     this.Icons_imageList.Images.SetKeyName(49, "grn-blank.png");
     this.Icons_imageList.Images.SetKeyName(50, "grn-diamond.png");
     this.Icons_imageList.Images.SetKeyName(51, "grn-circle.png");
     this.Icons_imageList.Images.SetKeyName(52, "grn-square.png");
     this.Icons_imageList.Images.SetKeyName(53, "grn-stars.png");
     this.Icons_imageList.Images.SetKeyName(54, "ltblu-blank.png");
     this.Icons_imageList.Images.SetKeyName(55, "ltblu-diamond.png");
     this.Icons_imageList.Images.SetKeyName(56, "ltblu-circle.png");
     this.Icons_imageList.Images.SetKeyName(57, "ltblu-square.png");
     this.Icons_imageList.Images.SetKeyName(58, "ltblu-stars.png");
     this.Icons_imageList.Images.SetKeyName(59, "pink-blank.png");
     this.Icons_imageList.Images.SetKeyName(60, "pink-diamond.png");
     this.Icons_imageList.Images.SetKeyName(61, "pink-circle.png");
     this.Icons_imageList.Images.SetKeyName(62, "pink-square.png");
     this.Icons_imageList.Images.SetKeyName(63, "pink-stars.png");
     this.Icons_imageList.Images.SetKeyName(64, "ylw-blank.png");
     this.Icons_imageList.Images.SetKeyName(65, "ylw-diamond.png");
     this.Icons_imageList.Images.SetKeyName(66, "ylw-circle.png");
     this.Icons_imageList.Images.SetKeyName(67, "ylw-square.png");
     this.Icons_imageList.Images.SetKeyName(68, "ylw-stars.png");
     this.Icons_imageList.Images.SetKeyName(69, "wht-blank.png");
     this.Icons_imageList.Images.SetKeyName(70, "wht-diamond.png");
     this.Icons_imageList.Images.SetKeyName(71, "wht-circle.png");
     this.Icons_imageList.Images.SetKeyName(72, "wht-square.png");
     this.Icons_imageList.Images.SetKeyName(73, "wht-stars.png");
     this.Icons_imageList.Images.SetKeyName(74, "red-diamond.png");
     this.Icons_imageList.Images.SetKeyName(75, "red-circle.png");
     this.Icons_imageList.Images.SetKeyName(76, "red-square.png");
     this.Icons_imageList.Images.SetKeyName(77, "red-stars.png");
     this.Icons_imageList.Images.SetKeyName(78, "purple-diamond.png");
     this.Icons_imageList.Images.SetKeyName(79, "purple-circle.png");
     this.Icons_imageList.Images.SetKeyName(80, "purple-square.png");
     this.Icons_imageList.Images.SetKeyName(81, "purple-stars.png");
     this.Icons_imageList.Images.SetKeyName(82, "arrow-reverse.png");
     this.Icons_imageList.Images.SetKeyName(83, "arrow.png");
     this.Icons_imageList.Images.SetKeyName(84, "track.png");
     this.Icons_imageList.Images.SetKeyName(85, "donut.png");
     this.Icons_imageList.Images.SetKeyName(86, "forbidden.png");
     this.Icons_imageList.Images.SetKeyName(87, "info-i.png");
     this.Icons_imageList.Images.SetKeyName(88, "polygon.png");
     this.Icons_imageList.Images.SetKeyName(89, "open-diamond.png");
     this.Icons_imageList.Images.SetKeyName(90, "square.png");
     this.Icons_imageList.Images.SetKeyName(91, "star.png");
     this.Icons_imageList.Images.SetKeyName(92, "target.png");
     this.Icons_imageList.Images.SetKeyName(93, "triangle.png");
     this.Icons_imageList.Images.SetKeyName(94, "cross-hairs.png");
     this.Icons_imageList.Images.SetKeyName(95, "placemark_square.png");
     this.Icons_imageList.Images.SetKeyName(96, "placemark_circle.png");
     this.Icons_imageList.Images.SetKeyName(97, "shaded_dot.png");
     this.Icons_imageList.Images.SetKeyName(98, "dining.png");
     this.Icons_imageList.Images.SetKeyName(99, "coffee.png");
     this.Icons_imageList.Images.SetKeyName(100, "bars.png");
     this.Icons_imageList.Images.SetKeyName(101, "snack_bar.png");
     this.Icons_imageList.Images.SetKeyName(102, "man.png");
     this.Icons_imageList.Images.SetKeyName(103, "woman.png");
     this.Icons_imageList.Images.SetKeyName(104, "wheel_chair_accessible.png");
     this.Icons_imageList.Images.SetKeyName(105, "parking_lot.png");
     this.Icons_imageList.Images.SetKeyName(106, "cabs.png");
     this.Icons_imageList.Images.SetKeyName(107, "bus.png");
     this.Icons_imageList.Images.SetKeyName(108, "truck.png");
     this.Icons_imageList.Images.SetKeyName(109, "rail.png");
     this.Icons_imageList.Images.SetKeyName(110, "airports.png");
     this.Icons_imageList.Images.SetKeyName(111, "ferry.png");
     this.Icons_imageList.Images.SetKeyName(112, "heliport.png");
     this.Icons_imageList.Images.SetKeyName(113, "subway.png");
     this.Icons_imageList.Images.SetKeyName(114, "tram.png");
     this.Icons_imageList.Images.SetKeyName(115, "info.png");
     this.Icons_imageList.Images.SetKeyName(116, "info_circle.png");
     this.Icons_imageList.Images.SetKeyName(117, "flag.png");
     this.Icons_imageList.Images.SetKeyName(118, "rainy.png");
     this.Icons_imageList.Images.SetKeyName(119, "water.png");
     this.Icons_imageList.Images.SetKeyName(120, "snowflake_simple.png");
     this.Icons_imageList.Images.SetKeyName(121, "marina.png");
     this.Icons_imageList.Images.SetKeyName(122, "fishing.png");
     this.Icons_imageList.Images.SetKeyName(123, "sailing.png");
     this.Icons_imageList.Images.SetKeyName(124, "swimming.png");
     this.Icons_imageList.Images.SetKeyName(125, "ski.png");
     this.Icons_imageList.Images.SetKeyName(126, "parks.png");
     this.Icons_imageList.Images.SetKeyName(127, "campfire.png");
     this.Icons_imageList.Images.SetKeyName(128, "picnic.png");
     this.Icons_imageList.Images.SetKeyName(129, "campground.png");
     this.Icons_imageList.Images.SetKeyName(130, "ranger_station.png");
     this.Icons_imageList.Images.SetKeyName(131, "toilets.png");
     this.Icons_imageList.Images.SetKeyName(132, "poi.png");
     this.Icons_imageList.Images.SetKeyName(133, "hiker.png");
     this.Icons_imageList.Images.SetKeyName(134, "cycling.png");
     this.Icons_imageList.Images.SetKeyName(135, "motorcycling.png");
     this.Icons_imageList.Images.SetKeyName(136, "horsebackriding.png");
     this.Icons_imageList.Images.SetKeyName(137, "play.png");
     this.Icons_imageList.Images.SetKeyName(138, "golf.png");
     this.Icons_imageList.Images.SetKeyName(139, "trail.png");
     this.Icons_imageList.Images.SetKeyName(140, "shopping.png");
     this.Icons_imageList.Images.SetKeyName(141, "movies.png");
     this.Icons_imageList.Images.SetKeyName(142, "convenience.png");
     this.Icons_imageList.Images.SetKeyName(143, "grocery.png");
     this.Icons_imageList.Images.SetKeyName(144, "arts.png");
     this.Icons_imageList.Images.SetKeyName(145, "homegardenbusiness.png");
     this.Icons_imageList.Images.SetKeyName(146, "electronics.png");
     this.Icons_imageList.Images.SetKeyName(147, "mechanic.png");
     this.Icons_imageList.Images.SetKeyName(148, "gas_stations.png");
     this.Icons_imageList.Images.SetKeyName(149, "realestate.png");
     this.Icons_imageList.Images.SetKeyName(150, "salon.png");
     this.Icons_imageList.Images.SetKeyName(151, "dollar.png");
     this.Icons_imageList.Images.SetKeyName(152, "euro.png");
     this.Icons_imageList.Images.SetKeyName(153, "yen.png");
     this.Icons_imageList.Images.SetKeyName(154, "firedept.png");
     this.Icons_imageList.Images.SetKeyName(155, "hospitals.png");
     this.Icons_imageList.Images.SetKeyName(156, "lodging.png");
     this.Icons_imageList.Images.SetKeyName(157, "phone.png");
     this.Icons_imageList.Images.SetKeyName(158, "caution.png");
     this.Icons_imageList.Images.SetKeyName(159, "falling_rocks.png");
     this.Icons_imageList.Images.SetKeyName(160, "post_office.png");
     this.Icons_imageList.Images.SetKeyName(161, "police.png");
     this.Icons_imageList.Images.SetKeyName(162, "sunny.png");
     this.Icons_imageList.Images.SetKeyName(163, "partly_cloudy.png");
     this.Icons_imageList.Images.SetKeyName(164, "volcano.png");
     this.Icons_imageList.Images.SetKeyName(165, "camera.png");
     this.Icons_imageList.Images.SetKeyName(166, "webcam.png");
     //
     // menuStrip
     //
     this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.viewToolStripMenuItem,
     this.helpToolStripMenuItem});
     this.menuStrip.Location = new System.Drawing.Point(0, 0);
     this.menuStrip.Name = "menuStrip";
     this.menuStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.menuStrip.Size = new System.Drawing.Size(792, 24);
     this.menuStrip.TabIndex = 7;
     this.menuStrip.Text = "menuStrip";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.loadSettingsToolStripMenuItem,
     this.saveSettingsToolStripMenuItem,
     this.toolStripSeparator1,
     this.exitToolStripMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "&File";
     //
     // loadSettingsToolStripMenuItem
     //
     this.loadSettingsToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("loadSettingsToolStripMenuItem.Image")));
     this.loadSettingsToolStripMenuItem.Name = "loadSettingsToolStripMenuItem";
     this.loadSettingsToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
     this.loadSettingsToolStripMenuItem.Text = "&Load Settings";
     this.loadSettingsToolStripMenuItem.Click += new System.EventHandler(this.loadSettingsToolStripMenuItem_Click);
     //
     // saveSettingsToolStripMenuItem
     //
     this.saveSettingsToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("saveSettingsToolStripMenuItem.Image")));
     this.saveSettingsToolStripMenuItem.Name = "saveSettingsToolStripMenuItem";
     this.saveSettingsToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
     this.saveSettingsToolStripMenuItem.Text = "&Save Settings";
     this.saveSettingsToolStripMenuItem.Click += new System.EventHandler(this.saveSettingsToolStripMenuItem_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(142, 6);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
     this.exitToolStripMenuItem.Text = "E&xit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // viewToolStripMenuItem
     //
     this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.simpleToolStripMenuItem});
     this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
     this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.viewToolStripMenuItem.Text = "&View";
     //
     // simpleToolStripMenuItem
     //
     this.simpleToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("simpleToolStripMenuItem.Image")));
     this.simpleToolStripMenuItem.Name = "simpleToolStripMenuItem";
     this.simpleToolStripMenuItem.Size = new System.Drawing.Size(110, 22);
     this.simpleToolStripMenuItem.Text = "&Simple";
     this.simpleToolStripMenuItem.Click += new System.EventHandler(this.simpleToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.aboutExcel2earthToolStripMenuItem});
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "&Help";
     //
     // aboutExcel2earthToolStripMenuItem
     //
     this.aboutExcel2earthToolStripMenuItem.Name = "aboutExcel2earthToolStripMenuItem";
     this.aboutExcel2earthToolStripMenuItem.Size = new System.Drawing.Size(169, 22);
     this.aboutExcel2earthToolStripMenuItem.Text = "&About excel2earth";
     this.aboutExcel2earthToolStripMenuItem.Click += new System.EventHandler(this.aboutExcel2earthToolStripMenuItem_Click);
     //
     // Settings_saveFileDialog
     //
     this.Settings_saveFileDialog.Filter = "excel2earth Settings (*.e2e)|*.e2e";
     //
     // main_OpenAfterCreation_checkBox
     //
     this.main_OpenAfterCreation_checkBox.AutoSize = true;
     this.main_OpenAfterCreation_checkBox.Checked = true;
     this.main_OpenAfterCreation_checkBox.CheckState = System.Windows.Forms.CheckState.Checked;
     this.main_OpenAfterCreation_checkBox.Location = new System.Drawing.Point(12, 375);
     this.main_OpenAfterCreation_checkBox.Name = "main_OpenAfterCreation_checkBox";
     this.main_OpenAfterCreation_checkBox.Size = new System.Drawing.Size(138, 17);
     this.main_OpenAfterCreation_checkBox.TabIndex = 8;
     this.main_OpenAfterCreation_checkBox.Text = "Open File After Creation";
     this.main_OpenAfterCreation_checkBox.UseVisualStyleBackColor = true;
     //
     // Icons_AddCustomIcon_openFileDialog
     //
     this.Icons_AddCustomIcon_openFileDialog.DefaultExt = "Images (*.jpg *.bmp *.tif *.tga *.png *.jpeg *.gif *.tiff *.ppm *.pgm)|*.jpg;*.bm" +
     "p;*.tif;*.tga;*.png;*.jpeg;*.gif;*.tiff;*.ppm;*.pgm";
     this.Icons_AddCustomIcon_openFileDialog.Filter = "Images (*.jpg *.bmp *.tif *.tga *.png *.jpeg *.gif *.tiff *.ppm *.pgm)|*.jpg;*.bm" +
     "p;*.tif;*.tga;*.png;*.jpeg;*.gif;*.tiff;*.ppm;*.pgm";
     //
     // Icons_panel
     //
     this.Icons_panel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Icons_panel.Location = new System.Drawing.Point(353, 32);
     this.Icons_panel.Name = "Icons_panel";
     this.Icons_panel.Size = new System.Drawing.Size(323, 279);
     this.Icons_panel.TabIndex = 21;
     //
     // Main
     //
     this.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize = true;
     this.ClientSize = new System.Drawing.Size(792, 419);
     this.Controls.Add(this.main_OpenAfterCreation_checkBox);
     this.Controls.Add(this.main_Finish_button);
     this.Controls.Add(this.main_Back_button);
     this.Controls.Add(this.main_Next_button);
     this.Controls.Add(this.statusStrip);
     this.Controls.Add(this.menuStrip);
     this.Controls.Add(this.main_tabPage);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip = this.menuStrip;
     this.MaximizeBox = false;
     this.Name = "Main";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
     this.Text = "excel2earth";
     this.main_tabPage.ResumeLayout(false);
     this.tabPage_Start.ResumeLayout(false);
     this.Start_Geometry_groupBox.ResumeLayout(false);
     this.Start_Geometry_groupBox.PerformLayout();
     this.Start_BasicFields_groupBox.ResumeLayout(false);
     this.Start_BasicFields_groupBox.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Start_SnippetMaxLines_numericUpDown)).EndInit();
     this.Start_DataRange_groupBox.ResumeLayout(false);
     this.Start_DataRange_groupBox.PerformLayout();
     this.tabPage_Location.ResumeLayout(false);
     this.Location_Track_groupBox.ResumeLayout(false);
     this.Location_Track_groupBox.PerformLayout();
     this.Location_Model_groupBox.ResumeLayout(false);
     this.Location_Model_groupBox.PerformLayout();
     this.Location_Coordinates_groupBox.ResumeLayout(false);
     this.Location_Coordinates_groupBox.PerformLayout();
     this.tabPage_DateTime.ResumeLayout(false);
     this.DateTime_Fields_groupBox.ResumeLayout(false);
     this.DateTime_Fields_groupBox.PerformLayout();
     this.DateTime_Type_groupBox.ResumeLayout(false);
     this.DateTime_Type_groupBox.PerformLayout();
     this.tabPage_Description.ResumeLayout(false);
     this.tabPage_Description.PerformLayout();
     this.tabPage_Folders.ResumeLayout(false);
     this.tabPage_Folders.PerformLayout();
     this.tabPage_Icons.ResumeLayout(false);
     this.tabPage_Icons.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Icons_IconScale_numericUpDown)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Icons_Preview_pictureBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Icons_IconOpacity_numericUpDown)).EndInit();
     this.statusStrip.ResumeLayout(false);
     this.statusStrip.PerformLayout();
     this.menuStrip.ResumeLayout(false);
     this.menuStrip.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #31
0
        /// <summary>
        /// Generates the KML string.
        /// </summary>
        /// <param name="toolStripProgressBar">A windows Forms ToolStripProgressBar</param>
        /// <returns>The KML string.</returns>
        public string generateKML(ref System.Windows.Forms.ToolStripProgressBar toolStripProgressBar)
        {
            XNamespace gx       = "http://www.google.com/kml/ext/2.2";
            XElement   document = (XElement)(new Document().ToXNode());

            XDocument kml = new XDocument(
                new XComment("Created with excel2earth"),
                new XElement("kml",
                             new XAttribute(XNamespace.Xmlns + "kml", "http://www.opengis.net/kml/2.2"),
                             new XAttribute(XNamespace.Xmlns + "gx", "http://www.google.com/kml/ext/2.2"),
                             document
                             )
                );

            int lastRow;

            if (this.range.SpecialCells(Excel.XlCellType.xlCellTypeLastCell, Type.Missing).Row < this.range.Rows.Count)
            {
                lastRow = this.range.SpecialCells(Excel.XlCellType.xlCellTypeLastCell, Type.Missing).Row;
            }
            else
            {
                lastRow = this.range.Rows.Count;
            }

            toolStripProgressBar.Minimum = this.range.Cells.Row + Convert.ToInt32(this.hasHeaders);
            toolStripProgressBar.Maximum = lastRow;
            toolStripProgressBar.Value   = toolStripProgressBar.Minimum;
            toolStripProgressBar.Step    = 1;

            foreach (StyleMap styleMap in this.styleSelection.Values.Where(StyleMap => StyleMap != null).Distinct())
            {
                if (!document.Descendants("StyleMap").Where(StyleMap => StyleMap.Attribute("id").Value == styleMap.id).Any())
                {
                    document.Add((XElement)styleMap.ToXNode());
                }
            }

            for (int row = 1 + Convert.ToInt32(this.hasHeaders); row <= lastRow; row++)
            {
                XElement       parentNode = document;
                Placemark      placemark  = new Placemark(((Excel.Range) this.range.Cells[row, this.nameColumn]).Value2.ToString());
                string         id         = "";
                DecimalDegrees decimalDegrees;
                double         altitude = 0.0;
                XElement[]     childElements;
                XName          childType = "Placemark";
                DateTime       dateTime1;
                DateTime       dateTime2;
                Geometry       geometry    = null;
                bool           addElements = true;

                // XY Coordinates
                try
                {
                    switch (this.coordinatesFormat)
                    {
                    case 0:     // Decimal Degrees
                        decimalDegrees = new DecimalDegrees(((Excel.Range) this.range.Cells[row, this.coordinatesField2Column]).Value2.ToString(), ((Excel.Range) this.range.Cells[row, this.coordinatesField1Column]).Value2.ToString());
                        break;

                    case 1:     // Degrees, Decimal Minutes
                        decimalDegrees = new DegreesDecimalMinutes(((Excel.Range) this.range.Cells[row, this.coordinatesField2Column]).Value2.ToString(), ((Excel.Range) this.range.Cells[row, this.coordinatesField1Column]).Value2.ToString()).ToDecimalDegrees();
                        break;

                    case 2:     // Degrees, Minutes, Seconds
                        decimalDegrees = new DegreesMinutesSeconds(((Excel.Range) this.range.Cells[row, this.coordinatesField2Column]).Value2.ToString(), ((Excel.Range) this.range.Cells[row, this.coordinatesField1Column]).Value2.ToString()).ToDecimalDegrees();
                        break;

                    case 3:     // Military Grid Reference System
                        decimalDegrees = new MilitaryGridReferenceSystem(((Excel.Range) this.range.Cells[row, this.coordinatesField1Column]).Value2.ToString()).ToDecimalDegrees();
                        break;

                    //case 4: // Universal Transverse Mercator
                    //    throw new NotImplementedException();
                    //    break;
                    default:
                        decimalDegrees = new DecimalDegrees(0d, 0d);
                        break;
                    }
                }
                catch
                {
                    toolStripProgressBar.PerformStep();
                    continue;
                }

                // Z Coodinate
                if (this.hasAltitude)
                {
                    if (!double.TryParse(((Excel.Range) this.range.Cells[row, this.altitudeColumn]).Value2.ToString(), out altitude))
                    {
                        continue;
                    }

                    altitude *= altitudeUnitMultipliers[this.altitudeUnit];
                }

                Geometry.CoordinateSet coordinateSet = new Geometry.CoordinateSet(decimalDegrees.Latitude, decimalDegrees.Longitude, altitude);

                // Folders
                for (int i = 0; i < this.folderColumns.Length; i++)
                {
                    XElement[] folders = (from folder in parentNode.Descendants("Folder")
                                          where folder.Element("name").Value == ((Excel.Range) this.range.Cells[row, this.folderColumns[i]]).Value2.ToString()
                                          select folder).ToArray <XElement>();

                    if (folders.Length < 1) // If the folder doesn't exist, create it
                    {
                        parentNode.Add(new Folder(((Excel.Range) this.range.Cells[row, this.folderColumns[i]]).Value2.ToString()).ToXNode());
                        i--;
                    }
                    else // If the folder exists, use it
                    {
                        parentNode = folders[0];
                    }
                }

                // Snippet
                if (this.hasSnippet)
                {
                    placemark.snippet         = ((Excel.Range) this.range.Cells[row, this.snippetColumn]).Value2.ToString();
                    placemark.snippetMaxLines = this.snippetMaxLines;
                }

                // Description
                if (this.descriptionColumns.Length > 0)
                {
                    XElement descriptionTable = new XElement("table");

                    for (int i = 0; i < this.descriptionColumns.Length; i++)
                    {
                        descriptionTable.Add
                        (
                            new XElement("tr",
                                         new XAttribute("style", "background-color: #" + (i % 2 == 0 ? "FFFFFF" : "DDDDDD") + ";"),
                                         new XElement("td",
                                                      new XAttribute("style", "font-weight: bold;"),
                                                      new XText(((Excel.Range) this.range.Cells[1, this.descriptionColumns[i]]).Value2.ToString())
                                                      ),
                                         new XElement("td",
                                                      new XText(((Excel.Range) this.range.Cells[row, this.descriptionColumns[i]]).Value2.ToString())
                                                      )
                                         )
                        );
                    }

                    placemark.description = descriptionTable.ToString();
                }

                // Style
                if (this.iconColumn > 0)
                {
                    string styleKey = ((Excel.Range) this.range.Cells[row, this.iconColumn]).Value2.ToString();

                    if (this.styleSelection.ContainsKey(styleKey) && this.styleSelection[styleKey].id != null)
                    {
                        placemark.styleUrl = "#" + this.styleSelection[styleKey].id;
                    }
                }

                // Date/Time
                if (this.hasTimeStamp || this.hasTimeSpan)
                {
                    if (this.dateTimeFormat1 == 1)
                    {
                        DateTime.TryParse(((Excel.Range) this.range.Cells[row, this.dateTimeField1Column]).Value2.ToString() + " " + ((Excel.Range) this.range.Cells[row, this.dateTimeField2Column]).Value2.ToString(), out dateTime1);
                    }
                    else
                    {
                        DateTime.TryParse(((Excel.Range) this.range.Cells[row, this.dateTimeField1Column]).Value2.ToString(), new System.Globalization.CultureInfo("en-us", false).DateTimeFormat, System.Globalization.DateTimeStyles.AssumeUniversal, out dateTime1);
                    }

                    if (this.hasTimeStamp)
                    {
                        placemark.timePrimitive = new TimeStamp(dateTime1, dateTimeFormats[this.dateTimeFormat1]);
                    }

                    if (this.hasTimeSpan)
                    {
                        if (this.dateTimeFormat2 == 1)
                        {
                            DateTime.TryParse(((Excel.Range) this.range.Cells[row, this.dateTimeField3Column]).Value2.ToString() + " " + ((Excel.Range) this.range.Cells[row, this.dateTimeField4Column]).Value2.ToString(), out dateTime2);
                        }
                        else
                        {
                            DateTime.TryParse(((Excel.Range) this.range.Cells[row, this.dateTimeField3Column]).Value2.ToString(), out dateTime2);
                        }

                        placemark.timePrimitive = new excel2earth.kml.TimeSpan(dateTime1, dateTimeFormats[dateTimeFormat1], dateTime2, dateTimeFormats[dateTimeFormat2]);
                    }
                }

                // Model
                Orientation modelOrientation = null;
                Scale       modelScale       = null;
                Link        modelLink        = null;

                if (this.hasModel)
                {
                    // Orientation
                    if (this.modelHeadingColumn > 0 || this.modelTiltColumn > 0 || this.modelRollColumn > 0)
                    {
                        double modelHeading = 0.0;
                        double modelTilt    = 0.0;
                        double modelRoll    = 0.0;

                        if (this.modelHeadingColumn > 0)
                        {
                            double.TryParse(((Excel.Range) this.range.Cells[row, this.modelHeadingColumn]).Value2.ToString(), out modelHeading);
                        }

                        if (this.modelTiltColumn > 0)
                        {
                            double.TryParse(((Excel.Range) this.range.Cells[row, this.modelTiltColumn]).Value2.ToString(), out modelTilt);
                        }

                        if (this.modelRollColumn > 0)
                        {
                            double.TryParse(((Excel.Range) this.range.Cells[row, this.modelRollColumn]).Value2.ToString(), out modelRoll);
                        }

                        modelOrientation = new Orientation(modelHeading, modelTilt, modelRoll);
                    }

                    // Scale
                    if (this.modelXScaleColumn > 0 || this.modelYScaleColumn > 0 || this.modelZScaleColumn > 0)
                    {
                        double modelXScale = 1.0;
                        double modelYScale = 1.0;
                        double modelZScale = 1.0;

                        if (this.modelXScaleColumn > 0)
                        {
                            double.TryParse(((Excel.Range) this.range.Cells[row, this.modelXScaleColumn]).Value2.ToString(), out modelXScale);
                        }

                        if (this.modelYScaleColumn > 0)
                        {
                            double.TryParse(((Excel.Range) this.range.Cells[row, this.modelYScaleColumn]).Value2.ToString(), out modelYScale);
                        }

                        if (this.modelZScaleColumn > 0)
                        {
                            double.TryParse(((Excel.Range) this.range.Cells[row, this.modelZScaleColumn]).Value2.ToString(), out modelZScale);
                        }

                        modelScale = new Scale(modelXScale, modelYScale, modelZScale);
                    }

                    if (this.modelColumn > 0)
                    {
                        modelLink = new Link(((Excel.Range) this.range.Cells[row, this.modelColumn]).Value2.ToString());
                    }
                }

                // Geometry
                if (this.hasMultiGeometry)
                {
                    id            = ((Excel.Range) this.range.Cells[row, this.multiGeometryColumn]).Value2.ToString();
                    childElements = (from children in parentNode.Descendants(childType)
                                     where children.Element("MultiGeometry").Attribute("id").Value == id
                                     select children).ToArray <XElement>();
                    childType = "MultiGeometry";

                    if (childElements.Length < 1) // If the Placemark doesn't exist, create it
                    {
                        placemark.geometry = new MultiGeometry(id);
                        parentNode.Add(placemark.ToXNode());
                        parentNode = (from elements in parentNode.Descendants("Placemark").Descendants(childType)
                                      where elements.Attribute("id").Value == id
                                      select elements).First();
                    }
                    else // If the Placemark exists, use it
                    {
                        parentNode = childElements.First();
                    }
                }

                #region MultiType
                switch (this.multiType)
                {
                case 0:     // None
                    break;

                case 1:     // Polygon
                    id            = ((Excel.Range) this.range.Cells[row, this.multiTypeGroupColumn]).Value2.ToString();
                    childElements = (from children in parentNode.Descendants(childType).Descendants("Polygon")
                                     where children.Attribute("id").Value == id
                                     select children).ToArray <XElement>();
                    if (childElements.Length < 1)     // If the Placemark doesn't exist, create it
                    {
                        Polygon polygon = new Polygon(id);

                        if (this.hasAltitude)
                        {
                            polygon.hasAltitude  = true;
                            polygon.altitudeMode = this.altitudeModeIntToEnum[this.altitudeMode];
                            polygon.extrude      = this.extrude;
                            polygon.tessellate   = this.tesselllate;
                        }

                        if (childType == "Placemark")
                        {
                            XElement xPlacemark = (XElement)placemark.ToXNode();
                            parentNode.Add(xPlacemark);
                            parentNode = xPlacemark;
                        }

                        XElement xPolygon = (XElement)polygon.ToXNode();
                        parentNode.Add(xPolygon);
                        parentNode = xPolygon;
                    }
                    else     // If the Placemark exists, use it
                    {
                        parentNode = childElements[0];
                        System.Windows.Forms.MessageBox.Show(parentNode.ToString());
                    }

                    childType = "Polygon";
                    break;

                case 2:     // MultiTrack
                    id            = ((Excel.Range) this.range.Cells[row, this.multiTypeGroupColumn]).Value2.ToString();
                    childElements = (from children in parentNode.Descendants(childType).Descendants(gx + "MultiTrack")
                                     where children.Attribute("id").Value == id
                                     select children).ToArray <XElement>();

                    if (childElements.Length < 1)     // If the Placemark doesn't exist, create it
                    {
                        MultiTrack multiTrack = new MultiTrack(id, this.trackInterpolate);

                        if (this.hasAltitude)
                        {
                            multiTrack.hasAltitude  = true;
                            multiTrack.altitudeMode = this.altitudeModeIntToEnum[this.altitudeMode];
                        }

                        if (childType == "Placemark")
                        {
                            if (this.hasModel)
                            {
                                placemark.styleUrl = null;
                            }

                            XElement xPlacemark = (XElement)placemark.ToXNode();
                            xPlacemark.Descendants("TimeStamp").Remove();
                            parentNode.Add(xPlacemark);
                            parentNode = xPlacemark;
                        }

                        XElement xMultiTrack = (XElement)multiTrack.ToXNode();
                        parentNode.Add(xMultiTrack);
                        parentNode = xMultiTrack;
                    }
                    else     // If the placemark exists, use it
                    {
                        parentNode = childElements.First();
                    }

                    childType = gx + "MultiTrack";
                    break;
                }
                #endregion

                switch (this.dataType)
                {
                case 0:     // Point
                    geometry = new Point(new Geometry.Coordinates(coordinateSet));

                    if (this.hasAltitude)
                    {
                        ((Point)geometry).extrude = this.extrude;
                    }

                    break;

                case 1:     // Line String
                    id            = ((Excel.Range) this.range.Cells[row, this.dataTypeGroupColumn]).Value2.ToString();
                    childElements = (from children in parentNode.Descendants(childType).Descendants("LineString")
                                     where children.Attribute("id").Value.ToString() == id
                                     select children).ToArray <XElement>();

                    if (childElements.Length < 1)     // LineString does not exist
                    {
                        geometry = new LineString(id, new Geometry.Coordinates(coordinateSet));

                        if (this.hasAltitude)
                        {
                            ((LineString)geometry).extrude    = this.extrude;
                            ((LineString)geometry).tessellate = this.tesselllate;
                        }
                    }
                    else     // LineString exists, add coordinates
                    {
                        XElement coordinates = childElements[0].Element("coordinates");
                        coordinates.SetValue(coordinates.Value + " " + coordinateSet.getString());
                        updateDescriptionTable(ref this.range, ref row, ref document, (XElement)childElements[0].Parent);
                        addElements = false;
                    }

                    break;

                case 2:     // Linear Ring
                    id = ((Excel.Range) this.range.Cells[row, this.dataTypeGroupColumn]).Value2.ToString();

                    if (childType != "Polygon")
                    {
                        childElements = (from children in parentNode.Descendants(childType).Descendants("LinearRing")
                                         where children.Attribute("id").Value == id
                                         select children).ToArray <XElement>();
                    }
                    else
                    {
                        childElements = (from children in parentNode.Descendants().Descendants("LinearRing")
                                         where children.Attribute("id").Value == id
                                         select children).ToArray <XElement>();
                    }

                    if (childElements.Length < 1)     // LinearRing does not exist
                    {
                        geometry = new LinearRing(id, new Geometry.Coordinates(coordinateSet));

                        if (this.hasAltitude && childType != "Polygon")
                        {
                            ((LinearRing)geometry).extrude    = this.extrude;
                            ((LinearRing)geometry).tessellate = this.tesselllate;
                        }

                        if (childType == "Polygon")
                        {
                            if (!parentNode.Descendants("outerBoundaryIs").Any())
                            {
                                parentNode.Add(new XElement("outerBoundaryIs", geometry.ToXNode()));
                            }
                            else
                            {
                                parentNode.Add(new XElement("innerBoundaryIs", geometry.ToXNode()));
                                updateDescriptionTable(ref this.range, ref row, ref document, parentNode.Parent);
                            }

                            addElements = false;
                        }
                    }
                    else     // LinearRing exists, add coordinates
                    {
                        XElement coordinates = childElements[0].Element("coordinates");
                        coordinates.SetValue(coordinates.Value + " " + coordinateSet.getString());
                        updateDescriptionTable(ref this.range, ref row, ref document, childElements[0].Parent);
                        addElements = false;
                    }
                    break;

                case 3:     // Model
                    geometry = new Model(new Location(coordinateSet), modelOrientation, modelScale, modelLink);
                    break;

                case 4:     // Track
                    Orientation trackOrientation = null;
                    if (this.trackHeadingColumn > 0 || this.trackTiltColumn > 0 || this.trackRollColumn > 0)
                    {
                        double trackHeading = 0.0;
                        double trackTilt    = 0.0;
                        double trackRoll    = 0.0;

                        if (this.trackHeadingColumn > 0)
                        {
                            double.TryParse(((Excel.Range) this.range.Cells[row, this.trackHeadingColumn]).Value2.ToString(), out trackHeading);
                        }

                        if (this.trackTiltColumn > 0)
                        {
                            double.TryParse(((Excel.Range) this.range.Cells[row, this.trackTiltColumn]).Value2.ToString(), out trackTilt);
                        }

                        if (this.trackRollColumn > 0)
                        {
                            double.TryParse(((Excel.Range) this.range.Cells[row, this.trackRollColumn]).Value2.ToString(), out trackRoll);
                        }

                        trackOrientation = new Orientation(trackHeading, trackTilt, trackRoll);
                    }

                    id = ((Excel.Range) this.range.Cells[row, this.dataTypeGroupColumn]).Value2.ToString();

                    if (childType != gx + "MultiTrack")
                    {
                        childElements = (from children in parentNode.Descendants(childType).Descendants(gx + "Track")
                                         where children.Attribute("id").Value == id
                                         select children).ToArray <XElement>();
                    }
                    else
                    {
                        childElements = (from children in parentNode.Descendants(gx + "Track")
                                         where children.Attribute("id").Value == id
                                         select children).ToArray <XElement>();
                    }
                    if (childElements.Length < 1)     // If the placemark doesn't exist, create it
                    {
                        geometry = new Track(id, new Geometry.Coordinates(coordinateSet));

                        if (this.hasTimeStamp)
                        {
                            ((Track)geometry).whens = new TimeStamp[] { (TimeStamp)placemark.timePrimitive };
                        }

                        if (trackOrientation != null)
                        {
                            ((Track)geometry).angles = new Orientation[] { trackOrientation };
                        }

                        if (this.hasModel)
                        {
                            ((Track)geometry).model = new Model(modelOrientation, modelScale, modelLink);
                        }

                        if (childType == gx + "MultiTrack" && parentNode.Descendants(gx + "Track").Any())
                        {
                            updateDescriptionTable(ref this.range, ref row, ref document, parentNode.Parent);
                        }
                    }
                    else
                    {
                        XElement track = childElements[0];

                        if (this.hasTimeStamp)
                        {
                            (from whens in track.Descendants("when") select whens).Last().AddAfterSelf(((XElement)placemark.timePrimitive.ToXNode()).Descendants("when"));
                        }

                        (from coords in track.Descendants(gx + "coord") select coords).Last().AddAfterSelf(new XElement(gx + "coord", coordinateSet.getString().Replace(',', ' ')));

                        if (trackOrientation != null)
                        {
                            (from angles in track.Descendants(gx + "angles") select angles).Last().AddAfterSelf(new XElement(gx + "angles", trackOrientation.getString()));
                        }

                        updateDescriptionTable(ref this.range, ref row, ref document, childElements[0].Parent);
                        addElements = false;
                    }
                    break;
                }

                if (addElements)
                {
                    if (this.hasAltitude && this.multiType != 1)
                    {
                        geometry.hasAltitude  = true;
                        geometry.altitudeMode = this.altitudeModeIntToEnum[this.altitudeMode];
                    }

                    if (childType == "Placemark")
                    {
                        if (this.dataType == 4)
                        {
                            placemark.timePrimitive = null;
                        }

                        placemark.geometry = geometry;
                        parentNode.Add(placemark.ToXNode());
                    }
                    else
                    {
                        parentNode.Add(geometry.ToXNode());
                    }
                }
                toolStripProgressBar.PerformStep();
            }

            return(kml.ToString());
        }
 /// <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(baseForm));
     this.TitleLbl = new System.Windows.Forms.Label();
     this.myToolTip = new System.Windows.Forms.ToolTip(this.components);
     this.myStatusStrip = new System.Windows.Forms.StatusStrip();
     this.statusLbl = new System.Windows.Forms.ToolStripStatusLabel();
     this.messageLbl = new System.Windows.Forms.ToolStripStatusLabel();
     this.progressBar = new System.Windows.Forms.ToolStripProgressBar();
     this.myStatusStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // TitleLbl
     //
     this.TitleLbl.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TitleLbl.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.TitleLbl.Location = new System.Drawing.Point(0, 2);
     this.TitleLbl.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
     this.TitleLbl.Name = "TitleLbl";
     this.TitleLbl.Size = new System.Drawing.Size(434, 46);
     this.TitleLbl.TabIndex = 143;
     this.TitleLbl.Text = "baseForm";
     this.TitleLbl.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // myStatusStrip
     //
     this.myStatusStrip.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.myStatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.statusLbl,
     this.messageLbl,
     this.progressBar});
     this.myStatusStrip.Location = new System.Drawing.Point(0, 316);
     this.myStatusStrip.Name = "myStatusStrip";
     this.myStatusStrip.Padding = new System.Windows.Forms.Padding(2, 0, 28, 0);
     this.myStatusStrip.Size = new System.Drawing.Size(434, 26);
     this.myStatusStrip.TabIndex = 144;
     this.myStatusStrip.MouseHover += new System.EventHandler(this.myStatusStrip_MouseHover);
     //
     // statusLbl
     //
     this.statusLbl.AutoSize = false;
     this.statusLbl.Name = "statusLbl";
     this.statusLbl.Size = new System.Drawing.Size(45, 21);
     this.statusLbl.Text = "   ";
     //
     // messageLbl
     //
     this.messageLbl.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.messageLbl.Name = "messageLbl";
     this.messageLbl.Size = new System.Drawing.Size(359, 21);
     this.messageLbl.Spring = true;
     this.messageLbl.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // progressBar
     //
     this.progressBar.AutoSize = false;
     this.progressBar.Name = "progressBar";
     this.progressBar.Size = new System.Drawing.Size(150, 20);
     this.progressBar.Visible = false;
     //
     // baseForm
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(434, 342);
     this.Controls.Add(this.myStatusStrip);
     this.Controls.Add(this.TitleLbl);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Margin = new System.Windows.Forms.Padding(4);
     this.MaximizeBox = false;
     this.Name = "baseForm";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.baseForm_FormClosing);
     this.myStatusStrip.ResumeLayout(false);
     this.myStatusStrip.PerformLayout();
     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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.resultVerifyGridView = new System.Windows.Forms.DataGridView();
     this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.OutputTxtBox = new System.Windows.Forms.TextBox();
     this.VerifyAll_Btn = new System.Windows.Forms.Button();
     this.Verify_Btn = new System.Windows.Forms.Button();
     this.Close_Btn = new System.Windows.Forms.Button();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.statusProgressBar = new System.Windows.Forms.ToolStripProgressBar();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.resultVerifyGridView)).BeginInit();
     this.groupBox2.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.resultVerifyGridView);
     this.groupBox1.Location = new System.Drawing.Point(3, 3);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(779, 232);
     this.groupBox1.TabIndex = 7;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Result";
     //
     // resultVerifyGridView
     //
     this.resultVerifyGridView.AllowUserToAddRows = false;
     this.resultVerifyGridView.AllowUserToDeleteRows = false;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.resultVerifyGridView.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.resultVerifyGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.resultVerifyGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column2,
     this.Column3,
     this.Column4});
     this.resultVerifyGridView.Location = new System.Drawing.Point(8, 19);
     this.resultVerifyGridView.MultiSelect = false;
     this.resultVerifyGridView.Name = "resultVerifyGridView";
     this.resultVerifyGridView.ReadOnly = true;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.resultVerifyGridView.RowHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.resultVerifyGridView.Size = new System.Drawing.Size(760, 200);
     this.resultVerifyGridView.TabIndex = 8;
     //
     // Column2
     //
     this.Column2.HeaderText = "Before Clusters";
     this.Column2.Name = "Column2";
     this.Column2.ReadOnly = true;
     this.Column2.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.Column2.Width = 240;
     //
     // Column3
     //
     this.Column3.HeaderText = "Congestion";
     this.Column3.Name = "Column3";
     this.Column3.ReadOnly = true;
     this.Column3.Width = 240;
     //
     // Column4
     //
     this.Column4.HeaderText = "Congestion Type";
     this.Column4.Name = "Column4";
     this.Column4.ReadOnly = true;
     this.Column4.Width = 235;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.OutputTxtBox);
     this.groupBox2.Location = new System.Drawing.Point(4, 270);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(773, 373);
     this.groupBox2.TabIndex = 8;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Output";
     //
     // OutputTxtBox
     //
     this.OutputTxtBox.Location = new System.Drawing.Point(6, 19);
     this.OutputTxtBox.Multiline = true;
     this.OutputTxtBox.Name = "OutputTxtBox";
     this.OutputTxtBox.Size = new System.Drawing.Size(759, 348);
     this.OutputTxtBox.TabIndex = 0;
     //
     // VerifyAll_Btn
     //
     this.VerifyAll_Btn.Location = new System.Drawing.Point(481, 241);
     this.VerifyAll_Btn.Name = "VerifyAll_Btn";
     this.VerifyAll_Btn.Size = new System.Drawing.Size(75, 23);
     this.VerifyAll_Btn.TabIndex = 10;
     this.VerifyAll_Btn.Text = "Verify all";
     this.VerifyAll_Btn.UseVisualStyleBackColor = true;
     //
     // Verify_Btn
     //
     this.Verify_Btn.Location = new System.Drawing.Point(594, 241);
     this.Verify_Btn.Name = "Verify_Btn";
     this.Verify_Btn.Size = new System.Drawing.Size(75, 23);
     this.Verify_Btn.TabIndex = 9;
     this.Verify_Btn.Text = "Verify";
     this.Verify_Btn.UseVisualStyleBackColor = true;
     this.Verify_Btn.Click += new System.EventHandler(this.Verify_Btn_Click);
     //
     // Close_Btn
     //
     this.Close_Btn.Location = new System.Drawing.Point(702, 241);
     this.Close_Btn.Name = "Close_Btn";
     this.Close_Btn.Size = new System.Drawing.Size(75, 23);
     this.Close_Btn.TabIndex = 11;
     this.Close_Btn.Text = "Close";
     this.Close_Btn.UseVisualStyleBackColor = true;
     this.Close_Btn.Click += new System.EventHandler(this.Close_Btn_Click);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.statusLabel,
     this.statusProgressBar});
     this.statusStrip1.Location = new System.Drawing.Point(0, 659);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(784, 22);
     this.statusStrip1.TabIndex = 12;
     this.statusStrip1.Text = "statusStrip1";
     //
     // statusLabel
     //
     this.statusLabel.Name = "statusLabel";
     this.statusLabel.Size = new System.Drawing.Size(39, 17);
     this.statusLabel.Text = "Ready";
     //
     // statusProgressBar
     //
     this.statusProgressBar.Name = "statusProgressBar";
     this.statusProgressBar.Size = new System.Drawing.Size(100, 16);
     //
     // VerifyAllClusters
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(784, 681);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.VerifyAll_Btn);
     this.Controls.Add(this.Verify_Btn);
     this.Controls.Add(this.Close_Btn);
     this.Controls.Add(this.statusStrip1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximumSize = new System.Drawing.Size(800, 720);
     this.MinimumSize = new System.Drawing.Size(800, 720);
     this.Name = "VerifyAllClusters";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Result verify all clusters";
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.resultVerifyGridView)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #34
0
 /// <summary>
 /// デザイナ サポートに必要なメソッドです。このメソッドの内容を
 /// コード エディタで変更しないでください。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.LoadBtn = new System.Windows.Forms.Button();
     this.SaveBtn = new System.Windows.Forms.Button();
     this.DirectoryDialog = new System.Windows.Forms.FolderBrowserDialog();
     this.FileNameCombo = new System.Windows.Forms.ComboBox();
     this.ExpBtn = new System.Windows.Forms.Button();
     this.ExportDialog = new System.Windows.Forms.SaveFileDialog();
     this.ImpBtn = new System.Windows.Forms.Button();
     this.ImportDialog = new System.Windows.Forms.OpenFileDialog();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.MenuFile = new System.Windows.Forms.ToolStripMenuItem();
     this.MenuFileOpen = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuFileLoad = new System.Windows.Forms.ToolStripMenuItem();
     this.MenuFileSave = new System.Windows.Forms.ToolStripMenuItem();
     this.MenuFileImp = new System.Windows.Forms.ToolStripMenuItem();
     this.MenuFileExp = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuFileExit = new System.Windows.Forms.ToolStripMenuItem();
     this.MenuOption = new System.Windows.Forms.ToolStripMenuItem();
     this.MenuL2encdecTools = new System.Windows.Forms.ToolStripMenuItem();
     this.MenuL2encdecItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.MenuL2encdecItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.MenuIniItems1 = new System.Windows.Forms.ToolStripMenuItem();
     this.MenuIniItems2 = new System.Windows.Forms.ToolStripMenuItem();
     this.MenuAbout = new System.Windows.Forms.ToolStripMenuItem();
     this.statusBar = new System.Windows.Forms.StatusStrip();
     this.StatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.StatusProgress = new System.Windows.Forms.ToolStripProgressBar();
     this.menuStrip1.SuspendLayout();
     this.statusBar.SuspendLayout();
     this.SuspendLayout();
     //
     // LoadBtn
     //
     this.LoadBtn.Enabled = false;
     this.LoadBtn.Font = new System.Drawing.Font("MS UI Gothic", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
     this.LoadBtn.Location = new System.Drawing.Point(168, 31);
     this.LoadBtn.Name = "LoadBtn";
     this.LoadBtn.Size = new System.Drawing.Size(107, 37);
     this.LoadBtn.TabIndex = 0;
     this.LoadBtn.Text = "Load";
     this.LoadBtn.UseVisualStyleBackColor = true;
     this.LoadBtn.Click += new System.EventHandler(this.LoadBtn_Click);
     //
     // SaveBtn
     //
     this.SaveBtn.Enabled = false;
     this.SaveBtn.Font = new System.Drawing.Font("MS UI Gothic", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
     this.SaveBtn.Location = new System.Drawing.Point(281, 31);
     this.SaveBtn.Name = "SaveBtn";
     this.SaveBtn.Size = new System.Drawing.Size(104, 37);
     this.SaveBtn.TabIndex = 2;
     this.SaveBtn.Text = "Save";
     this.SaveBtn.UseVisualStyleBackColor = true;
     this.SaveBtn.Click += new System.EventHandler(this.SaveBtn_Click);
     //
     // DirectoryDialog
     //
     this.DirectoryDialog.Description = "Choose directory where LineageII System.";
     this.DirectoryDialog.ShowNewFolderButton = false;
     //
     // FileNameCombo
     //
     this.FileNameCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.FileNameCombo.FormattingEnabled = true;
     this.FileNameCombo.Location = new System.Drawing.Point(13, 42);
     this.FileNameCombo.Name = "FileNameCombo";
     this.FileNameCombo.Size = new System.Drawing.Size(145, 20);
     this.FileNameCombo.TabIndex = 4;
     this.FileNameCombo.SelectedIndexChanged += new System.EventHandler(this.FileNameCombo_SelectedIndexChanged);
     //
     // ExpBtn
     //
     this.ExpBtn.Enabled = false;
     this.ExpBtn.Font = new System.Drawing.Font("MS UI Gothic", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
     this.ExpBtn.Location = new System.Drawing.Point(499, 31);
     this.ExpBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.ExpBtn.Name = "ExpBtn";
     this.ExpBtn.Size = new System.Drawing.Size(102, 37);
     this.ExpBtn.TabIndex = 5;
     this.ExpBtn.Text = "Export";
     this.ExpBtn.UseVisualStyleBackColor = true;
     this.ExpBtn.Click += new System.EventHandler(this.ExpBtn_Click);
     //
     // ImpBtn
     //
     this.ImpBtn.Enabled = false;
     this.ImpBtn.Font = new System.Drawing.Font("MS UI Gothic", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
     this.ImpBtn.Location = new System.Drawing.Point(391, 31);
     this.ImpBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.ImpBtn.Name = "ImpBtn";
     this.ImpBtn.Size = new System.Drawing.Size(102, 37);
     this.ImpBtn.TabIndex = 6;
     this.ImpBtn.Text = "Import";
     this.ImpBtn.UseVisualStyleBackColor = true;
     this.ImpBtn.Click += new System.EventHandler(this.ImpBtn_Click);
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.MenuFile,
     this.MenuOption,
     this.MenuL2encdecTools,
     this.MenuAbout});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(612, 24);
     this.menuStrip1.TabIndex = 7;
     this.menuStrip1.Text = "menuStrip1";
     //
     // MenuFile
     //
     this.MenuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.MenuFileOpen,
     this.toolStripSeparator1,
     this.MenuFileLoad,
     this.MenuFileSave,
     this.MenuFileImp,
     this.MenuFileExp,
     this.toolStripSeparator2,
     this.MenuFileExit});
     this.MenuFile.Name = "MenuFile";
     this.MenuFile.Size = new System.Drawing.Size(36, 20);
     this.MenuFile.Text = "File";
     //
     // MenuFileOpen
     //
     this.MenuFileOpen.Name = "MenuFileOpen";
     this.MenuFileOpen.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
     this.MenuFileOpen.Size = new System.Drawing.Size(166, 22);
     this.MenuFileOpen.Text = "OpenFolder";
     this.MenuFileOpen.Click += new System.EventHandler(this.MenuFileOpen_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(163, 6);
     //
     // MenuFileLoad
     //
     this.MenuFileLoad.Name = "MenuFileLoad";
     this.MenuFileLoad.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.L)));
     this.MenuFileLoad.Size = new System.Drawing.Size(166, 22);
     this.MenuFileLoad.Text = "Load";
     this.MenuFileLoad.Click += new System.EventHandler(this.LoadBtn_Click);
     //
     // MenuFileSave
     //
     this.MenuFileSave.Name = "MenuFileSave";
     this.MenuFileSave.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
     this.MenuFileSave.Size = new System.Drawing.Size(166, 22);
     this.MenuFileSave.Text = "Save";
     this.MenuFileSave.Click += new System.EventHandler(this.SaveBtn_Click);
     //
     // MenuFileImp
     //
     this.MenuFileImp.Name = "MenuFileImp";
     this.MenuFileImp.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.I)));
     this.MenuFileImp.Size = new System.Drawing.Size(166, 22);
     this.MenuFileImp.Text = "Import";
     this.MenuFileImp.Click += new System.EventHandler(this.ImpBtn_Click);
     //
     // MenuFileExp
     //
     this.MenuFileExp.Name = "MenuFileExp";
     this.MenuFileExp.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.E)));
     this.MenuFileExp.Size = new System.Drawing.Size(166, 22);
     this.MenuFileExp.Text = "Export";
     this.MenuFileExp.Click += new System.EventHandler(this.ExpBtn_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(163, 6);
     //
     // MenuFileExit
     //
     this.MenuFileExit.Name = "MenuFileExit";
     this.MenuFileExit.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Q)));
     this.MenuFileExit.Size = new System.Drawing.Size(166, 22);
     this.MenuFileExit.Text = "Exit";
     this.MenuFileExit.Click += new System.EventHandler(this.MenuFileExit_Click);
     //
     // MenuOption
     //
     this.MenuOption.Name = "MenuOption";
     this.MenuOption.Size = new System.Drawing.Size(50, 20);
     this.MenuOption.Text = "Option";
     this.MenuOption.Click += new System.EventHandler(this.MenuOption_Click);
     //
     // MenuL2encdecTools
     //
     this.MenuL2encdecTools.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.MenuL2encdecItem1,
     this.MenuL2encdecItem2});
     this.MenuL2encdecTools.Name = "MenuL2encdecTools";
     this.MenuL2encdecTools.Size = new System.Drawing.Size(93, 20);
     this.MenuL2encdecTools.Text = "L2encdecTools";
     //
     // MenuL2encdecItem1
     //
     this.MenuL2encdecItem1.Name = "MenuL2encdecItem1";
     this.MenuL2encdecItem1.Size = new System.Drawing.Size(141, 22);
     this.MenuL2encdecItem1.Text = "Patch System";
     this.MenuL2encdecItem1.Click += new System.EventHandler(this.MenuL2encdecItem1_Click);
     //
     // MenuL2encdecItem2
     //
     this.MenuL2encdecItem2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.MenuIniItems1,
     this.MenuIniItems2});
     this.MenuL2encdecItem2.Name = "MenuL2encdecItem2";
     this.MenuL2encdecItem2.Size = new System.Drawing.Size(141, 22);
     this.MenuL2encdecItem2.Text = "Edit INI Files";
     //
     // MenuIniItems1
     //
     this.MenuIniItems1.Name = "MenuIniItems1";
     this.MenuIniItems1.Size = new System.Drawing.Size(106, 22);
     this.MenuIniItems1.Text = "l2.ini";
     this.MenuIniItems1.Click += new System.EventHandler(this.MenuIniItems_Click);
     //
     // MenuIniItems2
     //
     this.MenuIniItems2.Name = "MenuIniItems2";
     this.MenuIniItems2.Size = new System.Drawing.Size(106, 22);
     this.MenuIniItems2.Text = "user.ini";
     this.MenuIniItems2.Click += new System.EventHandler(this.MenuIniItems_Click);
     //
     // MenuAbout
     //
     this.MenuAbout.Name = "MenuAbout";
     this.MenuAbout.Size = new System.Drawing.Size(47, 20);
     this.MenuAbout.Text = "About";
     this.MenuAbout.Click += new System.EventHandler(this.MenuAbout_Click);
     //
     // statusBar
     //
     this.statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.StatusLabel,
     this.StatusProgress});
     this.statusBar.Location = new System.Drawing.Point(0, 79);
     this.statusBar.Name = "statusBar";
     this.statusBar.Size = new System.Drawing.Size(612, 22);
     this.statusBar.TabIndex = 8;
     //
     // StatusLabel
     //
     this.StatusLabel.Name = "StatusLabel";
     this.StatusLabel.Size = new System.Drawing.Size(597, 17);
     this.StatusLabel.Spring = true;
     this.StatusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // StatusProgress
     //
     this.StatusProgress.Name = "StatusProgress";
     this.StatusProgress.Size = new System.Drawing.Size(100, 16);
     this.StatusProgress.Visible = false;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(612, 101);
     this.Controls.Add(this.statusBar);
     this.Controls.Add(this.ImpBtn);
     this.Controls.Add(this.ExpBtn);
     this.Controls.Add(this.FileNameCombo);
     this.Controls.Add(this.SaveBtn);
     this.Controls.Add(this.LoadBtn);
     this.Controls.Add(this.menuStrip1);
     this.Font = new System.Drawing.Font("MS UI Gothic", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip = this.menuStrip1;
     this.MaximizeBox = false;
     this.Name = "MainForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "L2Dat_EncDec";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
     this.Load += new System.EventHandler(this.MainForm_Load);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.statusBar.ResumeLayout(false);
     this.statusBar.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #35
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.Windows.Forms.ColumnHeader columnHeader3;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ModelCheckingForm));
     System.Windows.Forms.ColumnHeader columnHeader2;
     System.Windows.Forms.ColumnHeader columnHeader1;
     this.ContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.MenuItem_Copy = new System.Windows.Forms.ToolStripMenuItem();
     this.MenuItem_Paste = new System.Windows.Forms.ToolStripMenuItem();
     this.MenuItem_Cut = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuItem_SelectAll = new System.Windows.Forms.ToolStripMenuItem();
     this.MenuItem_Clear = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuItem_SaveAs = new System.Windows.Forms.ToolStripMenuItem();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.StatusLabel_Text = new System.Windows.Forms.ToolStripStatusLabel();
     this.ProgressBar = new System.Windows.Forms.ToolStripProgressBar();
     this.ToolTip = new System.Windows.Forms.ToolTip(this.components);
     this.Button_Verify = new System.Windows.Forms.Button();
     this.Button_BAGraph = new System.Windows.Forms.Button();
     this.Label_AdmissibleBehavior = new System.Windows.Forms.Label();
     this.Label_TimeOutAfter = new System.Windows.Forms.Label();
     this.Label_VerificationEngine = new System.Windows.Forms.Label();
     this.ImageList = new System.Windows.Forms.ImageList(this.components);
     this.GroupBox_Assertions = new System.Windows.Forms.GroupBox();
     this.ListView_Assertions = new System.Windows.Forms.ListView();
     this.GroupBox_SelectedAssertion = new System.Windows.Forms.GroupBox();
     this.Label_SelectedAssertion = new System.Windows.Forms.Label();
     this.Button_SimulateWitnessTrace = new System.Windows.Forms.Button();
     this.GroupBox_Options = new System.Windows.Forms.GroupBox();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.CheckBox_GenerateWitnessTrace = new System.Windows.Forms.CheckBox();
     this.ComboBox_VerificationEngine = new System.Windows.Forms.ComboBox();
     this.ComboBox_AdmissibleBehavior = new System.Windows.Forms.ComboBox();
     this.NumericUpDown_TimeOut = new System.Windows.Forms.NumericUpDown();
     this.GroupBox_Output = new System.Windows.Forms.GroupBox();
     this.TextBox_Output = new System.Windows.Forms.RichTextBox();
     this.perfomanceTimer = new System.Windows.Forms.Timer(this.components);
     columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.ContextMenu.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.GroupBox_Assertions.SuspendLayout();
     this.GroupBox_SelectedAssertion.SuspendLayout();
     this.GroupBox_Options.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NumericUpDown_TimeOut)).BeginInit();
     this.GroupBox_Output.SuspendLayout();
     this.SuspendLayout();
     //
     // columnHeader3
     //
     resources.ApplyResources(columnHeader3, "columnHeader3");
     //
     // columnHeader2
     //
     resources.ApplyResources(columnHeader2, "columnHeader2");
     //
     // columnHeader1
     //
     resources.ApplyResources(columnHeader1, "columnHeader1");
     //
     // ContextMenu
     //
     this.ContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.MenuItem_Copy,
     this.MenuItem_Paste,
     this.MenuItem_Cut,
     this.toolStripSeparator1,
     this.MenuItem_SelectAll,
     this.MenuItem_Clear,
     this.toolStripSeparator2,
     this.MenuItem_SaveAs});
     this.ContextMenu.Name = "ContextMenu";
     resources.ApplyResources(this.ContextMenu, "ContextMenu");
     //
     // MenuItem_Copy
     //
     resources.ApplyResources(this.MenuItem_Copy, "MenuItem_Copy");
     this.MenuItem_Copy.Name = "MenuItem_Copy";
     this.MenuItem_Copy.Click += new System.EventHandler(this.MenuItem_Copy_Click);
     //
     // MenuItem_Paste
     //
     resources.ApplyResources(this.MenuItem_Paste, "MenuItem_Paste");
     this.MenuItem_Paste.Name = "MenuItem_Paste";
     //
     // MenuItem_Cut
     //
     resources.ApplyResources(this.MenuItem_Cut, "MenuItem_Cut");
     this.MenuItem_Cut.Name = "MenuItem_Cut";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
     //
     // MenuItem_SelectAll
     //
     this.MenuItem_SelectAll.Name = "MenuItem_SelectAll";
     resources.ApplyResources(this.MenuItem_SelectAll, "MenuItem_SelectAll");
     this.MenuItem_SelectAll.Click += new System.EventHandler(this.MenuItem_SelectAll_Click);
     //
     // MenuItem_Clear
     //
     this.MenuItem_Clear.Name = "MenuItem_Clear";
     resources.ApplyResources(this.MenuItem_Clear, "MenuItem_Clear");
     this.MenuItem_Clear.Click += new System.EventHandler(this.MenuItem_Clear_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2");
     //
     // MenuItem_SaveAs
     //
     resources.ApplyResources(this.MenuItem_SaveAs, "MenuItem_SaveAs");
     this.MenuItem_SaveAs.Name = "MenuItem_SaveAs";
     this.MenuItem_SaveAs.Click += new System.EventHandler(this.MenuItem_SaveAs_Click);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.StatusLabel_Text,
     this.ProgressBar});
     this.statusStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     resources.ApplyResources(this.statusStrip1, "statusStrip1");
     this.statusStrip1.Name = "statusStrip1";
     //
     // StatusLabel_Text
     //
     this.StatusLabel_Text.Name = "StatusLabel_Text";
     resources.ApplyResources(this.StatusLabel_Text, "StatusLabel_Text");
     //
     // ProgressBar
     //
     this.ProgressBar.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.ProgressBar.Name = "ProgressBar";
     resources.ApplyResources(this.ProgressBar, "ProgressBar");
     //
     // ToolTip
     //
     this.ToolTip.AutomaticDelay = 1;
     this.ToolTip.AutoPopDelay = 10000;
     this.ToolTip.InitialDelay = 1;
     this.ToolTip.IsBalloon = true;
     this.ToolTip.ReshowDelay = 0;
     this.ToolTip.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
     this.ToolTip.ToolTipTitle = "Information";
     //
     // Button_Verify
     //
     resources.ApplyResources(this.Button_Verify, "Button_Verify");
     this.Button_Verify.Name = "Button_Verify";
     this.ToolTip.SetToolTip(this.Button_Verify, resources.GetString("Button_Verify.ToolTip"));
     this.Button_Verify.UseVisualStyleBackColor = true;
     this.Button_Verify.Click += new System.EventHandler(this.Button_Verify_Click);
     //
     // Button_BAGraph
     //
     resources.ApplyResources(this.Button_BAGraph, "Button_BAGraph");
     this.Button_BAGraph.Name = "Button_BAGraph";
     this.ToolTip.SetToolTip(this.Button_BAGraph, resources.GetString("Button_BAGraph.ToolTip"));
     this.Button_BAGraph.UseVisualStyleBackColor = true;
     this.Button_BAGraph.Click += new System.EventHandler(this.Button_BAGraph_Click);
     //
     // Label_AdmissibleBehavior
     //
     resources.ApplyResources(this.Label_AdmissibleBehavior, "Label_AdmissibleBehavior");
     this.Label_AdmissibleBehavior.Name = "Label_AdmissibleBehavior";
     this.ToolTip.SetToolTip(this.Label_AdmissibleBehavior, resources.GetString("Label_AdmissibleBehavior.ToolTip"));
     //
     // Label_TimeOutAfter
     //
     resources.ApplyResources(this.Label_TimeOutAfter, "Label_TimeOutAfter");
     this.Label_TimeOutAfter.Name = "Label_TimeOutAfter";
     this.ToolTip.SetToolTip(this.Label_TimeOutAfter, resources.GetString("Label_TimeOutAfter.ToolTip"));
     //
     // Label_VerificationEngine
     //
     resources.ApplyResources(this.Label_VerificationEngine, "Label_VerificationEngine");
     this.Label_VerificationEngine.Name = "Label_VerificationEngine";
     this.ToolTip.SetToolTip(this.Label_VerificationEngine, resources.GetString("Label_VerificationEngine.ToolTip"));
     //
     // ImageList
     //
     this.ImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ImageList.ImageStream")));
     this.ImageList.TransparentColor = System.Drawing.Color.Transparent;
     this.ImageList.Images.SetKeyName(0, "True");
     this.ImageList.Images.SetKeyName(1, "False");
     this.ImageList.Images.SetKeyName(2, "Unknown");
     this.ImageList.Images.SetKeyName(3, "Prob True");
     //
     // GroupBox_Assertions
     //
     this.GroupBox_Assertions.Controls.Add(this.ListView_Assertions);
     resources.ApplyResources(this.GroupBox_Assertions, "GroupBox_Assertions");
     this.GroupBox_Assertions.Name = "GroupBox_Assertions";
     this.GroupBox_Assertions.TabStop = false;
     //
     // ListView_Assertions
     //
     resources.ApplyResources(this.ListView_Assertions, "ListView_Assertions");
     this.ListView_Assertions.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     columnHeader3,
     columnHeader2,
     columnHeader1});
     this.ListView_Assertions.FullRowSelect = true;
     this.ListView_Assertions.GridLines = true;
     this.ListView_Assertions.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
     this.ListView_Assertions.HideSelection = false;
     this.ListView_Assertions.LargeImageList = this.ImageList;
     this.ListView_Assertions.Name = "ListView_Assertions";
     this.ListView_Assertions.ShowGroups = false;
     this.ListView_Assertions.SmallImageList = this.ImageList;
     this.ListView_Assertions.UseCompatibleStateImageBehavior = false;
     this.ListView_Assertions.View = System.Windows.Forms.View.Details;
     this.ListView_Assertions.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.ListView_Assertions_ItemSelectionChanged);
     this.ListView_Assertions.DoubleClick += new System.EventHandler(this.ListView_Assertions_DoubleClick);
     //
     // GroupBox_SelectedAssertion
     //
     this.GroupBox_SelectedAssertion.Controls.Add(this.Label_SelectedAssertion);
     this.GroupBox_SelectedAssertion.Controls.Add(this.Button_Verify);
     this.GroupBox_SelectedAssertion.Controls.Add(this.Button_BAGraph);
     this.GroupBox_SelectedAssertion.Controls.Add(this.Button_SimulateWitnessTrace);
     resources.ApplyResources(this.GroupBox_SelectedAssertion, "GroupBox_SelectedAssertion");
     this.GroupBox_SelectedAssertion.Name = "GroupBox_SelectedAssertion";
     this.GroupBox_SelectedAssertion.TabStop = false;
     //
     // Label_SelectedAssertion
     //
     resources.ApplyResources(this.Label_SelectedAssertion, "Label_SelectedAssertion");
     this.Label_SelectedAssertion.Name = "Label_SelectedAssertion";
     //
     // Button_SimulateWitnessTrace
     //
     resources.ApplyResources(this.Button_SimulateWitnessTrace, "Button_SimulateWitnessTrace");
     this.Button_SimulateWitnessTrace.Name = "Button_SimulateWitnessTrace";
     this.Button_SimulateWitnessTrace.UseVisualStyleBackColor = true;
     this.Button_SimulateWitnessTrace.Click += new System.EventHandler(this.Button_SimulateCounterExample_Click);
     //
     // GroupBox_Options
     //
     this.GroupBox_Options.Controls.Add(this.splitContainer1);
     resources.ApplyResources(this.GroupBox_Options, "GroupBox_Options");
     this.GroupBox_Options.Name = "GroupBox_Options";
     this.GroupBox_Options.TabStop = false;
     //
     // splitContainer1
     //
     resources.ApplyResources(this.splitContainer1, "splitContainer1");
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.CheckBox_GenerateWitnessTrace);
     this.splitContainer1.Panel1.Controls.Add(this.ComboBox_VerificationEngine);
     this.splitContainer1.Panel1.Controls.Add(this.Label_VerificationEngine);
     this.splitContainer1.Panel1.Controls.Add(this.Label_TimeOutAfter);
     this.splitContainer1.Panel1.Controls.Add(this.ComboBox_AdmissibleBehavior);
     this.splitContainer1.Panel1.Controls.Add(this.NumericUpDown_TimeOut);
     this.splitContainer1.Panel1.Controls.Add(this.Label_AdmissibleBehavior);
     this.splitContainer1.Panel2Collapsed = true;
     //
     // CheckBox_GenerateWitnessTrace
     //
     resources.ApplyResources(this.CheckBox_GenerateWitnessTrace, "CheckBox_GenerateWitnessTrace");
     this.CheckBox_GenerateWitnessTrace.Checked = true;
     this.CheckBox_GenerateWitnessTrace.CheckState = System.Windows.Forms.CheckState.Checked;
     this.CheckBox_GenerateWitnessTrace.Name = "CheckBox_GenerateWitnessTrace";
     this.CheckBox_GenerateWitnessTrace.UseVisualStyleBackColor = true;
     //
     // ComboBox_VerificationEngine
     //
     resources.ApplyResources(this.ComboBox_VerificationEngine, "ComboBox_VerificationEngine");
     this.ComboBox_VerificationEngine.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ComboBox_VerificationEngine.FormattingEnabled = true;
     this.ComboBox_VerificationEngine.Name = "ComboBox_VerificationEngine";
     //
     // ComboBox_AdmissibleBehavior
     //
     resources.ApplyResources(this.ComboBox_AdmissibleBehavior, "ComboBox_AdmissibleBehavior");
     this.ComboBox_AdmissibleBehavior.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ComboBox_AdmissibleBehavior.FormattingEnabled = true;
     this.ComboBox_AdmissibleBehavior.Name = "ComboBox_AdmissibleBehavior";
     this.ComboBox_AdmissibleBehavior.SelectedIndexChanged += new System.EventHandler(this.ComboBox_AddmissibleBehavior_SelectedIndexChanged);
     //
     // NumericUpDown_TimeOut
     //
     resources.ApplyResources(this.NumericUpDown_TimeOut, "NumericUpDown_TimeOut");
     this.NumericUpDown_TimeOut.Maximum = new decimal(new int[] {
     10000000,
     0,
     0,
     0});
     this.NumericUpDown_TimeOut.Name = "NumericUpDown_TimeOut";
     this.NumericUpDown_TimeOut.Value = new decimal(new int[] {
     120,
     0,
     0,
     0});
     //
     // GroupBox_Output
     //
     this.GroupBox_Output.Controls.Add(this.TextBox_Output);
     resources.ApplyResources(this.GroupBox_Output, "GroupBox_Output");
     this.GroupBox_Output.Name = "GroupBox_Output";
     this.GroupBox_Output.TabStop = false;
     //
     // TextBox_Output
     //
     this.TextBox_Output.BackColor = System.Drawing.Color.White;
     resources.ApplyResources(this.TextBox_Output, "TextBox_Output");
     this.TextBox_Output.Name = "TextBox_Output";
     this.TextBox_Output.ReadOnly = true;
     this.TextBox_Output.MouseUp += new System.Windows.Forms.MouseEventHandler(this.TextBox_Output_MouseUp);
     //
     // perfomanceTimer
     //
     this.perfomanceTimer.Interval = 1000;
     this.perfomanceTimer.Tick += new System.EventHandler(this.perfomanceTimer_Tick);
     //
     // ModelCheckingForm
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.GroupBox_Output);
     this.Controls.Add(this.GroupBox_Options);
     this.Controls.Add(this.GroupBox_SelectedAssertion);
     this.Controls.Add(this.GroupBox_Assertions);
     this.Controls.Add(this.statusStrip1);
     this.Name = "ModelCheckingForm";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ModelCheckingForm_FormClosing);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ModelCheckingForm_FormClosed);
     this.ContextMenu.ResumeLayout(false);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.GroupBox_Assertions.ResumeLayout(false);
     this.GroupBox_SelectedAssertion.ResumeLayout(false);
     this.GroupBox_SelectedAssertion.PerformLayout();
     this.GroupBox_Options.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.NumericUpDown_TimeOut)).EndInit();
     this.GroupBox_Output.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        public void GenerateRecords(ClusterInfo cluster, int numebrOfRecords, System.Windows.Forms.ToolStripProgressBar bar)
        {
            Initialization();
            int iteration = 0;
            int mc        = 0;
            int fc        = 0;

            Random        rand   = new Random();
            PatientRecord record = new PatientRecord();

            Comm comm = new Comm(cluster.username, cluster.password, cluster.server, cluster.keyspace);

            comm.Connect();
            ISession session = comm.GetSession();

            //Deleting existing data in the patient_record
            string            truncateString = "truncate patient_record";
            PreparedStatement ps             = session.Prepare(truncateString);
            BoundStatement    bs             = ps.Bind();

            session.Execute(bs);

            string basePath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);

            while (iteration < numebrOfRecords)
            {
                if ((fc >= 500) || (rand.Next(0, 2) == 0 && mc < 500))
                {
                    record.FirstName = MaleNames.ElementAt(mc).Item1;
                    record.LastName  = MaleNames.ElementAt(mc).Item2;
                    record.Gender    = GenderType.Male;
                    mc++;
                }
                else
                {
                    record.FirstName = FemaleNames.ElementAt(fc).Item1;
                    record.LastName  = FemaleNames.ElementAt(fc).Item2;
                    record.Gender    = GenderType.Femal;
                    fc++;
                }
                record.DateOfBirth = GetRandomDOB(new DateTime(1950, 1, 1), DateTime.Today);
                record.Telephone   = GetRandomTelNo();
                record.Address     = GetRandomAddress();
                record.Date        = DateTime.Now;
                record.Comments    = "This is for future use.";

                string xray_path      = Path.Combine(basePath, @"Resources\" + record.LastName + "_" + record.Telephone + "_xray" + ".png");
                string mri_path       = Path.Combine(basePath, @"Resources\" + record.LastName + "_" + record.Telephone + "_mri" + ".png");
                string diagnosis_path = Path.Combine(basePath, @"Resources\" + record.LastName + "_" + record.Telephone + "_diagnosis" + ".pdf");

                //Creating xray image
                DynamicImage(xray_path, record.GetString());

                //Creating mri image
                DynamicImage(mri_path, record.GetString());

                //Creating diagnosis pdf file
                var writer   = new PdfWriter(diagnosis_path);
                var pdf      = new PdfDocument(writer);
                var document = new Document(pdf);
                for (int k = 0; k < 5; k++)
                {
                    document.Add(new Paragraph(record.GetString()));
                }
                document.Close();

                record.XrayImageContent    = ReadFile(xray_path);
                record.MRIImageContent     = ReadFile(mri_path);
                record.DiagnosisPDFContent = ReadFile(diagnosis_path);

                string queryString = "INSERT INTO Patient_Record(key, firstName, lastName, gender, date_of_birth, phone_no, address, xray_image, xray_image_len, mri_image, mri_image_len, diagnosis_pdf, diagnosis_pdf_len, date, comment)"
                                     + " VALUES(now(), ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)";

                PreparedStatement preparedStatement = session.Prepare(queryString);
                BoundStatement    boundStatement    = preparedStatement.Bind(
                    record.FirstName,
                    record.LastName,
                    (int)record.Gender,
                    record.DateOfBirth.ToShortDateString(),
                    record.Telephone,
                    record.Address,
                    record.XrayImageContent,
                    record.XrayImageContent.Length,
                    record.MRIImageContent,
                    record.MRIImageContent.Length,
                    record.DiagnosisPDFContent,
                    record.DiagnosisPDFContent.Length,
                    DateTime.Now.ToShortDateString(),
                    record.Comments
                    );
                session.Execute(boundStatement);

                //delete creating files after storing in the database
                File.Delete(xray_path);
                File.Delete(mri_path);
                File.Delete(diagnosis_path);

                iteration++;
                bar.PerformStep();
            }

            comm.Close();
            bar.Visible = false;
        }
Пример #37
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Index));
     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.退出ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.groupBox_FileInfo = new System.Windows.Forms.GroupBox();
     this.dgFiles = new System.Windows.Forms.DataGridView();
     this.文件名 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.路径 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.扩展名 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.是否已处理 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.是否处理成功 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.处理用时 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.备注 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.contextMenuStrip_LBoxWait = 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.groupBox_Search = new System.Windows.Forms.GroupBox();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.ckIsContent = new System.Windows.Forms.CheckBox();
     this.ckIsFileName = new System.Windows.Forms.CheckBox();
     this.ckIsWhole = new System.Windows.Forms.CheckBox();
     this.ckIsNotIgnoreLowerCase = new System.Windows.Forms.CheckBox();
     this.ckIsRegexp = new System.Windows.Forms.CheckBox();
     this.txtOldValue = new System.Windows.Forms.TextBox();
     this.groupBox_Replace = new System.Windows.Forms.GroupBox();
     this.txtNew = new System.Windows.Forms.TextBox();
     this.btnSave = new System.Windows.Forms.Button();
     this.groupBox_OutPut = new System.Windows.Forms.GroupBox();
     this.txtFileLastName = new System.Windows.Forms.TextBox();
     this.txtFileFirstName = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.btnOpenOutPath = new System.Windows.Forms.Button();
     this.btnOutPutPath = new System.Windows.Forms.Button();
     this.txtOutPutPath = new System.Windows.Forms.TextBox();
     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();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.menuStrip1.SuspendLayout();
     this.groupBox_FileInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgFiles)).BeginInit();
     this.contextMenuStrip_LBoxWait.SuspendLayout();
     this.groupBox_Search.SuspendLayout();
     this.tableLayoutPanel3.SuspendLayout();
     this.panel2.SuspendLayout();
     this.groupBox_Replace.SuspendLayout();
     this.groupBox_OutPut.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // 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(897, 25);
     this.menuStrip1.TabIndex = 0;
     this.menuStrip1.Text = "menuStrip1";
     //
     // 文件ToolStripMenuItem
     //
     this.文件ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.打开文件ToolStripMenuItem,
     this.打开文件夹ToolStripMenuItem,
     this.导出ToolStripMenuItem,
     this.退出ToolStripMenuItem});
     this.文件ToolStripMenuItem.Name = "文件ToolStripMenuItem";
     this.文件ToolStripMenuItem.Size = new System.Drawing.Size(44, 21);
     this.文件ToolStripMenuItem.Text = "文件";
     //
     // 打开文件ToolStripMenuItem
     //
     this.打开文件ToolStripMenuItem.Name = "打开文件ToolStripMenuItem";
     this.打开文件ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.打开文件ToolStripMenuItem.Text = "打开文件";
     this.打开文件ToolStripMenuItem.Click += new System.EventHandler(this.打开文件ToolStripMenuItem_Click);
     //
     // 打开文件夹ToolStripMenuItem
     //
     this.打开文件夹ToolStripMenuItem.Name = "打开文件夹ToolStripMenuItem";
     this.打开文件夹ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.打开文件夹ToolStripMenuItem.Text = "打开文件夹";
     this.打开文件夹ToolStripMenuItem.Click += new System.EventHandler(this.打开文件夹ToolStripMenuItem_Click);
     //
     // 导出ToolStripMenuItem
     //
     this.导出ToolStripMenuItem.Name = "导出ToolStripMenuItem";
     this.导出ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.导出ToolStripMenuItem.Text = "导出";
     this.导出ToolStripMenuItem.Click += new System.EventHandler(this.导出ToolStripMenuItem_Click);
     //
     // 退出ToolStripMenuItem
     //
     this.退出ToolStripMenuItem.Name = "退出ToolStripMenuItem";
     this.退出ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.退出ToolStripMenuItem.Text = "退出";
     this.退出ToolStripMenuItem.Click += new System.EventHandler(this.退出ToolStripMenuItem_Click);
     //
     // groupBox_FileInfo
     //
     this.groupBox_FileInfo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox_FileInfo.Controls.Add(this.dgFiles);
     this.groupBox_FileInfo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.groupBox_FileInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.groupBox_FileInfo.Location = new System.Drawing.Point(12, 28);
     this.groupBox_FileInfo.Name = "groupBox_FileInfo";
     this.groupBox_FileInfo.Size = new System.Drawing.Size(873, 180);
     this.groupBox_FileInfo.TabIndex = 1;
     this.groupBox_FileInfo.TabStop = false;
     //
     // dgFiles
     //
     this.dgFiles.AllowUserToAddRows = false;
     this.dgFiles.AllowUserToDeleteRows = false;
     this.dgFiles.AllowUserToOrderColumns = true;
     this.dgFiles.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgFiles.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dgFiles.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgFiles.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.文件名,
     this.路径,
     this.扩展名,
     this.是否已处理,
     this.是否处理成功,
     this.处理用时,
     this.备注});
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgFiles.DefaultCellStyle = dataGridViewCellStyle2;
     this.dgFiles.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgFiles.Location = new System.Drawing.Point(3, 17);
     this.dgFiles.Name = "dgFiles";
     this.dgFiles.ReadOnly = true;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgFiles.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
     this.dgFiles.RowTemplate.Height = 23;
     this.dgFiles.Size = new System.Drawing.Size(867, 160);
     this.dgFiles.TabIndex = 2;
     this.dgFiles.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dgFiles_RowPostPaint);
     //
     // 文件名
     //
     this.文件名.DataPropertyName = "文件名";
     this.文件名.HeaderText = "文件名";
     this.文件名.Name = "文件名";
     this.文件名.ReadOnly = true;
     //
     // 路径
     //
     this.路径.DataPropertyName = "路径";
     this.路径.HeaderText = "路径";
     this.路径.Name = "路径";
     this.路径.ReadOnly = true;
     //
     // 扩展名
     //
     this.扩展名.DataPropertyName = "扩展名";
     this.扩展名.HeaderText = "扩展名";
     this.扩展名.Name = "扩展名";
     this.扩展名.ReadOnly = true;
     //
     // 是否已处理
     //
     this.是否已处理.DataPropertyName = "是否已处理";
     this.是否已处理.HeaderText = "是否已处理";
     this.是否已处理.Name = "是否已处理";
     this.是否已处理.ReadOnly = true;
     //
     // 是否处理成功
     //
     this.是否处理成功.DataPropertyName = "是否处理成功";
     this.是否处理成功.HeaderText = "是否处理成功";
     this.是否处理成功.Name = "是否处理成功";
     this.是否处理成功.ReadOnly = true;
     //
     // 处理用时
     //
     this.处理用时.DataPropertyName = "处理用时";
     this.处理用时.HeaderText = "处理用时(秒)";
     this.处理用时.Name = "处理用时";
     this.处理用时.ReadOnly = true;
     //
     // 备注
     //
     this.备注.DataPropertyName = "备注";
     this.备注.HeaderText = "备注";
     this.备注.Name = "备注";
     this.备注.ReadOnly = true;
     //
     // contextMenuStrip_LBoxWait
     //
     this.contextMenuStrip_LBoxWait.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.删除ToolStripMenuItem,
     this.全选ToolStripMenuItem,
     this.反选ToolStripMenuItem});
     this.contextMenuStrip_LBoxWait.Name = "contextMenuStrip_LBoxWait";
     this.contextMenuStrip_LBoxWait.Size = new System.Drawing.Size(69, 70);
     //
     // 删除ToolStripMenuItem
     //
     this.删除ToolStripMenuItem.Name = "删除ToolStripMenuItem";
     this.删除ToolStripMenuItem.Size = new System.Drawing.Size(68, 22);
     //
     // 全选ToolStripMenuItem
     //
     this.全选ToolStripMenuItem.Name = "全选ToolStripMenuItem";
     this.全选ToolStripMenuItem.Size = new System.Drawing.Size(68, 22);
     //
     // 反选ToolStripMenuItem
     //
     this.反选ToolStripMenuItem.Name = "反选ToolStripMenuItem";
     this.反选ToolStripMenuItem.Size = new System.Drawing.Size(68, 22);
     //
     // groupBox_Search
     //
     this.groupBox_Search.Controls.Add(this.tableLayoutPanel3);
     this.groupBox_Search.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox_Search.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.groupBox_Search.Location = new System.Drawing.Point(3, 3);
     this.groupBox_Search.Name = "groupBox_Search";
     this.groupBox_Search.Size = new System.Drawing.Size(432, 132);
     this.groupBox_Search.TabIndex = 2;
     this.groupBox_Search.TabStop = false;
     this.groupBox_Search.Text = "查找内容:";
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.ColumnCount = 1;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel3.Controls.Add(this.panel2, 0, 1);
     this.tableLayoutPanel3.Controls.Add(this.txtOldValue, 0, 0);
     this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 17);
     this.tableLayoutPanel3.Name = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 2;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 66.96429F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.03571F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel3.Size = new System.Drawing.Size(426, 112);
     this.tableLayoutPanel3.TabIndex = 0;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.ckIsContent);
     this.panel2.Controls.Add(this.ckIsFileName);
     this.panel2.Controls.Add(this.ckIsWhole);
     this.panel2.Controls.Add(this.ckIsNotIgnoreLowerCase);
     this.panel2.Controls.Add(this.ckIsRegexp);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(3, 78);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(420, 31);
     this.panel2.TabIndex = 0;
     //
     // ckIsContent
     //
     this.ckIsContent.AutoSize = true;
     this.ckIsContent.Location = new System.Drawing.Point(337, 8);
     this.ckIsContent.Name = "ckIsContent";
     this.ckIsContent.Size = new System.Drawing.Size(72, 16);
     this.ckIsContent.TabIndex = 11;
     this.ckIsContent.Text = "文件内容";
     this.ckIsContent.UseVisualStyleBackColor = true;
     //
     // ckIsFileName
     //
     this.ckIsFileName.AutoSize = true;
     this.ckIsFileName.Location = new System.Drawing.Point(271, 8);
     this.ckIsFileName.Name = "ckIsFileName";
     this.ckIsFileName.Size = new System.Drawing.Size(60, 16);
     this.ckIsFileName.TabIndex = 10;
     this.ckIsFileName.Text = "文件名";
     this.ckIsFileName.UseVisualStyleBackColor = true;
     //
     // ckIsWhole
     //
     this.ckIsWhole.AutoSize = true;
     this.ckIsWhole.Location = new System.Drawing.Point(192, 8);
     this.ckIsWhole.Name = "ckIsWhole";
     this.ckIsWhole.Size = new System.Drawing.Size(72, 16);
     this.ckIsWhole.TabIndex = 9;
     this.ckIsWhole.Text = "整字匹配";
     this.ckIsWhole.UseVisualStyleBackColor = true;
     //
     // ckIsNotIgnoreLowerCase
     //
     this.ckIsNotIgnoreLowerCase.AutoSize = true;
     this.ckIsNotIgnoreLowerCase.Location = new System.Drawing.Point(101, 8);
     this.ckIsNotIgnoreLowerCase.Name = "ckIsNotIgnoreLowerCase";
     this.ckIsNotIgnoreLowerCase.Size = new System.Drawing.Size(84, 16);
     this.ckIsNotIgnoreLowerCase.TabIndex = 8;
     this.ckIsNotIgnoreLowerCase.Text = "区分大小写";
     this.ckIsNotIgnoreLowerCase.UseVisualStyleBackColor = true;
     //
     // ckIsRegexp
     //
     this.ckIsRegexp.AutoSize = true;
     this.ckIsRegexp.Location = new System.Drawing.Point(10, 8);
     this.ckIsRegexp.Name = "ckIsRegexp";
     this.ckIsRegexp.Size = new System.Drawing.Size(84, 16);
     this.ckIsRegexp.TabIndex = 7;
     this.ckIsRegexp.Text = "正则表达式";
     this.ckIsRegexp.UseVisualStyleBackColor = true;
     //
     // txtOldValue
     //
     this.txtOldValue.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.txtOldValue.Location = new System.Drawing.Point(3, 3);
     this.txtOldValue.Multiline = true;
     this.txtOldValue.Name = "txtOldValue";
     this.txtOldValue.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtOldValue.Size = new System.Drawing.Size(420, 69);
     this.txtOldValue.TabIndex = 6;
     //
     // groupBox_Replace
     //
     this.groupBox_Replace.Controls.Add(this.txtNew);
     this.groupBox_Replace.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox_Replace.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.groupBox_Replace.Location = new System.Drawing.Point(441, 3);
     this.groupBox_Replace.Name = "groupBox_Replace";
     this.groupBox_Replace.Size = new System.Drawing.Size(432, 132);
     this.groupBox_Replace.TabIndex = 3;
     this.groupBox_Replace.TabStop = false;
     this.groupBox_Replace.Text = "替换内容:";
     //
     // txtNew
     //
     this.txtNew.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtNew.Location = new System.Drawing.Point(3, 17);
     this.txtNew.Multiline = true;
     this.txtNew.Name = "txtNew";
     this.txtNew.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtNew.Size = new System.Drawing.Size(426, 112);
     this.txtNew.TabIndex = 0;
     //
     // btnSave
     //
     this.btnSave.Location = new System.Drawing.Point(24, 13);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(127, 44);
     this.btnSave.TabIndex = 4;
     this.btnSave.Text = "执  行";
     this.btnSave.UseVisualStyleBackColor = true;
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // groupBox_OutPut
     //
     this.groupBox_OutPut.Controls.Add(this.txtFileLastName);
     this.groupBox_OutPut.Controls.Add(this.txtFileFirstName);
     this.groupBox_OutPut.Controls.Add(this.label3);
     this.groupBox_OutPut.Controls.Add(this.label2);
     this.groupBox_OutPut.Controls.Add(this.label1);
     this.groupBox_OutPut.Controls.Add(this.btnOpenOutPath);
     this.groupBox_OutPut.Controls.Add(this.btnOutPutPath);
     this.groupBox_OutPut.Controls.Add(this.txtOutPutPath);
     this.groupBox_OutPut.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox_OutPut.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.groupBox_OutPut.Location = new System.Drawing.Point(3, 3);
     this.groupBox_OutPut.Name = "groupBox_OutPut";
     this.groupBox_OutPut.Size = new System.Drawing.Size(694, 68);
     this.groupBox_OutPut.TabIndex = 6;
     this.groupBox_OutPut.TabStop = false;
     this.groupBox_OutPut.Text = "输出选项:";
     //
     // txtFileLastName
     //
     this.txtFileLastName.Location = new System.Drawing.Point(519, 38);
     this.txtFileLastName.Name = "txtFileLastName";
     this.txtFileLastName.Size = new System.Drawing.Size(109, 21);
     this.txtFileLastName.TabIndex = 7;
     //
     // txtFileFirstName
     //
     this.txtFileFirstName.Location = new System.Drawing.Point(519, 13);
     this.txtFileFirstName.Name = "txtFileFirstName";
     this.txtFileFirstName.Size = new System.Drawing.Size(109, 21);
     this.txtFileFirstName.TabIndex = 6;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(448, 45);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(77, 12);
     this.label3.TabIndex = 5;
     this.label3.Text = "文件名后缀:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(448, 17);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(77, 12);
     this.label2.TabIndex = 4;
     this.label2.Text = "文件名前缀:";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(10, 30);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(65, 12);
     this.label1.TabIndex = 3;
     this.label1.Text = "输出目录:";
     //
     // btnOpenOutPath
     //
     this.btnOpenOutPath.Location = new System.Drawing.Point(383, 26);
     this.btnOpenOutPath.Name = "btnOpenOutPath";
     this.btnOpenOutPath.Size = new System.Drawing.Size(45, 23);
     this.btnOpenOutPath.TabIndex = 2;
     this.btnOpenOutPath.Text = "打开";
     this.btnOpenOutPath.UseVisualStyleBackColor = true;
     this.btnOpenOutPath.Click += new System.EventHandler(this.btnOpenOutPath_Click);
     //
     // btnOutPutPath
     //
     this.btnOutPutPath.Location = new System.Drawing.Point(332, 26);
     this.btnOutPutPath.Name = "btnOutPutPath";
     this.btnOutPutPath.Size = new System.Drawing.Size(45, 23);
     this.btnOutPutPath.TabIndex = 1;
     this.btnOutPutPath.Text = "浏览";
     this.btnOutPutPath.UseVisualStyleBackColor = true;
     this.btnOutPutPath.Click += new System.EventHandler(this.btnOutPutPath_Click);
     //
     // txtOutPutPath
     //
     this.txtOutPutPath.Location = new System.Drawing.Point(72, 26);
     this.txtOutPutPath.Name = "txtOutPutPath";
     this.txtOutPutPath.ReadOnly = true;
     this.txtOutPutPath.Size = new System.Drawing.Size(254, 21);
     this.txtOutPutPath.TabIndex = 0;
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel1,
     this.toolStripProgressBar1,
     this.toolStripStatusLabel2});
     this.statusStrip1.Location = new System.Drawing.Point(0, 441);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(897, 22);
     this.statusStrip1.TabIndex = 7;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(68, 17);
     this.toolStripStatusLabel1.Text = "处理进度:";
     //
     // toolStripProgressBar1
     //
     this.toolStripProgressBar1.Name = "toolStripProgressBar1";
     this.toolStripProgressBar1.Size = new System.Drawing.Size(400, 16);
     //
     // toolStripStatusLabel2
     //
     this.toolStripStatusLabel2.Name = "toolStripStatusLabel2";
     this.toolStripStatusLabel2.Size = new System.Drawing.Size(346, 17);
     this.toolStripStatusLabel2.Text = "已完成0%,0成功,0失败,正在处理第[0]个文件,共[0]个文件";
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.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.tableLayoutPanel1.ColumnCount = 2;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.Controls.Add(this.groupBox_Search, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.groupBox_Replace, 1, 0);
     this.tableLayoutPanel1.Location = new System.Drawing.Point(9, 214);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 1;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(876, 138);
     this.tableLayoutPanel1.TabIndex = 8;
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.tableLayoutPanel2.ColumnCount = 2;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 79.93079F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20.0692F));
     this.tableLayoutPanel2.Controls.Add(this.groupBox_OutPut, 0, 0);
     this.tableLayoutPanel2.Controls.Add(this.panel1, 1, 0);
     this.tableLayoutPanel2.Location = new System.Drawing.Point(9, 358);
     this.tableLayoutPanel2.Name = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 1;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel2.Size = new System.Drawing.Size(876, 74);
     this.tableLayoutPanel2.TabIndex = 9;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.btnSave);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(703, 3);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(170, 68);
     this.panel1.TabIndex = 7;
     //
     // Index
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(897, 463);
     this.Controls.Add(this.tableLayoutPanel2);
     this.Controls.Add(this.tableLayoutPanel1);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.groupBox_FileInfo);
     this.Controls.Add(this.menuStrip1);
     this.MainMenuStrip = this.menuStrip1;
     this.MinimumSize = new System.Drawing.Size(913, 483);
     this.Name = "Index";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = " XCLWinKits——Windows软件工具箱  1.0.1.0,Copyright ©2014 by:XCL qq:80213876 ";
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.groupBox_FileInfo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgFiles)).EndInit();
     this.contextMenuStrip_LBoxWait.ResumeLayout(false);
     this.groupBox_Search.ResumeLayout(false);
     this.tableLayoutPanel3.ResumeLayout(false);
     this.tableLayoutPanel3.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.groupBox_Replace.ResumeLayout(false);
     this.groupBox_Replace.PerformLayout();
     this.groupBox_OutPut.ResumeLayout(false);
     this.groupBox_OutPut.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel2.ResumeLayout(false);
     this.panel1.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(XnatWebBrowserComponentControl));
     this._browser = new System.Windows.Forms.WebBrowser();
     this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
     this._statusBar = new System.Windows.Forms.StatusStrip();
     this._browserProgress = new System.Windows.Forms.ToolStripProgressBar();
     this._browserStatus = new System.Windows.Forms.ToolStripStatusLabel();
     this._toolbar = new System.Windows.Forms.ToolStrip();
     this._back = new System.Windows.Forms.ToolStripButton();
     this._forward = new System.Windows.Forms.ToolStripButton();
     this._stop = new System.Windows.Forms.ToolStripButton();
     this._refresh = new System.Windows.Forms.ToolStripButton();
     this._address = new System.Windows.Forms.ToolStripComboBox();
     this._go = new System.Windows.Forms.ToolStripButton();
     this._progressLogo = new System.Windows.Forms.ToolStripLabel();
     this._shortcutToolbar = new System.Windows.Forms.ToolStrip();
     this.toolStripContainer1.BottomToolStripPanel.SuspendLayout();
     this.toolStripContainer1.ContentPanel.SuspendLayout();
     this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
     this.toolStripContainer1.SuspendLayout();
     this._statusBar.SuspendLayout();
     this._toolbar.SuspendLayout();
     this.SuspendLayout();
     //
     // _browser
     //
     this._browser.Dock = System.Windows.Forms.DockStyle.Fill;
     this._browser.Location = new System.Drawing.Point(0, 0);
     this._browser.MinimumSize = new System.Drawing.Size(20, 20);
     this._browser.Name = "_browser";
     this._browser.Size = new System.Drawing.Size(584, 440);
     this._browser.TabIndex = 0;
     //
     // toolStripContainer1
     //
     //
     // toolStripContainer1.BottomToolStripPanel
     //
     this.toolStripContainer1.BottomToolStripPanel.Controls.Add(this._statusBar);
     //
     // toolStripContainer1.ContentPanel
     //
     this.toolStripContainer1.ContentPanel.Controls.Add(this._browser);
     this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(584, 440);
     this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
     this.toolStripContainer1.Name = "toolStripContainer1";
     this.toolStripContainer1.Size = new System.Drawing.Size(584, 526);
     this.toolStripContainer1.TabIndex = 1;
     this.toolStripContainer1.Text = "toolStripContainer1";
     //
     // toolStripContainer1.TopToolStripPanel
     //
     this.toolStripContainer1.TopToolStripPanel.Controls.Add(this._toolbar);
     this.toolStripContainer1.TopToolStripPanel.Controls.Add(this._shortcutToolbar);
     //
     // _statusBar
     //
     this._statusBar.Dock = System.Windows.Forms.DockStyle.None;
     this._statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this._browserProgress,
     this._browserStatus});
     this._statusBar.Location = new System.Drawing.Point(0, 0);
     this._statusBar.Name = "_statusBar";
     this._statusBar.Size = new System.Drawing.Size(584, 22);
     this._statusBar.TabIndex = 1;
     this._statusBar.Text = "statusStrip1";
     //
     // _browserProgress
     //
     this._browserProgress.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this._browserProgress.Name = "_browserProgress";
     this._browserProgress.Size = new System.Drawing.Size(100, 16);
     //
     // _browserStatus
     //
     this._browserStatus.Name = "_browserStatus";
     this._browserStatus.Size = new System.Drawing.Size(0, 17);
     //
     // _toolbar
     //
     this._toolbar.Dock = System.Windows.Forms.DockStyle.None;
     this._toolbar.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this._toolbar.ImageScalingSize = new System.Drawing.Size(32, 32);
     this._toolbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this._back,
     this._forward,
     this._stop,
     this._refresh,
     this._address,
     this._go,
     this._progressLogo});
     this._toolbar.Location = new System.Drawing.Point(0, 0);
     this._toolbar.Name = "_toolbar";
     this._toolbar.Size = new System.Drawing.Size(584, 39);
     this._toolbar.Stretch = true;
     this._toolbar.TabIndex = 0;
     //
     // _back
     //
     this._back.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this._back.Image = ((System.Drawing.Image)(resources.GetObject("_back.Image")));
     this._back.ImageTransparentColor = System.Drawing.Color.Magenta;
     this._back.Name = "_back";
     this._back.Size = new System.Drawing.Size(36, 36);
     this._back.Text = "Back";
     //
     // _forward
     //
     this._forward.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this._forward.Image = ((System.Drawing.Image)(resources.GetObject("_forward.Image")));
     this._forward.ImageTransparentColor = System.Drawing.Color.Magenta;
     this._forward.Name = "_forward";
     this._forward.Size = new System.Drawing.Size(36, 36);
     this._forward.Text = "Forward";
     //
     // _stop
     //
     this._stop.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this._stop.Image = ((System.Drawing.Image)(resources.GetObject("_stop.Image")));
     this._stop.ImageTransparentColor = System.Drawing.Color.Magenta;
     this._stop.Name = "_stop";
     this._stop.Size = new System.Drawing.Size(36, 36);
     this._stop.Text = "toolStripButton1";
     this._stop.ToolTipText = "Stop";
     //
     // _refresh
     //
     this._refresh.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this._refresh.Image = ((System.Drawing.Image)(resources.GetObject("_refresh.Image")));
     this._refresh.ImageTransparentColor = System.Drawing.Color.Magenta;
     this._refresh.Name = "_refresh";
     this._refresh.Size = new System.Drawing.Size(36, 36);
     this._refresh.Text = "toolStripButton1";
     this._refresh.ToolTipText = "Refresh";
     //
     // _address
     //
     this._address.Name = "_address";
     this._address.Size = new System.Drawing.Size(350, 39);
     this._address.ToolTipText = "Address";
     //
     // _go
     //
     this._go.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this._go.Image = ((System.Drawing.Image)(resources.GetObject("_go.Image")));
     this._go.ImageTransparentColor = System.Drawing.Color.Magenta;
     this._go.Name = "_go";
     this._go.Size = new System.Drawing.Size(36, 36);
     this._go.Text = "toolStripButton1";
     this._go.ToolTipText = "Go";
     //
     // _progressLogo
     //
     this._progressLogo.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this._progressLogo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this._progressLogo.Name = "_progressLogo";
     this._progressLogo.Size = new System.Drawing.Size(0, 36);
     //
     // _shortcutToolbar
     //
     this._shortcutToolbar.Dock = System.Windows.Forms.DockStyle.None;
     this._shortcutToolbar.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this._shortcutToolbar.Location = new System.Drawing.Point(0, 39);
     this._shortcutToolbar.Name = "_shortcutToolbar";
     this._shortcutToolbar.Size = new System.Drawing.Size(584, 25);
     this._shortcutToolbar.Stretch = true;
     this._shortcutToolbar.TabIndex = 1;
     //
     // XnatWebBrowserComponentControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.toolStripContainer1);
     this.Name = "WebBrowserComponentControl";
     this.Size = new System.Drawing.Size(584, 526);
     this.toolStripContainer1.BottomToolStripPanel.ResumeLayout(false);
     this.toolStripContainer1.BottomToolStripPanel.PerformLayout();
     this.toolStripContainer1.ContentPanel.ResumeLayout(false);
     this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
     this.toolStripContainer1.TopToolStripPanel.PerformLayout();
     this.toolStripContainer1.ResumeLayout(false);
     this.toolStripContainer1.PerformLayout();
     this._statusBar.ResumeLayout(false);
     this._statusBar.PerformLayout();
     this._toolbar.ResumeLayout(false);
     this._toolbar.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
     this.buttonOK = new System.Windows.Forms.Button();
     this.buttonCancel = new System.Windows.Forms.Button();
     this.logTextBox1 = new HydroSharedAddIn.gui.LogTextBox();
     this.elapsedTimeLabel1 = new HydroSharedAddIn.gui.ElapsedTimeLabel();
     this.currentSimulationLabel1 = new HydroSharedAddIn.gui.CurrentSimulationLabel();
     this.statusStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel1,
     this.toolStripProgressBar1});
     this.statusStrip1.Location = new System.Drawing.Point(0, 240);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(404, 22);
     this.statusStrip1.TabIndex = 0;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(39, 17);
     this.toolStripStatusLabel1.Text = "Status";
     //
     // toolStripProgressBar1
     //
     this.toolStripProgressBar1.Name = "toolStripProgressBar1";
     this.toolStripProgressBar1.Overflow = System.Windows.Forms.ToolStripItemOverflow.Always;
     this.toolStripProgressBar1.Size = new System.Drawing.Size(200, 16);
     this.toolStripProgressBar1.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
     //
     // buttonOK
     //
     this.buttonOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonOK.Location = new System.Drawing.Point(236, 214);
     this.buttonOK.Name = "buttonOK";
     this.buttonOK.Size = new System.Drawing.Size(75, 23);
     this.buttonOK.TabIndex = 3;
     this.buttonOK.Text = "OK";
     this.buttonOK.UseVisualStyleBackColor = true;
     //
     // buttonCancel
     //
     this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.buttonCancel.Location = new System.Drawing.Point(317, 214);
     this.buttonCancel.Name = "buttonCancel";
     this.buttonCancel.Size = new System.Drawing.Size(75, 23);
     this.buttonCancel.TabIndex = 4;
     this.buttonCancel.Text = "Cancel";
     this.buttonCancel.UseVisualStyleBackColor = true;
     //
     // logTextBox1
     //
     this.logTextBox1.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.logTextBox1.Location = new System.Drawing.Point(0, 25);
     this.logTextBox1.Multiline = true;
     this.logTextBox1.Name = "logTextBox1";
     this.logTextBox1.Size = new System.Drawing.Size(404, 183);
     this.logTextBox1.TabIndex = 5;
     //
     // elapsedTimeLabel1
     //
     this.elapsedTimeLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.elapsedTimeLabel1.AutoSize = true;
     this.elapsedTimeLabel1.Location = new System.Drawing.Point(293, 9);
     this.elapsedTimeLabel1.Name = "elapsedTimeLabel1";
     this.elapsedTimeLabel1.Size = new System.Drawing.Size(99, 13);
     this.elapsedTimeLabel1.TabIndex = 2;
     this.elapsedTimeLabel1.Text = "0 s";
     //
     // currentSimulationLabel1
     //
     this.currentSimulationLabel1.AutoSize = true;
     this.currentSimulationLabel1.Location = new System.Drawing.Point(12, 9);
     this.currentSimulationLabel1.Name = "currentSimulationLabel1";
     this.currentSimulationLabel1.Size = new System.Drawing.Size(120, 13);
     this.currentSimulationLabel1.TabIndex = 1;
     this.currentSimulationLabel1.Text = "currentSimulationLabel1";
     //
     // SimulationForm
     //
     this.AcceptButton = this.buttonOK;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.buttonCancel;
     this.ClientSize = new System.Drawing.Size(404, 262);
     this.ControlBox = false;
     this.Controls.Add(this.logTextBox1);
     this.Controls.Add(this.buttonCancel);
     this.Controls.Add(this.buttonOK);
     this.Controls.Add(this.elapsedTimeLabel1);
     this.Controls.Add(this.currentSimulationLabel1);
     this.Controls.Add(this.statusStrip1);
     this.Name = "SimulationForm";
     this.Text = "j349 Subreach Simulations";
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #40
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();
 }
 /// <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.DataVisualization.Charting.ChartArea chartArea10 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Legend legend10 = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series series37 = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series series38 = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series series39 = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series series40 = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Title title10 = new System.Windows.Forms.DataVisualization.Charting.Title();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
     this.LogTextBox = new System.Windows.Forms.TextBox();
     this.fileSystemWatcher2 = new System.IO.FileSystemWatcher();
     this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
     this.fileSystemWatcher3 = new System.IO.FileSystemWatcher();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.textBox20 = new System.Windows.Forms.TextBox();
     this.textBox18 = new System.Windows.Forms.TextBox();
     this.button16 = new System.Windows.Forms.Button();
     this.button18 = new System.Windows.Forms.Button();
     this.label37 = new System.Windows.Forms.Label();
     this.checkBox10 = new System.Windows.Forms.CheckBox();
     this.textBox19 = new System.Windows.Forms.TextBox();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.button10 = new System.Windows.Forms.Button();
     this.label8 = new System.Windows.Forms.Label();
     this.numericUpDown9 = new System.Windows.Forms.NumericUpDown();
     this.button14 = new System.Windows.Forms.Button();
     this.Button2000 = new System.Windows.Forms.Button();
     this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
     this.textBox22 = new System.Windows.Forms.TextBox();
     this.radioButton3 = new System.Windows.Forms.RadioButton();
     this.radioButton2 = new System.Windows.Forms.RadioButton();
     this.textBox14 = new System.Windows.Forms.TextBox();
     this.textBox16 = new System.Windows.Forms.TextBox();
     this.numericUpDown5 = new System.Windows.Forms.NumericUpDown();
     this.checkBox19 = new System.Windows.Forms.CheckBox();
     this.numericUpDown21 = new System.Windows.Forms.NumericUpDown();
     this.label87 = new System.Windows.Forms.Label();
     this.numericUpDown39 = new System.Windows.Forms.NumericUpDown();
     this.checkBox13 = new System.Windows.Forms.CheckBox();
     this.checkBox26 = new System.Windows.Forms.CheckBox();
     this.toolTip2 = new System.Windows.Forms.ToolTip(this.components);
     this.toolTip3 = new System.Windows.Forms.ToolTip(this.components);
     this.button3 = new System.Windows.Forms.Button();
     this.button9 = new System.Windows.Forms.Button();
     this.ButtonDisable = new System.Windows.Forms.Button();
     this.button8 = new System.Windows.Forms.Button();
     this.button5 = new System.Windows.Forms.Button();
     this.textBox11 = new System.Windows.Forms.TextBox();
     this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.fileSystemWatcher1 = new System.IO.FileSystemWatcher();
     this.dataSet1 = new System.Data.DataSet();
     this.dataTable1 = new System.Data.DataTable();
     this.dataColumn1 = new System.Data.DataColumn();
     this.dataColumn4 = new System.Data.DataColumn();
     this.dataColumn5 = new System.Data.DataColumn();
     this.dataColumn2 = new System.Data.DataColumn();
     this.dataColumn3 = new System.Data.DataColumn();
     this.dataColumn6 = new System.Data.DataColumn();
     this.dataColumn7 = new System.Data.DataColumn();
     this.dataColumn8 = new System.Data.DataColumn();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.FocusPos = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.button13 = new System.Windows.Forms.Button();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.checkBox29 = new System.Windows.Forms.CheckBox();
     this.checkBox28 = new System.Windows.Forms.CheckBox();
     this.button59 = new System.Windows.Forms.Button();
     this.textBox8 = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.textBox9 = new System.Windows.Forms.TextBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.button12 = new System.Windows.Forms.Button();
     this.buttonFilterConnect = new System.Windows.Forms.Button();
     this.label18 = new System.Windows.Forms.Label();
     this.textBox35 = new System.Windows.Forms.TextBox();
     this.label44 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.button49 = new System.Windows.Forms.Button();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.checkBox31 = new System.Windows.Forms.CheckBox();
     this.groupBox20 = new System.Windows.Forms.GroupBox();
     this.radioButton9 = new System.Windows.Forms.RadioButton();
     this.radioButton10 = new System.Windows.Forms.RadioButton();
     this.radioButton4 = new System.Windows.Forms.RadioButton();
     this.label88 = new System.Windows.Forms.Label();
     this.numericUpDown40 = new System.Windows.Forms.NumericUpDown();
     this.label58 = new System.Windows.Forms.Label();
     this.label57 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.button41 = new System.Windows.Forms.Button();
     this.button23 = new System.Windows.Forms.Button();
     this.radioButton8 = new System.Windows.Forms.RadioButton();
     this.label3 = new System.Windows.Forms.Label();
     this.label50 = new System.Windows.Forms.Label();
     this.comboBox7 = new System.Windows.Forms.ComboBox();
     this.label40 = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.button42 = new System.Windows.Forms.Button();
     this.textBox34 = new System.Windows.Forms.TextBox();
     this.button29 = new System.Windows.Forms.Button();
     this.label41 = new System.Windows.Forms.Label();
     this.label42 = new System.Windows.Forms.Label();
     this.textBox33 = new System.Windows.Forms.TextBox();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.groupBox11 = new System.Windows.Forms.GroupBox();
     this.label84 = new System.Windows.Forms.Label();
     this.button27 = new System.Windows.Forms.Button();
     this.checkBox22 = new System.Windows.Forms.CheckBox();
     this.label65 = new System.Windows.Forms.Label();
     this.textBox43 = new System.Windows.Forms.TextBox();
     this.label64 = new System.Windows.Forms.Label();
     this.button25 = new System.Windows.Forms.Button();
     this.textBox25 = new System.Windows.Forms.TextBox();
     this.groupBox10 = new System.Windows.Forms.GroupBox();
     this.textBox7 = new System.Windows.Forms.TextBox();
     this.numericUpDown2 = new System.Windows.Forms.NumericUpDown();
     this.label7 = new System.Windows.Forms.Label();
     this.numericUpDown4 = new System.Windows.Forms.NumericUpDown();
     this.button4 = new System.Windows.Forms.Button();
     this.label14 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.button6 = new System.Windows.Forms.Button();
     this.label22 = new System.Windows.Forms.Label();
     this.textBox6 = new System.Windows.Forms.TextBox();
     this.textBox17 = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.label21 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.numericUpDown10 = new System.Windows.Forms.NumericUpDown();
     this.progressBar1 = new System.Windows.Forms.ProgressBar();
     this.numericUpDown8 = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown7 = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown3 = new System.Windows.Forms.NumericUpDown();
     this.groupBox9 = new System.Windows.Forms.GroupBox();
     this.button61 = new System.Windows.Forms.Button();
     this.label9 = new System.Windows.Forms.Label();
     this.button1 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.textBox4 = new System.Windows.Forms.TextBox();
     this.button7 = new System.Windows.Forms.Button();
     this.numericUpDown6 = new System.Windows.Forms.NumericUpDown();
     this.progressBar2 = new System.Windows.Forms.ProgressBar();
     this.button11 = new System.Windows.Forms.Button();
     this.groupBox8 = new System.Windows.Forms.GroupBox();
     this.textBox12 = new System.Windows.Forms.TextBox();
     this.textBox3 = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.textBox10 = new System.Windows.Forms.TextBox();
     this.label13 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.radioButton1 = new System.Windows.Forms.RadioButton();
     this.label20 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.textBox15 = new System.Windows.Forms.TextBox();
     this.label26 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.tabPage4 = new System.Windows.Forms.TabPage();
     this.button15 = new System.Windows.Forms.Button();
     this.button19 = new System.Windows.Forms.Button();
     this.button24 = new System.Windows.Forms.Button();
     this.button62 = new System.Windows.Forms.Button();
     this.groupBox15 = new System.Windows.Forms.GroupBox();
     this.label61 = new System.Windows.Forms.Label();
     this.label56 = new System.Windows.Forms.Label();
     this.comboBox6 = new System.Windows.Forms.ComboBox();
     this.button20 = new System.Windows.Forms.Button();
     this.textBox21 = new System.Windows.Forms.TextBox();
     this.label24 = new System.Windows.Forms.Label();
     this.groupBox14 = new System.Windows.Forms.GroupBox();
     this.textBox44 = new System.Windows.Forms.TextBox();
     this.label92 = new System.Windows.Forms.Label();
     this.trackBar1 = new System.Windows.Forms.TrackBar();
     this.checkBox18 = new System.Windows.Forms.CheckBox();
     this.label51 = new System.Windows.Forms.Label();
     this.button21 = new System.Windows.Forms.Button();
     this.textBox38 = new System.Windows.Forms.TextBox();
     this.checkBox15 = new System.Windows.Forms.CheckBox();
     this.label54 = new System.Windows.Forms.Label();
     this.textBox39 = new System.Windows.Forms.TextBox();
     this.label55 = new System.Windows.Forms.Label();
     this.groupBox13 = new System.Windows.Forms.GroupBox();
     this.comboBox8 = new System.Windows.Forms.ComboBox();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.comboBox5 = new System.Windows.Forms.ComboBox();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.checkBox2 = new System.Windows.Forms.CheckBox();
     this.checkBox3 = new System.Windows.Forms.CheckBox();
     this.checkBox4 = new System.Windows.Forms.CheckBox();
     this.comboBox2 = new System.Windows.Forms.ComboBox();
     this.comboBox3 = new System.Windows.Forms.ComboBox();
     this.comboBox4 = new System.Windows.Forms.ComboBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label36 = new System.Windows.Forms.Label();
     this.numericUpDown36 = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown12 = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown13 = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown34 = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown14 = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown15 = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown32 = new System.Windows.Forms.NumericUpDown();
     this.label33 = new System.Windows.Forms.Label();
     this.checkBox5 = new System.Windows.Forms.CheckBox();
     this.numericUpDown11 = new System.Windows.Forms.NumericUpDown();
     this.label45 = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.numericUpDown31 = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown16 = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown30 = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown17 = new System.Windows.Forms.NumericUpDown();
     this.checkBox9 = new System.Windows.Forms.CheckBox();
     this.numericUpDown18 = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown29 = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown19 = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown28 = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown20 = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown27 = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown24 = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown26 = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown25 = new System.Windows.Forms.NumericUpDown();
     this.label32 = new System.Windows.Forms.Label();
     this.groupBox12 = new System.Windows.Forms.GroupBox();
     this.checkBox6 = new System.Windows.Forms.CheckBox();
     this.checkBox7 = new System.Windows.Forms.CheckBox();
     this.textBox23 = new System.Windows.Forms.TextBox();
     this.tabPage5 = new System.Windows.Forms.TabPage();
     this.groupBox16 = new System.Windows.Forms.GroupBox();
     this.label30 = new System.Windows.Forms.Label();
     this.button30 = new System.Windows.Forms.Button();
     this.button22 = new System.Windows.Forms.Button();
     this.button26 = new System.Windows.Forms.Button();
     this.groupBox7 = new System.Windows.Forms.GroupBox();
     this.textBox63 = new System.Windows.Forms.TextBox();
     this.label85 = new System.Windows.Forms.Label();
     this.numericUpDown23 = new System.Windows.Forms.NumericUpDown();
     this.checkBox27 = new System.Windows.Forms.CheckBox();
     this.checkBox17 = new System.Windows.Forms.CheckBox();
     this.numericUpDown38 = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown22 = new System.Windows.Forms.NumericUpDown();
     this.label23 = new System.Windows.Forms.Label();
     this.textBox29 = new System.Windows.Forms.TextBox();
     this.label28 = new System.Windows.Forms.Label();
     this.textBox30 = new System.Windows.Forms.TextBox();
     this.label43 = new System.Windows.Forms.Label();
     this.checkBox8 = new System.Windows.Forms.CheckBox();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.checkBox16 = new System.Windows.Forms.CheckBox();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.label38 = new System.Windows.Forms.Label();
     this.label34 = new System.Windows.Forms.Label();
     this.checkBox23 = new System.Windows.Forms.CheckBox();
     this.label53 = new System.Windows.Forms.Label();
     this.button37 = new System.Windows.Forms.Button();
     this.label52 = new System.Windows.Forms.Label();
     this.button32 = new System.Windows.Forms.Button();
     this.button33 = new System.Windows.Forms.Button();
     this.button34 = new System.Windows.Forms.Button();
     this.button35 = new System.Windows.Forms.Button();
     this.checkBox11 = new System.Windows.Forms.CheckBox();
     this.tabPage6 = new System.Windows.Forms.TabPage();
     this.button40 = new System.Windows.Forms.Button();
     this.checkBox20 = new System.Windows.Forms.CheckBox();
     this.checkBox14 = new System.Windows.Forms.CheckBox();
     this.groupBox18 = new System.Windows.Forms.GroupBox();
     this.textBox42 = new System.Windows.Forms.TextBox();
     this.checkBox21 = new System.Windows.Forms.CheckBox();
     this.button39 = new System.Windows.Forms.Button();
     this.label63 = new System.Windows.Forms.Label();
     this.textBox41 = new System.Windows.Forms.TextBox();
     this.label62 = new System.Windows.Forms.Label();
     this.label39 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.numericUpDown35 = new System.Windows.Forms.NumericUpDown();
     this.textBox40 = new System.Windows.Forms.TextBox();
     this.numericUpDown37 = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown33 = new System.Windows.Forms.NumericUpDown();
     this.textBox37 = new System.Windows.Forms.TextBox();
     this.button47 = new System.Windows.Forms.Button();
     this.button46 = new System.Windows.Forms.Button();
     this.button45 = new System.Windows.Forms.Button();
     this.groupBox17 = new System.Windows.Forms.GroupBox();
     this.checkBox30 = new System.Windows.Forms.CheckBox();
     this.label89 = new System.Windows.Forms.Label();
     this.numericUpDown41 = new System.Windows.Forms.NumericUpDown();
     this.checkBox12 = new System.Windows.Forms.CheckBox();
     this.label46 = new System.Windows.Forms.Label();
     this.label47 = new System.Windows.Forms.Label();
     this.label48 = new System.Windows.Forms.Label();
     this.button38 = new System.Windows.Forms.Button();
     this.label49 = new System.Windows.Forms.Label();
     this.textBox36 = new System.Windows.Forms.TextBox();
     this.textBox13 = new System.Windows.Forms.TextBox();
     this.textBox28 = new System.Windows.Forms.TextBox();
     this.textBox27 = new System.Windows.Forms.TextBox();
     this.tabPage3 = new System.Windows.Forms.TabPage();
     this.button48 = new System.Windows.Forms.Button();
     this.textBox24 = new System.Windows.Forms.TextBox();
     this.label25 = new System.Windows.Forms.Label();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.tabPage7 = new System.Windows.Forms.TabPage();
     this.groupBox24 = new System.Windows.Forms.GroupBox();
     this.button36 = new System.Windows.Forms.Button();
     this.button28 = new System.Windows.Forms.Button();
     this.button31 = new System.Windows.Forms.Button();
     this.label60 = new System.Windows.Forms.Label();
     this.textBox64 = new System.Windows.Forms.TextBox();
     this.groupBox23 = new System.Windows.Forms.GroupBox();
     this.button43 = new System.Windows.Forms.Button();
     this.textBox31 = new System.Windows.Forms.TextBox();
     this.textBox32 = new System.Windows.Forms.TextBox();
     this.button44 = new System.Windows.Forms.Button();
     this.label91 = new System.Windows.Forms.Label();
     this.label90 = new System.Windows.Forms.Label();
     this.groupBox22 = new System.Windows.Forms.GroupBox();
     this.label35 = new System.Windows.Forms.Label();
     this.textBox45 = new System.Windows.Forms.TextBox();
     this.label86 = new System.Windows.Forms.Label();
     this.textBox5 = new System.Windows.Forms.TextBox();
     this.label70 = new System.Windows.Forms.Label();
     this.label59 = new System.Windows.Forms.Label();
     this.textBox53 = new System.Windows.Forms.TextBox();
     this.textBox56 = new System.Windows.Forms.TextBox();
     this.label74 = new System.Windows.Forms.Label();
     this.label69 = new System.Windows.Forms.Label();
     this.textBox55 = new System.Windows.Forms.TextBox();
     this.label71 = new System.Windows.Forms.Label();
     this.textBox54 = new System.Windows.Forms.TextBox();
     this.label72 = new System.Windows.Forms.Label();
     this.textBox57 = new System.Windows.Forms.TextBox();
     this.textBox52 = new System.Windows.Forms.TextBox();
     this.textBox48 = new System.Windows.Forms.TextBox();
     this.label68 = new System.Windows.Forms.Label();
     this.groupBox21 = new System.Windows.Forms.GroupBox();
     this.textBox46 = new System.Windows.Forms.TextBox();
     this.button57 = new System.Windows.Forms.Button();
     this.button58 = new System.Windows.Forms.Button();
     this.label66 = new System.Windows.Forms.Label();
     this.textBox47 = new System.Windows.Forms.TextBox();
     this.label67 = new System.Windows.Forms.Label();
     this.label78 = new System.Windows.Forms.Label();
     this.label77 = new System.Windows.Forms.Label();
     this.groupBox19 = new System.Windows.Forms.GroupBox();
     this.label93 = new System.Windows.Forms.Label();
     this.radioButton5_astrometry = new System.Windows.Forms.RadioButton();
     this.radioButton_local = new System.Windows.Forms.RadioButton();
     this.label83 = new System.Windows.Forms.Label();
     this.label82 = new System.Windows.Forms.Label();
     this.textBox62 = new System.Windows.Forms.TextBox();
     this.textBox61 = new System.Windows.Forms.TextBox();
     this.textBox60 = new System.Windows.Forms.TextBox();
     this.label81 = new System.Windows.Forms.Label();
     this.label80 = new System.Windows.Forms.Label();
     this.label79 = new System.Windows.Forms.Label();
     this.button55 = new System.Windows.Forms.Button();
     this.button60 = new System.Windows.Forms.Button();
     this.checkBox25 = new System.Windows.Forms.CheckBox();
     this.textBox59 = new System.Windows.Forms.TextBox();
     this.label76 = new System.Windows.Forms.Label();
     this.textBox58 = new System.Windows.Forms.TextBox();
     this.label75 = new System.Windows.Forms.Label();
     this.label73 = new System.Windows.Forms.Label();
     this.button17 = new System.Windows.Forms.Button();
     this.fileSystemWatcher4 = new System.IO.FileSystemWatcher();
     this.textBox26 = new System.Windows.Forms.TextBox();
     this.fileSystemWatcher5 = new System.IO.FileSystemWatcher();
     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.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel4 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel5 = new System.Windows.Forms.ToolStripStatusLabel();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
     this.folderBrowserDialog2 = new System.Windows.Forms.FolderBrowserDialog();
     this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
     this.backgroundWorker2 = new System.ComponentModel.BackgroundWorker();
     this.timer2 = new System.Windows.Forms.Timer(this.components);
     this.openFileDialog2 = new System.Windows.Forms.OpenFileDialog();
     this.fileSystemWatcher7 = new System.IO.FileSystemWatcher();
     this.textBox49 = new System.Windows.Forms.TextBox();
     this.label94 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown21)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown39)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox20.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown40)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.groupBox11.SuspendLayout();
     this.groupBox10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown3)).BeginInit();
     this.groupBox9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown6)).BeginInit();
     this.groupBox8.SuspendLayout();
     this.tabPage4.SuspendLayout();
     this.groupBox15.SuspendLayout();
     this.groupBox14.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
     this.groupBox13.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown36)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown34)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown32)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown31)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown30)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown17)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown29)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown28)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown20)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown27)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown24)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown26)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown25)).BeginInit();
     this.groupBox12.SuspendLayout();
     this.tabPage5.SuspendLayout();
     this.groupBox16.SuspendLayout();
     this.groupBox7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown38)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown22)).BeginInit();
     this.groupBox6.SuspendLayout();
     this.groupBox5.SuspendLayout();
     this.tabPage6.SuspendLayout();
     this.groupBox18.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown35)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown37)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown33)).BeginInit();
     this.groupBox17.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown41)).BeginInit();
     this.tabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.tabPage7.SuspendLayout();
     this.groupBox24.SuspendLayout();
     this.groupBox23.SuspendLayout();
     this.groupBox22.SuspendLayout();
     this.groupBox21.SuspendLayout();
     this.groupBox19.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher5)).BeginInit();
     this.statusStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher7)).BeginInit();
     this.SuspendLayout();
     //
     // LogTextBox
     //
     this.LogTextBox.BackColor = System.Drawing.SystemColors.MenuBar;
     this.LogTextBox.Location = new System.Drawing.Point(4, 251);
     this.LogTextBox.Multiline = true;
     this.LogTextBox.Name = "LogTextBox";
     this.LogTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.LogTextBox.Size = new System.Drawing.Size(742, 97);
     this.LogTextBox.TabIndex = 16;
     this.LogTextBox.Text = "Log";
     this.LogTextBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.LogTextBox_KeyPress);
     //
     // fileSystemWatcher2
     //
     this.fileSystemWatcher2.EnableRaisingEvents = true;
     this.fileSystemWatcher2.Filter = "*.bmp";
     this.fileSystemWatcher2.NotifyFilter = System.IO.NotifyFilters.LastWrite;
     this.fileSystemWatcher2.Path = this.folderBrowserDialog1.SelectedPath;
     this.fileSystemWatcher2.SynchronizingObject = this;
     this.fileSystemWatcher2.Changed += new System.IO.FileSystemEventHandler(this.fileSystemWatcher2_Changed);
     //
     // folderBrowserDialog1
     //
     this.folderBrowserDialog1.Description = "Select Same Path as Nebulosity \"Directory\"";
     this.folderBrowserDialog1.RootFolder = System.Environment.SpecialFolder.MyComputer;
     //
     // fileSystemWatcher3
     //
     this.fileSystemWatcher3.EnableRaisingEvents = true;
     this.fileSystemWatcher3.Filter = "*.bmp";
     this.fileSystemWatcher3.NotifyFilter = System.IO.NotifyFilters.LastWrite;
     this.fileSystemWatcher3.Path = this.folderBrowserDialog1.SelectedPath;
     this.fileSystemWatcher3.SynchronizingObject = this;
     this.fileSystemWatcher3.Changed += new System.IO.FileSystemEventHandler(this.fileSystemWatcher3_Changed);
     //
     // textBox20
     //
     this.textBox20.Location = new System.Drawing.Point(210, 16);
     this.textBox20.Name = "textBox20";
     this.textBox20.Size = new System.Drawing.Size(55, 20);
     this.textBox20.TabIndex = 174;
     this.toolTip1.SetToolTip(this.textBox20, "Enter Min and Max HFR for slope calculation  - linear part of V-curve");
     this.textBox20.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox20_KeyPress);
     this.textBox20.Leave += new System.EventHandler(this.textBox20_Leave);
     //
     // textBox18
     //
     this.textBox18.Location = new System.Drawing.Point(72, 16);
     this.textBox18.Name = "textBox18";
     this.textBox18.Size = new System.Drawing.Size(55, 20);
     this.textBox18.TabIndex = 173;
     this.toolTip1.SetToolTip(this.textBox18, "Enter Min and Max HFR values for slope calculation - Linear part or V-curve");
     this.textBox18.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox18_KeyPress);
     this.textBox18.Leave += new System.EventHandler(this.textBox18_Leave);
     //
     // button16
     //
     this.button16.Location = new System.Drawing.Point(639, 653);
     this.button16.Name = "button16";
     this.button16.Size = new System.Drawing.Size(75, 23);
     this.button16.TabIndex = 107;
     this.button16.Text = "Delete All";
     this.toolTip1.SetToolTip(this.button16, "Delete all data for current equipment selection");
     this.button16.UseVisualStyleBackColor = true;
     this.button16.Click += new System.EventHandler(this.button16_Click);
     //
     // button18
     //
     this.button18.Location = new System.Drawing.Point(628, 624);
     this.button18.Name = "button18";
     this.button18.Size = new System.Drawing.Size(100, 23);
     this.button18.TabIndex = 109;
     this.button18.Text = "Delete Selected";
     this.toolTip1.SetToolTip(this.button18, "Delete selected rows");
     this.button18.UseVisualStyleBackColor = true;
     this.button18.Click += new System.EventHandler(this.button18_Click);
     //
     // label37
     //
     this.label37.AutoSize = true;
     this.label37.Location = new System.Drawing.Point(16, 31);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(101, 13);
     this.label37.TabIndex = 13;
     this.label37.Text = "Focus Star Position:";
     this.toolTip1.SetToolTip(this.label37, "Enter Focus star postion while in Neb Frame and Focus - default is center");
     //
     // checkBox10
     //
     this.checkBox10.AutoSize = true;
     this.checkBox10.Checked = true;
     this.checkBox10.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox10.Location = new System.Drawing.Point(28, 54);
     this.checkBox10.Name = "checkBox10";
     this.checkBox10.Size = new System.Drawing.Size(154, 17);
     this.checkBox10.TabIndex = 26;
     this.checkBox10.Text = "Focus Star in Target Frame";
     this.toolTip1.SetToolTip(this.checkBox10, "Check if no need to slew to a diffent loaction for focus star");
     this.checkBox10.UseVisualStyleBackColor = true;
     //
     // textBox19
     //
     this.textBox19.Location = new System.Drawing.Point(92, 59);
     this.textBox19.Name = "textBox19";
     this.textBox19.Size = new System.Drawing.Size(100, 20);
     this.textBox19.TabIndex = 234;
     this.toolTip1.SetToolTip(this.textBox19, "Enter Prefix for filename (e.g. M31_300s)");
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(399, 13);
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(50, 20);
     this.textBox2.TabIndex = 147;
     this.toolTip1.SetToolTip(this.textBox2, "Enter Maximum Travel");
     this.textBox2.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
     this.textBox2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox2_KeyPress);
     //
     // button10
     //
     this.button10.Location = new System.Drawing.Point(11, 16);
     this.button10.Name = "button10";
     this.button10.Size = new System.Drawing.Size(70, 23);
     this.button10.TabIndex = 156;
     this.button10.Text = "Backlash";
     this.toolTip1.SetToolTip(this.button10, "Multiple repeated fine V-curves with alternating In/Out directions.\r\nThe differen" +
     "ce in focus point equals backlash");
     this.button10.UseVisualStyleBackColor = true;
     this.button10.Click += new System.EventHandler(this.button10_Click);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(338, 37);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(60, 26);
     this.label8.TabIndex = 159;
     this.label8.Text = "Movement \r\nDelay (ms):";
     this.toolTip1.SetToolTip(this.label8, "Increase if movment during capture -- Usually about 500 ms");
     //
     // numericUpDown9
     //
     this.numericUpDown9.Location = new System.Drawing.Point(398, 42);
     this.numericUpDown9.Maximum = new decimal(new int[] {
     10000,
     0,
     0,
     0});
     this.numericUpDown9.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDown9.Name = "numericUpDown9";
     this.numericUpDown9.Size = new System.Drawing.Size(50, 20);
     this.numericUpDown9.TabIndex = 160;
     this.toolTip1.SetToolTip(this.numericUpDown9, "Increase if movment occurs during capture -- Usually about 500 ms");
     this.numericUpDown9.Value = new decimal(new int[] {
     500,
     0,
     0,
     0});
     //
     // button14
     //
     this.button14.Location = new System.Drawing.Point(351, 93);
     this.button14.Name = "button14";
     this.button14.Size = new System.Drawing.Size(97, 23);
     this.button14.TabIndex = 163;
     this.button14.Text = "Reset Defaults";
     this.toolTip1.SetToolTip(this.button14, "Reset all stored values to default/installation values");
     this.button14.UseVisualStyleBackColor = true;
     this.button14.Click += new System.EventHandler(this.button14_Click);
     //
     // Button2000
     //
     this.Button2000.Location = new System.Drawing.Point(251, 17);
     this.Button2000.Name = "Button2000";
     this.Button2000.Size = new System.Drawing.Size(58, 23);
     this.Button2000.TabIndex = 166;
     this.Button2000.Text = "Std Dev";
     this.toolTip1.SetToolTip(this.Button2000, "Calculates Standard Deviation of 10 exposures");
     this.Button2000.UseVisualStyleBackColor = true;
     this.Button2000.Click += new System.EventHandler(this.Button2000_Click);
     //
     // numericUpDown1
     //
     this.numericUpDown1.Location = new System.Drawing.Point(315, 52);
     this.numericUpDown1.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDown1.Name = "numericUpDown1";
     this.numericUpDown1.Size = new System.Drawing.Size(38, 20);
     this.numericUpDown1.TabIndex = 169;
     this.numericUpDown1.Tag = "";
     this.toolTip1.SetToolTip(this.numericUpDown1, "Rounds HFR * 100 to nearest value");
     this.numericUpDown1.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
     //
     // textBox22
     //
     this.textBox22.Location = new System.Drawing.Point(62, 62);
     this.textBox22.Name = "textBox22";
     this.textBox22.Size = new System.Drawing.Size(121, 20);
     this.textBox22.TabIndex = 174;
     this.toolTip1.SetToolTip(this.textBox22, "Enter camera name as it a appears on neb advnace setup window");
     this.textBox22.Click += new System.EventHandler(this.textBox22_Click);
     this.textBox22.TextChanged += new System.EventHandler(this.textBox22_TextChanged);
     //
     // radioButton3
     //
     this.radioButton3.AutoCheck = false;
     this.radioButton3.AutoSize = true;
     this.radioButton3.Checked = true;
     this.radioButton3.Location = new System.Drawing.Point(271, 72);
     this.radioButton3.Name = "radioButton3";
     this.radioButton3.Size = new System.Drawing.Size(14, 13);
     this.radioButton3.TabIndex = 180;
     this.radioButton3.TabStop = true;
     this.toolTip1.SetToolTip(this.radioButton3, "Use if in from focus point");
     this.radioButton3.UseVisualStyleBackColor = true;
     this.radioButton3.Click += new System.EventHandler(this.radioButton3_Click);
     //
     // radioButton2
     //
     this.radioButton2.AutoCheck = false;
     this.radioButton2.AutoSize = true;
     this.radioButton2.Location = new System.Drawing.Point(269, 47);
     this.radioButton2.Name = "radioButton2";
     this.radioButton2.Size = new System.Drawing.Size(14, 13);
     this.radioButton2.TabIndex = 179;
     this.radioButton2.TabStop = true;
     this.toolTip1.SetToolTip(this.radioButton2, "Use if out from focus point");
     this.radioButton2.UseVisualStyleBackColor = true;
     this.radioButton2.Click += new System.EventHandler(this.radioButton2_Click);
     //
     // textBox14
     //
     this.textBox14.Location = new System.Drawing.Point(210, 70);
     this.textBox14.Name = "textBox14";
     this.textBox14.Size = new System.Drawing.Size(55, 20);
     this.textBox14.TabIndex = 161;
     this.toolTip1.SetToolTip(this.textBox14, "Use if IN from focus point");
     //
     // textBox16
     //
     this.textBox16.Location = new System.Drawing.Point(210, 44);
     this.textBox16.Name = "textBox16";
     this.textBox16.Size = new System.Drawing.Size(55, 20);
     this.textBox16.TabIndex = 168;
     this.toolTip1.SetToolTip(this.textBox16, "Use if out from focus point");
     //
     // numericUpDown5
     //
     this.numericUpDown5.Location = new System.Drawing.Point(85, 48);
     this.numericUpDown5.Minimum = new decimal(new int[] {
     6,
     0,
     0,
     0});
     this.numericUpDown5.Name = "numericUpDown5";
     this.numericUpDown5.Size = new System.Drawing.Size(50, 20);
     this.numericUpDown5.TabIndex = 123;
     this.toolTip1.SetToolTip(this.numericUpDown5, "Select number of exposures for course V-curve AND GotoFocus");
     this.numericUpDown5.Value = new decimal(new int[] {
     10,
     0,
     0,
     0});
     //
     // checkBox19
     //
     this.checkBox19.AutoSize = true;
     this.checkBox19.Location = new System.Drawing.Point(12, 49);
     this.checkBox19.Name = "checkBox19";
     this.checkBox19.Size = new System.Drawing.Size(112, 17);
     this.checkBox19.TabIndex = 262;
     this.checkBox19.Text = "OAG - Guiding off ";
     this.toolTip1.SetToolTip(this.checkBox19, "\"Stops PHD for Flats and for focus that requires slew\"");
     this.checkBox19.UseVisualStyleBackColor = true;
     //
     // numericUpDown21
     //
     this.numericUpDown21.Location = new System.Drawing.Point(93, 43);
     this.numericUpDown21.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDown21.Name = "numericUpDown21";
     this.numericUpDown21.Size = new System.Drawing.Size(47, 20);
     this.numericUpDown21.TabIndex = 205;
     this.toolTip1.SetToolTip(this.numericUpDown21, "Select number of exposures for course V-curve AND GotoFocus");
     this.numericUpDown21.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
     //
     // label87
     //
     this.label87.AutoSize = true;
     this.label87.Location = new System.Drawing.Point(141, 122);
     this.label87.Name = "label87";
     this.label87.Size = new System.Drawing.Size(63, 13);
     this.label87.TabIndex = 182;
     this.label87.Text = "Sample Pos";
     this.toolTip1.SetToolTip(this.label87, "Sample position on V-curve for GotoFocus in steps from focus point (max 50)");
     //
     // numericUpDown39
     //
     this.numericUpDown39.Increment = new decimal(new int[] {
     5,
     0,
     0,
     0});
     this.numericUpDown39.Location = new System.Drawing.Point(210, 120);
     this.numericUpDown39.Maximum = new decimal(new int[] {
     999999,
     0,
     0,
     0});
     this.numericUpDown39.Name = "numericUpDown39";
     this.numericUpDown39.Size = new System.Drawing.Size(55, 20);
     this.numericUpDown39.TabIndex = 181;
     this.toolTip1.SetToolTip(this.numericUpDown39, "Ideally about mid portion of one side of V-curve");
     this.numericUpDown39.Value = new decimal(new int[] {
     20,
     0,
     0,
     0});
     //
     // checkBox13
     //
     this.checkBox13.AutoSize = true;
     this.checkBox13.Location = new System.Drawing.Point(12, 188);
     this.checkBox13.Name = "checkBox13";
     this.checkBox13.Size = new System.Drawing.Size(134, 17);
     this.checkBox13.TabIndex = 241;
     this.checkBox13.Text = "7     Flat(Time in mSec)";
     this.toolTip1.SetToolTip(this.checkBox13, "Single flat with filter position 1 unless \"Flat Every Filter\" checked");
     this.checkBox13.UseVisualStyleBackColor = true;
     this.checkBox13.CheckedChanged += new System.EventHandler(this.checkBox13_CheckedChanged);
     //
     // checkBox26
     //
     this.checkBox26.AutoSize = true;
     this.checkBox26.Location = new System.Drawing.Point(41, 146);
     this.checkBox26.Name = "checkBox26";
     this.checkBox26.Size = new System.Drawing.Size(129, 17);
     this.checkBox26.TabIndex = 39;
     this.checkBox26.Text = "Use Nebulosity Image";
     this.toolTip1.SetToolTip(this.checkBox26, "Get from Caputre if checked, selelct file if unchecked");
     this.checkBox26.UseVisualStyleBackColor = true;
     //
     // toolTip3
     //
     this.toolTip3.AutoPopDelay = 8000;
     this.toolTip3.InitialDelay = 500;
     this.toolTip3.ReshowDelay = 100;
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(154, 20);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(50, 23);
     this.button3.TabIndex = 149;
     this.button3.Text = "Fine";
     this.toolTip3.SetToolTip(this.button3, "Moves to N/2 times step size and generates V-curve\r\nMust first determine focus po" +
     "sition with std(course) V-curve");
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.button3_Click_1);
     //
     // button9
     //
     this.button9.Location = new System.Drawing.Point(97, 152);
     this.button9.Name = "button9";
     this.button9.Size = new System.Drawing.Size(75, 23);
     this.button9.TabIndex = 145;
     this.button9.Text = "&Snyc Pos";
     this.toolTip3.SetToolTip(this.button9, "Push to sync after any manual position changes");
     this.button9.UseVisualStyleBackColor = true;
     this.button9.Click += new System.EventHandler(this.button9_Click_1);
     //
     // ButtonDisable
     //
     this.ButtonDisable.Location = new System.Drawing.Point(10, 181);
     this.ButtonDisable.Name = "ButtonDisable";
     this.ButtonDisable.Size = new System.Drawing.Size(75, 23);
     this.ButtonDisable.TabIndex = 106;
     this.ButtonDisable.Text = "&Close";
     this.toolTip3.SetToolTip(this.ButtonDisable, "Moves to zero and closes application");
     this.ButtonDisable.UseVisualStyleBackColor = true;
     this.ButtonDisable.Click += new System.EventHandler(this.ButtonDisable_Click_1);
     //
     // button8
     //
     this.button8.BackColor = System.Drawing.Color.Transparent;
     this.button8.Location = new System.Drawing.Point(7, 93);
     this.button8.Name = "button8";
     this.button8.Size = new System.Drawing.Size(55, 23);
     this.button8.TabIndex = 153;
     this.button8.Text = "Focus";
     this.toolTip3.SetToolTip(this.button8, "Connect to Arduino after port selection.\r\nSends Stepper Delay and Max Travel to a" +
     "pplication.\r\nWill autoconnect if single port detected");
     this.button8.UseVisualStyleBackColor = false;
     this.button8.Click += new System.EventHandler(this.button8_Click_2);
     //
     // button5
     //
     this.button5.Location = new System.Drawing.Point(6, 51);
     this.button5.Name = "button5";
     this.button5.Size = new System.Drawing.Size(75, 23);
     this.button5.TabIndex = 158;
     this.button5.Text = "Temp Cal";
     this.toolTip3.SetToolTip(this.button5, "Repeat Fine V-curves to determine focus point with temp changes.\r\nPress Abort to " +
     "stop");
     this.button5.UseVisualStyleBackColor = true;
     this.button5.Click += new System.EventHandler(this.button5_Click);
     //
     // textBox11
     //
     this.textBox11.Location = new System.Drawing.Point(67, 43);
     this.textBox11.Name = "textBox11";
     this.textBox11.Size = new System.Drawing.Size(180, 20);
     this.textBox11.TabIndex = 162;
     this.toolTip3.SetToolTip(this.textBox11, "Full path of Directory setting in Nebulosity");
     this.textBox11.Click += new System.EventHandler(this.textBox11_Click);
     this.textBox11.TextChanged += new System.EventHandler(this.textBox11_TextChanged);
     //
     // chart1
     //
     chartArea10.AxisX.Title = "Position";
     chartArea10.AxisY.Crossing = -1.7976931348623157E+308D;
     chartArea10.AxisY.IsStartedFromZero = false;
     chartArea10.AxisY.Title = "HFR";
     chartArea10.Name = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea10);
     legend10.Name = "Legend1";
     this.chart1.Legends.Add(legend10);
     this.chart1.Location = new System.Drawing.Point(26, 350);
     this.chart1.Name = "chart1";
     this.chart1.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Bright;
     series37.ChartArea = "ChartArea1";
     series37.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
     series37.Legend = "Legend1";
     series37.MarkerBorderWidth = 2;
     series37.Name = "Rough V";
     series37.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     series37.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     series38.ChartArea = "ChartArea1";
     series38.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastPoint;
     series38.Legend = "Legend1";
     series38.MarkerBorderColor = System.Drawing.Color.Blue;
     series38.MarkerColor = System.Drawing.Color.White;
     series38.MarkerSize = 8;
     series38.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
     series38.Name = "Fine V- Data Used";
     series38.YValuesPerPoint = 2;
     series39.ChartArea = "ChartArea1";
     series39.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastPoint;
     series39.Legend = "Legend1";
     series39.MarkerBorderColor = System.Drawing.Color.Red;
     series39.MarkerColor = System.Drawing.Color.White;
     series39.MarkerSize = 8;
     series39.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
     series39.Name = "Fine V";
     series40.ChartArea = "ChartArea1";
     series40.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
     series40.Legend = "Legend1";
     series40.MarkerBorderColor = System.Drawing.Color.Purple;
     series40.MarkerColor = System.Drawing.Color.Purple;
     series40.MarkerSize = 8;
     series40.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Diamond;
     series40.Name = "Temp Cal";
     this.chart1.Series.Add(series37);
     this.chart1.Series.Add(series38);
     this.chart1.Series.Add(series39);
     this.chart1.Series.Add(series40);
     this.chart1.Size = new System.Drawing.Size(688, 157);
     this.chart1.TabIndex = 51;
     this.chart1.Text = "chart1";
     title10.Name = "Title 1";
     this.chart1.Titles.Add(title10);
     //
     // menuStrip1
     //
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(749, 24);
     this.menuStrip1.TabIndex = 0;
     this.menuStrip1.Text = "menuStrip1";
     //
     // fileSystemWatcher1
     //
     this.fileSystemWatcher1.EnableRaisingEvents = true;
     this.fileSystemWatcher1.Filter = "*.bmp";
     this.fileSystemWatcher1.NotifyFilter = System.IO.NotifyFilters.LastWrite;
     this.fileSystemWatcher1.SynchronizingObject = this;
     this.fileSystemWatcher1.Changed += new System.IO.FileSystemEventHandler(this.fileSystemWatcher1_Changed);
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable1});
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn1,
     this.dataColumn4,
     this.dataColumn5,
     this.dataColumn2,
     this.dataColumn3,
     this.dataColumn6,
     this.dataColumn7,
     this.dataColumn8});
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "Date";
     //
     // dataColumn4
     //
     this.dataColumn4.ColumnName = "PID";
     this.dataColumn4.DataType = typeof(int);
     //
     // dataColumn5
     //
     this.dataColumn5.ColumnName = "SlopeDWN";
     this.dataColumn5.DataType = typeof(double);
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "SlopeUP";
     this.dataColumn2.ColumnName = "SlopeUP";
     this.dataColumn2.DataType = typeof(double);
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "Number";
     this.dataColumn3.ColumnName = "Number";
     this.dataColumn3.DataType = typeof(int);
     //
     // dataColumn6
     //
     this.dataColumn6.Caption = "Equip";
     this.dataColumn6.ColumnName = "Equip";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "BestHFR";
     this.dataColumn7.ColumnName = "BestHFR";
     this.dataColumn7.DataType = typeof(int);
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "FocusPos";
     this.dataColumn8.ColumnName = "FocusPos";
     this.dataColumn8.DataType = typeof(int);
     //
     // dataGridView1
     //
     this.dataGridView1.AutoGenerateColumns = false;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column5,
     this.Column1,
     this.Column2,
     this.Column3,
     this.Column4,
     this.Column6,
     this.Column7,
     this.FocusPos});
     this.dataGridView1.DataSource = this.dataSet1;
     this.dataGridView1.Location = new System.Drawing.Point(12, 515);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.Size = new System.Drawing.Size(613, 176);
     this.dataGridView1.TabIndex = 89;
     this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
     this.dataGridView1.SelectionChanged += new System.EventHandler(this.dataGridView1_SelectionChanged);
     //
     // Column5
     //
     this.Column5.DataPropertyName = "Number";
     this.Column5.HeaderText = "#";
     this.Column5.Name = "Column5";
     this.Column5.Width = 40;
     //
     // Column1
     //
     this.Column1.DataPropertyName = "Date";
     dataGridViewCellStyle10.Format = "G";
     dataGridViewCellStyle10.NullValue = null;
     this.Column1.DefaultCellStyle = dataGridViewCellStyle10;
     this.Column1.HeaderText = "Date";
     this.Column1.Name = "Column1";
     this.Column1.Width = 150;
     //
     // Column2
     //
     this.Column2.DataPropertyName = "PID";
     this.Column2.HeaderText = "PID";
     this.Column2.Name = "Column2";
     this.Column2.Width = 40;
     //
     // Column3
     //
     this.Column3.DataPropertyName = "SlopeDWN";
     this.Column3.HeaderText = "SlpDwn";
     this.Column3.Name = "Column3";
     this.Column3.Width = 50;
     //
     // Column4
     //
     this.Column4.DataPropertyName = "SlopeUP";
     this.Column4.HeaderText = "SlpUp";
     this.Column4.Name = "Column4";
     this.Column4.Width = 50;
     //
     // Column6
     //
     this.Column6.DataPropertyName = "Equip";
     this.Column6.HeaderText = "Equip";
     this.Column6.Name = "Column6";
     this.Column6.Width = 150;
     //
     // Column7
     //
     this.Column7.DataPropertyName = "BestHFR";
     this.Column7.HeaderText = "HFR";
     this.Column7.Name = "Column7";
     this.Column7.Width = 40;
     //
     // FocusPos
     //
     this.FocusPos.DataPropertyName = "FocusPos";
     this.FocusPos.HeaderText = "Focus";
     this.FocusPos.Name = "FocusPos";
     this.FocusPos.Width = 60;
     //
     // button13
     //
     this.button13.Location = new System.Drawing.Point(639, 577);
     this.button13.Name = "button13";
     this.button13.Size = new System.Drawing.Size(75, 23);
     this.button13.TabIndex = 98;
     this.button13.Text = "Update";
     this.button13.UseVisualStyleBackColor = true;
     this.button13.Click += new System.EventHandler(this.button13_Click);
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage4);
     this.tabControl1.Controls.Add(this.tabPage5);
     this.tabControl1.Controls.Add(this.tabPage6);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Controls.Add(this.tabPage7);
     this.tabControl1.ItemSize = new System.Drawing.Size(75, 18);
     this.tabControl1.Location = new System.Drawing.Point(0, 0);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(746, 248);
     this.tabControl1.SizeMode = System.Windows.Forms.TabSizeMode.FillToRight;
     this.tabControl1.TabIndex = 106;
     this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
     this.tabControl1.Click += new System.EventHandler(this.tabControl1_Click);
     //
     // tabPage2
     //
     this.tabPage2.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tabPage2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.tabPage2.Controls.Add(this.groupBox4);
     this.tabPage2.Controls.Add(this.groupBox3);
     this.tabPage2.Controls.Add(this.groupBox2);
     this.tabPage2.Controls.Add(this.groupBox1);
     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(738, 222);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "Setup";
     this.tabPage2.Click += new System.EventHandler(this.tabPage2_Click);
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.checkBox29);
     this.groupBox4.Controls.Add(this.checkBox28);
     this.groupBox4.Controls.Add(this.button59);
     this.groupBox4.Controls.Add(this.Button2000);
     this.groupBox4.Controls.Add(this.button10);
     this.groupBox4.Controls.Add(this.textBox8);
     this.groupBox4.Controls.Add(this.numericUpDown1);
     this.groupBox4.Controls.Add(this.button5);
     this.groupBox4.Controls.Add(this.label1);
     this.groupBox4.Controls.Add(this.textBox9);
     this.groupBox4.Location = new System.Drawing.Point(361, 129);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(369, 87);
     this.groupBox4.TabIndex = 188;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Misc";
     //
     // checkBox29
     //
     this.checkBox29.AutoSize = true;
     this.checkBox29.Enabled = false;
     this.checkBox29.Location = new System.Drawing.Point(146, 19);
     this.checkBox29.Name = "checkBox29";
     this.checkBox29.Size = new System.Drawing.Size(99, 17);
     this.checkBox29.TabIndex = 173;
     this.checkBox29.Text = "Bklsh Comp On";
     this.checkBox29.UseVisualStyleBackColor = true;
     //
     // checkBox28
     //
     this.checkBox28.AutoSize = true;
     this.checkBox28.Location = new System.Drawing.Point(179, 55);
     this.checkBox28.Name = "checkBox28";
     this.checkBox28.Size = new System.Drawing.Size(66, 17);
     this.checkBox28.TabIndex = 172;
     this.checkBox28.Text = "Reverse";
     this.checkBox28.UseVisualStyleBackColor = true;
     this.checkBox28.CheckedChanged += new System.EventHandler(this.checkBox28_CheckedChanged);
     //
     // button59
     //
     this.button59.Location = new System.Drawing.Point(90, 51);
     this.button59.Name = "button59";
     this.button59.Size = new System.Drawing.Size(75, 23);
     this.button59.TabIndex = 170;
     this.button59.Text = "Cont Hold";
     this.button59.UseVisualStyleBackColor = true;
     this.button59.Click += new System.EventHandler(this.button59_Click);
     //
     // textBox8
     //
     this.textBox8.Location = new System.Drawing.Point(88, 17);
     this.textBox8.Name = "textBox8";
     this.textBox8.Size = new System.Drawing.Size(50, 20);
     this.textBox8.TabIndex = 157;
     this.textBox8.TextChanged += new System.EventHandler(this.textBox8_TextChanged);
     this.textBox8.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox8_KeyDown);
     this.textBox8.Leave += new System.EventHandler(this.textBox8_Leave);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(251, 56);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(58, 13);
     this.label1.TabIndex = 168;
     this.label1.Text = "Round To:";
     //
     // textBox9
     //
     this.textBox9.Location = new System.Drawing.Point(315, 19);
     this.textBox9.Name = "textBox9";
     this.textBox9.Size = new System.Drawing.Size(45, 20);
     this.textBox9.TabIndex = 167;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.button12);
     this.groupBox3.Controls.Add(this.buttonFilterConnect);
     this.groupBox3.Controls.Add(this.label18);
     this.groupBox3.Controls.Add(this.textBox35);
     this.groupBox3.Controls.Add(this.button8);
     this.groupBox3.Controls.Add(this.label44);
     this.groupBox3.Controls.Add(this.label17);
     this.groupBox3.Controls.Add(this.textBox11);
     this.groupBox3.Controls.Add(this.button49);
     this.groupBox3.Location = new System.Drawing.Point(9, 2);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(257, 125);
     this.groupBox3.TabIndex = 188;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Connections";
     //
     // button12
     //
     this.button12.Location = new System.Drawing.Point(192, 93);
     this.button12.Name = "button12";
     this.button12.Size = new System.Drawing.Size(55, 23);
     this.button12.TabIndex = 185;
     this.button12.Text = "Switch";
     this.button12.UseVisualStyleBackColor = true;
     this.button12.Click += new System.EventHandler(this.button12_Click);
     //
     // buttonFilterConnect
     //
     this.buttonFilterConnect.Location = new System.Drawing.Point(130, 93);
     this.buttonFilterConnect.Name = "buttonFilterConnect";
     this.buttonFilterConnect.Size = new System.Drawing.Size(55, 23);
     this.buttonFilterConnect.TabIndex = 184;
     this.buttonFilterConnect.Text = "Filter";
     this.buttonFilterConnect.UseVisualStyleBackColor = true;
     this.buttonFilterConnect.Click += new System.EventHandler(this.buttonFilterConnect_Click);
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(10, 73);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(91, 13);
     this.label18.TabIndex = 152;
     this.label18.Text = "ASCOM Connect:";
     this.label18.Click += new System.EventHandler(this.label18_Click);
     //
     // textBox35
     //
     this.textBox35.Location = new System.Drawing.Point(67, 17);
     this.textBox35.Name = "textBox35";
     this.textBox35.Size = new System.Drawing.Size(180, 20);
     this.textBox35.TabIndex = 182;
     this.textBox35.Click += new System.EventHandler(this.textBox35_Click);
     //
     // label44
     //
     this.label44.AutoSize = true;
     this.label44.Location = new System.Drawing.Point(3, 20);
     this.label44.Name = "label44";
     this.label44.Size = new System.Drawing.Size(58, 13);
     this.label44.TabIndex = 181;
     this.label44.Text = "Neb Path: ";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(10, 46);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(51, 13);
     this.label17.TabIndex = 161;
     this.label17.Text = "File Path:";
     //
     // button49
     //
     this.button49.Location = new System.Drawing.Point(68, 93);
     this.button49.Name = "button49";
     this.button49.Size = new System.Drawing.Size(55, 23);
     this.button49.TabIndex = 19;
     this.button49.Text = "Mount";
     this.button49.UseVisualStyleBackColor = true;
     this.button49.Click += new System.EventHandler(this.button49_Click);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.checkBox31);
     this.groupBox2.Controls.Add(this.groupBox20);
     this.groupBox2.Controls.Add(this.radioButton4);
     this.groupBox2.Controls.Add(this.label88);
     this.groupBox2.Controls.Add(this.numericUpDown40);
     this.groupBox2.Controls.Add(this.label58);
     this.groupBox2.Controls.Add(this.textBox2);
     this.groupBox2.Controls.Add(this.label57);
     this.groupBox2.Controls.Add(this.label16);
     this.groupBox2.Controls.Add(this.label8);
     this.groupBox2.Controls.Add(this.numericUpDown9);
     this.groupBox2.Controls.Add(this.button41);
     this.groupBox2.Controls.Add(this.button14);
     this.groupBox2.Controls.Add(this.button23);
     this.groupBox2.Controls.Add(this.radioButton8);
     this.groupBox2.Controls.Add(this.label3);
     this.groupBox2.Controls.Add(this.label50);
     this.groupBox2.Controls.Add(this.textBox22);
     this.groupBox2.Controls.Add(this.comboBox7);
     this.groupBox2.Controls.Add(this.label40);
     this.groupBox2.Location = new System.Drawing.Point(272, 2);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(458, 124);
     this.groupBox2.TabIndex = 194;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Equipment";
     //
     // checkBox31
     //
     this.checkBox31.AutoSize = true;
     this.checkBox31.Location = new System.Drawing.Point(62, 95);
     this.checkBox31.Name = "checkBox31";
     this.checkBox31.Size = new System.Drawing.Size(120, 17);
     this.checkBox31.TabIndex = 197;
     this.checkBox31.Text = "Internal Filter Wheel";
     this.checkBox31.UseVisualStyleBackColor = true;
     this.checkBox31.CheckedChanged += new System.EventHandler(this.checkBox31_CheckedChanged);
     //
     // groupBox20
     //
     this.groupBox20.Controls.Add(this.radioButton9);
     this.groupBox20.Controls.Add(this.radioButton10);
     this.groupBox20.Location = new System.Drawing.Point(244, 46);
     this.groupBox20.Name = "groupBox20";
     this.groupBox20.Size = new System.Drawing.Size(89, 54);
     this.groupBox20.TabIndex = 196;
     this.groupBox20.TabStop = false;
     //
     // radioButton9
     //
     this.radioButton9.AutoSize = true;
     this.radioButton9.Location = new System.Drawing.Point(9, 10);
     this.radioButton9.Name = "radioButton9";
     this.radioButton9.Size = new System.Drawing.Size(67, 17);
     this.radioButton9.TabIndex = 171;
     this.radioButton9.Text = "Extender";
     this.radioButton9.UseVisualStyleBackColor = true;
     this.radioButton9.CheckedChanged += new System.EventHandler(this.radioButton9_CheckedChanged);
     //
     // radioButton10
     //
     this.radioButton10.AutoSize = true;
     this.radioButton10.Location = new System.Drawing.Point(9, 29);
     this.radioButton10.Name = "radioButton10";
     this.radioButton10.Size = new System.Drawing.Size(66, 17);
     this.radioButton10.TabIndex = 172;
     this.radioButton10.Text = "Reducer";
     this.radioButton10.UseVisualStyleBackColor = true;
     this.radioButton10.CheckedChanged += new System.EventHandler(this.radioButton10_CheckedChanged);
     //
     // radioButton4
     //
     this.radioButton4.AutoSize = true;
     this.radioButton4.Location = new System.Drawing.Point(253, 100);
     this.radioButton4.Name = "radioButton4";
     this.radioButton4.Size = new System.Drawing.Size(40, 17);
     this.radioButton4.TabIndex = 195;
     this.radioButton4.Text = "AO";
     this.radioButton4.UseVisualStyleBackColor = true;
     this.radioButton4.CheckedChanged += new System.EventHandler(this.radioButton4_CheckedChanged);
     //
     // label88
     //
     this.label88.AutoSize = true;
     this.label88.Location = new System.Drawing.Point(337, 70);
     this.label88.Name = "label88";
     this.label88.Size = new System.Drawing.Size(55, 13);
     this.label88.TabIndex = 194;
     this.label88.Text = "Step Size:";
     //
     // numericUpDown40
     //
     this.numericUpDown40.Increment = new decimal(new int[] {
     10,
     0,
     0,
     0});
     this.numericUpDown40.Location = new System.Drawing.Point(398, 68);
     this.numericUpDown40.Maximum = new decimal(new int[] {
     10000,
     0,
     0,
     0});
     this.numericUpDown40.Name = "numericUpDown40";
     this.numericUpDown40.Size = new System.Drawing.Size(50, 20);
     this.numericUpDown40.TabIndex = 193;
     this.numericUpDown40.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDown40.ValueChanged += new System.EventHandler(this.numericUpDown40_ValueChanged);
     //
     // label58
     //
     this.label58.AutoSize = true;
     this.label58.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label58.Location = new System.Drawing.Point(214, 16);
     this.label58.Name = "label58";
     this.label58.Size = new System.Drawing.Size(23, 13);
     this.label58.TabIndex = 192;
     this.label58.Text = "Del";
     //
     // label57
     //
     this.label57.AutoSize = true;
     this.label57.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label57.Location = new System.Drawing.Point(186, 16);
     this.label57.Name = "label57";
     this.label57.Size = new System.Drawing.Size(26, 13);
     this.label57.TabIndex = 191;
     this.label57.Text = "Add";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(330, 16);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(63, 13);
     this.label16.TabIndex = 148;
     this.label16.Text = "Max Travel:";
     //
     // button41
     //
     this.button41.Location = new System.Drawing.Point(215, 31);
     this.button41.Name = "button41";
     this.button41.Size = new System.Drawing.Size(19, 23);
     this.button41.TabIndex = 188;
     this.button41.Text = "-";
     this.button41.UseVisualStyleBackColor = true;
     this.button41.Click += new System.EventHandler(this.button41_Click);
     //
     // button23
     //
     this.button23.Location = new System.Drawing.Point(189, 30);
     this.button23.Name = "button23";
     this.button23.Size = new System.Drawing.Size(19, 23);
     this.button23.TabIndex = 187;
     this.button23.Text = "+";
     this.button23.UseVisualStyleBackColor = true;
     this.button23.Click += new System.EventHandler(this.button23_Click_1);
     //
     // radioButton8
     //
     this.radioButton8.AutoSize = true;
     this.radioButton8.Checked = true;
     this.radioButton8.Location = new System.Drawing.Point(253, 31);
     this.radioButton8.Name = "radioButton8";
     this.radioButton8.Size = new System.Drawing.Size(51, 17);
     this.radioButton8.TabIndex = 170;
     this.radioButton8.TabStop = true;
     this.radioButton8.Text = "None";
     this.radioButton8.UseVisualStyleBackColor = true;
     this.radioButton8.CheckedChanged += new System.EventHandler(this.radioButton8_CheckedChanged);
     this.radioButton8.MouseDown += new System.Windows.Forms.MouseEventHandler(this.radioButton8_MouseDown);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(250, 12);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(62, 13);
     this.label3.TabIndex = 173;
     this.label3.Text = "Addt Equip:";
     //
     // label50
     //
     this.label50.AutoSize = true;
     this.label50.Location = new System.Drawing.Point(15, 34);
     this.label50.Name = "label50";
     this.label50.Size = new System.Drawing.Size(41, 13);
     this.label50.TabIndex = 184;
     this.label50.Text = "Scope:";
     //
     // comboBox7
     //
     this.comboBox7.FormattingEnabled = true;
     this.comboBox7.Location = new System.Drawing.Point(62, 31);
     this.comboBox7.Name = "comboBox7";
     this.comboBox7.Size = new System.Drawing.Size(121, 21);
     this.comboBox7.TabIndex = 183;
     this.comboBox7.SelectedIndexChanged += new System.EventHandler(this.comboBox7_SelectedIndexChanged);
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.Location = new System.Drawing.Point(10, 65);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(46, 13);
     this.label40.TabIndex = 175;
     this.label40.Text = "Camera:";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.button42);
     this.groupBox1.Controls.Add(this.textBox34);
     this.groupBox1.Controls.Add(this.button29);
     this.groupBox1.Controls.Add(this.label41);
     this.groupBox1.Controls.Add(this.label42);
     this.groupBox1.Controls.Add(this.textBox33);
     this.groupBox1.Location = new System.Drawing.Point(7, 129);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(348, 87);
     this.groupBox1.TabIndex = 193;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "V-Curve Data";
     //
     // button42
     //
     this.button42.Location = new System.Drawing.Point(258, 49);
     this.button42.Name = "button42";
     this.button42.Size = new System.Drawing.Size(69, 23);
     this.button42.TabIndex = 189;
     this.button42.Text = "Export";
     this.button42.UseVisualStyleBackColor = true;
     this.button42.Click += new System.EventHandler(this.button42_Click_1);
     //
     // textBox34
     //
     this.textBox34.Location = new System.Drawing.Point(69, 21);
     this.textBox34.Name = "textBox34";
     this.textBox34.Size = new System.Drawing.Size(177, 20);
     this.textBox34.TabIndex = 179;
     this.textBox34.Click += new System.EventHandler(this.textBox34_Click);
     //
     // button29
     //
     this.button29.Location = new System.Drawing.Point(258, 19);
     this.button29.Name = "button29";
     this.button29.Size = new System.Drawing.Size(69, 23);
     this.button29.TabIndex = 188;
     this.button29.Text = "Import";
     this.button29.UseVisualStyleBackColor = true;
     this.button29.Click += new System.EventHandler(this.button29_Click);
     //
     // label41
     //
     this.label41.AutoSize = true;
     this.label41.Location = new System.Drawing.Point(23, 54);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(40, 13);
     this.label41.TabIndex = 176;
     this.label41.Text = "Export:";
     //
     // label42
     //
     this.label42.AutoSize = true;
     this.label42.Location = new System.Drawing.Point(24, 25);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(39, 13);
     this.label42.TabIndex = 178;
     this.label42.Text = "Import:";
     //
     // textBox33
     //
     this.textBox33.Location = new System.Drawing.Point(69, 51);
     this.textBox33.Name = "textBox33";
     this.textBox33.Size = new System.Drawing.Size(177, 20);
     this.textBox33.TabIndex = 177;
     this.textBox33.Click += new System.EventHandler(this.textBox33_Click);
     //
     // tabPage1
     //
     this.tabPage1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tabPage1.Controls.Add(this.groupBox11);
     this.tabPage1.Controls.Add(this.groupBox10);
     this.tabPage1.Controls.Add(this.groupBox9);
     this.tabPage1.Controls.Add(this.groupBox8);
     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(738, 222);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Control";
     //
     // groupBox11
     //
     this.groupBox11.Controls.Add(this.label84);
     this.groupBox11.Controls.Add(this.numericUpDown21);
     this.groupBox11.Controls.Add(this.button27);
     this.groupBox11.Controls.Add(this.checkBox22);
     this.groupBox11.Controls.Add(this.label65);
     this.groupBox11.Controls.Add(this.textBox43);
     this.groupBox11.Controls.Add(this.label64);
     this.groupBox11.Controls.Add(this.button25);
     this.groupBox11.Controls.Add(this.textBox25);
     this.groupBox11.Location = new System.Drawing.Point(10, 153);
     this.groupBox11.Name = "groupBox11";
     this.groupBox11.Size = new System.Drawing.Size(289, 66);
     this.groupBox11.TabIndex = 188;
     this.groupBox11.TabStop = false;
     this.groupBox11.Text = "Full Frame Metric";
     //
     // label84
     //
     this.label84.AutoSize = true;
     this.label84.Location = new System.Drawing.Point(69, 47);
     this.label84.Name = "label84";
     this.label84.Size = new System.Drawing.Size(21, 13);
     this.label84.TabIndex = 206;
     this.label84.Text = "N=";
     //
     // button27
     //
     this.button27.Location = new System.Drawing.Point(93, 15);
     this.button27.Name = "button27";
     this.button27.Size = new System.Drawing.Size(51, 23);
     this.button27.TabIndex = 204;
     this.button27.Text = "Sample";
     this.button27.UseVisualStyleBackColor = true;
     this.button27.Click += new System.EventHandler(this.button27_Click);
     //
     // checkBox22
     //
     this.checkBox22.AutoSize = true;
     this.checkBox22.Location = new System.Drawing.Point(21, 45);
     this.checkBox22.Name = "checkBox22";
     this.checkBox22.Size = new System.Drawing.Size(40, 17);
     this.checkBox22.TabIndex = 203;
     this.checkBox22.Text = "On";
     this.checkBox22.UseVisualStyleBackColor = true;
     this.checkBox22.CheckedChanged += new System.EventHandler(this.checkBox22_CheckedChanged_1);
     //
     // label65
     //
     this.label65.AutoSize = true;
     this.label65.Location = new System.Drawing.Point(157, 20);
     this.label65.Name = "label65";
     this.label65.Size = new System.Drawing.Size(73, 13);
     this.label65.TabIndex = 202;
     this.label65.Text = "Exp time(sec):";
     //
     // textBox43
     //
     this.textBox43.Location = new System.Drawing.Point(236, 17);
     this.textBox43.Name = "textBox43";
     this.textBox43.Size = new System.Drawing.Size(47, 20);
     this.textBox43.TabIndex = 200;
     this.textBox43.Text = "1";
     //
     // label64
     //
     this.label64.AutoSize = true;
     this.label64.Location = new System.Drawing.Point(146, 46);
     this.label64.Name = "label64";
     this.label64.Size = new System.Drawing.Size(83, 13);
     this.label64.TabIndex = 199;
     this.label64.Text = "Full Frame HFR:";
     //
     // button25
     //
     this.button25.Location = new System.Drawing.Point(12, 15);
     this.button25.Name = "button25";
     this.button25.Size = new System.Drawing.Size(64, 23);
     this.button25.TabIndex = 195;
     this.button25.Text = "Metric V";
     this.button25.UseVisualStyleBackColor = true;
     this.button25.Click += new System.EventHandler(this.button25_Click);
     //
     // textBox25
     //
     this.textBox25.Location = new System.Drawing.Point(236, 43);
     this.textBox25.Name = "textBox25";
     this.textBox25.Size = new System.Drawing.Size(47, 20);
     this.textBox25.TabIndex = 192;
     //
     // groupBox10
     //
     this.groupBox10.Controls.Add(this.textBox7);
     this.groupBox10.Controls.Add(this.numericUpDown2);
     this.groupBox10.Controls.Add(this.label7);
     this.groupBox10.Controls.Add(this.numericUpDown4);
     this.groupBox10.Controls.Add(this.button4);
     this.groupBox10.Controls.Add(this.label14);
     this.groupBox10.Controls.Add(this.numericUpDown5);
     this.groupBox10.Controls.Add(this.label15);
     this.groupBox10.Controls.Add(this.button6);
     this.groupBox10.Controls.Add(this.label22);
     this.groupBox10.Controls.Add(this.textBox6);
     this.groupBox10.Controls.Add(this.textBox17);
     this.groupBox10.Controls.Add(this.label5);
     this.groupBox10.Controls.Add(this.label21);
     this.groupBox10.Controls.Add(this.label10);
     this.groupBox10.Controls.Add(this.numericUpDown10);
     this.groupBox10.Controls.Add(this.progressBar1);
     this.groupBox10.Controls.Add(this.numericUpDown8);
     this.groupBox10.Controls.Add(this.button3);
     this.groupBox10.Controls.Add(this.numericUpDown7);
     this.groupBox10.Controls.Add(this.numericUpDown3);
     this.groupBox10.Location = new System.Drawing.Point(494, 6);
     this.groupBox10.Name = "groupBox10";
     this.groupBox10.Size = new System.Drawing.Size(233, 213);
     this.groupBox10.TabIndex = 188;
     this.groupBox10.TabStop = false;
     this.groupBox10.Text = "V-Curve";
     //
     // textBox7
     //
     this.textBox7.Location = new System.Drawing.Point(85, 152);
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new System.Drawing.Size(50, 20);
     this.textBox7.TabIndex = 132;
     //
     // numericUpDown2
     //
     this.numericUpDown2.Location = new System.Drawing.Point(85, 100);
     this.numericUpDown2.Maximum = new decimal(new int[] {
     999999,
     0,
     0,
     0});
     this.numericUpDown2.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDown2.Name = "numericUpDown2";
     this.numericUpDown2.Size = new System.Drawing.Size(50, 20);
     this.numericUpDown2.TabIndex = 118;
     this.numericUpDown2.Value = new decimal(new int[] {
     10,
     0,
     0,
     0});
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(24, 102);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(55, 13);
     this.label7.TabIndex = 119;
     this.label7.Text = "Step Size:";
     //
     // numericUpDown4
     //
     this.numericUpDown4.Location = new System.Drawing.Point(85, 74);
     this.numericUpDown4.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDown4.Name = "numericUpDown4";
     this.numericUpDown4.Size = new System.Drawing.Size(50, 20);
     this.numericUpDown4.TabIndex = 121;
     this.numericUpDown4.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(23, 177);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(46, 23);
     this.button4.TabIndex = 141;
     this.button4.Text = "&Abort";
     this.button4.UseVisualStyleBackColor = true;
     this.button4.Click += new System.EventHandler(this.button4_Click_2);
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(20, 74);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(59, 13);
     this.label14.TabIndex = 122;
     this.label14.Text = "Exposures:";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(42, 48);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(37, 13);
     this.label15.TabIndex = 124;
     this.label15.Text = "Set N:";
     //
     // button6
     //
     this.button6.Location = new System.Drawing.Point(83, 20);
     this.button6.Name = "button6";
     this.button6.Size = new System.Drawing.Size(50, 23);
     this.button6.TabIndex = 125;
     this.button6.Text = "Coarse";
     this.button6.UseVisualStyleBackColor = true;
     this.button6.Click += new System.EventHandler(this.button6_Click_1);
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(137, 128);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(19, 13);
     this.label22.TabIndex = 172;
     this.label22.Text = "of:";
     //
     // textBox6
     //
     this.textBox6.Location = new System.Drawing.Point(154, 152);
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new System.Drawing.Size(50, 20);
     this.textBox6.TabIndex = 130;
     //
     // textBox17
     //
     this.textBox17.Location = new System.Drawing.Point(85, 126);
     this.textBox17.Name = "textBox17";
     this.textBox17.Size = new System.Drawing.Size(50, 20);
     this.textBox17.TabIndex = 171;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(8, 154);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(71, 13);
     this.label5.TabIndex = 131;
     this.label5.Text = "Progress    N:";
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(1, 129);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(78, 13);
     this.label21.TabIndex = 170;
     this.label21.Text = "Fine V Repeat:";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(137, 154);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(19, 13);
     this.label10.TabIndex = 133;
     this.label10.Text = "of:";
     //
     // numericUpDown10
     //
     this.numericUpDown10.Location = new System.Drawing.Point(154, 126);
     this.numericUpDown10.Name = "numericUpDown10";
     this.numericUpDown10.Size = new System.Drawing.Size(50, 20);
     this.numericUpDown10.TabIndex = 169;
     this.numericUpDown10.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
     //
     // progressBar1
     //
     this.progressBar1.Location = new System.Drawing.Point(85, 177);
     this.progressBar1.Name = "progressBar1";
     this.progressBar1.Size = new System.Drawing.Size(119, 23);
     this.progressBar1.TabIndex = 136;
     //
     // numericUpDown8
     //
     this.numericUpDown8.Location = new System.Drawing.Point(154, 100);
     this.numericUpDown8.Maximum = new decimal(new int[] {
     999999,
     0,
     0,
     0});
     this.numericUpDown8.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDown8.Name = "numericUpDown8";
     this.numericUpDown8.Size = new System.Drawing.Size(50, 20);
     this.numericUpDown8.TabIndex = 152;
     this.numericUpDown8.Value = new decimal(new int[] {
     5,
     0,
     0,
     0});
     //
     // numericUpDown7
     //
     this.numericUpDown7.Location = new System.Drawing.Point(154, 74);
     this.numericUpDown7.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDown7.Name = "numericUpDown7";
     this.numericUpDown7.Size = new System.Drawing.Size(50, 20);
     this.numericUpDown7.TabIndex = 151;
     this.numericUpDown7.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
     //
     // numericUpDown3
     //
     this.numericUpDown3.Location = new System.Drawing.Point(154, 48);
     this.numericUpDown3.Minimum = new decimal(new int[] {
     10,
     0,
     0,
     0});
     this.numericUpDown3.Name = "numericUpDown3";
     this.numericUpDown3.Size = new System.Drawing.Size(50, 20);
     this.numericUpDown3.TabIndex = 150;
     this.numericUpDown3.Value = new decimal(new int[] {
     20,
     0,
     0,
     0});
     //
     // groupBox9
     //
     this.groupBox9.Controls.Add(this.button61);
     this.groupBox9.Controls.Add(this.label9);
     this.groupBox9.Controls.Add(this.button1);
     this.groupBox9.Controls.Add(this.button2);
     this.groupBox9.Controls.Add(this.textBox1);
     this.groupBox9.Controls.Add(this.label2);
     this.groupBox9.Controls.Add(this.ButtonDisable);
     this.groupBox9.Controls.Add(this.textBox4);
     this.groupBox9.Controls.Add(this.button7);
     this.groupBox9.Controls.Add(this.numericUpDown6);
     this.groupBox9.Controls.Add(this.progressBar2);
     this.groupBox9.Controls.Add(this.button9);
     this.groupBox9.Controls.Add(this.button11);
     this.groupBox9.Location = new System.Drawing.Point(305, 6);
     this.groupBox9.Name = "groupBox9";
     this.groupBox9.Size = new System.Drawing.Size(182, 213);
     this.groupBox9.TabIndex = 188;
     this.groupBox9.TabStop = false;
     this.groupBox9.Text = "Control";
     //
     // button61
     //
     this.button61.Location = new System.Drawing.Point(97, 181);
     this.button61.Name = "button61";
     this.button61.Size = new System.Drawing.Size(75, 23);
     this.button61.TabIndex = 173;
     this.button61.Text = "Halt";
     this.button61.UseVisualStyleBackColor = true;
     this.button61.Click += new System.EventHandler(this.button61_Click);
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(12, 129);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(79, 13);
     this.label9.TabIndex = 129;
     this.label9.Text = "Focus Position:";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(97, 20);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 110;
     this.button1.Text = "Fwd/In";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click_1);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(10, 20);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(75, 23);
     this.button2.TabIndex = 111;
     this.button2.Text = "Rev/Out";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click_1);
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(97, 74);
     this.textBox1.Name = "textBox1";
     this.textBox1.ReadOnly = true;
     this.textBox1.Size = new System.Drawing.Size(75, 20);
     this.textBox1.TabIndex = 112;
     this.textBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown);
     this.textBox1.Leave += new System.EventHandler(this.textBox1_Leave);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(7, 77);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(84, 13);
     this.label2.TabIndex = 113;
     this.label2.Text = "Current Position:";
     //
     // textBox4
     //
     this.textBox4.Location = new System.Drawing.Point(97, 126);
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new System.Drawing.Size(75, 20);
     this.textBox4.TabIndex = 116;
     this.textBox4.Text = "300";
     this.textBox4.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox4_KeyPress);
     this.textBox4.Leave += new System.EventHandler(this.textBox4_Leave);
     //
     // button7
     //
     this.button7.Location = new System.Drawing.Point(10, 48);
     this.button7.Name = "button7";
     this.button7.Size = new System.Drawing.Size(75, 23);
     this.button7.TabIndex = 127;
     this.button7.Text = "Goto:";
     this.button7.UseVisualStyleBackColor = true;
     this.button7.Click += new System.EventHandler(this.button7_Click_1);
     //
     // numericUpDown6
     //
     this.numericUpDown6.Location = new System.Drawing.Point(97, 48);
     this.numericUpDown6.Maximum = new decimal(new int[] {
     9999999,
     0,
     0,
     0});
     this.numericUpDown6.Name = "numericUpDown6";
     this.numericUpDown6.Size = new System.Drawing.Size(75, 20);
     this.numericUpDown6.TabIndex = 128;
     this.numericUpDown6.ValueChanged += new System.EventHandler(this.numericUpDown6_ValueChanged);
     this.numericUpDown6.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown6_KeyDown);
     //
     // progressBar2
     //
     this.progressBar2.ForeColor = System.Drawing.Color.Red;
     this.progressBar2.Location = new System.Drawing.Point(10, 98);
     this.progressBar2.Name = "progressBar2";
     this.progressBar2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.progressBar2.RightToLeftLayout = true;
     this.progressBar2.Size = new System.Drawing.Size(162, 23);
     this.progressBar2.TabIndex = 137;
     //
     // button11
     //
     this.button11.Location = new System.Drawing.Point(10, 152);
     this.button11.Name = "button11";
     this.button11.Size = new System.Drawing.Size(75, 23);
     this.button11.TabIndex = 164;
     this.button11.Text = "&GotoFocus";
     this.button11.UseVisualStyleBackColor = true;
     this.button11.Click += new System.EventHandler(this.button11_Click_1);
     //
     // groupBox8
     //
     this.groupBox8.Controls.Add(this.label87);
     this.groupBox8.Controls.Add(this.numericUpDown39);
     this.groupBox8.Controls.Add(this.textBox12);
     this.groupBox8.Controls.Add(this.textBox3);
     this.groupBox8.Controls.Add(this.label4);
     this.groupBox8.Controls.Add(this.textBox10);
     this.groupBox8.Controls.Add(this.label13);
     this.groupBox8.Controls.Add(this.label11);
     this.groupBox8.Controls.Add(this.radioButton3);
     this.groupBox8.Controls.Add(this.label19);
     this.groupBox8.Controls.Add(this.radioButton2);
     this.groupBox8.Controls.Add(this.textBox14);
     this.groupBox8.Controls.Add(this.radioButton1);
     this.groupBox8.Controls.Add(this.label20);
     this.groupBox8.Controls.Add(this.label27);
     this.groupBox8.Controls.Add(this.textBox15);
     this.groupBox8.Controls.Add(this.label26);
     this.groupBox8.Controls.Add(this.label12);
     this.groupBox8.Controls.Add(this.textBox20);
     this.groupBox8.Controls.Add(this.textBox16);
     this.groupBox8.Controls.Add(this.textBox18);
     this.groupBox8.Location = new System.Drawing.Point(10, 5);
     this.groupBox8.Name = "groupBox8";
     this.groupBox8.Size = new System.Drawing.Size(289, 146);
     this.groupBox8.TabIndex = 188;
     this.groupBox8.TabStop = false;
     this.groupBox8.Text = "Calculations";
     //
     // textBox12
     //
     this.textBox12.Location = new System.Drawing.Point(72, 96);
     this.textBox12.Name = "textBox12";
     this.textBox12.Size = new System.Drawing.Size(55, 20);
     this.textBox12.TabIndex = 158;
     //
     // textBox3
     //
     this.textBox3.Location = new System.Drawing.Point(72, 70);
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new System.Drawing.Size(55, 20);
     this.textBox3.TabIndex = 114;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(6, 72);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(61, 13);
     this.label4.TabIndex = 115;
     this.label4.Text = "SlopeDWN";
     //
     // textBox10
     //
     this.textBox10.Location = new System.Drawing.Point(72, 44);
     this.textBox10.Name = "textBox10";
     this.textBox10.Size = new System.Drawing.Size(55, 20);
     this.textBox10.TabIndex = 134;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(17, 45);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(49, 13);
     this.label13.TabIndex = 135;
     this.label13.Text = "SlopeUP";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(41, 97);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(25, 13);
     this.label11.TabIndex = 157;
     this.label11.Text = "PID";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(134, 72);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(70, 13);
     this.label19.TabIndex = 160;
     this.label19.Text = "StdDevDWN";
     //
     // radioButton1
     //
     this.radioButton1.AutoCheck = false;
     this.radioButton1.AutoSize = true;
     this.radioButton1.Location = new System.Drawing.Point(12, 123);
     this.radioButton1.Name = "radioButton1";
     this.radioButton1.Size = new System.Drawing.Size(117, 17);
     this.radioButton1.TabIndex = 177;
     this.radioButton1.TabStop = true;
     this.radioButton1.Text = "Save V-Curve Data";
     this.radioButton1.UseVisualStyleBackColor = true;
     this.radioButton1.Click += new System.EventHandler(this.radioButton1_Click);
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(154, 97);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(50, 13);
     this.label20.TabIndex = 162;
     this.label20.Text = "BestHFR";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(152, 22);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(52, 13);
     this.label27.TabIndex = 176;
     this.label27.Text = "HFR Max";
     //
     // textBox15
     //
     this.textBox15.Location = new System.Drawing.Point(210, 96);
     this.textBox15.Name = "textBox15";
     this.textBox15.Size = new System.Drawing.Size(55, 20);
     this.textBox15.TabIndex = 163;
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(17, 19);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(49, 13);
     this.label26.TabIndex = 175;
     this.label26.Text = "HFR Min";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(146, 45);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(58, 13);
     this.label12.TabIndex = 167;
     this.label12.Text = "StdDevUP";
     //
     // tabPage4
     //
     this.tabPage4.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tabPage4.Controls.Add(this.button15);
     this.tabPage4.Controls.Add(this.button19);
     this.tabPage4.Controls.Add(this.button24);
     this.tabPage4.Controls.Add(this.button62);
     this.tabPage4.Controls.Add(this.groupBox15);
     this.tabPage4.Controls.Add(this.groupBox14);
     this.tabPage4.Controls.Add(this.groupBox13);
     this.tabPage4.Controls.Add(this.label32);
     this.tabPage4.Controls.Add(this.groupBox12);
     this.tabPage4.Controls.Add(this.textBox23);
     this.tabPage4.Location = new System.Drawing.Point(4, 22);
     this.tabPage4.Name = "tabPage4";
     this.tabPage4.Size = new System.Drawing.Size(738, 222);
     this.tabPage4.TabIndex = 3;
     this.tabPage4.Text = "Filter/Flat";
     //
     // button15
     //
     this.button15.Enabled = false;
     this.button15.Location = new System.Drawing.Point(138, 189);
     this.button15.Name = "button15";
     this.button15.Size = new System.Drawing.Size(55, 23);
     this.button15.TabIndex = 265;
     this.button15.Text = "Stop";
     this.button15.UseVisualStyleBackColor = true;
     this.button15.Click += new System.EventHandler(this.button15_Click);
     //
     // button19
     //
     this.button19.Enabled = false;
     this.button19.Location = new System.Drawing.Point(74, 189);
     this.button19.Name = "button19";
     this.button19.Size = new System.Drawing.Size(55, 23);
     this.button19.TabIndex = 264;
     this.button19.Text = "Pause";
     this.button19.UseVisualStyleBackColor = true;
     this.button19.Click += new System.EventHandler(this.button19_Click_2);
     //
     // button24
     //
     this.button24.BackColor = System.Drawing.Color.WhiteSmoke;
     this.button24.Enabled = false;
     this.button24.Location = new System.Drawing.Point(11, 189);
     this.button24.Name = "button24";
     this.button24.Size = new System.Drawing.Size(55, 23);
     this.button24.TabIndex = 263;
     this.button24.Text = "Start";
     this.button24.UseVisualStyleBackColor = true;
     this.button24.Click += new System.EventHandler(this.button24_Click);
     //
     // button62
     //
     this.button62.Location = new System.Drawing.Point(146, 157);
     this.button62.Name = "button62";
     this.button62.Size = new System.Drawing.Size(60, 23);
     this.button62.TabIndex = 262;
     this.button62.Text = "phd stat";
     this.button62.UseVisualStyleBackColor = true;
     this.button62.Click += new System.EventHandler(this.button62_Click);
     //
     // groupBox15
     //
     this.groupBox15.Controls.Add(this.label61);
     this.groupBox15.Controls.Add(this.label56);
     this.groupBox15.Controls.Add(this.comboBox6);
     this.groupBox15.Controls.Add(this.button20);
     this.groupBox15.Controls.Add(this.textBox21);
     this.groupBox15.Controls.Add(this.label24);
     this.groupBox15.Location = new System.Drawing.Point(9, 3);
     this.groupBox15.Name = "groupBox15";
     this.groupBox15.Size = new System.Drawing.Size(204, 144);
     this.groupBox15.TabIndex = 188;
     this.groupBox15.TabStop = false;
     this.groupBox15.Text = "Filterwheel";
     //
     // label61
     //
     this.label61.AutoSize = true;
     this.label61.Location = new System.Drawing.Point(43, 107);
     this.label61.Name = "label61";
     this.label61.Size = new System.Drawing.Size(44, 13);
     this.label61.TabIndex = 38;
     this.label61.Text = "Display:";
     //
     // label56
     //
     this.label56.AutoSize = true;
     this.label56.Location = new System.Drawing.Point(47, 82);
     this.label56.Name = "label56";
     this.label56.Size = new System.Drawing.Size(40, 13);
     this.label56.TabIndex = 37;
     this.label56.Text = "Select:";
     //
     // comboBox6
     //
     this.comboBox6.FormattingEnabled = true;
     this.comboBox6.Location = new System.Drawing.Point(93, 77);
     this.comboBox6.Name = "comboBox6";
     this.comboBox6.Size = new System.Drawing.Size(104, 21);
     this.comboBox6.TabIndex = 36;
     this.comboBox6.SelectedIndexChanged += new System.EventHandler(this.comboBox6_SelectedIndexChanged_1);
     //
     // button20
     //
     this.button20.Location = new System.Drawing.Point(49, 25);
     this.button20.Name = "button20";
     this.button20.Size = new System.Drawing.Size(105, 23);
     this.button20.TabIndex = 35;
     this.button20.Text = "Filter Advance";
     this.button20.UseVisualStyleBackColor = true;
     this.button20.Click += new System.EventHandler(this.button20_Click);
     //
     // textBox21
     //
     this.textBox21.Location = new System.Drawing.Point(93, 104);
     this.textBox21.Name = "textBox21";
     this.textBox21.Size = new System.Drawing.Size(104, 20);
     this.textBox21.TabIndex = 29;
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(6, 58);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(69, 13);
     this.label24.TabIndex = 30;
     this.label24.Text = "Current Filter:";
     //
     // groupBox14
     //
     this.groupBox14.Controls.Add(this.textBox44);
     this.groupBox14.Controls.Add(this.label92);
     this.groupBox14.Controls.Add(this.trackBar1);
     this.groupBox14.Controls.Add(this.checkBox19);
     this.groupBox14.Controls.Add(this.checkBox18);
     this.groupBox14.Controls.Add(this.label51);
     this.groupBox14.Controls.Add(this.button21);
     this.groupBox14.Controls.Add(this.textBox38);
     this.groupBox14.Controls.Add(this.checkBox15);
     this.groupBox14.Controls.Add(this.label54);
     this.groupBox14.Controls.Add(this.textBox39);
     this.groupBox14.Controls.Add(this.label55);
     this.groupBox14.Location = new System.Drawing.Point(550, 61);
     this.groupBox14.Name = "groupBox14";
     this.groupBox14.Size = new System.Drawing.Size(185, 160);
     this.groupBox14.TabIndex = 188;
     this.groupBox14.TabStop = false;
     this.groupBox14.Text = "Flat Control";
     //
     // textBox44
     //
     this.textBox44.Location = new System.Drawing.Point(132, 28);
     this.textBox44.Name = "textBox44";
     this.textBox44.Size = new System.Drawing.Size(41, 20);
     this.textBox44.TabIndex = 265;
     //
     // label92
     //
     this.label92.AutoSize = true;
     this.label92.Location = new System.Drawing.Point(134, 8);
     this.label92.Name = "label92";
     this.label92.Size = new System.Drawing.Size(33, 13);
     this.label92.TabIndex = 264;
     this.label92.Text = "Level";
     //
     // trackBar1
     //
     this.trackBar1.Location = new System.Drawing.Point(137, 53);
     this.trackBar1.Maximum = 180;
     this.trackBar1.Name = "trackBar1";
     this.trackBar1.Orientation = System.Windows.Forms.Orientation.Vertical;
     this.trackBar1.Size = new System.Drawing.Size(45, 104);
     this.trackBar1.TabIndex = 263;
     this.trackBar1.TickFrequency = 10;
     this.trackBar1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.trackBar1_MouseUp);
     //
     // checkBox18
     //
     this.checkBox18.AutoSize = true;
     this.checkBox18.Location = new System.Drawing.Point(12, 69);
     this.checkBox18.Name = "checkBox18";
     this.checkBox18.Size = new System.Drawing.Size(98, 17);
     this.checkBox18.TabIndex = 259;
     this.checkBox18.Text = "Flat Every Filter";
     this.checkBox18.UseVisualStyleBackColor = true;
     this.checkBox18.CheckedChanged += new System.EventHandler(this.checkBox18_CheckedChanged);
     //
     // label51
     //
     this.label51.AutoSize = true;
     this.label51.Location = new System.Drawing.Point(11, 114);
     this.label51.Name = "label51";
     this.label51.Size = new System.Drawing.Size(71, 13);
     this.label51.TabIndex = 254;
     this.label51.Text = "Goal ADU(K):";
     //
     // button21
     //
     this.button21.BackColor = System.Drawing.Color.Red;
     this.button21.Location = new System.Drawing.Point(21, 19);
     this.button21.Name = "button21";
     this.button21.Size = new System.Drawing.Size(96, 23);
     this.button21.TabIndex = 249;
     this.button21.Text = "Flat Off";
     this.button21.UseVisualStyleBackColor = false;
     this.button21.Click += new System.EventHandler(this.button21_Click);
     //
     // textBox38
     //
     this.textBox38.Location = new System.Drawing.Point(88, 111);
     this.textBox38.Name = "textBox38";
     this.textBox38.Size = new System.Drawing.Size(37, 20);
     this.textBox38.TabIndex = 250;
     this.textBox38.Text = "15";
     //
     // checkBox15
     //
     this.checkBox15.AutoSize = true;
     this.checkBox15.Location = new System.Drawing.Point(12, 89);
     this.checkBox15.Name = "checkBox15";
     this.checkBox15.Size = new System.Drawing.Size(115, 17);
     this.checkBox15.TabIndex = 258;
     this.checkBox15.Text = "Flat Auto Exposure";
     this.checkBox15.UseVisualStyleBackColor = true;
     //
     // label54
     //
     this.label54.AutoSize = true;
     this.label54.Location = new System.Drawing.Point(9, 120);
     this.label54.Name = "label54";
     this.label54.Size = new System.Drawing.Size(0, 13);
     this.label54.TabIndex = 255;
     //
     // textBox39
     //
     this.textBox39.Location = new System.Drawing.Point(88, 134);
     this.textBox39.Name = "textBox39";
     this.textBox39.Size = new System.Drawing.Size(37, 20);
     this.textBox39.TabIndex = 257;
     this.textBox39.Text = "10";
     //
     // label55
     //
     this.label55.AutoSize = true;
     this.label55.Location = new System.Drawing.Point(7, 137);
     this.label55.Name = "label55";
     this.label55.Size = new System.Drawing.Size(75, 13);
     this.label55.TabIndex = 256;
     this.label55.Text = "Tolerance (%):";
     //
     // groupBox13
     //
     this.groupBox13.Controls.Add(this.comboBox8);
     this.groupBox13.Controls.Add(this.comboBox1);
     this.groupBox13.Controls.Add(this.comboBox5);
     this.groupBox13.Controls.Add(this.checkBox1);
     this.groupBox13.Controls.Add(this.checkBox2);
     this.groupBox13.Controls.Add(this.checkBox3);
     this.groupBox13.Controls.Add(this.checkBox4);
     this.groupBox13.Controls.Add(this.comboBox2);
     this.groupBox13.Controls.Add(this.comboBox3);
     this.groupBox13.Controls.Add(this.comboBox4);
     this.groupBox13.Controls.Add(this.label6);
     this.groupBox13.Controls.Add(this.label36);
     this.groupBox13.Controls.Add(this.numericUpDown36);
     this.groupBox13.Controls.Add(this.numericUpDown12);
     this.groupBox13.Controls.Add(this.numericUpDown13);
     this.groupBox13.Controls.Add(this.numericUpDown34);
     this.groupBox13.Controls.Add(this.numericUpDown14);
     this.groupBox13.Controls.Add(this.numericUpDown15);
     this.groupBox13.Controls.Add(this.numericUpDown32);
     this.groupBox13.Controls.Add(this.label33);
     this.groupBox13.Controls.Add(this.checkBox5);
     this.groupBox13.Controls.Add(this.checkBox13);
     this.groupBox13.Controls.Add(this.numericUpDown11);
     this.groupBox13.Controls.Add(this.label45);
     this.groupBox13.Controls.Add(this.label31);
     this.groupBox13.Controls.Add(this.numericUpDown31);
     this.groupBox13.Controls.Add(this.numericUpDown16);
     this.groupBox13.Controls.Add(this.numericUpDown30);
     this.groupBox13.Controls.Add(this.numericUpDown17);
     this.groupBox13.Controls.Add(this.checkBox9);
     this.groupBox13.Controls.Add(this.numericUpDown18);
     this.groupBox13.Controls.Add(this.numericUpDown29);
     this.groupBox13.Controls.Add(this.numericUpDown19);
     this.groupBox13.Controls.Add(this.numericUpDown28);
     this.groupBox13.Controls.Add(this.numericUpDown20);
     this.groupBox13.Controls.Add(this.numericUpDown27);
     this.groupBox13.Controls.Add(this.numericUpDown24);
     this.groupBox13.Controls.Add(this.numericUpDown26);
     this.groupBox13.Controls.Add(this.numericUpDown25);
     this.groupBox13.Location = new System.Drawing.Point(218, 2);
     this.groupBox13.Name = "groupBox13";
     this.groupBox13.Size = new System.Drawing.Size(326, 218);
     this.groupBox13.TabIndex = 188;
     this.groupBox13.TabStop = false;
     this.groupBox13.Text = "Sequence";
     //
     // comboBox8
     //
     this.comboBox8.FormattingEnabled = true;
     this.comboBox8.Items.AddRange(new object[] {
     "Luminosity",
     "Red",
     "Green",
     "Blue",
     "Ha",
     "OIII",
     "SII",
     "No Filter"});
     this.comboBox8.Location = new System.Drawing.Point(50, 161);
     this.comboBox8.Name = "comboBox8";
     this.comboBox8.Size = new System.Drawing.Size(121, 21);
     this.comboBox8.TabIndex = 249;
     //
     // comboBox1
     //
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
     "Luminosity",
     "Red",
     "Green",
     "Blue",
     "Ha",
     "OIII",
     "SII",
     "No Filter"});
     this.comboBox1.Location = new System.Drawing.Point(50, 136);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(121, 21);
     this.comboBox1.TabIndex = 248;
     //
     // comboBox5
     //
     this.comboBox5.FormattingEnabled = true;
     this.comboBox5.Items.AddRange(new object[] {
     "Luminosity",
     "Red",
     "Green",
     "Blue",
     "Ha",
     "OIII",
     "SII",
     "No Filter"});
     this.comboBox5.Location = new System.Drawing.Point(50, 111);
     this.comboBox5.Name = "comboBox5";
     this.comboBox5.Size = new System.Drawing.Size(121, 21);
     this.comboBox5.TabIndex = 48;
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.checkBox1.Checked = true;
     this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox1.Location = new System.Drawing.Point(12, 38);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(32, 17);
     this.checkBox1.TabIndex = 41;
     this.checkBox1.Text = "1";
     this.checkBox1.UseVisualStyleBackColor = true;
     this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // checkBox2
     //
     this.checkBox2.AutoSize = true;
     this.checkBox2.Location = new System.Drawing.Point(12, 63);
     this.checkBox2.Name = "checkBox2";
     this.checkBox2.Size = new System.Drawing.Size(32, 17);
     this.checkBox2.TabIndex = 42;
     this.checkBox2.Text = "2";
     this.checkBox2.UseVisualStyleBackColor = true;
     this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
     //
     // checkBox3
     //
     this.checkBox3.AutoSize = true;
     this.checkBox3.Location = new System.Drawing.Point(13, 88);
     this.checkBox3.Name = "checkBox3";
     this.checkBox3.Size = new System.Drawing.Size(32, 17);
     this.checkBox3.TabIndex = 43;
     this.checkBox3.Text = "3";
     this.checkBox3.UseVisualStyleBackColor = true;
     this.checkBox3.CheckedChanged += new System.EventHandler(this.checkBox3_CheckedChanged);
     //
     // checkBox4
     //
     this.checkBox4.AutoSize = true;
     this.checkBox4.Location = new System.Drawing.Point(12, 113);
     this.checkBox4.Name = "checkBox4";
     this.checkBox4.Size = new System.Drawing.Size(32, 17);
     this.checkBox4.TabIndex = 44;
     this.checkBox4.Text = "4";
     this.checkBox4.UseVisualStyleBackColor = true;
     this.checkBox4.CheckedChanged += new System.EventHandler(this.checkBox4_CheckedChanged);
     //
     // comboBox2
     //
     this.comboBox2.FormattingEnabled = true;
     this.comboBox2.Items.AddRange(new object[] {
     "Luminosity",
     "Red",
     "Green",
     "Blue",
     "Ha",
     "OIII",
     "SII",
     "No Filter"});
     this.comboBox2.Location = new System.Drawing.Point(50, 36);
     this.comboBox2.Name = "comboBox2";
     this.comboBox2.Size = new System.Drawing.Size(121, 21);
     this.comboBox2.TabIndex = 45;
     this.comboBox2.SelectedIndexChanged += new System.EventHandler(this.comboBox2_SelectedIndexChanged);
     //
     // comboBox3
     //
     this.comboBox3.FormattingEnabled = true;
     this.comboBox3.Items.AddRange(new object[] {
     "Luminosity",
     "Red",
     "Green",
     "Blue",
     "Ha",
     "OIII",
     "SII",
     "No Filter"});
     this.comboBox3.Location = new System.Drawing.Point(50, 61);
     this.comboBox3.Name = "comboBox3";
     this.comboBox3.Size = new System.Drawing.Size(121, 21);
     this.comboBox3.TabIndex = 46;
     //
     // comboBox4
     //
     this.comboBox4.FormattingEnabled = true;
     this.comboBox4.Items.AddRange(new object[] {
     "Luminosity",
     "Red",
     "Green",
     "Blue",
     "Ha",
     "OIII",
     "SII",
     "No Filter"});
     this.comboBox4.Location = new System.Drawing.Point(51, 86);
     this.comboBox4.Name = "comboBox4";
     this.comboBox4.Size = new System.Drawing.Size(121, 21);
     this.comboBox4.TabIndex = 47;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(9, 20);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(28, 13);
     this.label6.TabIndex = 49;
     this.label6.Text = "Pos:";
     //
     // label36
     //
     this.label36.AutoSize = true;
     this.label36.Location = new System.Drawing.Point(47, 20);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(32, 13);
     this.label36.TabIndex = 50;
     this.label36.Text = "Filter:";
     //
     // numericUpDown36
     //
     this.numericUpDown36.Location = new System.Drawing.Point(286, 186);
     this.numericUpDown36.Name = "numericUpDown36";
     this.numericUpDown36.Size = new System.Drawing.Size(30, 20);
     this.numericUpDown36.TabIndex = 247;
     //
     // numericUpDown12
     //
     this.numericUpDown12.Location = new System.Drawing.Point(177, 36);
     this.numericUpDown12.Name = "numericUpDown12";
     this.numericUpDown12.Size = new System.Drawing.Size(40, 20);
     this.numericUpDown12.TabIndex = 190;
     this.numericUpDown12.ValueChanged += new System.EventHandler(this.numericUpDown12_ValueChanged);
     //
     // numericUpDown13
     //
     this.numericUpDown13.Location = new System.Drawing.Point(177, 61);
     this.numericUpDown13.Name = "numericUpDown13";
     this.numericUpDown13.Size = new System.Drawing.Size(40, 20);
     this.numericUpDown13.TabIndex = 191;
     this.numericUpDown13.ValueChanged += new System.EventHandler(this.numericUpDown13_ValueChanged);
     //
     // numericUpDown34
     //
     this.numericUpDown34.Increment = new decimal(new int[] {
     1,
     0,
     0,
     65536});
     this.numericUpDown34.Location = new System.Drawing.Point(223, 186);
     this.numericUpDown34.Maximum = new decimal(new int[] {
     200000,
     0,
     0,
     0});
     this.numericUpDown34.Name = "numericUpDown34";
     this.numericUpDown34.Size = new System.Drawing.Size(57, 20);
     this.numericUpDown34.TabIndex = 245;
     //
     // numericUpDown14
     //
     this.numericUpDown14.Location = new System.Drawing.Point(178, 86);
     this.numericUpDown14.Name = "numericUpDown14";
     this.numericUpDown14.Size = new System.Drawing.Size(40, 20);
     this.numericUpDown14.TabIndex = 192;
     this.numericUpDown14.ValueChanged += new System.EventHandler(this.numericUpDown14_ValueChanged);
     //
     // numericUpDown15
     //
     this.numericUpDown15.Location = new System.Drawing.Point(177, 111);
     this.numericUpDown15.Name = "numericUpDown15";
     this.numericUpDown15.Size = new System.Drawing.Size(40, 20);
     this.numericUpDown15.TabIndex = 193;
     this.numericUpDown15.ValueChanged += new System.EventHandler(this.numericUpDown15_ValueChanged);
     //
     // numericUpDown32
     //
     this.numericUpDown32.Location = new System.Drawing.Point(177, 186);
     this.numericUpDown32.Name = "numericUpDown32";
     this.numericUpDown32.Size = new System.Drawing.Size(40, 20);
     this.numericUpDown32.TabIndex = 243;
     this.numericUpDown32.ValueChanged += new System.EventHandler(this.numericUpDown32_ValueChanged);
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Location = new System.Drawing.Point(174, 20);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(34, 13);
     this.label33.TabIndex = 194;
     this.label33.Text = "Subs:";
     //
     // checkBox5
     //
     this.checkBox5.AutoSize = true;
     this.checkBox5.Location = new System.Drawing.Point(12, 138);
     this.checkBox5.Name = "checkBox5";
     this.checkBox5.Size = new System.Drawing.Size(32, 17);
     this.checkBox5.TabIndex = 199;
     this.checkBox5.Text = "5";
     this.checkBox5.UseVisualStyleBackColor = true;
     this.checkBox5.CheckedChanged += new System.EventHandler(this.checkBox5_CheckedChanged);
     //
     // numericUpDown11
     //
     this.numericUpDown11.Location = new System.Drawing.Point(223, 36);
     this.numericUpDown11.Maximum = new decimal(new int[] {
     2000,
     0,
     0,
     0});
     this.numericUpDown11.Name = "numericUpDown11";
     this.numericUpDown11.Size = new System.Drawing.Size(57, 20);
     this.numericUpDown11.TabIndex = 202;
     this.numericUpDown11.ValueChanged += new System.EventHandler(this.numericUpDown11_ValueChanged);
     //
     // label45
     //
     this.label45.AutoSize = true;
     this.label45.Location = new System.Drawing.Point(283, 20);
     this.label45.Name = "label45";
     this.label45.Size = new System.Drawing.Size(25, 13);
     this.label45.TabIndex = 240;
     this.label45.Text = "Bin:";
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Location = new System.Drawing.Point(220, 20);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(33, 13);
     this.label31.TabIndex = 203;
     this.label31.Text = "Time:";
     //
     // numericUpDown31
     //
     this.numericUpDown31.Location = new System.Drawing.Point(286, 161);
     this.numericUpDown31.Name = "numericUpDown31";
     this.numericUpDown31.Size = new System.Drawing.Size(30, 20);
     this.numericUpDown31.TabIndex = 239;
     //
     // numericUpDown16
     //
     this.numericUpDown16.Location = new System.Drawing.Point(223, 61);
     this.numericUpDown16.Maximum = new decimal(new int[] {
     2000,
     0,
     0,
     0});
     this.numericUpDown16.Name = "numericUpDown16";
     this.numericUpDown16.Size = new System.Drawing.Size(57, 20);
     this.numericUpDown16.TabIndex = 204;
     this.numericUpDown16.ValueChanged += new System.EventHandler(this.numericUpDown16_ValueChanged);
     //
     // numericUpDown30
     //
     this.numericUpDown30.Location = new System.Drawing.Point(223, 161);
     this.numericUpDown30.Maximum = new decimal(new int[] {
     2000,
     0,
     0,
     0});
     this.numericUpDown30.Name = "numericUpDown30";
     this.numericUpDown30.Size = new System.Drawing.Size(57, 20);
     this.numericUpDown30.TabIndex = 238;
     //
     // numericUpDown17
     //
     this.numericUpDown17.Location = new System.Drawing.Point(224, 86);
     this.numericUpDown17.Maximum = new decimal(new int[] {
     2000,
     0,
     0,
     0});
     this.numericUpDown17.Name = "numericUpDown17";
     this.numericUpDown17.Size = new System.Drawing.Size(57, 20);
     this.numericUpDown17.TabIndex = 205;
     this.numericUpDown17.ValueChanged += new System.EventHandler(this.numericUpDown17_ValueChanged);
     //
     // checkBox9
     //
     this.checkBox9.AutoSize = true;
     this.checkBox9.Location = new System.Drawing.Point(12, 163);
     this.checkBox9.Name = "checkBox9";
     this.checkBox9.Size = new System.Drawing.Size(32, 17);
     this.checkBox9.TabIndex = 237;
     this.checkBox9.Text = "6";
     this.checkBox9.UseVisualStyleBackColor = true;
     this.checkBox9.CheckedChanged += new System.EventHandler(this.checkBox9_CheckedChanged);
     //
     // numericUpDown18
     //
     this.numericUpDown18.Location = new System.Drawing.Point(223, 111);
     this.numericUpDown18.Maximum = new decimal(new int[] {
     2000,
     0,
     0,
     0});
     this.numericUpDown18.Name = "numericUpDown18";
     this.numericUpDown18.Size = new System.Drawing.Size(57, 20);
     this.numericUpDown18.TabIndex = 206;
     this.numericUpDown18.ValueChanged += new System.EventHandler(this.numericUpDown18_ValueChanged);
     //
     // numericUpDown29
     //
     this.numericUpDown29.Location = new System.Drawing.Point(177, 161);
     this.numericUpDown29.Name = "numericUpDown29";
     this.numericUpDown29.Size = new System.Drawing.Size(40, 20);
     this.numericUpDown29.TabIndex = 236;
     this.numericUpDown29.ValueChanged += new System.EventHandler(this.numericUpDown29_ValueChanged);
     //
     // numericUpDown19
     //
     this.numericUpDown19.Location = new System.Drawing.Point(223, 136);
     this.numericUpDown19.Maximum = new decimal(new int[] {
     2000,
     0,
     0,
     0});
     this.numericUpDown19.Name = "numericUpDown19";
     this.numericUpDown19.Size = new System.Drawing.Size(57, 20);
     this.numericUpDown19.TabIndex = 207;
     this.numericUpDown19.ValueChanged += new System.EventHandler(this.numericUpDown19_ValueChanged);
     //
     // numericUpDown28
     //
     this.numericUpDown28.Location = new System.Drawing.Point(286, 136);
     this.numericUpDown28.Name = "numericUpDown28";
     this.numericUpDown28.Size = new System.Drawing.Size(30, 20);
     this.numericUpDown28.TabIndex = 235;
     //
     // numericUpDown20
     //
     this.numericUpDown20.Location = new System.Drawing.Point(177, 136);
     this.numericUpDown20.Name = "numericUpDown20";
     this.numericUpDown20.Size = new System.Drawing.Size(40, 20);
     this.numericUpDown20.TabIndex = 208;
     this.numericUpDown20.ValueChanged += new System.EventHandler(this.numericUpDown20_ValueChanged);
     //
     // numericUpDown27
     //
     this.numericUpDown27.Location = new System.Drawing.Point(286, 111);
     this.numericUpDown27.Name = "numericUpDown27";
     this.numericUpDown27.Size = new System.Drawing.Size(30, 20);
     this.numericUpDown27.TabIndex = 234;
     //
     // numericUpDown24
     //
     this.numericUpDown24.Location = new System.Drawing.Point(286, 36);
     this.numericUpDown24.Name = "numericUpDown24";
     this.numericUpDown24.Size = new System.Drawing.Size(30, 20);
     this.numericUpDown24.TabIndex = 231;
     //
     // numericUpDown26
     //
     this.numericUpDown26.Location = new System.Drawing.Point(287, 86);
     this.numericUpDown26.Name = "numericUpDown26";
     this.numericUpDown26.Size = new System.Drawing.Size(30, 20);
     this.numericUpDown26.TabIndex = 233;
     //
     // numericUpDown25
     //
     this.numericUpDown25.Location = new System.Drawing.Point(286, 61);
     this.numericUpDown25.Name = "numericUpDown25";
     this.numericUpDown25.Size = new System.Drawing.Size(30, 20);
     this.numericUpDown25.TabIndex = 232;
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Location = new System.Drawing.Point(8, 161);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(83, 13);
     this.label32.TabIndex = 34;
     this.label32.Text = "SequenceTotal:";
     //
     // groupBox12
     //
     this.groupBox12.Controls.Add(this.checkBox6);
     this.groupBox12.Controls.Add(this.checkBox7);
     this.groupBox12.Location = new System.Drawing.Point(549, 3);
     this.groupBox12.Name = "groupBox12";
     this.groupBox12.Size = new System.Drawing.Size(155, 58);
     this.groupBox12.TabIndex = 260;
     this.groupBox12.TabStop = false;
     this.groupBox12.Text = "Preset";
     //
     // checkBox6
     //
     this.checkBox6.AutoSize = true;
     this.checkBox6.Checked = true;
     this.checkBox6.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox6.Location = new System.Drawing.Point(17, 36);
     this.checkBox6.Name = "checkBox6";
     this.checkBox6.Size = new System.Drawing.Size(120, 17);
     this.checkBox6.TabIndex = 200;
     this.checkBox6.Text = "Equal Number Subs";
     this.checkBox6.UseVisualStyleBackColor = true;
     //
     // checkBox7
     //
     this.checkBox7.AutoSize = true;
     this.checkBox7.Checked = true;
     this.checkBox7.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox7.Location = new System.Drawing.Point(17, 16);
     this.checkBox7.Name = "checkBox7";
     this.checkBox7.Size = new System.Drawing.Size(79, 17);
     this.checkBox7.TabIndex = 201;
     this.checkBox7.Text = "Equal Time";
     this.checkBox7.UseVisualStyleBackColor = true;
     //
     // textBox23
     //
     this.textBox23.Location = new System.Drawing.Point(95, 158);
     this.textBox23.Name = "textBox23";
     this.textBox23.Size = new System.Drawing.Size(37, 20);
     this.textBox23.TabIndex = 33;
     //
     // tabPage5
     //
     this.tabPage5.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tabPage5.Controls.Add(this.groupBox16);
     this.tabPage5.Controls.Add(this.groupBox7);
     this.tabPage5.Controls.Add(this.groupBox6);
     this.tabPage5.Controls.Add(this.groupBox5);
     this.tabPage5.Location = new System.Drawing.Point(4, 22);
     this.tabPage5.Name = "tabPage5";
     this.tabPage5.Size = new System.Drawing.Size(738, 222);
     this.tabPage5.TabIndex = 4;
     this.tabPage5.Text = "Automation";
     //
     // groupBox16
     //
     this.groupBox16.Controls.Add(this.label30);
     this.groupBox16.Controls.Add(this.button30);
     this.groupBox16.Controls.Add(this.button22);
     this.groupBox16.Controls.Add(this.button26);
     this.groupBox16.Controls.Add(this.textBox19);
     this.groupBox16.Location = new System.Drawing.Point(8, 68);
     this.groupBox16.Name = "groupBox16";
     this.groupBox16.Size = new System.Drawing.Size(216, 91);
     this.groupBox16.TabIndex = 188;
     this.groupBox16.TabStop = false;
     this.groupBox16.Text = "Automation Control";
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Location = new System.Drawing.Point(4, 62);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(80, 13);
     this.label30.TabIndex = 233;
     this.label30.Text = "Filename prefix:";
     //
     // button30
     //
     this.button30.Location = new System.Drawing.Point(146, 22);
     this.button30.Name = "button30";
     this.button30.Size = new System.Drawing.Size(55, 23);
     this.button30.TabIndex = 261;
     this.button30.Text = "Stop";
     this.button30.UseVisualStyleBackColor = true;
     this.button30.Click += new System.EventHandler(this.button30_Click_1);
     //
     // button22
     //
     this.button22.Enabled = false;
     this.button22.Location = new System.Drawing.Point(76, 22);
     this.button22.Name = "button22";
     this.button22.Size = new System.Drawing.Size(55, 23);
     this.button22.TabIndex = 260;
     this.button22.Text = "Pause";
     this.button22.UseVisualStyleBackColor = true;
     this.button22.Click += new System.EventHandler(this.button22_Click_2);
     //
     // button26
     //
     this.button26.BackColor = System.Drawing.Color.WhiteSmoke;
     this.button26.Location = new System.Drawing.Point(6, 22);
     this.button26.Name = "button26";
     this.button26.Size = new System.Drawing.Size(55, 23);
     this.button26.TabIndex = 185;
     this.button26.Text = "Start";
     this.button26.UseVisualStyleBackColor = true;
     this.button26.Click += new System.EventHandler(this.button26_Click);
     //
     // groupBox7
     //
     this.groupBox7.Controls.Add(this.textBox63);
     this.groupBox7.Controls.Add(this.label85);
     this.groupBox7.Controls.Add(this.numericUpDown23);
     this.groupBox7.Controls.Add(this.checkBox27);
     this.groupBox7.Controls.Add(this.checkBox17);
     this.groupBox7.Controls.Add(this.numericUpDown38);
     this.groupBox7.Controls.Add(this.numericUpDown22);
     this.groupBox7.Controls.Add(this.label23);
     this.groupBox7.Controls.Add(this.textBox29);
     this.groupBox7.Controls.Add(this.label28);
     this.groupBox7.Controls.Add(this.textBox30);
     this.groupBox7.Controls.Add(this.label37);
     this.groupBox7.Controls.Add(this.checkBox10);
     this.groupBox7.Controls.Add(this.label43);
     this.groupBox7.Controls.Add(this.checkBox8);
     this.groupBox7.Location = new System.Drawing.Point(489, 5);
     this.groupBox7.Name = "groupBox7";
     this.groupBox7.Size = new System.Drawing.Size(235, 206);
     this.groupBox7.TabIndex = 232;
     this.groupBox7.TabStop = false;
     this.groupBox7.Text = "Autofocus Control";
     //
     // textBox63
     //
     this.textBox63.Enabled = false;
     this.textBox63.Location = new System.Drawing.Point(162, 180);
     this.textBox63.Name = "textBox63";
     this.textBox63.Size = new System.Drawing.Size(47, 20);
     this.textBox63.TabIndex = 238;
     this.textBox63.Text = "10";
     //
     // label85
     //
     this.label85.AutoSize = true;
     this.label85.Enabled = false;
     this.label85.Location = new System.Drawing.Point(52, 183);
     this.label85.Name = "label85";
     this.label85.Size = new System.Drawing.Size(104, 13);
     this.label85.TabIndex = 237;
     this.label85.Text = "Refocus if off by (%) ";
     //
     // numericUpDown23
     //
     this.numericUpDown23.Enabled = false;
     this.numericUpDown23.Location = new System.Drawing.Point(162, 153);
     this.numericUpDown23.Name = "numericUpDown23";
     this.numericUpDown23.Size = new System.Drawing.Size(47, 20);
     this.numericUpDown23.TabIndex = 236;
     this.numericUpDown23.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
     //
     // checkBox27
     //
     this.checkBox27.AutoSize = true;
     this.checkBox27.Enabled = false;
     this.checkBox27.Location = new System.Drawing.Point(9, 154);
     this.checkBox27.Name = "checkBox27";
     this.checkBox27.Size = new System.Drawing.Size(147, 17);
     this.checkBox27.TabIndex = 235;
     this.checkBox27.Text = "Monitor Metric HFR every";
     this.checkBox27.UseVisualStyleBackColor = true;
     this.checkBox27.CheckedChanged += new System.EventHandler(this.checkBox27_CheckedChanged);
     //
     // checkBox17
     //
     this.checkBox17.AutoSize = true;
     this.checkBox17.Location = new System.Drawing.Point(27, 100);
     this.checkBox17.Name = "checkBox17";
     this.checkBox17.Size = new System.Drawing.Size(129, 17);
     this.checkBox17.TabIndex = 234;
     this.checkBox17.Text = "Refocus after N subs:";
     this.checkBox17.UseVisualStyleBackColor = true;
     this.checkBox17.CheckedChanged += new System.EventHandler(this.checkBox17_CheckedChanged);
     //
     // numericUpDown38
     //
     this.numericUpDown38.Location = new System.Drawing.Point(162, 99);
     this.numericUpDown38.Name = "numericUpDown38";
     this.numericUpDown38.Size = new System.Drawing.Size(46, 20);
     this.numericUpDown38.TabIndex = 233;
     this.numericUpDown38.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDown38.Leave += new System.EventHandler(this.numericUpDown38_Leave);
     //
     // numericUpDown22
     //
     this.numericUpDown22.DecimalPlaces = 1;
     this.numericUpDown22.Increment = new decimal(new int[] {
     1,
     0,
     0,
     65536});
     this.numericUpDown22.Location = new System.Drawing.Point(162, 125);
     this.numericUpDown22.Maximum = new decimal(new int[] {
     10,
     0,
     0,
     0});
     this.numericUpDown22.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     65536});
     this.numericUpDown22.Name = "numericUpDown22";
     this.numericUpDown22.Size = new System.Drawing.Size(46, 20);
     this.numericUpDown22.TabIndex = 36;
     this.numericUpDown22.Value = new decimal(new int[] {
     2,
     0,
     0,
     65536});
     this.numericUpDown22.ValueChanged += new System.EventHandler(this.numericUpDown22_ValueChanged);
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(132, 12);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(14, 13);
     this.label23.TabIndex = 9;
     this.label23.Text = "X";
     //
     // textBox29
     //
     this.textBox29.Location = new System.Drawing.Point(123, 28);
     this.textBox29.Name = "textBox29";
     this.textBox29.Size = new System.Drawing.Size(34, 20);
     this.textBox29.TabIndex = 10;
     this.textBox29.Text = "90";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(182, 12);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(14, 13);
     this.label28.TabIndex = 11;
     this.label28.Text = "Y";
     //
     // textBox30
     //
     this.textBox30.Location = new System.Drawing.Point(175, 28);
     this.textBox30.Name = "textBox30";
     this.textBox30.Size = new System.Drawing.Size(34, 20);
     this.textBox30.TabIndex = 12;
     this.textBox30.Text = "65";
     this.textBox30.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox30_KeyPress);
     //
     // label43
     //
     this.label43.AutoSize = true;
     this.label43.Location = new System.Drawing.Point(19, 129);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(138, 13);
     this.label43.TabIndex = 35;
     this.label43.Text = "Focus Exposure Time (sec):";
     //
     // checkBox8
     //
     this.checkBox8.AutoSize = true;
     this.checkBox8.Checked = true;
     this.checkBox8.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox8.Location = new System.Drawing.Point(27, 77);
     this.checkBox8.Name = "checkBox8";
     this.checkBox8.Size = new System.Drawing.Size(155, 17);
     this.checkBox8.TabIndex = 33;
     this.checkBox8.Text = "Refocus after Filter Change";
     this.checkBox8.UseVisualStyleBackColor = true;
     this.checkBox8.CheckedChanged += new System.EventHandler(this.checkBox8_CheckedChanged);
     //
     // groupBox6
     //
     this.groupBox6.Controls.Add(this.checkBox16);
     this.groupBox6.Location = new System.Drawing.Point(8, 3);
     this.groupBox6.Name = "groupBox6";
     this.groupBox6.Size = new System.Drawing.Size(216, 62);
     this.groupBox6.TabIndex = 237;
     this.groupBox6.TabStop = false;
     this.groupBox6.Text = "Guiding Control";
     //
     // checkBox16
     //
     this.checkBox16.AutoSize = true;
     this.checkBox16.Checked = true;
     this.checkBox16.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox16.Location = new System.Drawing.Point(23, 26);
     this.checkBox16.Name = "checkBox16";
     this.checkBox16.Size = new System.Drawing.Size(134, 17);
     this.checkBox16.TabIndex = 36;
     this.checkBox16.Text = "Guide at focus position";
     this.checkBox16.UseVisualStyleBackColor = true;
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.label38);
     this.groupBox5.Controls.Add(this.label34);
     this.groupBox5.Controls.Add(this.checkBox23);
     this.groupBox5.Controls.Add(this.label53);
     this.groupBox5.Controls.Add(this.button37);
     this.groupBox5.Controls.Add(this.label52);
     this.groupBox5.Controls.Add(this.button32);
     this.groupBox5.Controls.Add(this.button33);
     this.groupBox5.Controls.Add(this.button34);
     this.groupBox5.Controls.Add(this.button35);
     this.groupBox5.Controls.Add(this.checkBox11);
     this.groupBox5.Location = new System.Drawing.Point(230, 8);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(250, 203);
     this.groupBox5.TabIndex = 188;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Mount Control";
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Location = new System.Drawing.Point(171, 21);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(33, 13);
     this.label38.TabIndex = 252;
     this.label38.Text = "Goto:";
     //
     // label34
     //
     this.label34.AutoSize = true;
     this.label34.Location = new System.Drawing.Point(113, 21);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(26, 13);
     this.label34.TabIndex = 251;
     this.label34.Text = "Set:";
     //
     // checkBox23
     //
     this.checkBox23.AutoSize = true;
     this.checkBox23.Checked = true;
     this.checkBox23.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox23.Location = new System.Drawing.Point(18, 150);
     this.checkBox23.Name = "checkBox23";
     this.checkBox23.Size = new System.Drawing.Size(121, 17);
     this.checkBox23.TabIndex = 250;
     this.checkBox23.Text = "Meridian Flip Enable";
     this.checkBox23.UseVisualStyleBackColor = true;
     this.checkBox23.CheckedChanged += new System.EventHandler(this.checkBox23_CheckedChanged);
     //
     // label53
     //
     this.label53.AutoSize = true;
     this.label53.Location = new System.Drawing.Point(13, 73);
     this.label53.Name = "label53";
     this.label53.Size = new System.Drawing.Size(81, 13);
     this.label53.TabIndex = 248;
     this.label53.Text = "Target Position:";
     //
     // button37
     //
     this.button37.BackColor = System.Drawing.Color.Red;
     this.button37.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button37.Location = new System.Drawing.Point(111, 98);
     this.button37.Name = "button37";
     this.button37.Size = new System.Drawing.Size(88, 29);
     this.button37.TabIndex = 8;
     this.button37.Text = "Stop Slew";
     this.button37.UseVisualStyleBackColor = false;
     this.button37.Click += new System.EventHandler(this.button37_Click);
     //
     // label52
     //
     this.label52.AutoSize = true;
     this.label52.Location = new System.Drawing.Point(15, 42);
     this.label52.Name = "label52";
     this.label52.Size = new System.Drawing.Size(79, 13);
     this.label52.TabIndex = 247;
     this.label52.Text = "Focus Position:";
     //
     // button32
     //
     this.button32.Location = new System.Drawing.Point(100, 37);
     this.button32.Name = "button32";
     this.button32.Size = new System.Drawing.Size(55, 23);
     this.button32.TabIndex = 0;
     this.button32.Text = "Set";
     this.button32.UseVisualStyleBackColor = true;
     this.button32.Click += new System.EventHandler(this.button32_Click);
     //
     // button33
     //
     this.button33.Location = new System.Drawing.Point(161, 37);
     this.button33.Name = "button33";
     this.button33.Size = new System.Drawing.Size(55, 23);
     this.button33.TabIndex = 2;
     this.button33.Text = "Goto";
     this.button33.UseVisualStyleBackColor = true;
     this.button33.Click += new System.EventHandler(this.button33_Click);
     //
     // button34
     //
     this.button34.Location = new System.Drawing.Point(100, 69);
     this.button34.Name = "button34";
     this.button34.Size = new System.Drawing.Size(55, 23);
     this.button34.TabIndex = 3;
     this.button34.Text = "Set";
     this.button34.UseVisualStyleBackColor = true;
     this.button34.Click += new System.EventHandler(this.button34_Click);
     //
     // button35
     //
     this.button35.Location = new System.Drawing.Point(161, 69);
     this.button35.Name = "button35";
     this.button35.Size = new System.Drawing.Size(55, 23);
     this.button35.TabIndex = 4;
     this.button35.Text = "Goto";
     this.button35.UseVisualStyleBackColor = true;
     this.button35.Click += new System.EventHandler(this.button35_Click);
     //
     // checkBox11
     //
     this.checkBox11.AutoSize = true;
     this.checkBox11.Location = new System.Drawing.Point(18, 174);
     this.checkBox11.Name = "checkBox11";
     this.checkBox11.Size = new System.Drawing.Size(149, 17);
     this.checkBox11.TabIndex = 237;
     this.checkBox11.Text = "Stop Tracking when done";
     this.checkBox11.UseVisualStyleBackColor = true;
     //
     // tabPage6
     //
     this.tabPage6.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tabPage6.Controls.Add(this.button40);
     this.tabPage6.Controls.Add(this.checkBox20);
     this.tabPage6.Controls.Add(this.checkBox14);
     this.tabPage6.Controls.Add(this.groupBox18);
     this.tabPage6.Controls.Add(this.groupBox17);
     this.tabPage6.Location = new System.Drawing.Point(4, 22);
     this.tabPage6.Name = "tabPage6";
     this.tabPage6.Size = new System.Drawing.Size(738, 222);
     this.tabPage6.TabIndex = 5;
     this.tabPage6.Text = "Notification/Slave";
     //
     // button40
     //
     this.button40.Location = new System.Drawing.Point(381, 187);
     this.button40.Name = "button40";
     this.button40.Size = new System.Drawing.Size(75, 23);
     this.button40.TabIndex = 192;
     this.button40.Text = "Go";
     this.button40.UseVisualStyleBackColor = true;
     this.button40.Click += new System.EventHandler(this.button40_Click_1);
     //
     // checkBox20
     //
     this.checkBox20.AutoSize = true;
     this.checkBox20.Location = new System.Drawing.Point(489, 191);
     this.checkBox20.Name = "checkBox20";
     this.checkBox20.Size = new System.Drawing.Size(93, 17);
     this.checkBox20.TabIndex = 191;
     this.checkBox20.Text = "Enable Server";
     this.checkBox20.UseVisualStyleBackColor = true;
     this.checkBox20.CheckedChanged += new System.EventHandler(this.checkBox20_CheckedChanged_1);
     //
     // checkBox14
     //
     this.checkBox14.AutoSize = true;
     this.checkBox14.Location = new System.Drawing.Point(605, 191);
     this.checkBox14.Name = "checkBox14";
     this.checkBox14.Size = new System.Drawing.Size(119, 17);
     this.checkBox14.TabIndex = 190;
     this.checkBox14.Text = "Enable Slave Mode";
     this.checkBox14.UseVisualStyleBackColor = true;
     this.checkBox14.CheckedChanged += new System.EventHandler(this.checkBox14_CheckedChanged_1);
     //
     // groupBox18
     //
     this.groupBox18.Controls.Add(this.textBox42);
     this.groupBox18.Controls.Add(this.checkBox21);
     this.groupBox18.Controls.Add(this.button39);
     this.groupBox18.Controls.Add(this.label63);
     this.groupBox18.Controls.Add(this.textBox41);
     this.groupBox18.Controls.Add(this.label62);
     this.groupBox18.Controls.Add(this.label39);
     this.groupBox18.Controls.Add(this.label29);
     this.groupBox18.Controls.Add(this.numericUpDown35);
     this.groupBox18.Controls.Add(this.textBox40);
     this.groupBox18.Controls.Add(this.numericUpDown37);
     this.groupBox18.Controls.Add(this.numericUpDown33);
     this.groupBox18.Controls.Add(this.textBox37);
     this.groupBox18.Controls.Add(this.button47);
     this.groupBox18.Controls.Add(this.button46);
     this.groupBox18.Controls.Add(this.button45);
     this.groupBox18.Location = new System.Drawing.Point(358, 15);
     this.groupBox18.Name = "groupBox18";
     this.groupBox18.Size = new System.Drawing.Size(366, 170);
     this.groupBox18.TabIndex = 189;
     this.groupBox18.TabStop = false;
     this.groupBox18.Text = "Dual Camera Slave";
     //
     // textBox42
     //
     this.textBox42.Location = new System.Drawing.Point(123, 43);
     this.textBox42.Name = "textBox42";
     this.textBox42.Size = new System.Drawing.Size(46, 20);
     this.textBox42.TabIndex = 23;
     this.textBox42.Text = "Calc\'d";
     this.textBox42.Click += new System.EventHandler(this.textBox42_Click);
     //
     // checkBox21
     //
     this.checkBox21.AutoSize = true;
     this.checkBox21.Checked = true;
     this.checkBox21.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox21.Location = new System.Drawing.Point(307, 71);
     this.checkBox21.Name = "checkBox21";
     this.checkBox21.Size = new System.Drawing.Size(48, 17);
     this.checkBox21.TabIndex = 21;
     this.checkBox21.Text = "Auto";
     this.checkBox21.UseVisualStyleBackColor = true;
     //
     // button39
     //
     this.button39.Location = new System.Drawing.Point(123, 98);
     this.button39.Name = "button39";
     this.button39.Size = new System.Drawing.Size(75, 23);
     this.button39.TabIndex = 19;
     this.button39.Text = "GotoFocus";
     this.button39.UseVisualStyleBackColor = true;
     this.button39.Click += new System.EventHandler(this.button39_Click);
     //
     // label63
     //
     this.label63.AutoSize = true;
     this.label63.Location = new System.Drawing.Point(80, 135);
     this.label63.Name = "label63";
     this.label63.Size = new System.Drawing.Size(37, 13);
     this.label63.TabIndex = 18;
     this.label63.Text = "Status";
     //
     // textBox41
     //
     this.textBox41.Location = new System.Drawing.Point(123, 132);
     this.textBox41.Name = "textBox41";
     this.textBox41.Size = new System.Drawing.Size(177, 20);
     this.textBox41.TabIndex = 17;
     this.textBox41.Text = "Not Connected";
     this.textBox41.TextChanged += new System.EventHandler(this.textBox41_TextChanged);
     //
     // label62
     //
     this.label62.AutoSize = true;
     this.label62.Location = new System.Drawing.Point(263, 27);
     this.label62.Name = "label62";
     this.label62.Size = new System.Drawing.Size(22, 13);
     this.label62.TabIndex = 16;
     this.label62.Text = "Bin";
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.Location = new System.Drawing.Point(195, 27);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(30, 13);
     this.label39.TabIndex = 15;
     this.label39.Text = "Time";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(128, 27);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(31, 13);
     this.label29.TabIndex = 14;
     this.label29.Text = "Subs";
     //
     // numericUpDown35
     //
     this.numericUpDown35.Location = new System.Drawing.Point(255, 69);
     this.numericUpDown35.Name = "numericUpDown35";
     this.numericUpDown35.Size = new System.Drawing.Size(45, 20);
     this.numericUpDown35.TabIndex = 13;
     //
     // textBox40
     //
     this.textBox40.Location = new System.Drawing.Point(188, 69);
     this.textBox40.Name = "textBox40";
     this.textBox40.Size = new System.Drawing.Size(51, 20);
     this.textBox40.TabIndex = 12;
     this.textBox40.Text = "1000";
     //
     // numericUpDown37
     //
     this.numericUpDown37.Location = new System.Drawing.Point(123, 69);
     this.numericUpDown37.Name = "numericUpDown37";
     this.numericUpDown37.Size = new System.Drawing.Size(46, 20);
     this.numericUpDown37.TabIndex = 11;
     this.numericUpDown37.Value = new decimal(new int[] {
     5,
     0,
     0,
     0});
     //
     // numericUpDown33
     //
     this.numericUpDown33.Location = new System.Drawing.Point(255, 43);
     this.numericUpDown33.Name = "numericUpDown33";
     this.numericUpDown33.Size = new System.Drawing.Size(45, 20);
     this.numericUpDown33.TabIndex = 10;
     //
     // textBox37
     //
     this.textBox37.Location = new System.Drawing.Point(188, 43);
     this.textBox37.Name = "textBox37";
     this.textBox37.Size = new System.Drawing.Size(51, 20);
     this.textBox37.TabIndex = 9;
     this.textBox37.Text = "5";
     //
     // button47
     //
     this.button47.Location = new System.Drawing.Point(23, 69);
     this.button47.Name = "button47";
     this.button47.Size = new System.Drawing.Size(75, 23);
     this.button47.TabIndex = 7;
     this.button47.Text = "Flat";
     this.button47.UseVisualStyleBackColor = true;
     this.button47.Click += new System.EventHandler(this.button47_Click);
     //
     // button46
     //
     this.button46.Location = new System.Drawing.Point(23, 98);
     this.button46.Name = "button46";
     this.button46.Size = new System.Drawing.Size(75, 23);
     this.button46.TabIndex = 6;
     this.button46.Text = "Pause";
     this.button46.UseVisualStyleBackColor = true;
     this.button46.Click += new System.EventHandler(this.button46_Click);
     //
     // button45
     //
     this.button45.Location = new System.Drawing.Point(23, 40);
     this.button45.Name = "button45";
     this.button45.Size = new System.Drawing.Size(75, 23);
     this.button45.TabIndex = 5;
     this.button45.Text = "Capture";
     this.button45.UseVisualStyleBackColor = true;
     this.button45.Click += new System.EventHandler(this.button45_Click);
     //
     // groupBox17
     //
     this.groupBox17.Controls.Add(this.checkBox30);
     this.groupBox17.Controls.Add(this.label89);
     this.groupBox17.Controls.Add(this.numericUpDown41);
     this.groupBox17.Controls.Add(this.checkBox12);
     this.groupBox17.Controls.Add(this.label46);
     this.groupBox17.Controls.Add(this.label47);
     this.groupBox17.Controls.Add(this.label48);
     this.groupBox17.Controls.Add(this.button38);
     this.groupBox17.Controls.Add(this.label49);
     this.groupBox17.Controls.Add(this.textBox36);
     this.groupBox17.Controls.Add(this.textBox13);
     this.groupBox17.Controls.Add(this.textBox28);
     this.groupBox17.Controls.Add(this.textBox27);
     this.groupBox17.Location = new System.Drawing.Point(22, 15);
     this.groupBox17.Name = "groupBox17";
     this.groupBox17.Size = new System.Drawing.Size(307, 196);
     this.groupBox17.TabIndex = 188;
     this.groupBox17.TabStop = false;
     this.groupBox17.Text = "Messaging";
     //
     // checkBox30
     //
     this.checkBox30.AutoSize = true;
     this.checkBox30.Location = new System.Drawing.Point(66, 138);
     this.checkBox30.Name = "checkBox30";
     this.checkBox30.Size = new System.Drawing.Size(15, 14);
     this.checkBox30.TabIndex = 12;
     this.checkBox30.UseVisualStyleBackColor = true;
     this.checkBox30.CheckedChanged += new System.EventHandler(this.checkBox30_CheckedChanged);
     //
     // label89
     //
     this.label89.AutoSize = true;
     this.label89.Location = new System.Drawing.Point(87, 138);
     this.label89.Name = "label89";
     this.label89.Size = new System.Drawing.Size(120, 13);
     this.label89.TabIndex = 11;
     this.label89.Text = "Lost star number to alert";
     //
     // numericUpDown41
     //
     this.numericUpDown41.Location = new System.Drawing.Point(213, 136);
     this.numericUpDown41.Name = "numericUpDown41";
     this.numericUpDown41.Size = new System.Drawing.Size(39, 20);
     this.numericUpDown41.TabIndex = 10;
     this.numericUpDown41.Value = new decimal(new int[] {
     6,
     0,
     0,
     0});
     //
     // checkBox12
     //
     this.checkBox12.AutoSize = true;
     this.checkBox12.Location = new System.Drawing.Point(22, 164);
     this.checkBox12.Name = "checkBox12";
     this.checkBox12.Size = new System.Drawing.Size(138, 17);
     this.checkBox12.TabIndex = 9;
     this.checkBox12.Text = "Enable Error Messaging";
     this.checkBox12.UseVisualStyleBackColor = true;
     this.checkBox12.CheckedChanged += new System.EventHandler(this.checkBox12_CheckedChanged);
     //
     // label46
     //
     this.label46.AutoSize = true;
     this.label46.Location = new System.Drawing.Point(14, 26);
     this.label46.Name = "label46";
     this.label46.Size = new System.Drawing.Size(41, 13);
     this.label46.TabIndex = 0;
     this.label46.Text = "Server:";
     //
     // label47
     //
     this.label47.AutoSize = true;
     this.label47.Location = new System.Drawing.Point(23, 54);
     this.label47.Name = "label47";
     this.label47.Size = new System.Drawing.Size(32, 13);
     this.label47.TabIndex = 1;
     this.label47.Text = "User:"******"label48";
     this.label48.Size = new System.Drawing.Size(36, 13);
     this.label48.TabIndex = 2;
     this.label48.Text = "Pswd:";
     //
     // button38
     //
     this.button38.Location = new System.Drawing.Point(222, 167);
     this.button38.Name = "button38";
     this.button38.Size = new System.Drawing.Size(66, 23);
     this.button38.TabIndex = 8;
     this.button38.Text = "Test Send";
     this.button38.UseVisualStyleBackColor = true;
     this.button38.Click += new System.EventHandler(this.button38_Click_1);
     //
     // label49
     //
     this.label49.AutoSize = true;
     this.label49.Location = new System.Drawing.Point(32, 107);
     this.label49.Name = "label49";
     this.label49.Size = new System.Drawing.Size(23, 13);
     this.label49.TabIndex = 3;
     this.label49.Text = "To:";
     //
     // textBox36
     //
     this.textBox36.Location = new System.Drawing.Point(61, 107);
     this.textBox36.Name = "textBox36";
     this.textBox36.Size = new System.Drawing.Size(205, 20);
     this.textBox36.TabIndex = 7;
     this.textBox36.TextChanged += new System.EventHandler(this.textBox36_TextChanged);
     //
     // textBox13
     //
     this.textBox13.Location = new System.Drawing.Point(61, 23);
     this.textBox13.Name = "textBox13";
     this.textBox13.Size = new System.Drawing.Size(205, 20);
     this.textBox13.TabIndex = 4;
     this.textBox13.TextChanged += new System.EventHandler(this.textBox13_TextChanged);
     //
     // textBox28
     //
     this.textBox28.Location = new System.Drawing.Point(61, 80);
     this.textBox28.Name = "textBox28";
     this.textBox28.PasswordChar = '*';
     this.textBox28.Size = new System.Drawing.Size(205, 20);
     this.textBox28.TabIndex = 6;
     this.textBox28.UseSystemPasswordChar = true;
     this.textBox28.TextChanged += new System.EventHandler(this.textBox28_TextChanged);
     //
     // textBox27
     //
     this.textBox27.Location = new System.Drawing.Point(61, 51);
     this.textBox27.Name = "textBox27";
     this.textBox27.Size = new System.Drawing.Size(205, 20);
     this.textBox27.TabIndex = 5;
     this.textBox27.TextChanged += new System.EventHandler(this.textBox27_TextChanged);
     //
     // tabPage3
     //
     this.tabPage3.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tabPage3.Controls.Add(this.button48);
     this.tabPage3.Controls.Add(this.textBox24);
     this.tabPage3.Controls.Add(this.label25);
     this.tabPage3.Controls.Add(this.pictureBox1);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name = "tabPage3";
     this.tabPage3.Size = new System.Drawing.Size(738, 222);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text = "About";
     //
     // button48
     //
     this.button48.Location = new System.Drawing.Point(299, 170);
     this.button48.Name = "button48";
     this.button48.Size = new System.Drawing.Size(116, 23);
     this.button48.TabIndex = 3;
     this.button48.Text = "Check for Updates";
     this.button48.UseVisualStyleBackColor = true;
     this.button48.Click += new System.EventHandler(this.button48_Click);
     //
     // textBox24
     //
     this.textBox24.BackColor = System.Drawing.Color.WhiteSmoke;
     this.textBox24.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.textBox24.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox24.Location = new System.Drawing.Point(388, 48);
     this.textBox24.Name = "textBox24";
     this.textBox24.Size = new System.Drawing.Size(100, 19);
     this.textBox24.TabIndex = 2;
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.Location = new System.Drawing.Point(269, 30);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(153, 54);
     this.label25.TabIndex = 1;
     this.label25.Text = "         scopefocus\r\nArduino Version \r\n     Kevin Sipprell MD\r\n";
     //
     // pictureBox1
     //
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(306, 97);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(103, 56);
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
     this.pictureBox1.MouseHover += new System.EventHandler(this.pictureBox1_MouseHover);
     //
     // tabPage7
     //
     this.tabPage7.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tabPage7.Controls.Add(this.groupBox24);
     this.tabPage7.Controls.Add(this.groupBox23);
     this.tabPage7.Controls.Add(this.groupBox22);
     this.tabPage7.Controls.Add(this.groupBox21);
     this.tabPage7.Controls.Add(this.groupBox19);
     this.tabPage7.Controls.Add(this.label73);
     this.tabPage7.Location = new System.Drawing.Point(4, 22);
     this.tabPage7.Name = "tabPage7";
     this.tabPage7.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage7.Size = new System.Drawing.Size(738, 222);
     this.tabPage7.TabIndex = 6;
     this.tabPage7.Text = "MeridFlip";
     //
     // groupBox24
     //
     this.groupBox24.Controls.Add(this.button36);
     this.groupBox24.Controls.Add(this.button28);
     this.groupBox24.Controls.Add(this.button31);
     this.groupBox24.Controls.Add(this.label60);
     this.groupBox24.Controls.Add(this.textBox64);
     this.groupBox24.Location = new System.Drawing.Point(6, 96);
     this.groupBox24.Name = "groupBox24";
     this.groupBox24.Size = new System.Drawing.Size(187, 72);
     this.groupBox24.TabIndex = 186;
     this.groupBox24.TabStop = false;
     this.groupBox24.Text = "PHD Status";
     //
     // button36
     //
     this.button36.Location = new System.Drawing.Point(123, 19);
     this.button36.Name = "button36";
     this.button36.Size = new System.Drawing.Size(54, 23);
     this.button36.TabIndex = 54;
     this.button36.Text = "status";
     this.button36.UseVisualStyleBackColor = true;
     this.button36.Click += new System.EventHandler(this.button36_Click_1);
     //
     // button28
     //
     this.button28.Location = new System.Drawing.Point(18, 19);
     this.button28.Name = "button28";
     this.button28.Size = new System.Drawing.Size(50, 23);
     this.button28.TabIndex = 52;
     this.button28.Text = "phd ||";
     this.button28.UseVisualStyleBackColor = true;
     this.button28.Click += new System.EventHandler(this.button28_Click);
     //
     // button31
     //
     this.button31.Location = new System.Drawing.Point(74, 19);
     this.button31.Name = "button31";
     this.button31.Size = new System.Drawing.Size(43, 23);
     this.button31.TabIndex = 53;
     this.button31.Text = "phd >";
     this.button31.UseVisualStyleBackColor = true;
     this.button31.Click += new System.EventHandler(this.button31_Click);
     //
     // label60
     //
     this.label60.AutoSize = true;
     this.label60.Location = new System.Drawing.Point(33, 51);
     this.label60.Name = "label60";
     this.label60.Size = new System.Drawing.Size(35, 13);
     this.label60.TabIndex = 58;
     this.label60.Text = "status";
     //
     // textBox64
     //
     this.textBox64.Location = new System.Drawing.Point(74, 48);
     this.textBox64.Name = "textBox64";
     this.textBox64.Size = new System.Drawing.Size(100, 20);
     this.textBox64.TabIndex = 55;
     //
     // groupBox23
     //
     this.groupBox23.Controls.Add(this.button43);
     this.groupBox23.Controls.Add(this.textBox31);
     this.groupBox23.Controls.Add(this.textBox32);
     this.groupBox23.Controls.Add(this.button44);
     this.groupBox23.Controls.Add(this.label91);
     this.groupBox23.Controls.Add(this.label90);
     this.groupBox23.Location = new System.Drawing.Point(8, 169);
     this.groupBox23.Name = "groupBox23";
     this.groupBox23.Size = new System.Drawing.Size(482, 48);
     this.groupBox23.TabIndex = 186;
     this.groupBox23.TabStop = false;
     this.groupBox23.Text = "Center Here";
     //
     // button43
     //
     this.button43.Location = new System.Drawing.Point(115, 17);
     this.button43.Name = "button43";
     this.button43.Size = new System.Drawing.Size(84, 23);
     this.button43.TabIndex = 69;
     this.button43.Text = "Slew to Offset";
     this.button43.UseVisualStyleBackColor = true;
     this.button43.Click += new System.EventHandler(this.button43_Click);
     //
     // textBox31
     //
     this.textBox31.Location = new System.Drawing.Point(364, 19);
     this.textBox31.Name = "textBox31";
     this.textBox31.Size = new System.Drawing.Size(45, 20);
     this.textBox31.TabIndex = 66;
     //
     // textBox32
     //
     this.textBox32.Location = new System.Drawing.Point(434, 19);
     this.textBox32.Name = "textBox32";
     this.textBox32.Size = new System.Drawing.Size(45, 20);
     this.textBox32.TabIndex = 68;
     //
     // button44
     //
     this.button44.Location = new System.Drawing.Point(14, 17);
     this.button44.Name = "button44";
     this.button44.Size = new System.Drawing.Size(93, 23);
     this.button44.TabIndex = 63;
     this.button44.Text = "Calculate Offset";
     this.button44.UseVisualStyleBackColor = true;
     this.button44.Click += new System.EventHandler(this.button44_Click);
     //
     // label91
     //
     this.label91.AutoSize = true;
     this.label91.Location = new System.Drawing.Point(415, 22);
     this.label91.Name = "label91";
     this.label91.Size = new System.Drawing.Size(14, 13);
     this.label91.TabIndex = 67;
     this.label91.Text = "Y";
     //
     // label90
     //
     this.label90.AutoSize = true;
     this.label90.Location = new System.Drawing.Point(218, 22);
     this.label90.Name = "label90";
     this.label90.Size = new System.Drawing.Size(140, 13);
     this.label90.TabIndex = 65;
     this.label90.Text = "Enter offset pixel position:  X";
     //
     // groupBox22
     //
     this.groupBox22.Controls.Add(this.label35);
     this.groupBox22.Controls.Add(this.textBox45);
     this.groupBox22.Controls.Add(this.label86);
     this.groupBox22.Controls.Add(this.textBox5);
     this.groupBox22.Controls.Add(this.label70);
     this.groupBox22.Controls.Add(this.label59);
     this.groupBox22.Controls.Add(this.textBox53);
     this.groupBox22.Controls.Add(this.textBox56);
     this.groupBox22.Controls.Add(this.label74);
     this.groupBox22.Controls.Add(this.label69);
     this.groupBox22.Controls.Add(this.textBox55);
     this.groupBox22.Controls.Add(this.label71);
     this.groupBox22.Controls.Add(this.textBox54);
     this.groupBox22.Controls.Add(this.label72);
     this.groupBox22.Controls.Add(this.textBox57);
     this.groupBox22.Controls.Add(this.textBox52);
     this.groupBox22.Controls.Add(this.textBox48);
     this.groupBox22.Controls.Add(this.label68);
     this.groupBox22.Location = new System.Drawing.Point(6, 4);
     this.groupBox22.Name = "groupBox22";
     this.groupBox22.Size = new System.Drawing.Size(482, 94);
     this.groupBox22.TabIndex = 61;
     this.groupBox22.TabStop = false;
     this.groupBox22.Text = "Mount Status";
     //
     // label35
     //
     this.label35.AutoSize = true;
     this.label35.Location = new System.Drawing.Point(316, 17);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(54, 13);
     this.label35.TabIndex = 3;
     this.label35.Text = "Dest SOP";
     //
     // textBox45
     //
     this.textBox45.Location = new System.Drawing.Point(383, 13);
     this.textBox45.Name = "textBox45";
     this.textBox45.Size = new System.Drawing.Size(67, 20);
     this.textBox45.TabIndex = 2;
     //
     // label86
     //
     this.label86.AutoSize = true;
     this.label86.Location = new System.Drawing.Point(43, 17);
     this.label86.Name = "label86";
     this.label86.Size = new System.Drawing.Size(27, 13);
     this.label86.TabIndex = 59;
     this.label86.Text = "LST";
     //
     // textBox5
     //
     this.textBox5.Location = new System.Drawing.Point(383, 39);
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new System.Drawing.Size(67, 20);
     this.textBox5.TabIndex = 57;
     //
     // label70
     //
     this.label70.AutoSize = true;
     this.label70.Location = new System.Drawing.Point(170, 17);
     this.label70.Name = "label70";
     this.label70.Size = new System.Drawing.Size(46, 13);
     this.label70.TabIndex = 12;
     this.label70.Text = "FlipTime";
     //
     // label59
     //
     this.label59.AutoSize = true;
     this.label59.Location = new System.Drawing.Point(316, 42);
     this.label59.Name = "label59";
     this.label59.Size = new System.Drawing.Size(61, 13);
     this.label59.TabIndex = 56;
     this.label59.Text = "Side of Pier";
     //
     // textBox53
     //
     this.textBox53.Location = new System.Drawing.Point(76, 13);
     this.textBox53.Name = "textBox53";
     this.textBox53.Size = new System.Drawing.Size(61, 20);
     this.textBox53.TabIndex = 26;
     //
     // textBox56
     //
     this.textBox56.Location = new System.Drawing.Point(222, 13);
     this.textBox56.Name = "textBox56";
     this.textBox56.Size = new System.Drawing.Size(61, 20);
     this.textBox56.TabIndex = 30;
     //
     // label74
     //
     this.label74.AutoSize = true;
     this.label74.Location = new System.Drawing.Point(4, 69);
     this.label74.Name = "label74";
     this.label74.Size = new System.Drawing.Size(66, 13);
     this.label74.TabIndex = 29;
     this.label74.Text = "Current DEC";
     //
     // label69
     //
     this.label69.AutoSize = true;
     this.label69.Location = new System.Drawing.Point(13, 42);
     this.label69.Name = "label69";
     this.label69.Size = new System.Drawing.Size(59, 13);
     this.label69.TabIndex = 10;
     this.label69.Text = "Current RA";
     //
     // textBox55
     //
     this.textBox55.Location = new System.Drawing.Point(76, 65);
     this.textBox55.Name = "textBox55";
     this.textBox55.Size = new System.Drawing.Size(61, 20);
     this.textBox55.TabIndex = 28;
     //
     // label71
     //
     this.label71.AutoSize = true;
     this.label71.Location = new System.Drawing.Point(143, 42);
     this.label71.Name = "label71";
     this.label71.Size = new System.Drawing.Size(73, 13);
     this.label71.TabIndex = 16;
     this.label71.Text = "Meridian Time";
     //
     // textBox54
     //
     this.textBox54.Location = new System.Drawing.Point(76, 39);
     this.textBox54.Name = "textBox54";
     this.textBox54.Size = new System.Drawing.Size(61, 20);
     this.textBox54.TabIndex = 27;
     //
     // label72
     //
     this.label72.AutoSize = true;
     this.label72.Location = new System.Drawing.Point(323, 69);
     this.label72.Name = "label72";
     this.label72.Size = new System.Drawing.Size(54, 13);
     this.label72.TabIndex = 17;
     this.label72.Text = "Longitude";
     //
     // textBox57
     //
     this.textBox57.Location = new System.Drawing.Point(222, 39);
     this.textBox57.Name = "textBox57";
     this.textBox57.Size = new System.Drawing.Size(61, 20);
     this.textBox57.TabIndex = 31;
     //
     // textBox52
     //
     this.textBox52.Location = new System.Drawing.Point(383, 65);
     this.textBox52.Name = "textBox52";
     this.textBox52.Size = new System.Drawing.Size(67, 20);
     this.textBox52.TabIndex = 15;
     //
     // textBox48
     //
     this.textBox48.Location = new System.Drawing.Point(222, 65);
     this.textBox48.Name = "textBox48";
     this.textBox48.Size = new System.Drawing.Size(61, 20);
     this.textBox48.TabIndex = 9;
     //
     // label68
     //
     this.label68.AutoSize = true;
     this.label68.Location = new System.Drawing.Point(151, 69);
     this.label68.Name = "label68";
     this.label68.Size = new System.Drawing.Size(65, 13);
     this.label68.TabIndex = 8;
     this.label68.Text = "Flip Pending";
     //
     // groupBox21
     //
     this.groupBox21.Controls.Add(this.textBox46);
     this.groupBox21.Controls.Add(this.button57);
     this.groupBox21.Controls.Add(this.button58);
     this.groupBox21.Controls.Add(this.label66);
     this.groupBox21.Controls.Add(this.textBox47);
     this.groupBox21.Controls.Add(this.label67);
     this.groupBox21.Controls.Add(this.label78);
     this.groupBox21.Controls.Add(this.label77);
     this.groupBox21.Location = new System.Drawing.Point(199, 98);
     this.groupBox21.Name = "groupBox21";
     this.groupBox21.Size = new System.Drawing.Size(289, 71);
     this.groupBox21.TabIndex = 60;
     this.groupBox21.TabStop = false;
     this.groupBox21.Text = "Polar Alingment";
     //
     // textBox46
     //
     this.textBox46.Location = new System.Drawing.Point(165, 22);
     this.textBox46.Name = "textBox46";
     this.textBox46.Size = new System.Drawing.Size(67, 20);
     this.textBox46.TabIndex = 45;
     //
     // button57
     //
     this.button57.Location = new System.Drawing.Point(15, 17);
     this.button57.Name = "button57";
     this.button57.Size = new System.Drawing.Size(75, 23);
     this.button57.TabIndex = 40;
     this.button57.Text = "PA-Slew";
     this.button57.UseVisualStyleBackColor = true;
     this.button57.Click += new System.EventHandler(this.button57_Click);
     //
     // button58
     //
     this.button58.Location = new System.Drawing.Point(15, 45);
     this.button58.Name = "button58";
     this.button58.Size = new System.Drawing.Size(75, 23);
     this.button58.TabIndex = 41;
     this.button58.Text = "PA-Sync";
     this.button58.UseVisualStyleBackColor = true;
     this.button58.Click += new System.EventHandler(this.button58_Click);
     //
     // label66
     //
     this.label66.AutoSize = true;
     this.label66.Location = new System.Drawing.Point(113, 48);
     this.label66.Name = "label66";
     this.label66.Size = new System.Drawing.Size(41, 13);
     this.label66.TabIndex = 44;
     this.label66.Text = "AltError";
     //
     // textBox47
     //
     this.textBox47.Location = new System.Drawing.Point(165, 45);
     this.textBox47.Name = "textBox47";
     this.textBox47.Size = new System.Drawing.Size(67, 20);
     this.textBox47.TabIndex = 46;
     //
     // label67
     //
     this.label67.AutoSize = true;
     this.label67.Location = new System.Drawing.Point(105, 25);
     this.label67.Name = "label67";
     this.label67.Size = new System.Drawing.Size(49, 13);
     this.label67.TabIndex = 47;
     this.label67.Text = "AzmError";
     //
     // label78
     //
     this.label78.AutoSize = true;
     this.label78.Location = new System.Drawing.Point(238, 48);
     this.label78.Name = "label78";
     this.label78.Size = new System.Drawing.Size(38, 13);
     this.label78.TabIndex = 49;
     this.label78.Text = "arcmin";
     //
     // label77
     //
     this.label77.AutoSize = true;
     this.label77.Location = new System.Drawing.Point(238, 25);
     this.label77.Name = "label77";
     this.label77.Size = new System.Drawing.Size(38, 13);
     this.label77.TabIndex = 48;
     this.label77.Text = "arcmin";
     //
     // groupBox19
     //
     this.groupBox19.Controls.Add(this.label94);
     this.groupBox19.Controls.Add(this.textBox49);
     this.groupBox19.Controls.Add(this.label93);
     this.groupBox19.Controls.Add(this.radioButton5_astrometry);
     this.groupBox19.Controls.Add(this.radioButton_local);
     this.groupBox19.Controls.Add(this.label83);
     this.groupBox19.Controls.Add(this.label82);
     this.groupBox19.Controls.Add(this.textBox62);
     this.groupBox19.Controls.Add(this.textBox61);
     this.groupBox19.Controls.Add(this.textBox60);
     this.groupBox19.Controls.Add(this.label81);
     this.groupBox19.Controls.Add(this.label80);
     this.groupBox19.Controls.Add(this.label79);
     this.groupBox19.Controls.Add(this.button55);
     this.groupBox19.Controls.Add(this.button60);
     this.groupBox19.Controls.Add(this.checkBox25);
     this.groupBox19.Controls.Add(this.textBox59);
     this.groupBox19.Controls.Add(this.label76);
     this.groupBox19.Controls.Add(this.checkBox26);
     this.groupBox19.Controls.Add(this.textBox58);
     this.groupBox19.Controls.Add(this.label75);
     this.groupBox19.Location = new System.Drawing.Point(494, 5);
     this.groupBox19.Name = "groupBox19";
     this.groupBox19.Size = new System.Drawing.Size(241, 214);
     this.groupBox19.TabIndex = 50;
     this.groupBox19.TabStop = false;
     this.groupBox19.Text = "Plate Solve Settings";
     //
     // label93
     //
     this.label93.AutoSize = true;
     this.label93.Location = new System.Drawing.Point(23, 193);
     this.label93.Name = "label93";
     this.label93.Size = new System.Drawing.Size(32, 13);
     this.label93.TabIndex = 54;
     this.label93.Text = "Use: ";
     //
     // radioButton5_astrometry
     //
     this.radioButton5_astrometry.AutoSize = true;
     this.radioButton5_astrometry.Location = new System.Drawing.Point(61, 191);
     this.radioButton5_astrometry.Name = "radioButton5_astrometry";
     this.radioButton5_astrometry.Size = new System.Drawing.Size(92, 17);
     this.radioButton5_astrometry.TabIndex = 53;
     this.radioButton5_astrometry.TabStop = true;
     this.radioButton5_astrometry.Text = "Astrometry.net";
     this.radioButton5_astrometry.UseVisualStyleBackColor = true;
     this.radioButton5_astrometry.CheckedChanged += new System.EventHandler(this.radioButton5_astrometry_CheckedChanged);
     //
     // radioButton_local
     //
     this.radioButton_local.AutoSize = true;
     this.radioButton_local.Checked = true;
     this.radioButton_local.Location = new System.Drawing.Point(159, 191);
     this.radioButton_local.Name = "radioButton_local";
     this.radioButton_local.Size = new System.Drawing.Size(51, 17);
     this.radioButton_local.TabIndex = 52;
     this.radioButton_local.TabStop = true;
     this.radioButton_local.Text = "Local";
     this.radioButton_local.UseVisualStyleBackColor = true;
     this.radioButton_local.CheckedChanged += new System.EventHandler(this.radioButton_local_CheckedChanged);
     //
     // label83
     //
     this.label83.AutoSize = true;
     this.label83.Location = new System.Drawing.Point(209, 68);
     this.label83.Name = "label83";
     this.label83.Size = new System.Drawing.Size(25, 13);
     this.label83.TabIndex = 7;
     this.label83.Text = "deg";
     //
     // label82
     //
     this.label82.AutoSize = true;
     this.label82.Location = new System.Drawing.Point(209, 42);
     this.label82.Name = "label82";
     this.label82.Size = new System.Drawing.Size(25, 13);
     this.label82.TabIndex = 6;
     this.label82.Text = "deg";
     //
     // textBox62
     //
     this.textBox62.Location = new System.Drawing.Point(159, 65);
     this.textBox62.Name = "textBox62";
     this.textBox62.Size = new System.Drawing.Size(44, 20);
     this.textBox62.TabIndex = 5;
     //
     // textBox61
     //
     this.textBox61.Location = new System.Drawing.Point(159, 39);
     this.textBox61.Name = "textBox61";
     this.textBox61.Size = new System.Drawing.Size(45, 20);
     this.textBox61.TabIndex = 4;
     //
     // textBox60
     //
     this.textBox60.Location = new System.Drawing.Point(159, 13);
     this.textBox60.Name = "textBox60";
     this.textBox60.Size = new System.Drawing.Size(45, 20);
     this.textBox60.TabIndex = 3;
     //
     // label81
     //
     this.label81.AutoSize = true;
     this.label81.Location = new System.Drawing.Point(119, 68);
     this.label81.Name = "label81";
     this.label81.Size = new System.Drawing.Size(29, 13);
     this.label81.TabIndex = 2;
     this.label81.Text = "High";
     //
     // label80
     //
     this.label80.AutoSize = true;
     this.label80.Location = new System.Drawing.Point(118, 42);
     this.label80.Name = "label80";
     this.label80.Size = new System.Drawing.Size(27, 13);
     this.label80.TabIndex = 1;
     this.label80.Text = "Low";
     //
     // label79
     //
     this.label79.AutoSize = true;
     this.label79.Location = new System.Drawing.Point(119, 16);
     this.label79.Name = "label79";
     this.label79.Size = new System.Drawing.Size(36, 13);
     this.label79.TabIndex = 0;
     this.label79.Text = "Sigma";
     //
     // button55
     //
     this.button55.Location = new System.Drawing.Point(14, 16);
     this.button55.Name = "button55";
     this.button55.Size = new System.Drawing.Size(75, 43);
     this.button55.TabIndex = 25;
     this.button55.Text = "Plate Solve  Go";
     this.button55.UseVisualStyleBackColor = true;
     this.button55.Click += new System.EventHandler(this.button55_Click);
     //
     // button60
     //
     this.button60.Enabled = false;
     this.button60.Location = new System.Drawing.Point(14, 67);
     this.button60.Name = "button60";
     this.button60.Size = new System.Drawing.Size(75, 23);
     this.button60.TabIndex = 51;
     this.button60.Text = "Abort";
     this.button60.UseVisualStyleBackColor = true;
     this.button60.Click += new System.EventHandler(this.button60_Click);
     //
     // checkBox25
     //
     this.checkBox25.AutoSize = true;
     this.checkBox25.Location = new System.Drawing.Point(41, 123);
     this.checkBox25.Name = "checkBox25";
     this.checkBox25.Size = new System.Drawing.Size(113, 17);
     this.checkBox25.TabIndex = 36;
     this.checkBox25.Text = "Repeat until within";
     this.checkBox25.UseVisualStyleBackColor = true;
     //
     // textBox59
     //
     this.textBox59.Location = new System.Drawing.Point(155, 122);
     this.textBox59.Name = "textBox59";
     this.textBox59.Size = new System.Drawing.Size(29, 20);
     this.textBox59.TabIndex = 37;
     this.textBox59.Text = "1";
     this.textBox59.TextChanged += new System.EventHandler(this.textBox59_TextChanged);
     //
     // label76
     //
     this.label76.AutoSize = true;
     this.label76.Location = new System.Drawing.Point(190, 125);
     this.label76.Name = "label76";
     this.label76.Size = new System.Drawing.Size(38, 13);
     this.label76.TabIndex = 38;
     this.label76.Text = "arcmin";
     //
     // textBox58
     //
     this.textBox58.Location = new System.Drawing.Point(86, 167);
     this.textBox58.Name = "textBox58";
     this.textBox58.Size = new System.Drawing.Size(144, 20);
     this.textBox58.TabIndex = 33;
     this.textBox58.Click += new System.EventHandler(this.textBox58_Click);
     //
     // label75
     //
     this.label75.AutoSize = true;
     this.label75.Location = new System.Drawing.Point(11, 170);
     this.label75.Name = "label75";
     this.label75.Size = new System.Drawing.Size(69, 13);
     this.label75.TabIndex = 34;
     this.label75.Text = "Select Image";
     //
     // label73
     //
     this.label73.AutoSize = true;
     this.label73.Location = new System.Drawing.Point(402, 124);
     this.label73.Name = "label73";
     this.label73.Size = new System.Drawing.Size(59, 13);
     this.label73.TabIndex = 18;
     this.label73.Text = "(-) for West";
     //
     // button17
     //
     this.button17.Location = new System.Drawing.Point(639, 548);
     this.button17.Name = "button17";
     this.button17.Size = new System.Drawing.Size(75, 23);
     this.button17.TabIndex = 108;
     this.button17.Text = "View All";
     this.button17.UseVisualStyleBackColor = true;
     this.button17.Click += new System.EventHandler(this.button17_Click);
     //
     // fileSystemWatcher4
     //
     this.fileSystemWatcher4.EnableRaisingEvents = true;
     this.fileSystemWatcher4.Filter = "*.fit";
     this.fileSystemWatcher4.NotifyFilter = System.IO.NotifyFilters.LastWrite;
     this.fileSystemWatcher4.SynchronizingObject = this;
     this.fileSystemWatcher4.Changed += new System.IO.FileSystemEventHandler(this.fileSystemWatcher4_Changed);
     //
     // textBox26
     //
     this.textBox26.Location = new System.Drawing.Point(431, 213);
     this.textBox26.Name = "textBox26";
     this.textBox26.Size = new System.Drawing.Size(61, 20);
     this.textBox26.TabIndex = 184;
     //
     // fileSystemWatcher5
     //
     this.fileSystemWatcher5.EnableRaisingEvents = true;
     this.fileSystemWatcher5.Filter = "*.fit";
     this.fileSystemWatcher5.SynchronizingObject = this;
     this.fileSystemWatcher5.Changed += new System.IO.FileSystemEventHandler(this.fileSystemWatcher5_Changed);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel1,
     this.toolStripStatusLabel2,
     this.toolStripProgressBar1,
     this.toolStripStatusLabel3,
     this.toolStripStatusLabel4,
     this.toolStripStatusLabel5});
     this.statusStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.statusStrip1.Location = new System.Drawing.Point(0, 694);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(749, 24);
     this.statusStrip1.SizingGrip = false;
     this.statusStrip1.TabIndex = 185;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.AutoSize = false;
     this.toolStripStatusLabel1.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Right;
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(160, 19);
     this.toolStripStatusLabel1.Text = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // toolStripStatusLabel2
     //
     this.toolStripStatusLabel2.AutoSize = false;
     this.toolStripStatusLabel2.Name = "toolStripStatusLabel2";
     this.toolStripStatusLabel2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.toolStripStatusLabel2.Size = new System.Drawing.Size(70, 19);
     this.toolStripStatusLabel2.Text = "toolStripStatusLabel2";
     this.toolStripStatusLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // toolStripProgressBar1
     //
     this.toolStripProgressBar1.Name = "toolStripProgressBar1";
     this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 18);
     this.toolStripProgressBar1.Step = 1;
     //
     // toolStripStatusLabel3
     //
     this.toolStripStatusLabel3.AutoSize = false;
     this.toolStripStatusLabel3.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Left;
     this.toolStripStatusLabel3.Name = "toolStripStatusLabel3";
     this.toolStripStatusLabel3.Size = new System.Drawing.Size(150, 19);
     this.toolStripStatusLabel3.Text = "toolStripStatusLabel3";
     this.toolStripStatusLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // toolStripStatusLabel4
     //
     this.toolStripStatusLabel4.AutoSize = false;
     this.toolStripStatusLabel4.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Left;
     this.toolStripStatusLabel4.Name = "toolStripStatusLabel4";
     this.toolStripStatusLabel4.Size = new System.Drawing.Size(80, 19);
     this.toolStripStatusLabel4.Text = "toolStripStatusLabel4";
     this.toolStripStatusLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // toolStripStatusLabel5
     //
     this.toolStripStatusLabel5.AutoSize = false;
     this.toolStripStatusLabel5.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Left;
     this.toolStripStatusLabel5.Name = "toolStripStatusLabel5";
     this.toolStripStatusLabel5.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.toolStripStatusLabel5.Size = new System.Drawing.Size(220, 19);
     this.toolStripStatusLabel5.Spring = true;
     this.toolStripStatusLabel5.Text = "toolStripStatusLabel5";
     this.toolStripStatusLabel5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // openFileDialog1
     //
     this.openFileDialog1.Filter = "Excel Files(*.xls)|*.xls|Text files (*.txt)|*.txt";
     this.openFileDialog1.FilterIndex = 2;
     this.openFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog1_FileOk);
     //
     // saveFileDialog1
     //
     this.saveFileDialog1.Filter = "Text files (*.txt)|*.txt|Excel files(*.xls;*.xlsx)|*.xls;*.xlsx";
     this.saveFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.saveFileDialog1_FileOk);
     //
     // folderBrowserDialog2
     //
     this.folderBrowserDialog2.HelpRequest += new System.EventHandler(this.folderBrowserDialog2_HelpRequest);
     //
     // backgroundWorker1
     //
     this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
     //
     // backgroundWorker2
     //
     this.backgroundWorker2.WorkerReportsProgress = true;
     this.backgroundWorker2.WorkerSupportsCancellation = true;
     this.backgroundWorker2.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker2_DoWork);
     //
     // timer2
     //
     this.timer2.Interval = 1000;
     this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
     //
     // openFileDialog2
     //
     this.openFileDialog2.FileName = "openFileDialog2";
     this.openFileDialog2.Filter = "Image Files|*.fit";
     //
     // fileSystemWatcher7
     //
     this.fileSystemWatcher7.EnableRaisingEvents = true;
     this.fileSystemWatcher7.Filter = "*.fit";
     this.fileSystemWatcher7.SynchronizingObject = this;
     this.fileSystemWatcher7.Created += new System.IO.FileSystemEventHandler(this.fileSystemWatcher7_Created);
     //
     // textBox49
     //
     this.textBox49.Location = new System.Drawing.Point(159, 91);
     this.textBox49.Name = "textBox49";
     this.textBox49.Size = new System.Drawing.Size(44, 20);
     this.textBox49.TabIndex = 55;
     this.toolTip1.SetToolTip(this.textBox49, "Enter Downsize facotr for long exposure images");
     //
     // label94
     //
     this.label94.AutoSize = true;
     this.label94.Location = new System.Drawing.Point(112, 94);
     this.label94.Name = "label94";
     this.label94.Size = new System.Drawing.Size(41, 13);
     this.label94.TabIndex = 56;
     this.label94.Text = "DwnSz";
     //
     // MainWindow
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(749, 718);
     this.Controls.Add(this.button18);
     this.Controls.Add(this.button17);
     this.Controls.Add(this.button16);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.textBox26);
     this.Controls.Add(this.button13);
     this.Controls.Add(this.dataGridView1);
     this.Controls.Add(this.chart1);
     this.Controls.Add(this.LogTextBox);
     this.Controls.Add(this.menuStrip1);
     this.Controls.Add(this.statusStrip1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Location = new System.Drawing.Point(100, 20);
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "MainWindow";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "scopefocus - Main";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainWindow_FormClosing);
     this.Load += new System.EventHandler(this.MainWindow_Load_1);
     this.Shown += new System.EventHandler(this.MainWindow_Shown);
     ((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown21)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown39)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox20.ResumeLayout(false);
     this.groupBox20.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown40)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.tabPage1.ResumeLayout(false);
     this.groupBox11.ResumeLayout(false);
     this.groupBox11.PerformLayout();
     this.groupBox10.ResumeLayout(false);
     this.groupBox10.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown3)).EndInit();
     this.groupBox9.ResumeLayout(false);
     this.groupBox9.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown6)).EndInit();
     this.groupBox8.ResumeLayout(false);
     this.groupBox8.PerformLayout();
     this.tabPage4.ResumeLayout(false);
     this.tabPage4.PerformLayout();
     this.groupBox15.ResumeLayout(false);
     this.groupBox15.PerformLayout();
     this.groupBox14.ResumeLayout(false);
     this.groupBox14.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
     this.groupBox13.ResumeLayout(false);
     this.groupBox13.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown36)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown34)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown32)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown31)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown30)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown17)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown18)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown29)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown28)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown20)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown27)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown24)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown26)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown25)).EndInit();
     this.groupBox12.ResumeLayout(false);
     this.groupBox12.PerformLayout();
     this.tabPage5.ResumeLayout(false);
     this.groupBox16.ResumeLayout(false);
     this.groupBox16.PerformLayout();
     this.groupBox7.ResumeLayout(false);
     this.groupBox7.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown38)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown22)).EndInit();
     this.groupBox6.ResumeLayout(false);
     this.groupBox6.PerformLayout();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     this.tabPage6.ResumeLayout(false);
     this.tabPage6.PerformLayout();
     this.groupBox18.ResumeLayout(false);
     this.groupBox18.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown35)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown37)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown33)).EndInit();
     this.groupBox17.ResumeLayout(false);
     this.groupBox17.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown41)).EndInit();
     this.tabPage3.ResumeLayout(false);
     this.tabPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.tabPage7.ResumeLayout(false);
     this.tabPage7.PerformLayout();
     this.groupBox24.ResumeLayout(false);
     this.groupBox24.PerformLayout();
     this.groupBox23.ResumeLayout(false);
     this.groupBox23.PerformLayout();
     this.groupBox22.ResumeLayout(false);
     this.groupBox22.PerformLayout();
     this.groupBox21.ResumeLayout(false);
     this.groupBox21.PerformLayout();
     this.groupBox19.ResumeLayout(false);
     this.groupBox19.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher5)).EndInit();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher7)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #42
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(CSAUSBTool));
     this.yearSelection         = new System.Windows.Forms.ComboBox();
     this.yearLabel             = new System.Windows.Forms.Label();
     this.downloadButton        = new System.Windows.Forms.Button();
     this.downloadFolder        = new System.Windows.Forms.TextBox();
     this.downloadBrowse        = new System.Windows.Forms.Button();
     this.downloadFolderLabel   = new System.Windows.Forms.Label();
     this.isoLabel              = new System.Windows.Forms.Label();
     this.isoFolder             = new System.Windows.Forms.TextBox();
     this.isoBrowse             = new System.Windows.Forms.Button();
     this.buildISOButton        = new System.Windows.Forms.Button();
     this.folderBrowserDialog   = new System.Windows.Forms.FolderBrowserDialog();
     this.statusStrip           = new System.Windows.Forms.StatusStrip();
     toolStripProgressBar       = new System.Windows.Forms.ToolStripProgressBar();
     this.toolStripStatusLabel  = new System.Windows.Forms.ToolStripStatusLabel();
     this.downloadAsyncCheckbox = new System.Windows.Forms.CheckBox();
     this.statusStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // yearSelection
     //
     this.yearSelection.FormattingEnabled = true;
     this.yearSelection.Items.AddRange(new object[] {
         "2018",
         "2017"
     });
     this.yearSelection.Location              = new System.Drawing.Point(138, 6);
     this.yearSelection.Name                  = "yearSelection";
     this.yearSelection.Size                  = new System.Drawing.Size(121, 21);
     this.yearSelection.TabIndex              = 1;
     this.yearSelection.SelectedIndexChanged += new System.EventHandler(this.yearSelection_SelectedIndexChanged);
     //
     // yearLabel
     //
     this.yearLabel.AutoSize = true;
     this.yearLabel.Location = new System.Drawing.Point(12, 9);
     this.yearLabel.Name     = "yearLabel";
     this.yearLabel.Size     = new System.Drawing.Size(120, 13);
     this.yearLabel.TabIndex = 2;
     this.yearLabel.Text     = "Select Competition Year";
     //
     // downloadButton
     //
     this.downloadButton.Location = new System.Drawing.Point(12, 127);
     this.downloadButton.Name     = "downloadButton";
     this.downloadButton.Size     = new System.Drawing.Size(348, 23);
     this.downloadButton.TabIndex = 5;
     this.downloadButton.Text     = "Download";
     this.downloadButton.UseVisualStyleBackColor = true;
     this.downloadButton.Click += new System.EventHandler(this.downloadButton_Click);
     //
     // downloadFolder
     //
     this.downloadFolder.Location     = new System.Drawing.Point(102, 35);
     this.downloadFolder.Name         = "downloadFolder";
     this.downloadFolder.Size         = new System.Drawing.Size(164, 20);
     this.downloadFolder.TabIndex     = 6;
     this.downloadFolder.TextChanged += new System.EventHandler(this.downloadFolder_TextChanged);
     //
     // downloadBrowse
     //
     this.downloadBrowse.Location = new System.Drawing.Point(272, 33);
     this.downloadBrowse.Name     = "downloadBrowse";
     this.downloadBrowse.Size     = new System.Drawing.Size(88, 23);
     this.downloadBrowse.TabIndex = 7;
     this.downloadBrowse.Text     = "Browse";
     this.downloadBrowse.UseVisualStyleBackColor = true;
     this.downloadBrowse.Click += new System.EventHandler(this.downloadBrowse_Click);
     //
     // downloadFolderLabel
     //
     this.downloadFolderLabel.AutoSize = true;
     this.downloadFolderLabel.Location = new System.Drawing.Point(12, 38);
     this.downloadFolderLabel.Name     = "downloadFolderLabel";
     this.downloadFolderLabel.Size     = new System.Drawing.Size(87, 13);
     this.downloadFolderLabel.TabIndex = 8;
     this.downloadFolderLabel.Text     = "Download Folder";
     //
     // isoLabel
     //
     this.isoLabel.AutoSize = true;
     this.isoLabel.Location = new System.Drawing.Point(12, 71);
     this.isoLabel.Name     = "isoLabel";
     this.isoLabel.Size     = new System.Drawing.Size(92, 13);
     this.isoLabel.TabIndex = 9;
     this.isoLabel.Text     = "ISO Output Folder";
     //
     // isoFolder
     //
     this.isoFolder.Location     = new System.Drawing.Point(102, 68);
     this.isoFolder.Name         = "isoFolder";
     this.isoFolder.Size         = new System.Drawing.Size(164, 20);
     this.isoFolder.TabIndex     = 10;
     this.isoFolder.TextChanged += new System.EventHandler(this.isoFolder_TextChanged);
     //
     // isoBrowse
     //
     this.isoBrowse.Location = new System.Drawing.Point(272, 66);
     this.isoBrowse.Name     = "isoBrowse";
     this.isoBrowse.Size     = new System.Drawing.Size(88, 23);
     this.isoBrowse.TabIndex = 11;
     this.isoBrowse.Text     = "Browse";
     this.isoBrowse.UseVisualStyleBackColor = true;
     this.isoBrowse.Click += new System.EventHandler(this.isoBrowse_Click);
     //
     // buildISOButton
     //
     this.buildISOButton.Location = new System.Drawing.Point(12, 156);
     this.buildISOButton.Name     = "buildISOButton";
     this.buildISOButton.Size     = new System.Drawing.Size(348, 23);
     this.buildISOButton.TabIndex = 12;
     this.buildISOButton.Text     = "Build ISO Image";
     this.buildISOButton.UseVisualStyleBackColor = true;
     this.buildISOButton.Click += new System.EventHandler(this.buildISOButton_Click);
     //
     // statusStrip
     //
     this.statusStrip.BackColor = System.Drawing.SystemColors.Control;
     this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         toolStripProgressBar,
         this.toolStripStatusLabel
     });
     this.statusStrip.Location = new System.Drawing.Point(0, 183);
     this.statusStrip.Name     = "statusStrip";
     this.statusStrip.Size     = new System.Drawing.Size(372, 22);
     this.statusStrip.TabIndex = 15;
     this.statusStrip.Text     = "statusStrip1";
     //
     // toolStripProgressBar
     //
     toolStripProgressBar.Name = "toolStripProgressBar";
     toolStripProgressBar.Size = new System.Drawing.Size(100, 16);
     //
     // toolStripStatusLabel
     //
     this.toolStripStatusLabel.Name = "toolStripStatusLabel";
     this.toolStripStatusLabel.Size = new System.Drawing.Size(26, 17);
     this.toolStripStatusLabel.Text = "Idle";
     //
     // downloadAsyncCheckbox
     //
     this.downloadAsyncCheckbox.AutoSize   = true;
     this.downloadAsyncCheckbox.Checked    = true;
     this.downloadAsyncCheckbox.CheckState = System.Windows.Forms.CheckState.Checked;
     this.downloadAsyncCheckbox.Location   = new System.Drawing.Point(15, 104);
     this.downloadAsyncCheckbox.Name       = "downloadAsyncCheckbox";
     this.downloadAsyncCheckbox.Size       = new System.Drawing.Size(106, 17);
     this.downloadAsyncCheckbox.TabIndex   = 16;
     this.downloadAsyncCheckbox.Text       = "Download Async";
     this.downloadAsyncCheckbox.UseVisualStyleBackColor = true;
     //
     // CSAUSBTool
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(372, 205);
     this.Controls.Add(this.downloadAsyncCheckbox);
     this.Controls.Add(this.buildISOButton);
     this.Controls.Add(this.isoBrowse);
     this.Controls.Add(this.isoFolder);
     this.Controls.Add(this.isoLabel);
     this.Controls.Add(this.downloadFolderLabel);
     this.Controls.Add(this.downloadBrowse);
     this.Controls.Add(this.downloadFolder);
     this.Controls.Add(this.downloadButton);
     this.Controls.Add(this.yearLabel);
     this.Controls.Add(this.yearSelection);
     this.Controls.Add(this.statusStrip);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "CSAUSBTool";
     this.Text = "CSA USB Tool";
     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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.topPanel = new System.Windows.Forms.Panel();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.label3 = new System.Windows.Forms.Label();
     this.IpAddressLabel = new System.Windows.Forms.Label();
     this.NetworkInterfaceComboBox = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.SelectedNicLabel = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.servicesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.parseCaptureFilesServiceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.refreshToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.logToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.bottonPanel = new System.Windows.Forms.Panel();
     this.FlooderStatusIndicatorsGroupBox = new System.Windows.Forms.GroupBox();
     this.YellowLabel = new System.Windows.Forms.Label();
     this.RedLabel = new System.Windows.Forms.Label();
     this.GreenLabel = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.ProgressLabel = new System.Windows.Forms.Label();
     this.ProgressSpinnerPictureBox = new System.Windows.Forms.PictureBox();
     this.clockLabel = new System.Windows.Forms.Label();
     this.AddDeleteFlooderGroupBox = new System.Windows.Forms.GroupBox();
     this.DeleteFlooderButton = new System.Windows.Forms.Button();
     this.AddFlooderButton = new System.Windows.Forms.Button();
     this.mainPanel = new System.Windows.Forms.Panel();
     this.ProcessCaptureDataButton = new System.Windows.Forms.Button();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.FlooderTimerIntervalGroupBox = new System.Windows.Forms.GroupBox();
     this.FlooderIntervalTextBox = new System.Windows.Forms.TextBox();
     this.FlooderTargetGroupBox = new System.Windows.Forms.GroupBox();
     this.TargetIpAddressTextBox = new System.Windows.Forms.TextBox();
     this.TargetPortTextBox = new System.Windows.Forms.TextBox();
     this.DatabaseResetGroupBox = new System.Windows.Forms.GroupBox();
     this.DatabaseResetCheckBox = new System.Windows.Forms.CheckBox();
     this.ParseCaptureFilesServiceGroupBox = new System.Windows.Forms.GroupBox();
     this.StartParseFilesServiceButton = new System.Windows.Forms.Button();
     this.ParseFilesServiceStatusLabel = new System.Windows.Forms.Label();
     this.ClockButton = new System.Windows.Forms.Button();
     this.FlooderStatusDataGridView = new System.Windows.Forms.DataGridView();
     this.SelectFlooder = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Pid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Flooder = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Port = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.FlooderTarget = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.RunTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Status = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.FlooderControl = new System.Windows.Forms.DataGridViewButtonColumn();
     this.ClientTabControl = new System.Windows.Forms.TabControl();
     this.FlooderTabPage = new System.Windows.Forms.TabPage();
     this.AnalysisTabPage = new System.Windows.Forms.TabPage();
     this.AnalysisMainPanel = new System.Windows.Forms.Panel();
     this.startToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.stopToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.CientStatusStrip = new System.Windows.Forms.StatusStrip();
     this.ClientStatusToolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.ClientStatusToolStripProgressBar = new System.Windows.Forms.ToolStripProgressBar();
     this.topPanel.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.bottonPanel.SuspendLayout();
     this.FlooderStatusIndicatorsGroupBox.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ProgressSpinnerPictureBox)).BeginInit();
     this.AddDeleteFlooderGroupBox.SuspendLayout();
     this.mainPanel.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.FlooderTimerIntervalGroupBox.SuspendLayout();
     this.FlooderTargetGroupBox.SuspendLayout();
     this.DatabaseResetGroupBox.SuspendLayout();
     this.ParseCaptureFilesServiceGroupBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.FlooderStatusDataGridView)).BeginInit();
     this.ClientTabControl.SuspendLayout();
     this.FlooderTabPage.SuspendLayout();
     this.AnalysisTabPage.SuspendLayout();
     this.CientStatusStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // topPanel
     //
     this.topPanel.BackColor = System.Drawing.SystemColors.Control;
     this.topPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.topPanel.Controls.Add(this.groupBox3);
     this.topPanel.Controls.Add(this.label1);
     this.topPanel.Controls.Add(this.menuStrip1);
     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(1013, 138);
     this.topPanel.TabIndex = 0;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.label3);
     this.groupBox3.Controls.Add(this.IpAddressLabel);
     this.groupBox3.Controls.Add(this.NetworkInterfaceComboBox);
     this.groupBox3.Controls.Add(this.label2);
     this.groupBox3.Controls.Add(this.SelectedNicLabel);
     this.groupBox3.Location = new System.Drawing.Point(684, 29);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(301, 104);
     this.groupBox3.TabIndex = 5;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Client Network Interface Adaptor";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(28, 72);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(77, 16);
     this.label3.TabIndex = 6;
     this.label3.Text = "IP Address:";
     //
     // IpAddressLabel
     //
     this.IpAddressLabel.AutoSize = true;
     this.IpAddressLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IpAddressLabel.Location = new System.Drawing.Point(116, 72);
     this.IpAddressLabel.Name = "IpAddressLabel";
     this.IpAddressLabel.Size = new System.Drawing.Size(74, 16);
     this.IpAddressLabel.TabIndex = 5;
     this.IpAddressLabel.Text = "IP Address";
     //
     // NetworkInterfaceComboBox
     //
     this.NetworkInterfaceComboBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.NetworkInterfaceComboBox.FormattingEnabled = true;
     this.NetworkInterfaceComboBox.Location = new System.Drawing.Point(20, 18);
     this.NetworkInterfaceComboBox.Name = "NetworkInterfaceComboBox";
     this.NetworkInterfaceComboBox.Size = new System.Drawing.Size(255, 24);
     this.NetworkInterfaceComboBox.TabIndex = 2;
     this.NetworkInterfaceComboBox.SelectedIndexChanged += new System.EventHandler(this.NetworkInterfaceComboBox_SelectedIndexChanged);
     this.NetworkInterfaceComboBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NetworkInterfaceComboBox_KeyPress);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(27, 50);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(82, 16);
     this.label2.TabIndex = 4;
     this.label2.Text = "Selectd NIC:";
     //
     // SelectedNicLabel
     //
     this.SelectedNicLabel.AutoSize = true;
     this.SelectedNicLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.SelectedNicLabel.Location = new System.Drawing.Point(115, 50);
     this.SelectedNicLabel.Name = "SelectedNicLabel";
     this.SelectedNicLabel.Size = new System.Drawing.Size(87, 16);
     this.SelectedNicLabel.TabIndex = 3;
     this.SelectedNicLabel.Text = "Selected NIC";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(16, 61);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(399, 25);
     this.label1.TabIndex = 0;
     this.label1.Text = "Virtual Machine Co-Residency Probe";
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.servicesToolStripMenuItem,
     this.viewToolStripMenuItem,
     this.aboutToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(1011, 24);
     this.menuStrip1.TabIndex = 1;
     this.menuStrip1.Text = "MainMenuMenuStrip";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.exitToolStripMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "File";
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(92, 22);
     this.exitToolStripMenuItem.Text = "Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // servicesToolStripMenuItem
     //
     this.servicesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.parseCaptureFilesServiceToolStripMenuItem});
     this.servicesToolStripMenuItem.Name = "servicesToolStripMenuItem";
     this.servicesToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
     this.servicesToolStripMenuItem.Text = "Services";
     //
     // parseCaptureFilesServiceToolStripMenuItem
     //
     this.parseCaptureFilesServiceToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.startToolStripMenuItem,
     this.stopToolStripMenuItem,
     this.toolStripSeparator1,
     this.refreshToolStripMenuItem});
     this.parseCaptureFilesServiceToolStripMenuItem.Name = "parseCaptureFilesServiceToolStripMenuItem";
     this.parseCaptureFilesServiceToolStripMenuItem.Size = new System.Drawing.Size(213, 22);
     this.parseCaptureFilesServiceToolStripMenuItem.Text = "Parse Capture Files Service";
     //
     // refreshToolStripMenuItem
     //
     this.refreshToolStripMenuItem.Name = "refreshToolStripMenuItem";
     this.refreshToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.refreshToolStripMenuItem.Text = "Refresh";
     this.refreshToolStripMenuItem.Click += new System.EventHandler(this.refreshToolStripMenuItem_Click);
     //
     // viewToolStripMenuItem
     //
     this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.logToolStripMenuItem});
     this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
     this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.viewToolStripMenuItem.Text = "View";
     //
     // logToolStripMenuItem
     //
     this.logToolStripMenuItem.Name = "logToolStripMenuItem";
     this.logToolStripMenuItem.Size = new System.Drawing.Size(94, 22);
     this.logToolStripMenuItem.Text = "Log";
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(52, 20);
     this.aboutToolStripMenuItem.Text = "About";
     //
     // bottonPanel
     //
     this.bottonPanel.BackColor = System.Drawing.SystemColors.Control;
     this.bottonPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.bottonPanel.Controls.Add(this.FlooderStatusIndicatorsGroupBox);
     this.bottonPanel.Controls.Add(this.groupBox1);
     this.bottonPanel.Controls.Add(this.AddDeleteFlooderGroupBox);
     this.bottonPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.bottonPanel.Location = new System.Drawing.Point(0, 434);
     this.bottonPanel.Name = "bottonPanel";
     this.bottonPanel.Size = new System.Drawing.Size(994, 100);
     this.bottonPanel.TabIndex = 1;
     //
     // FlooderStatusIndicatorsGroupBox
     //
     this.FlooderStatusIndicatorsGroupBox.Controls.Add(this.YellowLabel);
     this.FlooderStatusIndicatorsGroupBox.Controls.Add(this.RedLabel);
     this.FlooderStatusIndicatorsGroupBox.Controls.Add(this.GreenLabel);
     this.FlooderStatusIndicatorsGroupBox.Location = new System.Drawing.Point(237, 5);
     this.FlooderStatusIndicatorsGroupBox.Name = "FlooderStatusIndicatorsGroupBox";
     this.FlooderStatusIndicatorsGroupBox.Size = new System.Drawing.Size(506, 82);
     this.FlooderStatusIndicatorsGroupBox.TabIndex = 9;
     this.FlooderStatusIndicatorsGroupBox.TabStop = false;
     //
     // YellowLabel
     //
     this.YellowLabel.BackColor = System.Drawing.Color.Khaki;
     this.YellowLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.YellowLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.YellowLabel.Location = new System.Drawing.Point(193, 32);
     this.YellowLabel.Name = "YellowLabel";
     this.YellowLabel.Size = new System.Drawing.Size(121, 25);
     this.YellowLabel.TabIndex = 4;
     this.YellowLabel.Text = "Non-Resident";
     this.YellowLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // RedLabel
     //
     this.RedLabel.BackColor = System.Drawing.Color.LightCoral;
     this.RedLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.RedLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.RedLabel.Location = new System.Drawing.Point(349, 32);
     this.RedLabel.Name = "RedLabel";
     this.RedLabel.Size = new System.Drawing.Size(121, 25);
     this.RedLabel.TabIndex = 6;
     this.RedLabel.Text = "Not Connected";
     this.RedLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // GreenLabel
     //
     this.GreenLabel.BackColor = System.Drawing.Color.LightGreen;
     this.GreenLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.GreenLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.GreenLabel.Location = new System.Drawing.Point(37, 32);
     this.GreenLabel.Name = "GreenLabel";
     this.GreenLabel.Size = new System.Drawing.Size(121, 25);
     this.GreenLabel.TabIndex = 2;
     this.GreenLabel.Text = "Co-Resident";
     this.GreenLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.ProgressLabel);
     this.groupBox1.Controls.Add(this.ProgressSpinnerPictureBox);
     this.groupBox1.Controls.Add(this.clockLabel);
     this.groupBox1.Location = new System.Drawing.Point(749, 5);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(220, 82);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     //
     // ProgressLabel
     //
     this.ProgressLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ProgressLabel.Location = new System.Drawing.Point(54, 16);
     this.ProgressLabel.Name = "ProgressLabel";
     this.ProgressLabel.Size = new System.Drawing.Size(160, 58);
     this.ProgressLabel.TabIndex = 2;
     this.ProgressLabel.Text = "Progress Label";
     this.ProgressLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ProgressSpinnerPictureBox
     //
     this.ProgressSpinnerPictureBox.Image = global::COWE.Client.Properties.Resources.fedora_spinner;
     this.ProgressSpinnerPictureBox.InitialImage = null;
     this.ProgressSpinnerPictureBox.Location = new System.Drawing.Point(10, 29);
     this.ProgressSpinnerPictureBox.Name = "ProgressSpinnerPictureBox";
     this.ProgressSpinnerPictureBox.Size = new System.Drawing.Size(38, 31);
     this.ProgressSpinnerPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.ProgressSpinnerPictureBox.TabIndex = 1;
     this.ProgressSpinnerPictureBox.TabStop = false;
     //
     // clockLabel
     //
     this.clockLabel.Location = new System.Drawing.Point(29, 26);
     this.clockLabel.Name = "clockLabel";
     this.clockLabel.Size = new System.Drawing.Size(172, 31);
     this.clockLabel.TabIndex = 0;
     this.clockLabel.Text = "Clock";
     this.clockLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // AddDeleteFlooderGroupBox
     //
     this.AddDeleteFlooderGroupBox.Controls.Add(this.DeleteFlooderButton);
     this.AddDeleteFlooderGroupBox.Controls.Add(this.AddFlooderButton);
     this.AddDeleteFlooderGroupBox.Location = new System.Drawing.Point(11, 5);
     this.AddDeleteFlooderGroupBox.Name = "AddDeleteFlooderGroupBox";
     this.AddDeleteFlooderGroupBox.Size = new System.Drawing.Size(220, 82);
     this.AddDeleteFlooderGroupBox.TabIndex = 7;
     this.AddDeleteFlooderGroupBox.TabStop = false;
     //
     // DeleteFlooderButton
     //
     this.DeleteFlooderButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DeleteFlooderButton.Location = new System.Drawing.Point(39, 47);
     this.DeleteFlooderButton.Name = "DeleteFlooderButton";
     this.DeleteFlooderButton.Size = new System.Drawing.Size(139, 27);
     this.DeleteFlooderButton.TabIndex = 7;
     this.DeleteFlooderButton.Text = "Delete Flooder";
     this.DeleteFlooderButton.UseVisualStyleBackColor = true;
     this.DeleteFlooderButton.Click += new System.EventHandler(this.DeleteFlooderButton_Click);
     //
     // AddFlooderButton
     //
     this.AddFlooderButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.AddFlooderButton.Location = new System.Drawing.Point(39, 13);
     this.AddFlooderButton.Name = "AddFlooderButton";
     this.AddFlooderButton.Size = new System.Drawing.Size(139, 27);
     this.AddFlooderButton.TabIndex = 6;
     this.AddFlooderButton.Text = "Add Flooder";
     this.AddFlooderButton.UseVisualStyleBackColor = true;
     this.AddFlooderButton.Click += new System.EventHandler(this.AddFlooderButton_Click);
     //
     // mainPanel
     //
     this.mainPanel.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.mainPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.mainPanel.Controls.Add(this.ProcessCaptureDataButton);
     this.mainPanel.Controls.Add(this.bottonPanel);
     this.mainPanel.Controls.Add(this.groupBox2);
     this.mainPanel.Controls.Add(this.ClockButton);
     this.mainPanel.Controls.Add(this.FlooderStatusDataGridView);
     this.mainPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.mainPanel.Location = new System.Drawing.Point(3, 3);
     this.mainPanel.Name = "mainPanel";
     this.mainPanel.Size = new System.Drawing.Size(996, 536);
     this.mainPanel.TabIndex = 2;
     //
     // ProcessCaptureDataButton
     //
     this.ProcessCaptureDataButton.Location = new System.Drawing.Point(902, 403);
     this.ProcessCaptureDataButton.Name = "ProcessCaptureDataButton";
     this.ProcessCaptureDataButton.Size = new System.Drawing.Size(75, 23);
     this.ProcessCaptureDataButton.TabIndex = 12;
     this.ProcessCaptureDataButton.Text = "Process";
     this.ProcessCaptureDataButton.UseVisualStyleBackColor = true;
     this.ProcessCaptureDataButton.Click += new System.EventHandler(this.ProcessCaptureDataButton_Click);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.FlooderTimerIntervalGroupBox);
     this.groupBox2.Controls.Add(this.FlooderTargetGroupBox);
     this.groupBox2.Controls.Add(this.DatabaseResetGroupBox);
     this.groupBox2.Controls.Add(this.ParseCaptureFilesServiceGroupBox);
     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(23, 5);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(942, 95);
     this.groupBox2.TabIndex = 11;
     this.groupBox2.TabStop = false;
     //
     // FlooderTimerIntervalGroupBox
     //
     this.FlooderTimerIntervalGroupBox.Controls.Add(this.FlooderIntervalTextBox);
     this.FlooderTimerIntervalGroupBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FlooderTimerIntervalGroupBox.Location = new System.Drawing.Point(275, 24);
     this.FlooderTimerIntervalGroupBox.Name = "FlooderTimerIntervalGroupBox";
     this.FlooderTimerIntervalGroupBox.Size = new System.Drawing.Size(132, 63);
     this.FlooderTimerIntervalGroupBox.TabIndex = 8;
     this.FlooderTimerIntervalGroupBox.TabStop = false;
     this.FlooderTimerIntervalGroupBox.Text = "Flooder Interval (sec)";
     //
     // FlooderIntervalTextBox
     //
     this.FlooderIntervalTextBox.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.FlooderIntervalTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FlooderIntervalTextBox.Location = new System.Drawing.Point(31, 23);
     this.FlooderIntervalTextBox.Name = "FlooderIntervalTextBox";
     this.FlooderIntervalTextBox.Size = new System.Drawing.Size(66, 26);
     this.FlooderIntervalTextBox.TabIndex = 6;
     this.FlooderIntervalTextBox.Text = "120";
     this.FlooderIntervalTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // FlooderTargetGroupBox
     //
     this.FlooderTargetGroupBox.Controls.Add(this.TargetIpAddressTextBox);
     this.FlooderTargetGroupBox.Controls.Add(this.TargetPortTextBox);
     this.FlooderTargetGroupBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FlooderTargetGroupBox.Location = new System.Drawing.Point(23, 24);
     this.FlooderTargetGroupBox.Name = "FlooderTargetGroupBox";
     this.FlooderTargetGroupBox.Size = new System.Drawing.Size(246, 63);
     this.FlooderTargetGroupBox.TabIndex = 9;
     this.FlooderTargetGroupBox.TabStop = false;
     this.FlooderTargetGroupBox.Text = "Target (Server) - IP Address and Port Number";
     //
     // TargetIpAddressTextBox
     //
     this.TargetIpAddressTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TargetIpAddressTextBox.Location = new System.Drawing.Point(14, 23);
     this.TargetIpAddressTextBox.Name = "TargetIpAddressTextBox";
     this.TargetIpAddressTextBox.Size = new System.Drawing.Size(138, 26);
     this.TargetIpAddressTextBox.TabIndex = 2;
     this.TargetIpAddressTextBox.Text = "255.255.255.255";
     this.TargetIpAddressTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // TargetPortTextBox
     //
     this.TargetPortTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TargetPortTextBox.Location = new System.Drawing.Point(165, 23);
     this.TargetPortTextBox.Name = "TargetPortTextBox";
     this.TargetPortTextBox.Size = new System.Drawing.Size(66, 26);
     this.TargetPortTextBox.TabIndex = 3;
     this.TargetPortTextBox.Text = "65536";
     this.TargetPortTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // DatabaseResetGroupBox
     //
     this.DatabaseResetGroupBox.Controls.Add(this.DatabaseResetCheckBox);
     this.DatabaseResetGroupBox.Location = new System.Drawing.Point(413, 24);
     this.DatabaseResetGroupBox.Name = "DatabaseResetGroupBox";
     this.DatabaseResetGroupBox.Size = new System.Drawing.Size(234, 63);
     this.DatabaseResetGroupBox.TabIndex = 10;
     this.DatabaseResetGroupBox.TabStop = false;
     this.DatabaseResetGroupBox.Text = "Database Reset /  Purge Old Files";
     //
     // DatabaseResetCheckBox
     //
     this.DatabaseResetCheckBox.AutoSize = true;
     this.DatabaseResetCheckBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DatabaseResetCheckBox.Location = new System.Drawing.Point(9, 25);
     this.DatabaseResetCheckBox.Name = "DatabaseResetCheckBox";
     this.DatabaseResetCheckBox.Size = new System.Drawing.Size(213, 24);
     this.DatabaseResetCheckBox.TabIndex = 0;
     this.DatabaseResetCheckBox.Text = "Reset Database and Files";
     this.DatabaseResetCheckBox.UseVisualStyleBackColor = true;
     //
     // ParseCaptureFilesServiceGroupBox
     //
     this.ParseCaptureFilesServiceGroupBox.Controls.Add(this.StartParseFilesServiceButton);
     this.ParseCaptureFilesServiceGroupBox.Controls.Add(this.ParseFilesServiceStatusLabel);
     this.ParseCaptureFilesServiceGroupBox.Location = new System.Drawing.Point(653, 24);
     this.ParseCaptureFilesServiceGroupBox.Name = "ParseCaptureFilesServiceGroupBox";
     this.ParseCaptureFilesServiceGroupBox.Size = new System.Drawing.Size(266, 63);
     this.ParseCaptureFilesServiceGroupBox.TabIndex = 9;
     this.ParseCaptureFilesServiceGroupBox.TabStop = false;
     this.ParseCaptureFilesServiceGroupBox.Text = "Parse Capture Files Service | Start | Stop | Status";
     //
     // StartParseFilesServiceButton
     //
     this.StartParseFilesServiceButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.StartParseFilesServiceButton.Location = new System.Drawing.Point(22, 21);
     this.StartParseFilesServiceButton.Name = "StartParseFilesServiceButton";
     this.StartParseFilesServiceButton.Size = new System.Drawing.Size(85, 30);
     this.StartParseFilesServiceButton.TabIndex = 8;
     this.StartParseFilesServiceButton.Text = "Start";
     this.StartParseFilesServiceButton.UseVisualStyleBackColor = true;
     this.StartParseFilesServiceButton.Click += new System.EventHandler(this.StartParseFilesServiceButton_Click);
     //
     // ParseFilesServiceStatusLabel
     //
     this.ParseFilesServiceStatusLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ParseFilesServiceStatusLabel.Location = new System.Drawing.Point(128, 25);
     this.ParseFilesServiceStatusLabel.Name = "ParseFilesServiceStatusLabel";
     this.ParseFilesServiceStatusLabel.Size = new System.Drawing.Size(100, 23);
     this.ParseFilesServiceStatusLabel.TabIndex = 0;
     this.ParseFilesServiceStatusLabel.Text = "Status";
     this.ParseFilesServiceStatusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ClockButton
     //
     this.ClockButton.Location = new System.Drawing.Point(902, 356);
     this.ClockButton.Name = "ClockButton";
     this.ClockButton.Size = new System.Drawing.Size(75, 40);
     this.ClockButton.TabIndex = 10;
     this.ClockButton.Text = "Start Clock";
     this.ClockButton.UseVisualStyleBackColor = true;
     this.ClockButton.Click += new System.EventHandler(this.ClockButton_Click);
     //
     // FlooderStatusDataGridView
     //
     this.FlooderStatusDataGridView.AllowUserToAddRows = false;
     this.FlooderStatusDataGridView.AllowUserToDeleteRows = false;
     this.FlooderStatusDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.FlooderStatusDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.SelectFlooder,
     this.Pid,
     this.Flooder,
     this.Port,
     this.FlooderTarget,
     this.RunTime,
     this.Status,
     this.FlooderControl});
     this.FlooderStatusDataGridView.Location = new System.Drawing.Point(68, 116);
     this.FlooderStatusDataGridView.Name = "FlooderStatusDataGridView";
     this.FlooderStatusDataGridView.ReadOnly = true;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FlooderStatusDataGridView.RowsDefaultCellStyle = dataGridViewCellStyle2;
     this.FlooderStatusDataGridView.Size = new System.Drawing.Size(887, 153);
     this.FlooderStatusDataGridView.TabIndex = 0;
     this.FlooderStatusDataGridView.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.FlooderStatusDataGridView_CellContentClick);
     //
     // SelectFlooder
     //
     this.SelectFlooder.HeaderText = "";
     this.SelectFlooder.MinimumWidth = 30;
     this.SelectFlooder.Name = "SelectFlooder";
     this.SelectFlooder.ReadOnly = true;
     this.SelectFlooder.Width = 30;
     //
     // Pid
     //
     this.Pid.HeaderText = "PID";
     this.Pid.MinimumWidth = 60;
     this.Pid.Name = "Pid";
     this.Pid.ReadOnly = true;
     this.Pid.Width = 60;
     //
     // Flooder
     //
     this.Flooder.HeaderText = "Flooder";
     this.Flooder.MinimumWidth = 150;
     this.Flooder.Name = "Flooder";
     this.Flooder.ReadOnly = true;
     this.Flooder.ToolTipText = "IP address";
     this.Flooder.Width = 150;
     //
     // Port
     //
     this.Port.HeaderText = "Port";
     this.Port.MinimumWidth = 80;
     this.Port.Name = "Port";
     this.Port.ReadOnly = true;
     this.Port.Width = 80;
     //
     // FlooderTarget
     //
     this.FlooderTarget.HeaderText = "Destination";
     this.FlooderTarget.MinimumWidth = 150;
     this.FlooderTarget.Name = "FlooderTarget";
     this.FlooderTarget.ReadOnly = true;
     this.FlooderTarget.Width = 150;
     //
     // RunTime
     //
     this.RunTime.HeaderText = "Run Time (sec)";
     this.RunTime.Name = "RunTime";
     this.RunTime.ReadOnly = true;
     //
     // Status
     //
     this.Status.HeaderText = "Status";
     this.Status.MinimumWidth = 122;
     this.Status.Name = "Status";
     this.Status.ReadOnly = true;
     this.Status.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.Status.Width = 122;
     //
     // FlooderControl
     //
     this.FlooderControl.HeaderText = "";
     this.FlooderControl.MinimumWidth = 100;
     this.FlooderControl.Name = "FlooderControl";
     this.FlooderControl.ReadOnly = true;
     this.FlooderControl.Text = "Start";
     this.FlooderControl.UseColumnTextForButtonValue = true;
     //
     // ClientTabControl
     //
     this.ClientTabControl.Controls.Add(this.FlooderTabPage);
     this.ClientTabControl.Controls.Add(this.AnalysisTabPage);
     this.ClientTabControl.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ClientTabControl.Location = new System.Drawing.Point(1, 137);
     this.ClientTabControl.Name = "ClientTabControl";
     this.ClientTabControl.SelectedIndex = 0;
     this.ClientTabControl.Size = new System.Drawing.Size(1010, 571);
     this.ClientTabControl.TabIndex = 3;
     this.ClientTabControl.Selected += new System.Windows.Forms.TabControlEventHandler(this.ClientTabControl_Selected);
     //
     // FlooderTabPage
     //
     this.FlooderTabPage.BackColor = System.Drawing.Color.White;
     this.FlooderTabPage.Controls.Add(this.mainPanel);
     this.FlooderTabPage.Location = new System.Drawing.Point(4, 25);
     this.FlooderTabPage.Name = "FlooderTabPage";
     this.FlooderTabPage.Padding = new System.Windows.Forms.Padding(3);
     this.FlooderTabPage.Size = new System.Drawing.Size(1002, 542);
     this.FlooderTabPage.TabIndex = 0;
     this.FlooderTabPage.Text = "Flooder";
     //
     // AnalysisTabPage
     //
     this.AnalysisTabPage.Controls.Add(this.AnalysisMainPanel);
     this.AnalysisTabPage.Location = new System.Drawing.Point(4, 25);
     this.AnalysisTabPage.Name = "AnalysisTabPage";
     this.AnalysisTabPage.Padding = new System.Windows.Forms.Padding(3);
     this.AnalysisTabPage.Size = new System.Drawing.Size(1002, 542);
     this.AnalysisTabPage.TabIndex = 1;
     this.AnalysisTabPage.Text = "Analysis";
     this.AnalysisTabPage.UseVisualStyleBackColor = true;
     //
     // AnalysisMainPanel
     //
     this.AnalysisMainPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.AnalysisMainPanel.Location = new System.Drawing.Point(3, 3);
     this.AnalysisMainPanel.Name = "AnalysisMainPanel";
     this.AnalysisMainPanel.Size = new System.Drawing.Size(996, 536);
     this.AnalysisMainPanel.TabIndex = 0;
     //
     // startToolStripMenuItem
     //
     this.startToolStripMenuItem.Name = "startToolStripMenuItem";
     this.startToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.startToolStripMenuItem.Text = "Start";
     this.startToolStripMenuItem.Click += new System.EventHandler(this.startToolStripMenuItem_Click);
     //
     // stopToolStripMenuItem
     //
     this.stopToolStripMenuItem.Name = "stopToolStripMenuItem";
     this.stopToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.stopToolStripMenuItem.Text = "Stop";
     this.stopToolStripMenuItem.Click += new System.EventHandler(this.stopToolStripMenuItem_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(149, 6);
     //
     // CientStatusStrip
     //
     this.CientStatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.ClientStatusToolStripStatusLabel,
     this.ClientStatusToolStripProgressBar});
     this.CientStatusStrip.Location = new System.Drawing.Point(0, 710);
     this.CientStatusStrip.Name = "CientStatusStrip";
     this.CientStatusStrip.Size = new System.Drawing.Size(1013, 22);
     this.CientStatusStrip.TabIndex = 4;
     this.CientStatusStrip.Text = "statusStrip1";
     //
     // ClientStatusToolStripStatusLabel
     //
     this.ClientStatusToolStripStatusLabel.Name = "ClientStatusToolStripStatusLabel";
     this.ClientStatusToolStripStatusLabel.Size = new System.Drawing.Size(178, 17);
     this.ClientStatusToolStripStatusLabel.Text = "ClientStatusToolStripStatusLabel";
     //
     // ClientStatusToolStripProgressBar
     //
     this.ClientStatusToolStripProgressBar.Name = "ClientStatusToolStripProgressBar";
     this.ClientStatusToolStripProgressBar.Size = new System.Drawing.Size(150, 16);
     //
     // Client
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1013, 732);
     this.Controls.Add(this.CientStatusStrip);
     this.Controls.Add(this.ClientTabControl);
     this.Controls.Add(this.topPanel);
     this.MainMenuStrip = this.menuStrip1;
     this.MaximumSize = new System.Drawing.Size(1029, 770);
     this.MinimumSize = new System.Drawing.Size(1029, 770);
     this.Name = "Client";
     this.Text = "Co-Residency Probe (Client)";
     this.Load += new System.EventHandler(this.Client_Load);
     this.topPanel.ResumeLayout(false);
     this.topPanel.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.bottonPanel.ResumeLayout(false);
     this.FlooderStatusIndicatorsGroupBox.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ProgressSpinnerPictureBox)).EndInit();
     this.AddDeleteFlooderGroupBox.ResumeLayout(false);
     this.mainPanel.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.FlooderTimerIntervalGroupBox.ResumeLayout(false);
     this.FlooderTimerIntervalGroupBox.PerformLayout();
     this.FlooderTargetGroupBox.ResumeLayout(false);
     this.FlooderTargetGroupBox.PerformLayout();
     this.DatabaseResetGroupBox.ResumeLayout(false);
     this.DatabaseResetGroupBox.PerformLayout();
     this.ParseCaptureFilesServiceGroupBox.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.FlooderStatusDataGridView)).EndInit();
     this.ClientTabControl.ResumeLayout(false);
     this.FlooderTabPage.ResumeLayout(false);
     this.AnalysisTabPage.ResumeLayout(false);
     this.CientStatusStrip.ResumeLayout(false);
     this.CientStatusStrip.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();
     System.Windows.Forms.ColumnHeader columnHeader3;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ModelCheckingBatchForm));
     System.Windows.Forms.ColumnHeader columnHeader2;
     System.Windows.Forms.ColumnHeader columnHeader1;
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.StatusLabel_Text = new System.Windows.Forms.ToolStripStatusLabel();
     this.ProgressBar = new System.Windows.Forms.ToolStripProgressBar();
     this.ToolTip = new System.Windows.Forms.ToolTip(this.components);
     this.Button_Verify = new System.Windows.Forms.Button();
     this.CheckBox_Verbose = new System.Windows.Forms.CheckBox();
     this.Label_TimeOutAfter = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.Button_RemoveFiles = new System.Windows.Forms.Button();
     this.Button_AddFolder = new System.Windows.Forms.Button();
     this.Button_AddFiles = new System.Windows.Forms.Button();
     this.Button_BrowseOutput = new System.Windows.Forms.Button();
     this.CheckBox_GenerateCounterexample = new System.Windows.Forms.CheckBox();
     this.Button_Clear = new System.Windows.Forms.Button();
     this.Button_GenerateReport = new System.Windows.Forms.Button();
     this.Label_VerificationEngine = new System.Windows.Forms.Label();
     this.Label_AdmissibleBehavior = new System.Windows.Forms.Label();
     this.ImageList = new System.Windows.Forms.ImageList(this.components);
     this.MCTimer = new System.Windows.Forms.Timer(this.components);
     this.GroupBox_Options = new System.Windows.Forms.GroupBox();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.NUD_VerificationEngine = new System.Windows.Forms.NumericUpDown();
     this.NUD_AdmissibleBehavior = new System.Windows.Forms.NumericUpDown();
     this.ComboBox_Modules = new System.Windows.Forms.ComboBox();
     this.NumericUpDown_TimeOut = new System.Windows.Forms.NumericUpDown();
     this.panel2 = new System.Windows.Forms.Panel();
     this.TextBox_Output = new System.Windows.Forms.RichTextBox();
     this.GroupBox_Assertions = new System.Windows.Forms.GroupBox();
     this.ListView_Assertions = new System.Windows.Forms.ListView();
     this.panel1 = new System.Windows.Forms.Panel();
     this.GroupBox_Output = new System.Windows.Forms.GroupBox();
     this.panel3 = new System.Windows.Forms.Panel();
     this.TextBox_OutputFile = new System.Windows.Forms.TextBox();
     columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.statusStrip1.SuspendLayout();
     this.GroupBox_Options.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NUD_VerificationEngine)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NUD_AdmissibleBehavior)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NumericUpDown_TimeOut)).BeginInit();
     this.panel2.SuspendLayout();
     this.GroupBox_Assertions.SuspendLayout();
     this.panel1.SuspendLayout();
     this.GroupBox_Output.SuspendLayout();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // columnHeader3
     //
     resources.ApplyResources(columnHeader3, "columnHeader3");
     //
     // columnHeader2
     //
     resources.ApplyResources(columnHeader2, "columnHeader2");
     //
     // columnHeader1
     //
     resources.ApplyResources(columnHeader1, "columnHeader1");
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.StatusLabel_Text,
     this.ProgressBar});
     this.statusStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     resources.ApplyResources(this.statusStrip1, "statusStrip1");
     this.statusStrip1.Name = "statusStrip1";
     //
     // StatusLabel_Text
     //
     this.StatusLabel_Text.Name = "StatusLabel_Text";
     resources.ApplyResources(this.StatusLabel_Text, "StatusLabel_Text");
     //
     // ProgressBar
     //
     this.ProgressBar.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.ProgressBar.Name = "ProgressBar";
     resources.ApplyResources(this.ProgressBar, "ProgressBar");
     //
     // ToolTip
     //
     this.ToolTip.AutomaticDelay = 1;
     this.ToolTip.AutoPopDelay = 10000;
     this.ToolTip.InitialDelay = 1;
     this.ToolTip.IsBalloon = true;
     this.ToolTip.ReshowDelay = 0;
     this.ToolTip.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
     this.ToolTip.ToolTipTitle = "Information";
     //
     // Button_Verify
     //
     resources.ApplyResources(this.Button_Verify, "Button_Verify");
     this.Button_Verify.Name = "Button_Verify";
     this.ToolTip.SetToolTip(this.Button_Verify, resources.GetString("Button_Verify.ToolTip"));
     this.Button_Verify.UseVisualStyleBackColor = true;
     this.Button_Verify.Click += new System.EventHandler(this.Button_Verify_Click);
     //
     // CheckBox_Verbose
     //
     resources.ApplyResources(this.CheckBox_Verbose, "CheckBox_Verbose");
     this.CheckBox_Verbose.Name = "CheckBox_Verbose";
     this.ToolTip.SetToolTip(this.CheckBox_Verbose, resources.GetString("CheckBox_Verbose.ToolTip"));
     this.CheckBox_Verbose.UseVisualStyleBackColor = true;
     this.CheckBox_Verbose.CheckedChanged += new System.EventHandler(this.CheckBox_Verbose_CheckedChanged);
     //
     // Label_TimeOutAfter
     //
     resources.ApplyResources(this.Label_TimeOutAfter, "Label_TimeOutAfter");
     this.Label_TimeOutAfter.Name = "Label_TimeOutAfter";
     this.ToolTip.SetToolTip(this.Label_TimeOutAfter, resources.GetString("Label_TimeOutAfter.ToolTip"));
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     this.ToolTip.SetToolTip(this.label1, resources.GetString("label1.ToolTip"));
     //
     // Button_RemoveFiles
     //
     resources.ApplyResources(this.Button_RemoveFiles, "Button_RemoveFiles");
     this.Button_RemoveFiles.Name = "Button_RemoveFiles";
     this.ToolTip.SetToolTip(this.Button_RemoveFiles, resources.GetString("Button_RemoveFiles.ToolTip"));
     this.Button_RemoveFiles.UseVisualStyleBackColor = true;
     this.Button_RemoveFiles.Click += new System.EventHandler(this.Button_RemoveFiles_Click);
     //
     // Button_AddFolder
     //
     resources.ApplyResources(this.Button_AddFolder, "Button_AddFolder");
     this.Button_AddFolder.Name = "Button_AddFolder";
     this.ToolTip.SetToolTip(this.Button_AddFolder, resources.GetString("Button_AddFolder.ToolTip"));
     this.Button_AddFolder.UseVisualStyleBackColor = true;
     this.Button_AddFolder.Click += new System.EventHandler(this.Button_AddFolder_Click);
     //
     // Button_AddFiles
     //
     resources.ApplyResources(this.Button_AddFiles, "Button_AddFiles");
     this.Button_AddFiles.Name = "Button_AddFiles";
     this.ToolTip.SetToolTip(this.Button_AddFiles, resources.GetString("Button_AddFiles.ToolTip"));
     this.Button_AddFiles.UseVisualStyleBackColor = true;
     this.Button_AddFiles.Click += new System.EventHandler(this.Button_AddFiles_Click);
     //
     // Button_BrowseOutput
     //
     resources.ApplyResources(this.Button_BrowseOutput, "Button_BrowseOutput");
     this.Button_BrowseOutput.Name = "Button_BrowseOutput";
     this.ToolTip.SetToolTip(this.Button_BrowseOutput, resources.GetString("Button_BrowseOutput.ToolTip"));
     this.Button_BrowseOutput.UseVisualStyleBackColor = true;
     this.Button_BrowseOutput.Click += new System.EventHandler(this.Button_BrowseOutput_Click);
     //
     // CheckBox_GenerateCounterexample
     //
     resources.ApplyResources(this.CheckBox_GenerateCounterexample, "CheckBox_GenerateCounterexample");
     this.CheckBox_GenerateCounterexample.Checked = true;
     this.CheckBox_GenerateCounterexample.CheckState = System.Windows.Forms.CheckState.Checked;
     this.CheckBox_GenerateCounterexample.Name = "CheckBox_GenerateCounterexample";
     this.ToolTip.SetToolTip(this.CheckBox_GenerateCounterexample, resources.GetString("CheckBox_GenerateCounterexample.ToolTip"));
     this.CheckBox_GenerateCounterexample.UseVisualStyleBackColor = true;
     this.CheckBox_GenerateCounterexample.CheckedChanged += new System.EventHandler(this.CheckBox_GenerateCounterexample_CheckedChanged);
     //
     // Button_Clear
     //
     resources.ApplyResources(this.Button_Clear, "Button_Clear");
     this.Button_Clear.Name = "Button_Clear";
     this.ToolTip.SetToolTip(this.Button_Clear, resources.GetString("Button_Clear.ToolTip"));
     this.Button_Clear.UseVisualStyleBackColor = true;
     this.Button_Clear.Click += new System.EventHandler(this.button1_Click);
     //
     // Button_GenerateReport
     //
     resources.ApplyResources(this.Button_GenerateReport, "Button_GenerateReport");
     this.Button_GenerateReport.Name = "Button_GenerateReport";
     this.ToolTip.SetToolTip(this.Button_GenerateReport, resources.GetString("Button_GenerateReport.ToolTip"));
     this.Button_GenerateReport.UseVisualStyleBackColor = true;
     this.Button_GenerateReport.Click += new System.EventHandler(this.Button_GenerateReport_Click);
     //
     // Label_VerificationEngine
     //
     resources.ApplyResources(this.Label_VerificationEngine, "Label_VerificationEngine");
     this.Label_VerificationEngine.Name = "Label_VerificationEngine";
     this.ToolTip.SetToolTip(this.Label_VerificationEngine, resources.GetString("Label_VerificationEngine.ToolTip"));
     //
     // Label_AdmissibleBehavior
     //
     resources.ApplyResources(this.Label_AdmissibleBehavior, "Label_AdmissibleBehavior");
     this.Label_AdmissibleBehavior.Name = "Label_AdmissibleBehavior";
     this.ToolTip.SetToolTip(this.Label_AdmissibleBehavior, resources.GetString("Label_AdmissibleBehavior.ToolTip"));
     //
     // ImageList
     //
     this.ImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ImageList.ImageStream")));
     this.ImageList.TransparentColor = System.Drawing.Color.Transparent;
     this.ImageList.Images.SetKeyName(0, "True");
     this.ImageList.Images.SetKeyName(1, "False");
     this.ImageList.Images.SetKeyName(2, "Unknown");
     this.ImageList.Images.SetKeyName(3, "Prob True");
     //
     // MCTimer
     //
     this.MCTimer.Interval = 1000;
     this.MCTimer.Tick += new System.EventHandler(this.MCTimer_Tick);
     //
     // GroupBox_Options
     //
     this.GroupBox_Options.Controls.Add(this.splitContainer1);
     resources.ApplyResources(this.GroupBox_Options, "GroupBox_Options");
     this.GroupBox_Options.Name = "GroupBox_Options";
     this.GroupBox_Options.TabStop = false;
     //
     // splitContainer1
     //
     resources.ApplyResources(this.splitContainer1, "splitContainer1");
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.NUD_VerificationEngine);
     this.splitContainer1.Panel1.Controls.Add(this.NUD_AdmissibleBehavior);
     this.splitContainer1.Panel1.Controls.Add(this.Label_VerificationEngine);
     this.splitContainer1.Panel1.Controls.Add(this.Label_AdmissibleBehavior);
     this.splitContainer1.Panel1.Controls.Add(this.CheckBox_GenerateCounterexample);
     this.splitContainer1.Panel1.Controls.Add(this.ComboBox_Modules);
     this.splitContainer1.Panel1.Controls.Add(this.label1);
     this.splitContainer1.Panel1.Controls.Add(this.Label_TimeOutAfter);
     this.splitContainer1.Panel1.Controls.Add(this.NumericUpDown_TimeOut);
     this.splitContainer1.Panel1.Controls.Add(this.CheckBox_Verbose);
     this.splitContainer1.Panel2Collapsed = true;
     //
     // NUD_VerificationEngine
     //
     resources.ApplyResources(this.NUD_VerificationEngine, "NUD_VerificationEngine");
     this.NUD_VerificationEngine.Maximum = new decimal(new int[] {
     10000000,
     0,
     0,
     0});
     this.NUD_VerificationEngine.Name = "NUD_VerificationEngine";
     //
     // NUD_AdmissibleBehavior
     //
     resources.ApplyResources(this.NUD_AdmissibleBehavior, "NUD_AdmissibleBehavior");
     this.NUD_AdmissibleBehavior.Maximum = new decimal(new int[] {
     10000000,
     0,
     0,
     0});
     this.NUD_AdmissibleBehavior.Name = "NUD_AdmissibleBehavior";
     //
     // ComboBox_Modules
     //
     this.ComboBox_Modules.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     resources.ApplyResources(this.ComboBox_Modules, "ComboBox_Modules");
     this.ComboBox_Modules.FormattingEnabled = true;
     this.ComboBox_Modules.Name = "ComboBox_Modules";
     //
     // NumericUpDown_TimeOut
     //
     resources.ApplyResources(this.NumericUpDown_TimeOut, "NumericUpDown_TimeOut");
     this.NumericUpDown_TimeOut.Maximum = new decimal(new int[] {
     10000000,
     0,
     0,
     0});
     this.NumericUpDown_TimeOut.Name = "NumericUpDown_TimeOut";
     //
     // panel2
     //
     this.panel2.Controls.Add(this.Button_GenerateReport);
     this.panel2.Controls.Add(this.Button_Verify);
     this.panel2.Controls.Add(this.TextBox_Output);
     resources.ApplyResources(this.panel2, "panel2");
     this.panel2.Name = "panel2";
     //
     // TextBox_Output
     //
     this.TextBox_Output.BackColor = System.Drawing.Color.White;
     resources.ApplyResources(this.TextBox_Output, "TextBox_Output");
     this.TextBox_Output.Name = "TextBox_Output";
     this.TextBox_Output.ReadOnly = true;
     //
     // GroupBox_Assertions
     //
     this.GroupBox_Assertions.Controls.Add(this.ListView_Assertions);
     this.GroupBox_Assertions.Controls.Add(this.panel1);
     resources.ApplyResources(this.GroupBox_Assertions, "GroupBox_Assertions");
     this.GroupBox_Assertions.Name = "GroupBox_Assertions";
     this.GroupBox_Assertions.TabStop = false;
     //
     // ListView_Assertions
     //
     resources.ApplyResources(this.ListView_Assertions, "ListView_Assertions");
     this.ListView_Assertions.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     columnHeader3,
     columnHeader2,
     columnHeader1});
     this.ListView_Assertions.FullRowSelect = true;
     this.ListView_Assertions.GridLines = true;
     this.ListView_Assertions.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
     this.ListView_Assertions.HideSelection = false;
     this.ListView_Assertions.LargeImageList = this.ImageList;
     this.ListView_Assertions.MultiSelect = false;
     this.ListView_Assertions.Name = "ListView_Assertions";
     this.ListView_Assertions.ShowGroups = false;
     this.ListView_Assertions.SmallImageList = this.ImageList;
     this.ListView_Assertions.UseCompatibleStateImageBehavior = false;
     this.ListView_Assertions.View = System.Windows.Forms.View.Details;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.Button_Clear);
     this.panel1.Controls.Add(this.Button_RemoveFiles);
     this.panel1.Controls.Add(this.Button_AddFolder);
     this.panel1.Controls.Add(this.Button_AddFiles);
     resources.ApplyResources(this.panel1, "panel1");
     this.panel1.Name = "panel1";
     //
     // GroupBox_Output
     //
     this.GroupBox_Output.Controls.Add(this.panel3);
     resources.ApplyResources(this.GroupBox_Output, "GroupBox_Output");
     this.GroupBox_Output.Name = "GroupBox_Output";
     this.GroupBox_Output.TabStop = false;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.TextBox_OutputFile);
     this.panel3.Controls.Add(this.Button_BrowseOutput);
     resources.ApplyResources(this.panel3, "panel3");
     this.panel3.Name = "panel3";
     //
     // TextBox_OutputFile
     //
     resources.ApplyResources(this.TextBox_OutputFile, "TextBox_OutputFile");
     this.TextBox_OutputFile.Name = "TextBox_OutputFile";
     //
     // ModelCheckingBatchForm
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.GroupBox_Assertions);
     this.Controls.Add(this.GroupBox_Output);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.GroupBox_Options);
     this.Controls.Add(this.statusStrip1);
     this.Name = "ModelCheckingBatchForm";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ModelCheckingForm_FormClosing);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ModelCheckingForm_FormClosed);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.GroupBox_Options.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.NUD_VerificationEngine)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NUD_AdmissibleBehavior)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NumericUpDown_TimeOut)).EndInit();
     this.panel2.ResumeLayout(false);
     this.GroupBox_Assertions.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.GroupBox_Output.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #45
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainView));
     WeifenLuo.WinFormsUI.Docking.DockPanelSkin dockPanelSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPanelSkin();
     WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin autoHideStripSkin1 = new WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient1 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin dockPaneStripSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient dockPaneStripGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient2 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient2 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient3 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient dockPaneStripToolWindowGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient4 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient5 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient3 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient6 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient7 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.openNewPluginToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.closeAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.openListToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveListToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.reloadXmlToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
     this.recentFilelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteNewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.insertGroupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.insertRecordToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.insertSubrecordToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editSelectedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editHeaderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.addMasterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.expandCollapseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.expandAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.collapseAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.expandBranchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.collapseBranchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.findInRecordsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.findToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.searchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.searchAdvancedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.hexModeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.useNewSubrecordEditorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.lookupFormidsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.uTF8ModeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.useWindowsClipboardToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.noWindowsSoundsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.resetDockingWindowsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.eSMFilterSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.compressionSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.resetSettingsToDefaultsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.languageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.englishToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.czechToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.frenchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.germanToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.italianToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.spanishToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.russianToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.polishToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editStringsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveStringsFilesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveStringsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.reloadStringsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
     this.internalizeStringReferencesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.extractInternalStringsToTableToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.copyReferencedStringsFromMastersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cleanUnusedStringsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.createStubsForMissingStringsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exportStringsToFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.importStringsToFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.spellsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.sanitizeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.stripEDIDsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.findDuplicatedFormIDToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.dumpEDIDListToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cleanEspToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.findNonconformingRecordToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.generateLLXmlToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.makeEsmToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.martigensToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.createRecordStructureXmlToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.mergeRecordsXMLToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.reorderSubrecordsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newFormIDToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newFormIDNoReferenceUpdateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.reduceFormVersionsTo40ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.scriptsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.globalScriptsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.selectionScriptsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editScriptsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.endScriptsToolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.consoleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.outputWindowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.reloadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.OpenModDialog = new System.Windows.Forms.OpenFileDialog();
     this.SaveModDialog = new System.Windows.Forms.SaveFileDialog();
     this.SaveEdidListDialog = new System.Windows.Forms.SaveFileDialog();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusProgressBar = new System.Windows.Forms.ToolStripProgressBar();
     this.toolStripStopProgress = new System.Windows.Forms.ToolStripStatusLabel();
     this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.toolStripIncrFind = new System.Windows.Forms.ToolStrip();
     this.toolStripIncrFindCancel = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrFindText = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripIncrFindTypeFilter = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripIncrFindNext = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrFindPrev = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrFindRestart = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrFindType = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripIncrFindMatch = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrFindExact = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrFindWrapAround = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripIncrFindStatus = new System.Windows.Forms.ToolStripLabel();
     this.toolStripIncrInvalidRec = new System.Windows.Forms.ToolStrip();
     this.toolStripIncrInvalidRecCancel = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrInvalidRecText = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripIncrInvalidRecNext = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrInvalidRecPrev = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrInvalidRecRestart = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripIncrInvalidRecWrapAround = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripIncrInvalidRecStatus = new System.Windows.Forms.ToolStripLabel();
     this.dockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel();
     this.defaultGameSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.menuStrip1.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.toolStripIncrFind.SuspendLayout();
     this.toolStripIncrInvalidRec.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.editToolStripMenuItem,
     this.optionsToolStripMenuItem,
     this.toolsToolStripMenuItem,
     this.spellsToolStripMenuItem,
     this.scriptsToolStripMenuItem});
     resources.ApplyResources(this.menuStrip1, "menuStrip1");
     this.menuStrip1.Name = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.newToolStripMenuItem,
     this.openNewPluginToolStripMenuItem,
     this.saveToolStripMenuItem,
     this.saveAsToolStripMenuItem,
     this.closeToolStripMenuItem,
     this.closeAllToolStripMenuItem,
     this.toolStripSeparator2,
     this.openListToolStripMenuItem,
     this.saveListToolStripMenuItem,
     this.toolStripSeparator3,
     this.reloadXmlToolStripMenuItem,
     this.toolStripMenuItem1,
     this.recentFilelToolStripMenuItem,
     this.toolStripSeparator1,
     this.exitToolStripMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     resources.ApplyResources(this.fileToolStripMenuItem, "fileToolStripMenuItem");
     //
     // newToolStripMenuItem
     //
     this.newToolStripMenuItem.Name = "newToolStripMenuItem";
     resources.ApplyResources(this.newToolStripMenuItem, "newToolStripMenuItem");
     this.newToolStripMenuItem.Click += new System.EventHandler(this.newToolStripMenuItem_Click);
     //
     // openNewPluginToolStripMenuItem
     //
     this.openNewPluginToolStripMenuItem.Name = "openNewPluginToolStripMenuItem";
     resources.ApplyResources(this.openNewPluginToolStripMenuItem, "openNewPluginToolStripMenuItem");
     this.openNewPluginToolStripMenuItem.Click += new System.EventHandler(this.openNewPluginToolStripMenuItem_Click);
     //
     // saveToolStripMenuItem
     //
     this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
     resources.ApplyResources(this.saveToolStripMenuItem, "saveToolStripMenuItem");
     this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
     //
     // saveAsToolStripMenuItem
     //
     this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
     resources.ApplyResources(this.saveAsToolStripMenuItem, "saveAsToolStripMenuItem");
     this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click);
     //
     // closeToolStripMenuItem
     //
     this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
     resources.ApplyResources(this.closeToolStripMenuItem, "closeToolStripMenuItem");
     this.closeToolStripMenuItem.Click += new System.EventHandler(this.closeToolStripMenuItem_Click);
     //
     // closeAllToolStripMenuItem
     //
     this.closeAllToolStripMenuItem.Name = "closeAllToolStripMenuItem";
     resources.ApplyResources(this.closeAllToolStripMenuItem, "closeAllToolStripMenuItem");
     this.closeAllToolStripMenuItem.Click += new System.EventHandler(this.closeAllToolStripMenuItem_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2");
     //
     // openListToolStripMenuItem
     //
     this.openListToolStripMenuItem.Name = "openListToolStripMenuItem";
     resources.ApplyResources(this.openListToolStripMenuItem, "openListToolStripMenuItem");
     this.openListToolStripMenuItem.Click += new System.EventHandler(this.openListToolStripMenuItem_Click);
     //
     // saveListToolStripMenuItem
     //
     this.saveListToolStripMenuItem.Name = "saveListToolStripMenuItem";
     resources.ApplyResources(this.saveListToolStripMenuItem, "saveListToolStripMenuItem");
     this.saveListToolStripMenuItem.Click += new System.EventHandler(this.saveListToolStripMenuItem_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3");
     //
     // reloadXmlToolStripMenuItem
     //
     this.reloadXmlToolStripMenuItem.Name = "reloadXmlToolStripMenuItem";
     resources.ApplyResources(this.reloadXmlToolStripMenuItem, "reloadXmlToolStripMenuItem");
     this.reloadXmlToolStripMenuItem.Click += new System.EventHandler(this.reloadXmlToolStripMenuItem_Click);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     resources.ApplyResources(this.toolStripMenuItem1, "toolStripMenuItem1");
     //
     // recentFilelToolStripMenuItem
     //
     this.recentFilelToolStripMenuItem.Name = "recentFilelToolStripMenuItem";
     resources.ApplyResources(this.recentFilelToolStripMenuItem, "recentFilelToolStripMenuItem");
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem");
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.cutToolStripMenuItem,
     this.copyToolStripMenuItem,
     this.pasteToolStripMenuItem,
     this.pasteNewToolStripMenuItem,
     this.deleteToolStripMenuItem,
     this.insertGroupToolStripMenuItem,
     this.insertRecordToolStripMenuItem,
     this.insertSubrecordToolStripMenuItem,
     this.editSelectedToolStripMenuItem,
     this.editHeaderToolStripMenuItem,
     this.addMasterToolStripMenuItem,
     this.expandCollapseToolStripMenuItem,
     this.findInRecordsToolStripMenuItem,
     this.findToolStripMenuItem,
     this.searchToolStripMenuItem,
     this.searchAdvancedToolStripMenuItem});
     this.editToolStripMenuItem.Name = "editToolStripMenuItem";
     resources.ApplyResources(this.editToolStripMenuItem, "editToolStripMenuItem");
     this.editToolStripMenuItem.DropDownOpening += new System.EventHandler(this.editToolStripMenuItem_DropDownOpening);
     //
     // cutToolStripMenuItem
     //
     resources.ApplyResources(this.cutToolStripMenuItem, "cutToolStripMenuItem");
     this.cutToolStripMenuItem.Name = "cutToolStripMenuItem";
     this.cutToolStripMenuItem.Click += new System.EventHandler(this.cutToolStripMenuItem_Click);
     //
     // copyToolStripMenuItem
     //
     resources.ApplyResources(this.copyToolStripMenuItem, "copyToolStripMenuItem");
     this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
     this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
     //
     // pasteToolStripMenuItem
     //
     resources.ApplyResources(this.pasteToolStripMenuItem, "pasteToolStripMenuItem");
     this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
     this.pasteToolStripMenuItem.Click += new System.EventHandler(this.pasteToolStripMenuItem_Click);
     //
     // pasteNewToolStripMenuItem
     //
     resources.ApplyResources(this.pasteNewToolStripMenuItem, "pasteNewToolStripMenuItem");
     this.pasteNewToolStripMenuItem.Name = "pasteNewToolStripMenuItem";
     this.pasteNewToolStripMenuItem.Click += new System.EventHandler(this.pasteNewToolStripMenuItem_Click);
     //
     // deleteToolStripMenuItem
     //
     resources.ApplyResources(this.deleteToolStripMenuItem, "deleteToolStripMenuItem");
     this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
     //
     // insertGroupToolStripMenuItem
     //
     resources.ApplyResources(this.insertGroupToolStripMenuItem, "insertGroupToolStripMenuItem");
     this.insertGroupToolStripMenuItem.Name = "insertGroupToolStripMenuItem";
     this.insertGroupToolStripMenuItem.Click += new System.EventHandler(this.insertGroupToolStripMenuItem3_Click);
     //
     // insertRecordToolStripMenuItem
     //
     resources.ApplyResources(this.insertRecordToolStripMenuItem, "insertRecordToolStripMenuItem");
     this.insertRecordToolStripMenuItem.Name = "insertRecordToolStripMenuItem";
     this.insertRecordToolStripMenuItem.Click += new System.EventHandler(this.insertRecordToolStripMenuItem_Click);
     //
     // insertSubrecordToolStripMenuItem
     //
     resources.ApplyResources(this.insertSubrecordToolStripMenuItem, "insertSubrecordToolStripMenuItem");
     this.insertSubrecordToolStripMenuItem.Name = "insertSubrecordToolStripMenuItem";
     this.insertSubrecordToolStripMenuItem.Click += new System.EventHandler(this.insertSubrecordToolStripMenuItem_Click);
     //
     // editSelectedToolStripMenuItem
     //
     this.editSelectedToolStripMenuItem.Name = "editSelectedToolStripMenuItem";
     resources.ApplyResources(this.editSelectedToolStripMenuItem, "editSelectedToolStripMenuItem");
     this.editSelectedToolStripMenuItem.Click += new System.EventHandler(this.editSelectedToolStripMenuItem_Click);
     //
     // editHeaderToolStripMenuItem
     //
     this.editHeaderToolStripMenuItem.Name = "editHeaderToolStripMenuItem";
     resources.ApplyResources(this.editHeaderToolStripMenuItem, "editHeaderToolStripMenuItem");
     this.editHeaderToolStripMenuItem.Click += new System.EventHandler(this.editHeaderToolStripMenuItem_Click);
     //
     // addMasterToolStripMenuItem
     //
     this.addMasterToolStripMenuItem.Name = "addMasterToolStripMenuItem";
     resources.ApplyResources(this.addMasterToolStripMenuItem, "addMasterToolStripMenuItem");
     this.addMasterToolStripMenuItem.Click += new System.EventHandler(this.addMasterToolStripMenuItem_Click);
     //
     // expandCollapseToolStripMenuItem
     //
     this.expandCollapseToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.expandAllToolStripMenuItem,
     this.collapseAllToolStripMenuItem,
     this.expandBranchToolStripMenuItem,
     this.collapseBranchToolStripMenuItem});
     this.expandCollapseToolStripMenuItem.Name = "expandCollapseToolStripMenuItem";
     resources.ApplyResources(this.expandCollapseToolStripMenuItem, "expandCollapseToolStripMenuItem");
     //
     // expandAllToolStripMenuItem
     //
     this.expandAllToolStripMenuItem.Name = "expandAllToolStripMenuItem";
     resources.ApplyResources(this.expandAllToolStripMenuItem, "expandAllToolStripMenuItem");
     this.expandAllToolStripMenuItem.Click += new System.EventHandler(this.expandAllToolStripMenuItem_Click);
     //
     // collapseAllToolStripMenuItem
     //
     this.collapseAllToolStripMenuItem.Name = "collapseAllToolStripMenuItem";
     resources.ApplyResources(this.collapseAllToolStripMenuItem, "collapseAllToolStripMenuItem");
     this.collapseAllToolStripMenuItem.Click += new System.EventHandler(this.collapseAllToolStripMenuItem_Click);
     //
     // expandBranchToolStripMenuItem
     //
     this.expandBranchToolStripMenuItem.Name = "expandBranchToolStripMenuItem";
     resources.ApplyResources(this.expandBranchToolStripMenuItem, "expandBranchToolStripMenuItem");
     this.expandBranchToolStripMenuItem.Click += new System.EventHandler(this.expandBranchToolStripMenuItem_Click);
     //
     // collapseBranchToolStripMenuItem
     //
     this.collapseBranchToolStripMenuItem.Name = "collapseBranchToolStripMenuItem";
     resources.ApplyResources(this.collapseBranchToolStripMenuItem, "collapseBranchToolStripMenuItem");
     this.collapseBranchToolStripMenuItem.Click += new System.EventHandler(this.collapseBranchToolStripMenuItem_Click);
     //
     // findInRecordsToolStripMenuItem
     //
     this.findInRecordsToolStripMenuItem.Name = "findInRecordsToolStripMenuItem";
     resources.ApplyResources(this.findInRecordsToolStripMenuItem, "findInRecordsToolStripMenuItem");
     this.findInRecordsToolStripMenuItem.Click += new System.EventHandler(this.findInRecordsToolStripMenuItem_Click);
     //
     // findToolStripMenuItem
     //
     this.findToolStripMenuItem.Name = "findToolStripMenuItem";
     resources.ApplyResources(this.findToolStripMenuItem, "findToolStripMenuItem");
     this.findToolStripMenuItem.Click += new System.EventHandler(this.findToolStripMenuItem_Click);
     //
     // searchToolStripMenuItem
     //
     this.searchToolStripMenuItem.Name = "searchToolStripMenuItem";
     resources.ApplyResources(this.searchToolStripMenuItem, "searchToolStripMenuItem");
     this.searchToolStripMenuItem.Click += new System.EventHandler(this.searchToolStripMenuItem_Click);
     //
     // searchAdvancedToolStripMenuItem
     //
     this.searchAdvancedToolStripMenuItem.Name = "searchAdvancedToolStripMenuItem";
     resources.ApplyResources(this.searchAdvancedToolStripMenuItem, "searchAdvancedToolStripMenuItem");
     this.searchAdvancedToolStripMenuItem.Click += new System.EventHandler(this.searchAdvancedToolStripMenuItem_Click);
     //
     // optionsToolStripMenuItem
     //
     this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.hexModeToolStripMenuItem,
     this.useNewSubrecordEditorToolStripMenuItem,
     this.lookupFormidsToolStripMenuItem,
     this.uTF8ModeToolStripMenuItem,
     this.useWindowsClipboardToolStripMenuItem,
     this.noWindowsSoundsToolStripMenuItem,
     this.resetDockingWindowsToolStripMenuItem,
     this.eSMFilterSettingsToolStripMenuItem,
     this.compressionSettingsToolStripMenuItem,
     this.resetSettingsToDefaultsToolStripMenuItem,
     this.defaultGameSettingsToolStripMenuItem});
     this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
     resources.ApplyResources(this.optionsToolStripMenuItem, "optionsToolStripMenuItem");
     //
     // hexModeToolStripMenuItem
     //
     this.hexModeToolStripMenuItem.Checked = true;
     this.hexModeToolStripMenuItem.CheckOnClick = true;
     this.hexModeToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.hexModeToolStripMenuItem.Name = "hexModeToolStripMenuItem";
     resources.ApplyResources(this.hexModeToolStripMenuItem, "hexModeToolStripMenuItem");
     this.hexModeToolStripMenuItem.Click += new System.EventHandler(this.hexModeToolStripMenuItem_Click);
     //
     // useNewSubrecordEditorToolStripMenuItem
     //
     this.useNewSubrecordEditorToolStripMenuItem.Checked = true;
     this.useNewSubrecordEditorToolStripMenuItem.CheckOnClick = true;
     this.useNewSubrecordEditorToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.useNewSubrecordEditorToolStripMenuItem.Name = "useNewSubrecordEditorToolStripMenuItem";
     resources.ApplyResources(this.useNewSubrecordEditorToolStripMenuItem, "useNewSubrecordEditorToolStripMenuItem");
     this.useNewSubrecordEditorToolStripMenuItem.Click += new System.EventHandler(this.useNewSubrecordEditorToolStripMenuItem_Click);
     //
     // lookupFormidsToolStripMenuItem
     //
     this.lookupFormidsToolStripMenuItem.Checked = true;
     this.lookupFormidsToolStripMenuItem.CheckOnClick = true;
     this.lookupFormidsToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.lookupFormidsToolStripMenuItem.Name = "lookupFormidsToolStripMenuItem";
     resources.ApplyResources(this.lookupFormidsToolStripMenuItem, "lookupFormidsToolStripMenuItem");
     this.lookupFormidsToolStripMenuItem.Click += new System.EventHandler(this.lookupFormidsToolStripMenuItem_Click);
     //
     // uTF8ModeToolStripMenuItem
     //
     this.uTF8ModeToolStripMenuItem.Checked = true;
     this.uTF8ModeToolStripMenuItem.CheckOnClick = true;
     this.uTF8ModeToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.uTF8ModeToolStripMenuItem.Name = "uTF8ModeToolStripMenuItem";
     resources.ApplyResources(this.uTF8ModeToolStripMenuItem, "uTF8ModeToolStripMenuItem");
     this.uTF8ModeToolStripMenuItem.Click += new System.EventHandler(this.uTF8ModeToolStripMenuItem_Click);
     //
     // useWindowsClipboardToolStripMenuItem
     //
     this.useWindowsClipboardToolStripMenuItem.Name = "useWindowsClipboardToolStripMenuItem";
     resources.ApplyResources(this.useWindowsClipboardToolStripMenuItem, "useWindowsClipboardToolStripMenuItem");
     this.useWindowsClipboardToolStripMenuItem.Click += new System.EventHandler(this.useWindowsClipboardToolStripMenuItem_Click);
     //
     // noWindowsSoundsToolStripMenuItem
     //
     this.noWindowsSoundsToolStripMenuItem.Name = "noWindowsSoundsToolStripMenuItem";
     resources.ApplyResources(this.noWindowsSoundsToolStripMenuItem, "noWindowsSoundsToolStripMenuItem");
     this.noWindowsSoundsToolStripMenuItem.Click += new System.EventHandler(this.noWindowsSoundsToolStripMenuItem_Click);
     //
     // resetDockingWindowsToolStripMenuItem
     //
     this.resetDockingWindowsToolStripMenuItem.Name = "resetDockingWindowsToolStripMenuItem";
     resources.ApplyResources(this.resetDockingWindowsToolStripMenuItem, "resetDockingWindowsToolStripMenuItem");
     this.resetDockingWindowsToolStripMenuItem.Click += new System.EventHandler(this.resetDockingWindowsToolStripMenuItem_Click);
     //
     // eSMFilterSettingsToolStripMenuItem
     //
     this.eSMFilterSettingsToolStripMenuItem.Name = "eSMFilterSettingsToolStripMenuItem";
     resources.ApplyResources(this.eSMFilterSettingsToolStripMenuItem, "eSMFilterSettingsToolStripMenuItem");
     this.eSMFilterSettingsToolStripMenuItem.Click += new System.EventHandler(this.eSMFilterSettingsToolStripMenuItem_Click);
     //
     // compressionSettingsToolStripMenuItem
     //
     this.compressionSettingsToolStripMenuItem.Name = "compressionSettingsToolStripMenuItem";
     resources.ApplyResources(this.compressionSettingsToolStripMenuItem, "compressionSettingsToolStripMenuItem");
     this.compressionSettingsToolStripMenuItem.Click += new System.EventHandler(this.compressionSettingsToolStripMenuItem_Click);
     //
     // resetSettingsToDefaultsToolStripMenuItem
     //
     this.resetSettingsToDefaultsToolStripMenuItem.Name = "resetSettingsToDefaultsToolStripMenuItem";
     resources.ApplyResources(this.resetSettingsToDefaultsToolStripMenuItem, "resetSettingsToDefaultsToolStripMenuItem");
     this.resetSettingsToDefaultsToolStripMenuItem.Click += new System.EventHandler(this.resetSettingsToDefaultsToolStripMenuItem_Click);
     //
     // toolsToolStripMenuItem
     //
     this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.languageToolStripMenuItem,
     this.editStringsToolStripMenuItem,
     this.saveStringsFilesToolStripMenuItem,
     this.saveStringsToolStripMenuItem,
     this.reloadStringsToolStripMenuItem,
     this.toolStripMenuItem2,
     this.internalizeStringReferencesToolStripMenuItem,
     this.extractInternalStringsToTableToolStripMenuItem,
     this.copyReferencedStringsFromMastersToolStripMenuItem,
     this.cleanUnusedStringsToolStripMenuItem,
     this.createStubsForMissingStringsToolStripMenuItem,
     this.exportStringsToFileToolStripMenuItem,
     this.importStringsToFileToolStripMenuItem});
     this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
     resources.ApplyResources(this.toolsToolStripMenuItem, "toolsToolStripMenuItem");
     this.toolsToolStripMenuItem.DropDownOpening += new System.EventHandler(this.toolsToolStripMenuItem_DropDownOpening);
     //
     // languageToolStripMenuItem
     //
     this.languageToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.englishToolStripMenuItem,
     this.czechToolStripMenuItem,
     this.frenchToolStripMenuItem,
     this.germanToolStripMenuItem,
     this.italianToolStripMenuItem,
     this.spanishToolStripMenuItem,
     this.russianToolStripMenuItem,
     this.polishToolStripMenuItem});
     this.languageToolStripMenuItem.Name = "languageToolStripMenuItem";
     resources.ApplyResources(this.languageToolStripMenuItem, "languageToolStripMenuItem");
     this.languageToolStripMenuItem.DropDownOpening += new System.EventHandler(this.languageToolStripMenuItem_DropDownOpening);
     this.languageToolStripMenuItem.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.languageToolStripMenuItem_DropDownItemClicked);
     //
     // englishToolStripMenuItem
     //
     this.englishToolStripMenuItem.Name = "englishToolStripMenuItem";
     resources.ApplyResources(this.englishToolStripMenuItem, "englishToolStripMenuItem");
     //
     // czechToolStripMenuItem
     //
     this.czechToolStripMenuItem.Name = "czechToolStripMenuItem";
     resources.ApplyResources(this.czechToolStripMenuItem, "czechToolStripMenuItem");
     //
     // frenchToolStripMenuItem
     //
     this.frenchToolStripMenuItem.Name = "frenchToolStripMenuItem";
     resources.ApplyResources(this.frenchToolStripMenuItem, "frenchToolStripMenuItem");
     //
     // germanToolStripMenuItem
     //
     this.germanToolStripMenuItem.Name = "germanToolStripMenuItem";
     resources.ApplyResources(this.germanToolStripMenuItem, "germanToolStripMenuItem");
     //
     // italianToolStripMenuItem
     //
     this.italianToolStripMenuItem.Name = "italianToolStripMenuItem";
     resources.ApplyResources(this.italianToolStripMenuItem, "italianToolStripMenuItem");
     //
     // spanishToolStripMenuItem
     //
     this.spanishToolStripMenuItem.Name = "spanishToolStripMenuItem";
     resources.ApplyResources(this.spanishToolStripMenuItem, "spanishToolStripMenuItem");
     //
     // russianToolStripMenuItem
     //
     this.russianToolStripMenuItem.Name = "russianToolStripMenuItem";
     resources.ApplyResources(this.russianToolStripMenuItem, "russianToolStripMenuItem");
     //
     // polishToolStripMenuItem
     //
     this.polishToolStripMenuItem.Name = "polishToolStripMenuItem";
     resources.ApplyResources(this.polishToolStripMenuItem, "polishToolStripMenuItem");
     //
     // editStringsToolStripMenuItem
     //
     this.editStringsToolStripMenuItem.Name = "editStringsToolStripMenuItem";
     resources.ApplyResources(this.editStringsToolStripMenuItem, "editStringsToolStripMenuItem");
     this.editStringsToolStripMenuItem.Click += new System.EventHandler(this.editStringsToolStripMenuItem_Click);
     //
     // saveStringsFilesToolStripMenuItem
     //
     this.saveStringsFilesToolStripMenuItem.Name = "saveStringsFilesToolStripMenuItem";
     resources.ApplyResources(this.saveStringsFilesToolStripMenuItem, "saveStringsFilesToolStripMenuItem");
     this.saveStringsFilesToolStripMenuItem.Click += new System.EventHandler(this.saveStringsFilesToolStripMenuItem_Click);
     //
     // saveStringsToolStripMenuItem
     //
     this.saveStringsToolStripMenuItem.Name = "saveStringsToolStripMenuItem";
     resources.ApplyResources(this.saveStringsToolStripMenuItem, "saveStringsToolStripMenuItem");
     this.saveStringsToolStripMenuItem.Click += new System.EventHandler(this.saveStringsToolStripMenuItem_Click);
     //
     // reloadStringsToolStripMenuItem
     //
     this.reloadStringsToolStripMenuItem.Name = "reloadStringsToolStripMenuItem";
     resources.ApplyResources(this.reloadStringsToolStripMenuItem, "reloadStringsToolStripMenuItem");
     this.reloadStringsToolStripMenuItem.Click += new System.EventHandler(this.reloadStringsToolStripMenuItem_Click);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     resources.ApplyResources(this.toolStripMenuItem2, "toolStripMenuItem2");
     //
     // internalizeStringReferencesToolStripMenuItem
     //
     this.internalizeStringReferencesToolStripMenuItem.Name = "internalizeStringReferencesToolStripMenuItem";
     resources.ApplyResources(this.internalizeStringReferencesToolStripMenuItem, "internalizeStringReferencesToolStripMenuItem");
     this.internalizeStringReferencesToolStripMenuItem.Click += new System.EventHandler(this.internalizeStringReferencesToolStripMenuItem_Click);
     //
     // extractInternalStringsToTableToolStripMenuItem
     //
     this.extractInternalStringsToTableToolStripMenuItem.Name = "extractInternalStringsToTableToolStripMenuItem";
     resources.ApplyResources(this.extractInternalStringsToTableToolStripMenuItem, "extractInternalStringsToTableToolStripMenuItem");
     this.extractInternalStringsToTableToolStripMenuItem.Click += new System.EventHandler(this.extractInternalStringsToTableToolStripMenuItem_Click);
     //
     // copyReferencedStringsFromMastersToolStripMenuItem
     //
     this.copyReferencedStringsFromMastersToolStripMenuItem.Name = "copyReferencedStringsFromMastersToolStripMenuItem";
     resources.ApplyResources(this.copyReferencedStringsFromMastersToolStripMenuItem, "copyReferencedStringsFromMastersToolStripMenuItem");
     this.copyReferencedStringsFromMastersToolStripMenuItem.Click += new System.EventHandler(this.copyReferencedStringsFromMastersToolStripMenuItem_Click);
     //
     // cleanUnusedStringsToolStripMenuItem
     //
     this.cleanUnusedStringsToolStripMenuItem.Name = "cleanUnusedStringsToolStripMenuItem";
     resources.ApplyResources(this.cleanUnusedStringsToolStripMenuItem, "cleanUnusedStringsToolStripMenuItem");
     this.cleanUnusedStringsToolStripMenuItem.Click += new System.EventHandler(this.cleanUnusedStringsToolStripMenuItem_Click);
     //
     // createStubsForMissingStringsToolStripMenuItem
     //
     this.createStubsForMissingStringsToolStripMenuItem.Name = "createStubsForMissingStringsToolStripMenuItem";
     resources.ApplyResources(this.createStubsForMissingStringsToolStripMenuItem, "createStubsForMissingStringsToolStripMenuItem");
     this.createStubsForMissingStringsToolStripMenuItem.Click += new System.EventHandler(this.createStubsForMissingStringsToolStripMenuItem_Click);
     //
     // exportStringsToFileToolStripMenuItem
     //
     this.exportStringsToFileToolStripMenuItem.Name = "exportStringsToFileToolStripMenuItem";
     resources.ApplyResources(this.exportStringsToFileToolStripMenuItem, "exportStringsToFileToolStripMenuItem");
     this.exportStringsToFileToolStripMenuItem.Click += new System.EventHandler(this.exportStringsToFileToolStripMenuItem_Click);
     //
     // importStringsToFileToolStripMenuItem
     //
     this.importStringsToFileToolStripMenuItem.Name = "importStringsToFileToolStripMenuItem";
     resources.ApplyResources(this.importStringsToFileToolStripMenuItem, "importStringsToFileToolStripMenuItem");
     this.importStringsToFileToolStripMenuItem.Click += new System.EventHandler(this.importStringsToFileToolStripMenuItem_Click);
     //
     // spellsToolStripMenuItem
     //
     this.spellsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.sanitizeToolStripMenuItem,
     this.stripEDIDsToolStripMenuItem,
     this.findDuplicatedFormIDToolStripMenuItem,
     this.dumpEDIDListToolStripMenuItem,
     this.cleanEspToolStripMenuItem,
     this.findNonconformingRecordToolStripMenuItem,
     this.generateLLXmlToolStripMenuItem,
     this.makeEsmToolStripMenuItem,
     this.martigensToolStripMenuItem,
     this.createRecordStructureXmlToolStripMenuItem,
     this.mergeRecordsXMLToolStripMenuItem,
     this.reorderSubrecordsToolStripMenuItem,
     this.newFormIDToolStripMenuItem,
     this.newFormIDNoReferenceUpdateToolStripMenuItem,
     this.reduceFormVersionsTo40ToolStripMenuItem});
     this.spellsToolStripMenuItem.Name = "spellsToolStripMenuItem";
     resources.ApplyResources(this.spellsToolStripMenuItem, "spellsToolStripMenuItem");
     //
     // sanitizeToolStripMenuItem
     //
     this.sanitizeToolStripMenuItem.AutoToolTip = true;
     this.sanitizeToolStripMenuItem.Name = "sanitizeToolStripMenuItem";
     resources.ApplyResources(this.sanitizeToolStripMenuItem, "sanitizeToolStripMenuItem");
     this.sanitizeToolStripMenuItem.Click += new System.EventHandler(this.sanitizeToolStripMenuItem_Click);
     //
     // stripEDIDsToolStripMenuItem
     //
     this.stripEDIDsToolStripMenuItem.Name = "stripEDIDsToolStripMenuItem";
     resources.ApplyResources(this.stripEDIDsToolStripMenuItem, "stripEDIDsToolStripMenuItem");
     this.stripEDIDsToolStripMenuItem.Click += new System.EventHandler(this.stripEDIDsToolStripMenuItem_Click);
     //
     // findDuplicatedFormIDToolStripMenuItem
     //
     this.findDuplicatedFormIDToolStripMenuItem.AutoToolTip = true;
     this.findDuplicatedFormIDToolStripMenuItem.Name = "findDuplicatedFormIDToolStripMenuItem";
     resources.ApplyResources(this.findDuplicatedFormIDToolStripMenuItem, "findDuplicatedFormIDToolStripMenuItem");
     this.findDuplicatedFormIDToolStripMenuItem.Click += new System.EventHandler(this.findDuplicatedFormIDToolStripMenuItem_Click);
     //
     // dumpEDIDListToolStripMenuItem
     //
     this.dumpEDIDListToolStripMenuItem.Name = "dumpEDIDListToolStripMenuItem";
     resources.ApplyResources(this.dumpEDIDListToolStripMenuItem, "dumpEDIDListToolStripMenuItem");
     this.dumpEDIDListToolStripMenuItem.Click += new System.EventHandler(this.dumpEDIDListToolStripMenuItem_Click);
     //
     // cleanEspToolStripMenuItem
     //
     this.cleanEspToolStripMenuItem.Name = "cleanEspToolStripMenuItem";
     resources.ApplyResources(this.cleanEspToolStripMenuItem, "cleanEspToolStripMenuItem");
     this.cleanEspToolStripMenuItem.Click += new System.EventHandler(this.cleanEspToolStripMenuItem_Click);
     //
     // findNonconformingRecordToolStripMenuItem
     //
     this.findNonconformingRecordToolStripMenuItem.Name = "findNonconformingRecordToolStripMenuItem";
     resources.ApplyResources(this.findNonconformingRecordToolStripMenuItem, "findNonconformingRecordToolStripMenuItem");
     this.findNonconformingRecordToolStripMenuItem.Click += new System.EventHandler(this.findNonconformingRecordToolStripMenuItem_Click);
     //
     // generateLLXmlToolStripMenuItem
     //
     this.generateLLXmlToolStripMenuItem.Name = "generateLLXmlToolStripMenuItem";
     resources.ApplyResources(this.generateLLXmlToolStripMenuItem, "generateLLXmlToolStripMenuItem");
     this.generateLLXmlToolStripMenuItem.Click += new System.EventHandler(this.generateLLXmlToolStripMenuItem_Click);
     //
     // makeEsmToolStripMenuItem
     //
     this.makeEsmToolStripMenuItem.AutoToolTip = true;
     this.makeEsmToolStripMenuItem.Name = "makeEsmToolStripMenuItem";
     resources.ApplyResources(this.makeEsmToolStripMenuItem, "makeEsmToolStripMenuItem");
     this.makeEsmToolStripMenuItem.Click += new System.EventHandler(this.makeEsmToolStripMenuItem_Click);
     //
     // martigensToolStripMenuItem
     //
     this.martigensToolStripMenuItem.Name = "martigensToolStripMenuItem";
     resources.ApplyResources(this.martigensToolStripMenuItem, "martigensToolStripMenuItem");
     this.martigensToolStripMenuItem.Click += new System.EventHandler(this.martigensToolStripMenuItem_Click);
     //
     // createRecordStructureXmlToolStripMenuItem
     //
     this.createRecordStructureXmlToolStripMenuItem.Name = "createRecordStructureXmlToolStripMenuItem";
     resources.ApplyResources(this.createRecordStructureXmlToolStripMenuItem, "createRecordStructureXmlToolStripMenuItem");
     this.createRecordStructureXmlToolStripMenuItem.Click += new System.EventHandler(this.createRecordStructureXmlToolStripMenuItem_Click);
     //
     // mergeRecordsXMLToolStripMenuItem
     //
     this.mergeRecordsXMLToolStripMenuItem.Name = "mergeRecordsXMLToolStripMenuItem";
     resources.ApplyResources(this.mergeRecordsXMLToolStripMenuItem, "mergeRecordsXMLToolStripMenuItem");
     this.mergeRecordsXMLToolStripMenuItem.Click += new System.EventHandler(this.mergeRecordsXMLToolStripMenuItem_Click);
     //
     // reorderSubrecordsToolStripMenuItem
     //
     this.reorderSubrecordsToolStripMenuItem.Name = "reorderSubrecordsToolStripMenuItem";
     resources.ApplyResources(this.reorderSubrecordsToolStripMenuItem, "reorderSubrecordsToolStripMenuItem");
     this.reorderSubrecordsToolStripMenuItem.Click += new System.EventHandler(this.reorderSubrecordsToolStripMenuItem_Click);
     //
     // newFormIDToolStripMenuItem
     //
     this.newFormIDToolStripMenuItem.AutoToolTip = true;
     this.newFormIDToolStripMenuItem.Name = "newFormIDToolStripMenuItem";
     resources.ApplyResources(this.newFormIDToolStripMenuItem, "newFormIDToolStripMenuItem");
     this.newFormIDToolStripMenuItem.Click += new System.EventHandler(this.newFormIDToolStripMenuItem_Click);
     //
     // newFormIDNoReferenceUpdateToolStripMenuItem
     //
     this.newFormIDNoReferenceUpdateToolStripMenuItem.Name = "newFormIDNoReferenceUpdateToolStripMenuItem";
     resources.ApplyResources(this.newFormIDNoReferenceUpdateToolStripMenuItem, "newFormIDNoReferenceUpdateToolStripMenuItem");
     this.newFormIDNoReferenceUpdateToolStripMenuItem.Click += new System.EventHandler(this.newFormIDNoReferenceUpdateToolStripMenuItem_Click);
     //
     // reduceFormVersionsTo40ToolStripMenuItem
     //
     resources.ApplyResources(this.reduceFormVersionsTo40ToolStripMenuItem, "reduceFormVersionsTo40ToolStripMenuItem");
     this.reduceFormVersionsTo40ToolStripMenuItem.Name = "reduceFormVersionsTo40ToolStripMenuItem";
     this.reduceFormVersionsTo40ToolStripMenuItem.Click += new System.EventHandler(this.reduceFormVersionTo40ToolStripMenuItem_Click);
     //
     // scriptsToolStripMenuItem
     //
     this.scriptsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.globalScriptsToolStripMenuItem,
     this.selectionScriptsToolStripMenuItem,
     this.editScriptsToolStripMenuItem,
     this.endScriptsToolStripSeparator,
     this.consoleToolStripMenuItem,
     this.outputWindowToolStripMenuItem,
     this.reloadToolStripMenuItem});
     this.scriptsToolStripMenuItem.Name = "scriptsToolStripMenuItem";
     resources.ApplyResources(this.scriptsToolStripMenuItem, "scriptsToolStripMenuItem");
     this.scriptsToolStripMenuItem.DropDownOpening += new System.EventHandler(this.scriptsToolStripMenuItem_DropDownOpening);
     //
     // globalScriptsToolStripMenuItem
     //
     this.globalScriptsToolStripMenuItem.Name = "globalScriptsToolStripMenuItem";
     resources.ApplyResources(this.globalScriptsToolStripMenuItem, "globalScriptsToolStripMenuItem");
     this.globalScriptsToolStripMenuItem.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.globalScriptsToolStripMenuItem_DropDownItemClicked);
     //
     // selectionScriptsToolStripMenuItem
     //
     this.selectionScriptsToolStripMenuItem.Name = "selectionScriptsToolStripMenuItem";
     resources.ApplyResources(this.selectionScriptsToolStripMenuItem, "selectionScriptsToolStripMenuItem");
     this.selectionScriptsToolStripMenuItem.DropDownOpening += new System.EventHandler(this.selectionScriptsToolStripMenuItem_DropDownOpening);
     this.selectionScriptsToolStripMenuItem.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.selectionScriptsToolStripMenuItem_DropDownItemClicked);
     //
     // editScriptsToolStripMenuItem
     //
     this.editScriptsToolStripMenuItem.Name = "editScriptsToolStripMenuItem";
     resources.ApplyResources(this.editScriptsToolStripMenuItem, "editScriptsToolStripMenuItem");
     this.editScriptsToolStripMenuItem.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.editScriptsToolStripMenuItem_DropDownItemClicked);
     //
     // endScriptsToolStripSeparator
     //
     this.endScriptsToolStripSeparator.Name = "endScriptsToolStripSeparator";
     resources.ApplyResources(this.endScriptsToolStripSeparator, "endScriptsToolStripSeparator");
     //
     // consoleToolStripMenuItem
     //
     this.consoleToolStripMenuItem.Name = "consoleToolStripMenuItem";
     resources.ApplyResources(this.consoleToolStripMenuItem, "consoleToolStripMenuItem");
     this.consoleToolStripMenuItem.Click += new System.EventHandler(this.consoleToolStripMenuItem_Click);
     //
     // outputWindowToolStripMenuItem
     //
     this.outputWindowToolStripMenuItem.Name = "outputWindowToolStripMenuItem";
     resources.ApplyResources(this.outputWindowToolStripMenuItem, "outputWindowToolStripMenuItem");
     this.outputWindowToolStripMenuItem.Click += new System.EventHandler(this.outputWindowToolStripMenuItem_Click);
     //
     // reloadToolStripMenuItem
     //
     this.reloadToolStripMenuItem.Name = "reloadToolStripMenuItem";
     resources.ApplyResources(this.reloadToolStripMenuItem, "reloadToolStripMenuItem");
     this.reloadToolStripMenuItem.Click += new System.EventHandler(this.reloadToolStripMenuItem_Click);
     //
     // OpenModDialog
     //
     resources.ApplyResources(this.OpenModDialog, "OpenModDialog");
     this.OpenModDialog.Multiselect = true;
     this.OpenModDialog.RestoreDirectory = true;
     //
     // SaveModDialog
     //
     this.SaveModDialog.DefaultExt = "esp";
     resources.ApplyResources(this.SaveModDialog, "SaveModDialog");
     this.SaveModDialog.RestoreDirectory = true;
     //
     // SaveEdidListDialog
     //
     this.SaveEdidListDialog.DefaultExt = "txt";
     resources.ApplyResources(this.SaveEdidListDialog, "SaveEdidListDialog");
     this.SaveEdidListDialog.RestoreDirectory = true;
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel,
     this.toolStripStatusProgressBar,
     this.toolStripStopProgress});
     resources.ApplyResources(this.statusStrip1, "statusStrip1");
     this.statusStrip1.Name = "statusStrip1";
     //
     // toolStripStatusLabel
     //
     this.toolStripStatusLabel.Name = "toolStripStatusLabel";
     resources.ApplyResources(this.toolStripStatusLabel, "toolStripStatusLabel");
     this.toolStripStatusLabel.Spring = true;
     //
     // toolStripStatusProgressBar
     //
     this.toolStripStatusProgressBar.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.toolStripStatusProgressBar.Name = "toolStripStatusProgressBar";
     resources.ApplyResources(this.toolStripStatusProgressBar, "toolStripStatusProgressBar");
     //
     // toolStripStopProgress
     //
     this.toolStripStopProgress.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.toolStripStopProgress.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripStopProgress.Image = global::TESVSnip.Properties.Resources.agt_stop;
     resources.ApplyResources(this.toolStripStopProgress, "toolStripStopProgress");
     this.toolStripStopProgress.Name = "toolStripStopProgress";
     this.toolStripStopProgress.Click += new System.EventHandler(this.toolStripStopProgress_Click);
     //
     // backgroundWorker1
     //
     this.backgroundWorker1.WorkerReportsProgress = true;
     this.backgroundWorker1.WorkerSupportsCancellation = true;
     this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
     this.backgroundWorker1.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundWorker1_ProgressChanged);
     this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
     //
     // columnHeader1
     //
     resources.ApplyResources(this.columnHeader1, "columnHeader1");
     //
     // columnHeader2
     //
     resources.ApplyResources(this.columnHeader2, "columnHeader2");
     //
     // toolStripIncrFind
     //
     resources.ApplyResources(this.toolStripIncrFind, "toolStripIncrFind");
     this.toolStripIncrFind.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStripIncrFind.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripIncrFindCancel,
     this.toolStripIncrFindText,
     this.toolStripIncrFindTypeFilter,
     this.toolStripIncrFindNext,
     this.toolStripIncrFindPrev,
     this.toolStripIncrFindRestart,
     this.toolStripIncrFindType,
     this.toolStripIncrFindMatch,
     this.toolStripIncrFindExact,
     this.toolStripIncrFindWrapAround,
     this.toolStripSeparator7,
     this.toolStripIncrFindStatus});
     this.toolStripIncrFind.Name = "toolStripIncrFind";
     this.toolStripIncrFind.TabStop = true;
     this.toolStripIncrFind.VisibleChanged += new System.EventHandler(this.toolStripIncrFind_VisibleChanged);
     //
     // toolStripIncrFindCancel
     //
     this.toolStripIncrFindCancel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripIncrFindCancel.Image = global::TESVSnip.Properties.Resources.delete;
     resources.ApplyResources(this.toolStripIncrFindCancel, "toolStripIncrFindCancel");
     this.toolStripIncrFindCancel.Name = "toolStripIncrFindCancel";
     this.toolStripIncrFindCancel.Click += new System.EventHandler(this.toolStripIncrFindCancel_Click);
     //
     // toolStripIncrFindText
     //
     this.toolStripIncrFindText.AcceptsReturn = true;
     this.toolStripIncrFindText.Name = "toolStripIncrFindText";
     this.toolStripIncrFindText.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     resources.ApplyResources(this.toolStripIncrFindText, "toolStripIncrFindText");
     this.toolStripIncrFindText.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStripIncrFindText_KeyDown);
     this.toolStripIncrFindText.TextChanged += new System.EventHandler(this.toolStripIncrFindText_TextChanged);
     //
     // toolStripIncrFindTypeFilter
     //
     this.toolStripIncrFindTypeFilter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripIncrFindTypeFilter.Items.AddRange(new object[] {
     resources.GetString("toolStripIncrFindTypeFilter.Items"),
     resources.GetString("toolStripIncrFindTypeFilter.Items1")});
     this.toolStripIncrFindTypeFilter.Name = "toolStripIncrFindTypeFilter";
     this.toolStripIncrFindTypeFilter.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     resources.ApplyResources(this.toolStripIncrFindTypeFilter, "toolStripIncrFindTypeFilter");
     this.toolStripIncrFindTypeFilter.SelectedIndexChanged += new System.EventHandler(this.toolStripIncrFindTypeFilter_SelectedIndexChanged);
     this.toolStripIncrFindTypeFilter.VisibleChanged += new System.EventHandler(this.toolStripIncrFindTypeFilter_VisibleChanged);
     //
     // toolStripIncrFindNext
     //
     this.toolStripIncrFindNext.Image = global::TESVSnip.Properties.Resources.down;
     resources.ApplyResources(this.toolStripIncrFindNext, "toolStripIncrFindNext");
     this.toolStripIncrFindNext.Name = "toolStripIncrFindNext";
     this.toolStripIncrFindNext.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     this.toolStripIncrFindNext.Click += new System.EventHandler(this.toolStripIncrFindNext_Click);
     //
     // toolStripIncrFindPrev
     //
     this.toolStripIncrFindPrev.Image = global::TESVSnip.Properties.Resources.up;
     resources.ApplyResources(this.toolStripIncrFindPrev, "toolStripIncrFindPrev");
     this.toolStripIncrFindPrev.Name = "toolStripIncrFindPrev";
     this.toolStripIncrFindPrev.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     this.toolStripIncrFindPrev.Click += new System.EventHandler(this.toolStripIncrFindPrev_Click);
     //
     // toolStripIncrFindRestart
     //
     this.toolStripIncrFindRestart.Image = global::TESVSnip.Properties.Resources.quick_restart;
     resources.ApplyResources(this.toolStripIncrFindRestart, "toolStripIncrFindRestart");
     this.toolStripIncrFindRestart.Name = "toolStripIncrFindRestart";
     this.toolStripIncrFindRestart.Click += new System.EventHandler(this.toolStripIncrFindRestart_Click);
     //
     // toolStripIncrFindType
     //
     this.toolStripIncrFindType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripIncrFindType.Items.AddRange(new object[] {
     resources.GetString("toolStripIncrFindType.Items"),
     resources.GetString("toolStripIncrFindType.Items1")});
     this.toolStripIncrFindType.Name = "toolStripIncrFindType";
     resources.ApplyResources(this.toolStripIncrFindType, "toolStripIncrFindType");
     this.toolStripIncrFindType.SelectedIndexChanged += new System.EventHandler(this.toolStripIncrFindType_SelectedIndexChanged);
     //
     // toolStripIncrFindMatch
     //
     this.toolStripIncrFindMatch.CheckOnClick = true;
     this.toolStripIncrFindMatch.Image = global::TESVSnip.Properties.Resources.emptybox;
     resources.ApplyResources(this.toolStripIncrFindMatch, "toolStripIncrFindMatch");
     this.toolStripIncrFindMatch.Name = "toolStripIncrFindMatch";
     this.toolStripIncrFindMatch.CheckStateChanged += new System.EventHandler(this.toolStripCheck_CheckStateChanged);
     //
     // toolStripIncrFindExact
     //
     this.toolStripIncrFindExact.CheckOnClick = true;
     this.toolStripIncrFindExact.Image = global::TESVSnip.Properties.Resources.emptybox;
     resources.ApplyResources(this.toolStripIncrFindExact, "toolStripIncrFindExact");
     this.toolStripIncrFindExact.Name = "toolStripIncrFindExact";
     this.toolStripIncrFindExact.CheckStateChanged += new System.EventHandler(this.toolStripCheck_CheckStateChanged);
     //
     // toolStripIncrFindWrapAround
     //
     this.toolStripIncrFindWrapAround.CheckOnClick = true;
     this.toolStripIncrFindWrapAround.Image = global::TESVSnip.Properties.Resources.emptybox;
     resources.ApplyResources(this.toolStripIncrFindWrapAround, "toolStripIncrFindWrapAround");
     this.toolStripIncrFindWrapAround.Name = "toolStripIncrFindWrapAround";
     this.toolStripIncrFindWrapAround.CheckStateChanged += new System.EventHandler(this.toolStripCheck_CheckStateChanged);
     //
     // toolStripSeparator7
     //
     this.toolStripSeparator7.Name = "toolStripSeparator7";
     this.toolStripSeparator7.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     resources.ApplyResources(this.toolStripSeparator7, "toolStripSeparator7");
     //
     // toolStripIncrFindStatus
     //
     this.toolStripIncrFindStatus.ForeColor = System.Drawing.Color.Maroon;
     this.toolStripIncrFindStatus.Name = "toolStripIncrFindStatus";
     this.toolStripIncrFindStatus.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     resources.ApplyResources(this.toolStripIncrFindStatus, "toolStripIncrFindStatus");
     //
     // toolStripIncrInvalidRec
     //
     resources.ApplyResources(this.toolStripIncrInvalidRec, "toolStripIncrInvalidRec");
     this.toolStripIncrInvalidRec.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStripIncrInvalidRec.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripIncrInvalidRecCancel,
     this.toolStripIncrInvalidRecText,
     this.toolStripSeparator6,
     this.toolStripIncrInvalidRecNext,
     this.toolStripIncrInvalidRecPrev,
     this.toolStripIncrInvalidRecRestart,
     this.toolStripSeparator4,
     this.toolStripIncrInvalidRecWrapAround,
     this.toolStripSeparator5,
     this.toolStripIncrInvalidRecStatus});
     this.toolStripIncrInvalidRec.Name = "toolStripIncrInvalidRec";
     this.toolStripIncrInvalidRec.TabStop = true;
     this.toolStripIncrInvalidRec.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.toolStripIncrInvalidRec_ItemClicked);
     this.toolStripIncrInvalidRec.VisibleChanged += new System.EventHandler(this.toolStripIncrInvalidRec_VisibleChanged);
     //
     // toolStripIncrInvalidRecCancel
     //
     this.toolStripIncrInvalidRecCancel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripIncrInvalidRecCancel.Image = global::TESVSnip.Properties.Resources.delete;
     resources.ApplyResources(this.toolStripIncrInvalidRecCancel, "toolStripIncrInvalidRecCancel");
     this.toolStripIncrInvalidRecCancel.Name = "toolStripIncrInvalidRecCancel";
     this.toolStripIncrInvalidRecCancel.Click += new System.EventHandler(this.toolStripIncrInvalidRecCancel_Click);
     //
     // toolStripIncrInvalidRecText
     //
     this.toolStripIncrInvalidRecText.Name = "toolStripIncrInvalidRecText";
     resources.ApplyResources(this.toolStripIncrInvalidRecText, "toolStripIncrInvalidRecText");
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     resources.ApplyResources(this.toolStripSeparator6, "toolStripSeparator6");
     //
     // toolStripIncrInvalidRecNext
     //
     this.toolStripIncrInvalidRecNext.Image = global::TESVSnip.Properties.Resources.down;
     resources.ApplyResources(this.toolStripIncrInvalidRecNext, "toolStripIncrInvalidRecNext");
     this.toolStripIncrInvalidRecNext.Name = "toolStripIncrInvalidRecNext";
     this.toolStripIncrInvalidRecNext.Click += new System.EventHandler(this.toolStripIncrInvalidRecNext_Click);
     //
     // toolStripIncrInvalidRecPrev
     //
     this.toolStripIncrInvalidRecPrev.Image = global::TESVSnip.Properties.Resources.up;
     resources.ApplyResources(this.toolStripIncrInvalidRecPrev, "toolStripIncrInvalidRecPrev");
     this.toolStripIncrInvalidRecPrev.Name = "toolStripIncrInvalidRecPrev";
     this.toolStripIncrInvalidRecPrev.Click += new System.EventHandler(this.toolStripIncrInvalidRecPrev_Click);
     //
     // toolStripIncrInvalidRecRestart
     //
     this.toolStripIncrInvalidRecRestart.Image = global::TESVSnip.Properties.Resources.quick_restart;
     resources.ApplyResources(this.toolStripIncrInvalidRecRestart, "toolStripIncrInvalidRecRestart");
     this.toolStripIncrInvalidRecRestart.Name = "toolStripIncrInvalidRecRestart";
     this.toolStripIncrInvalidRecRestart.Click += new System.EventHandler(this.toolStripIncrInvalidRecRestart_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     resources.ApplyResources(this.toolStripSeparator4, "toolStripSeparator4");
     //
     // toolStripIncrInvalidRecWrapAround
     //
     this.toolStripIncrInvalidRecWrapAround.CheckOnClick = true;
     this.toolStripIncrInvalidRecWrapAround.Image = global::TESVSnip.Properties.Resources.emptybox;
     resources.ApplyResources(this.toolStripIncrInvalidRecWrapAround, "toolStripIncrInvalidRecWrapAround");
     this.toolStripIncrInvalidRecWrapAround.Name = "toolStripIncrInvalidRecWrapAround";
     this.toolStripIncrInvalidRecWrapAround.CheckStateChanged += new System.EventHandler(this.toolStripCheck_CheckStateChanged);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     resources.ApplyResources(this.toolStripSeparator5, "toolStripSeparator5");
     //
     // toolStripIncrInvalidRecStatus
     //
     this.toolStripIncrInvalidRecStatus.ForeColor = System.Drawing.Color.DarkRed;
     this.toolStripIncrInvalidRecStatus.Name = "toolStripIncrInvalidRecStatus";
     resources.ApplyResources(this.toolStripIncrInvalidRecStatus, "toolStripIncrInvalidRecStatus");
     //
     // dockPanel
     //
     this.dockPanel.ActiveAutoHideContent = null;
     resources.ApplyResources(this.dockPanel, "dockPanel");
     this.dockPanel.DockBackColor = System.Drawing.SystemColors.AppWorkspace;
     this.dockPanel.DockBottomPortion = 150D;
     this.dockPanel.DockLeftPortion = 200D;
     this.dockPanel.DockRightPortion = 200D;
     this.dockPanel.DockTopPortion = 150D;
     this.dockPanel.Name = "dockPanel";
     this.dockPanel.RightToLeftLayout = true;
     dockPanelGradient1.EndColor = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient1.StartColor = System.Drawing.SystemColors.ControlLight;
     autoHideStripSkin1.DockStripGradient = dockPanelGradient1;
     tabGradient1.EndColor = System.Drawing.SystemColors.Control;
     tabGradient1.StartColor = System.Drawing.SystemColors.Control;
     tabGradient1.TextColor = System.Drawing.SystemColors.ControlDarkDark;
     autoHideStripSkin1.TabGradient = tabGradient1;
     autoHideStripSkin1.TextFont = new System.Drawing.Font("Segoe UI", 9F);
     dockPanelSkin1.AutoHideStripSkin = autoHideStripSkin1;
     tabGradient2.EndColor = System.Drawing.SystemColors.ControlLightLight;
     tabGradient2.StartColor = System.Drawing.SystemColors.ControlLightLight;
     tabGradient2.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient1.ActiveTabGradient = tabGradient2;
     dockPanelGradient2.EndColor = System.Drawing.SystemColors.Control;
     dockPanelGradient2.StartColor = System.Drawing.SystemColors.Control;
     dockPaneStripGradient1.DockStripGradient = dockPanelGradient2;
     tabGradient3.EndColor = System.Drawing.SystemColors.ControlLight;
     tabGradient3.StartColor = System.Drawing.SystemColors.ControlLight;
     tabGradient3.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient1.InactiveTabGradient = tabGradient3;
     dockPaneStripSkin1.DocumentGradient = dockPaneStripGradient1;
     dockPaneStripSkin1.TextFont = new System.Drawing.Font("Segoe UI", 9F);
     tabGradient4.EndColor = System.Drawing.SystemColors.ActiveCaption;
     tabGradient4.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient4.StartColor = System.Drawing.SystemColors.GradientActiveCaption;
     tabGradient4.TextColor = System.Drawing.SystemColors.ActiveCaptionText;
     dockPaneStripToolWindowGradient1.ActiveCaptionGradient = tabGradient4;
     tabGradient5.EndColor = System.Drawing.SystemColors.Control;
     tabGradient5.StartColor = System.Drawing.SystemColors.Control;
     tabGradient5.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripToolWindowGradient1.ActiveTabGradient = tabGradient5;
     dockPanelGradient3.EndColor = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient3.StartColor = System.Drawing.SystemColors.ControlLight;
     dockPaneStripToolWindowGradient1.DockStripGradient = dockPanelGradient3;
     tabGradient6.EndColor = System.Drawing.SystemColors.GradientInactiveCaption;
     tabGradient6.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient6.StartColor = System.Drawing.SystemColors.GradientInactiveCaption;
     tabGradient6.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripToolWindowGradient1.InactiveCaptionGradient = tabGradient6;
     tabGradient7.EndColor = System.Drawing.Color.Transparent;
     tabGradient7.StartColor = System.Drawing.Color.Transparent;
     tabGradient7.TextColor = System.Drawing.SystemColors.ControlDarkDark;
     dockPaneStripToolWindowGradient1.InactiveTabGradient = tabGradient7;
     dockPaneStripSkin1.ToolWindowGradient = dockPaneStripToolWindowGradient1;
     dockPanelSkin1.DockPaneStripSkin = dockPaneStripSkin1;
     this.dockPanel.Skin = dockPanelSkin1;
     //
     // defaultGameSettingsToolStripMenuItem
     //
     this.defaultGameSettingsToolStripMenuItem.Name = "defaultGameSettingsToolStripMenuItem";
     resources.ApplyResources(this.defaultGameSettingsToolStripMenuItem, "defaultGameSettingsToolStripMenuItem");
     //
     // MainView
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.dockPanel);
     this.Controls.Add(this.toolStripIncrFind);
     this.Controls.Add(this.toolStripIncrInvalidRec);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.menuStrip1);
     this.IsMdiContainer = true;
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "MainView";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.TESsnip_FormClosing);
     this.Load += new System.EventHandler(this.MainView_Load);
     this.Shown += new System.EventHandler(this.MainView_Shown);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.toolStripIncrFind.ResumeLayout(false);
     this.toolStripIncrFind.PerformLayout();
     this.toolStripIncrInvalidRec.ResumeLayout(false);
     this.toolStripIncrInvalidRec.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #46
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_Main));
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.文件FToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.新建NToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.打开OToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.保存SToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.另存为AToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.打印PToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.打印预览VToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.退出XToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.编辑EToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.撤消UToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.重复RToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.剪切TToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.复制CToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.粘贴PToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.全选AToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.工具TToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.自定义CToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.选项OToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.帮助HToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.内容CToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.索引IToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.搜索SToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.关于AToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.新建NToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.打开OToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.保存SToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.打印PToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.剪切UToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.复制CToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.粘贴PToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.帮助LToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.statusStrip1.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel1,
     this.toolStripProgressBar1});
     this.statusStrip1.Location = new System.Drawing.Point(0, 244);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(302, 22);
     this.statusStrip1.TabIndex = 0;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(79, 17);
     this.toolStripStatusLabel1.Text = "进度条:        ";
     //
     // toolStripProgressBar1
     //
     this.toolStripProgressBar1.Maximum = 10000;
     this.toolStripProgressBar1.Name = "toolStripProgressBar1";
     this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 16);
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.文件FToolStripMenuItem,
     this.编辑EToolStripMenuItem,
     this.工具TToolStripMenuItem,
     this.帮助HToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(302, 25);
     this.menuStrip1.TabIndex = 1;
     this.menuStrip1.Text = "menuStrip1";
     //
     // 文件FToolStripMenuItem
     //
     this.文件FToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.新建NToolStripMenuItem,
     this.打开OToolStripMenuItem,
     this.toolStripSeparator2,
     this.保存SToolStripMenuItem,
     this.另存为AToolStripMenuItem,
     this.toolStripSeparator3,
     this.打印PToolStripMenuItem,
     this.打印预览VToolStripMenuItem,
     this.toolStripSeparator4,
     this.退出XToolStripMenuItem});
     this.文件FToolStripMenuItem.Name = "文件FToolStripMenuItem";
     this.文件FToolStripMenuItem.Size = new System.Drawing.Size(58, 21);
     this.文件FToolStripMenuItem.Text = "文件(&F)";
     //
     // 新建NToolStripMenuItem
     //
     this.新建NToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("新建NToolStripMenuItem.Image")));
     this.新建NToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.新建NToolStripMenuItem.Name = "新建NToolStripMenuItem";
     this.新建NToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
     this.新建NToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
     this.新建NToolStripMenuItem.Text = "新建(&N)";
     //
     // 打开OToolStripMenuItem
     //
     this.打开OToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("打开OToolStripMenuItem.Image")));
     this.打开OToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.打开OToolStripMenuItem.Name = "打开OToolStripMenuItem";
     this.打开OToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
     this.打开OToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
     this.打开OToolStripMenuItem.Text = "打开(&O)";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(162, 6);
     //
     // 保存SToolStripMenuItem
     //
     this.保存SToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("保存SToolStripMenuItem.Image")));
     this.保存SToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.保存SToolStripMenuItem.Name = "保存SToolStripMenuItem";
     this.保存SToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
     this.保存SToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
     this.保存SToolStripMenuItem.Text = "保存(&S)";
     //
     // 另存为AToolStripMenuItem
     //
     this.另存为AToolStripMenuItem.Name = "另存为AToolStripMenuItem";
     this.另存为AToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
     this.另存为AToolStripMenuItem.Text = "另存为(&A)";
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(162, 6);
     //
     // 打印PToolStripMenuItem
     //
     this.打印PToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("打印PToolStripMenuItem.Image")));
     this.打印PToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.打印PToolStripMenuItem.Name = "打印PToolStripMenuItem";
     this.打印PToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.P)));
     this.打印PToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
     this.打印PToolStripMenuItem.Text = "打印(&P)";
     //
     // 打印预览VToolStripMenuItem
     //
     this.打印预览VToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("打印预览VToolStripMenuItem.Image")));
     this.打印预览VToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.打印预览VToolStripMenuItem.Name = "打印预览VToolStripMenuItem";
     this.打印预览VToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
     this.打印预览VToolStripMenuItem.Text = "打印预览(&V)";
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(162, 6);
     //
     // 退出XToolStripMenuItem
     //
     this.退出XToolStripMenuItem.Name = "退出XToolStripMenuItem";
     this.退出XToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
     this.退出XToolStripMenuItem.Text = "退出(&X)";
     //
     // 编辑EToolStripMenuItem
     //
     this.编辑EToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.撤消UToolStripMenuItem,
     this.重复RToolStripMenuItem,
     this.toolStripSeparator5,
     this.剪切TToolStripMenuItem,
     this.复制CToolStripMenuItem,
     this.粘贴PToolStripMenuItem,
     this.toolStripSeparator6,
     this.全选AToolStripMenuItem});
     this.编辑EToolStripMenuItem.Name = "编辑EToolStripMenuItem";
     this.编辑EToolStripMenuItem.Size = new System.Drawing.Size(59, 21);
     this.编辑EToolStripMenuItem.Text = "编辑(&E)";
     //
     // 撤消UToolStripMenuItem
     //
     this.撤消UToolStripMenuItem.Name = "撤消UToolStripMenuItem";
     this.撤消UToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z)));
     this.撤消UToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
     this.撤消UToolStripMenuItem.Text = "撤消(&U)";
     //
     // 重复RToolStripMenuItem
     //
     this.重复RToolStripMenuItem.Name = "重复RToolStripMenuItem";
     this.重复RToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y)));
     this.重复RToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
     this.重复RToolStripMenuItem.Text = "重复(&R)";
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(158, 6);
     //
     // 剪切TToolStripMenuItem
     //
     this.剪切TToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("剪切TToolStripMenuItem.Image")));
     this.剪切TToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.剪切TToolStripMenuItem.Name = "剪切TToolStripMenuItem";
     this.剪切TToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X)));
     this.剪切TToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
     this.剪切TToolStripMenuItem.Text = "剪切(&T)";
     //
     // 复制CToolStripMenuItem
     //
     this.复制CToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("复制CToolStripMenuItem.Image")));
     this.复制CToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.复制CToolStripMenuItem.Name = "复制CToolStripMenuItem";
     this.复制CToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
     this.复制CToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
     this.复制CToolStripMenuItem.Text = "复制(&C)";
     //
     // 粘贴PToolStripMenuItem
     //
     this.粘贴PToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("粘贴PToolStripMenuItem.Image")));
     this.粘贴PToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.粘贴PToolStripMenuItem.Name = "粘贴PToolStripMenuItem";
     this.粘贴PToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V)));
     this.粘贴PToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
     this.粘贴PToolStripMenuItem.Text = "粘贴(&P)";
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(158, 6);
     //
     // 全选AToolStripMenuItem
     //
     this.全选AToolStripMenuItem.Name = "全选AToolStripMenuItem";
     this.全选AToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
     this.全选AToolStripMenuItem.Text = "全选(&A)";
     //
     // 工具TToolStripMenuItem
     //
     this.工具TToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.自定义CToolStripMenuItem,
     this.选项OToolStripMenuItem});
     this.工具TToolStripMenuItem.Name = "工具TToolStripMenuItem";
     this.工具TToolStripMenuItem.Size = new System.Drawing.Size(59, 21);
     this.工具TToolStripMenuItem.Text = "工具(&T)";
     //
     // 自定义CToolStripMenuItem
     //
     this.自定义CToolStripMenuItem.Name = "自定义CToolStripMenuItem";
     this.自定义CToolStripMenuItem.Size = new System.Drawing.Size(128, 22);
     this.自定义CToolStripMenuItem.Text = "自定义(&C)";
     //
     // 选项OToolStripMenuItem
     //
     this.选项OToolStripMenuItem.Name = "选项OToolStripMenuItem";
     this.选项OToolStripMenuItem.Size = new System.Drawing.Size(128, 22);
     this.选项OToolStripMenuItem.Text = "选项(&O)";
     //
     // 帮助HToolStripMenuItem
     //
     this.帮助HToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.内容CToolStripMenuItem,
     this.索引IToolStripMenuItem,
     this.搜索SToolStripMenuItem,
     this.toolStripSeparator7,
     this.关于AToolStripMenuItem});
     this.帮助HToolStripMenuItem.Name = "帮助HToolStripMenuItem";
     this.帮助HToolStripMenuItem.Size = new System.Drawing.Size(61, 21);
     this.帮助HToolStripMenuItem.Text = "帮助(&H)";
     //
     // 内容CToolStripMenuItem
     //
     this.内容CToolStripMenuItem.Name = "内容CToolStripMenuItem";
     this.内容CToolStripMenuItem.Size = new System.Drawing.Size(125, 22);
     this.内容CToolStripMenuItem.Text = "内容(&C)";
     //
     // 索引IToolStripMenuItem
     //
     this.索引IToolStripMenuItem.Name = "索引IToolStripMenuItem";
     this.索引IToolStripMenuItem.Size = new System.Drawing.Size(125, 22);
     this.索引IToolStripMenuItem.Text = "索引(&I)";
     //
     // 搜索SToolStripMenuItem
     //
     this.搜索SToolStripMenuItem.Name = "搜索SToolStripMenuItem";
     this.搜索SToolStripMenuItem.Size = new System.Drawing.Size(125, 22);
     this.搜索SToolStripMenuItem.Text = "搜索(&S)";
     //
     // toolStripSeparator7
     //
     this.toolStripSeparator7.Name = "toolStripSeparator7";
     this.toolStripSeparator7.Size = new System.Drawing.Size(122, 6);
     //
     // 关于AToolStripMenuItem
     //
     this.关于AToolStripMenuItem.Name = "关于AToolStripMenuItem";
     this.关于AToolStripMenuItem.Size = new System.Drawing.Size(125, 22);
     this.关于AToolStripMenuItem.Text = "关于(&A)...";
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.新建NToolStripButton,
     this.打开OToolStripButton,
     this.保存SToolStripButton,
     this.打印PToolStripButton,
     this.toolStripSeparator,
     this.剪切UToolStripButton,
     this.复制CToolStripButton,
     this.粘贴PToolStripButton,
     this.toolStripSeparator1,
     this.帮助LToolStripButton});
     this.toolStrip1.Location = new System.Drawing.Point(0, 25);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(302, 25);
     this.toolStrip1.TabIndex = 2;
     this.toolStrip1.Text = "toolStrip1";
     //
     // 新建NToolStripButton
     //
     this.新建NToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.新建NToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("新建NToolStripButton.Image")));
     this.新建NToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.新建NToolStripButton.Name = "新建NToolStripButton";
     this.新建NToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.新建NToolStripButton.Text = "新建(&N)";
     //
     // 打开OToolStripButton
     //
     this.打开OToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.打开OToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("打开OToolStripButton.Image")));
     this.打开OToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.打开OToolStripButton.Name = "打开OToolStripButton";
     this.打开OToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.打开OToolStripButton.Text = "打开(&O)";
     //
     // 保存SToolStripButton
     //
     this.保存SToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.保存SToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("保存SToolStripButton.Image")));
     this.保存SToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.保存SToolStripButton.Name = "保存SToolStripButton";
     this.保存SToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.保存SToolStripButton.Text = "保存(&S)";
     //
     // 打印PToolStripButton
     //
     this.打印PToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.打印PToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("打印PToolStripButton.Image")));
     this.打印PToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.打印PToolStripButton.Name = "打印PToolStripButton";
     this.打印PToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.打印PToolStripButton.Text = "打印(&P)";
     //
     // toolStripSeparator
     //
     this.toolStripSeparator.Name = "toolStripSeparator";
     this.toolStripSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // 剪切UToolStripButton
     //
     this.剪切UToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.剪切UToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("剪切UToolStripButton.Image")));
     this.剪切UToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.剪切UToolStripButton.Name = "剪切UToolStripButton";
     this.剪切UToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.剪切UToolStripButton.Text = "剪切(&U)";
     //
     // 复制CToolStripButton
     //
     this.复制CToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.复制CToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("复制CToolStripButton.Image")));
     this.复制CToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.复制CToolStripButton.Name = "复制CToolStripButton";
     this.复制CToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.复制CToolStripButton.Text = "复制(&C)";
     //
     // 粘贴PToolStripButton
     //
     this.粘贴PToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.粘贴PToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("粘贴PToolStripButton.Image")));
     this.粘贴PToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.粘贴PToolStripButton.Name = "粘贴PToolStripButton";
     this.粘贴PToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.粘贴PToolStripButton.Text = "粘贴(&P)";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // 帮助LToolStripButton
     //
     this.帮助LToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.帮助LToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("帮助LToolStripButton.Image")));
     this.帮助LToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.帮助LToolStripButton.Name = "帮助LToolStripButton";
     this.帮助LToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.帮助LToolStripButton.Text = "帮助(&L)";
     //
     // timer1
     //
     this.timer1.Enabled = true;
     this.timer1.Interval = 2000;
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // Frm_Main
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(302, 266);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.menuStrip1);
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "Frm_Main";
     this.Text = "带进度条的状态栏";
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #47
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();
 }
Пример #48
0
        /// <summary>
        /// Uploads the main schedule table to the database
        /// </summary>
        /// <param name="db_conn">database connection object</param>
        /// <param name="pbBar">progress bar</param>
        /// <returns>true if successful, false otherwise</returns>
        private bool UploadMainTable(DBConnect db_conn, System.Windows.Forms.ToolStripProgressBar pbBar)
        {
            string format = "HH:mm:ss";

            // create the main table first
            string query = "CREATE TABLE `s" + this.ScheduleID + "` ("
                           + "`index` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0', "
                           + "`date` DATE NOT NULL DEFAULT '0000-00-00', "
                           + "`day` ENUM('Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday') NOT NULL DEFAULT 'Monday', "
                           + "`when` ENUM('mo','no','af','ni') NOT NULL DEFAULT 'mo', "
                           + "`type` VARCHAR(15) NOT NULL DEFAULT '', "
                           + "`start` TIME NOT NULL DEFAULT '00:00:00', "
                           + "`end` TIME NOT NULL DEFAULT '00:00:00', "
                           + "`length` FLOAT UNSIGNED NOT NULL DEFAULT '0', "
                           + "`staffs` VARCHAR(255) NOT NULL DEFAULT '', "
                           + "`wage` FLOAT UNSIGNED NOT NULL DEFAULT '0', "
                           + "PRIMARY KEY (`index`)) "
                           + "COLLATE='latin1_swedish_ci' "
                           + "ENGINE=MyISAM"
                           + ";";
            // create it
            // used to count if timed out
            int timeout = 0;

            // keeps trying until command either runs successfully or connection times out
            while (!db_conn.RunCommand(query))
            {
                timeout++;
                if (timeout > TIMEOUT)
                {
                    System.Windows.Forms.MessageBox.Show("Connecting to database timed out while trying to run the following mysql statement: " + query);;
                    return(false);
                }
            }

            // for each shift in this schedule
            foreach (ScheduleSlot slot in this._skeleton.ToList())
            {
                // generate insert query
                query = "INSERT INTO `s" + this.ScheduleID + "` (`index`, date, day, `when`, `type`, `start`, `end`, length, staffs, wage)  "
                        + "VALUES ("
                        + "'" + slot._shiftInfo.ShiftNumber + "', "
                        + "'" + slot.Date.ToString("yyyy-MM-dd") + "', "
                        + "'" + new CultureInfo("en-US").TextInfo.ToTitleCase(slot.Day) + "', "
                        + "'" + slot._shiftInfo.When() + "', "
                        + "'" + slot.Name.ToUpper() + "', "
                        + "'" + slot._shiftInfo.StartTime.ToString(format) + "', "
                        + "'" + slot._shiftInfo.EndTime.ToString(format) + "', "
                        + "'" + slot.Length.TotalHours + "', "
                        + "'" + this.PeopleWorkingThis(slot) + "', "
                        + "'0');";

                // update progress bar
                pbBar.PerformStep();

                timeout = 0;
                // keeps trying until command either runs successfully or connection times out
                while (!db_conn.RunCommand(query))
                {
                    timeout++;
                    if (timeout > TIMEOUT)
                    {
                        System.Windows.Forms.MessageBox.Show("Connecting to database timed out while trying to run the following mysql statement: " + query);;
                        return(false);
                    }
                }
            }

            return(true);
        }
 /// <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(FrmSaleStageJCAdd));
     this.panel1 = new System.Windows.Forms.Panel();
     this.toolStrip2 = new System.Windows.Forms.ToolStrip();
     this.btnSave = new System.Windows.Forms.ToolStripButton();
     this.btnReload = new System.Windows.Forms.ToolStripButton();
     this.btnExit = new System.Windows.Forms.ToolStripButton();
     this.btnAlter = new System.Windows.Forms.ToolStripButton();
     this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
     this.btnSelectCase = new System.Windows.Forms.ToolStripButton();
     this.btnDeleteCase = new System.Windows.Forms.ToolStripButton();
     this.btnPrintTable = new System.Windows.Forms.ToolStripButton();
     this.btnExportGrid = new System.Windows.Forms.ToolStripButton();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.label23 = new System.Windows.Forms.Label();
     this.txtBJS = new System.Windows.Forms.TextBox();
     this.ComboxJSFS = new System.Windows.Forms.ComboBox();
     this.txtWSJE = new System.Windows.Forms.TextBox();
     this.txtXSMY = new System.Windows.Forms.TextBox();
     this.label22 = new System.Windows.Forms.Label();
     this.txtSE = new System.Windows.Forms.TextBox();
     this.txtXSSY = new System.Windows.Forms.TextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.txtZT = new System.Windows.Forms.TextBox();
     this.txtXSSL = new System.Windows.Forms.TextBox();
     this.txtJSHJ = new System.Windows.Forms.TextBox();
     this.txtPJZK = new System.Windows.Forms.TextBox();
     this.label20 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.txtPZS = new System.Windows.Forms.TextBox();
     this.txtZKE = new System.Windows.Forms.TextBox();
     this.label18 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.txtPJDJ = new System.Windows.Forms.TextBox();
     this.label16 = new System.Windows.Forms.Label();
     this.comboxSL = new System.Windows.Forms.ComboBox();
     this.label15 = new System.Windows.Forms.Label();
     this.txtBZ = new System.Windows.Forms.TextBox();
     this.btnDWselect = new System.Windows.Forms.Button();
     this.txtGHDW = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.txtJSR = new System.Windows.Forms.TextBox();
     this.txtCZY = new System.Windows.Forms.TextBox();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.label12 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.txtZTID = new System.Windows.Forms.TextBox();
     this.txtBM = new System.Windows.Forms.TextBox();
     this.txtJSDH = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.panel2 = new System.Windows.Forms.Panel();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.xpServerCollectionSource1 = new DevExpress.Xpo.XPServerCollectionSource();
     this.unitOfWork1 = new DevExpress.Xpo.UnitOfWork();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSJLX = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colXSJSDH = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colXSDH = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colXSBMMC = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colKHMC = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colXSSL = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colXSSY = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colXSMY = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colYSSL = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colYSSY = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colYSMY = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colZT = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colXSDID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colXSJSDID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnView = new System.Windows.Forms.ToolStripDropDownButton();
     this.btnColCustomize = new System.Windows.Forms.ToolStripMenuItem();
     this.btnSaveLayout = new System.Windows.Forms.ToolStripMenuItem();
     this.btnLoadLayout = new System.Windows.Forms.ToolStripMenuItem();
     this.panel1.SuspendLayout();
     this.toolStrip2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xpServerCollectionSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.unitOfWork1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.toolStrip2);
     this.panel1.Controls.Add(this.groupBox1);
     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(867, 344);
     this.panel1.TabIndex = 0;
     //
     // toolStrip2
     //
     this.toolStrip2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btnSave,
     this.btnReload,
     this.btnExit,
     this.btnAlter,
     this.toolStripProgressBar1,
     this.btnSelectCase,
     this.btnDeleteCase,
     this.btnPrintTable,
     this.btnExportGrid,
     this.btnView});
     this.toolStrip2.Location = new System.Drawing.Point(0, 317);
     this.toolStrip2.Name = "toolStrip2";
     this.toolStrip2.Size = new System.Drawing.Size(867, 27);
     this.toolStrip2.TabIndex = 12;
     this.toolStrip2.Text = "toolStrip2";
     //
     // btnSave
     //
     this.btnSave.BackColor = System.Drawing.SystemColors.Control;
     this.btnSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
     this.btnSave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(69, 24);
     this.btnSave.Text = "   保存   ";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnReload
     //
     this.btnReload.BackColor = System.Drawing.SystemColors.Control;
     this.btnReload.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.btnReload.Image = ((System.Drawing.Image)(resources.GetObject("btnReload.Image")));
     this.btnReload.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnReload.Name = "btnReload";
     this.btnReload.Size = new System.Drawing.Size(69, 24);
     this.btnReload.Text = "   重置   ";
     this.btnReload.Click += new System.EventHandler(this.btnReload_Click);
     //
     // btnExit
     //
     this.btnExit.BackColor = System.Drawing.SystemColors.Control;
     this.btnExit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.btnExit.Image = ((System.Drawing.Image)(resources.GetObject("btnExit.Image")));
     this.btnExit.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(69, 24);
     this.btnExit.Text = "   退出   ";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // btnAlter
     //
     this.btnAlter.BackColor = System.Drawing.SystemColors.Control;
     this.btnAlter.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.btnAlter.Image = ((System.Drawing.Image)(resources.GetObject("btnAlter.Image")));
     this.btnAlter.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnAlter.Name = "btnAlter";
     this.btnAlter.Size = new System.Drawing.Size(69, 24);
     this.btnAlter.Text = " 确认修改 ";
     this.btnAlter.Click += new System.EventHandler(this.btnAlter_Click);
     //
     // toolStripProgressBar1
     //
     this.toolStripProgressBar1.Name = "toolStripProgressBar1";
     this.toolStripProgressBar1.Size = new System.Drawing.Size(200, 24);
     //
     // btnSelectCase
     //
     this.btnSelectCase.BackColor = System.Drawing.SystemColors.Control;
     this.btnSelectCase.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.btnSelectCase.Image = ((System.Drawing.Image)(resources.GetObject("btnSelectCase.Image")));
     this.btnSelectCase.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnSelectCase.Name = "btnSelectCase";
     this.btnSelectCase.Size = new System.Drawing.Size(69, 24);
     this.btnSelectCase.Text = "   选单   ";
     this.btnSelectCase.Click += new System.EventHandler(this.btnSelectCase_Click);
     //
     // btnDeleteCase
     //
     this.btnDeleteCase.BackColor = System.Drawing.SystemColors.Control;
     this.btnDeleteCase.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.btnDeleteCase.Image = ((System.Drawing.Image)(resources.GetObject("btnDeleteCase.Image")));
     this.btnDeleteCase.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnDeleteCase.Name = "btnDeleteCase";
     this.btnDeleteCase.Size = new System.Drawing.Size(69, 24);
     this.btnDeleteCase.Text = "   减单   ";
     this.btnDeleteCase.Click += new System.EventHandler(this.btnDeleteCase_Click);
     //
     // btnPrintTable
     //
     this.btnPrintTable.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.btnPrintTable.Image = ((System.Drawing.Image)(resources.GetObject("btnPrintTable.Image")));
     this.btnPrintTable.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnPrintTable.Name = "btnPrintTable";
     this.btnPrintTable.Size = new System.Drawing.Size(57, 24);
     this.btnPrintTable.Text = "打印表格";
     //
     // btnExportGrid
     //
     this.btnExportGrid.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.btnExportGrid.Image = ((System.Drawing.Image)(resources.GetObject("btnExportGrid.Image")));
     this.btnExportGrid.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnExportGrid.Name = "btnExportGrid";
     this.btnExportGrid.Size = new System.Drawing.Size(57, 24);
     this.btnExportGrid.Text = "导出表格";
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.AliceBlue;
     this.groupBox1.Controls.Add(this.label23);
     this.groupBox1.Controls.Add(this.txtBJS);
     this.groupBox1.Controls.Add(this.ComboxJSFS);
     this.groupBox1.Controls.Add(this.txtWSJE);
     this.groupBox1.Controls.Add(this.txtXSMY);
     this.groupBox1.Controls.Add(this.label22);
     this.groupBox1.Controls.Add(this.txtSE);
     this.groupBox1.Controls.Add(this.txtXSSY);
     this.groupBox1.Controls.Add(this.label21);
     this.groupBox1.Controls.Add(this.txtZT);
     this.groupBox1.Controls.Add(this.txtXSSL);
     this.groupBox1.Controls.Add(this.txtJSHJ);
     this.groupBox1.Controls.Add(this.txtPJZK);
     this.groupBox1.Controls.Add(this.label20);
     this.groupBox1.Controls.Add(this.label19);
     this.groupBox1.Controls.Add(this.txtPZS);
     this.groupBox1.Controls.Add(this.txtZKE);
     this.groupBox1.Controls.Add(this.label18);
     this.groupBox1.Controls.Add(this.label17);
     this.groupBox1.Controls.Add(this.txtPJDJ);
     this.groupBox1.Controls.Add(this.label16);
     this.groupBox1.Controls.Add(this.comboxSL);
     this.groupBox1.Controls.Add(this.label15);
     this.groupBox1.Controls.Add(this.txtBZ);
     this.groupBox1.Controls.Add(this.btnDWselect);
     this.groupBox1.Controls.Add(this.txtGHDW);
     this.groupBox1.Controls.Add(this.label14);
     this.groupBox1.Controls.Add(this.label13);
     this.groupBox1.Controls.Add(this.txtJSR);
     this.groupBox1.Controls.Add(this.txtCZY);
     this.groupBox1.Controls.Add(this.dateTimePicker2);
     this.groupBox1.Controls.Add(this.dateTimePicker1);
     this.groupBox1.Controls.Add(this.label12);
     this.groupBox1.Controls.Add(this.label11);
     this.groupBox1.Controls.Add(this.txtZTID);
     this.groupBox1.Controls.Add(this.txtBM);
     this.groupBox1.Controls.Add(this.txtJSDH);
     this.groupBox1.Controls.Add(this.label10);
     this.groupBox1.Controls.Add(this.label9);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupBox1.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(867, 317);
     this.groupBox1.TabIndex = 11;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "销售结算单";
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label23.Location = new System.Drawing.Point(303, 267);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(49, 14);
     this.label23.TabIndex = 48;
     this.label23.Text = "包件数";
     //
     // txtBJS
     //
     this.txtBJS.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtBJS.Location = new System.Drawing.Point(372, 260);
     this.txtBJS.Name = "txtBJS";
     this.txtBJS.ReadOnly = true;
     this.txtBJS.Size = new System.Drawing.Size(184, 21);
     this.txtBJS.TabIndex = 47;
     //
     // ComboxJSFS
     //
     this.ComboxJSFS.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ComboxJSFS.FormattingEnabled = true;
     this.ComboxJSFS.Location = new System.Drawing.Point(372, 89);
     this.ComboxJSFS.Name = "ComboxJSFS";
     this.ComboxJSFS.Size = new System.Drawing.Size(184, 22);
     this.ComboxJSFS.TabIndex = 45;
     //
     // txtWSJE
     //
     this.txtWSJE.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtWSJE.Location = new System.Drawing.Point(643, 230);
     this.txtWSJE.Name = "txtWSJE";
     this.txtWSJE.ReadOnly = true;
     this.txtWSJE.Size = new System.Drawing.Size(194, 21);
     this.txtWSJE.TabIndex = 44;
     //
     // txtXSMY
     //
     this.txtXSMY.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtXSMY.Location = new System.Drawing.Point(643, 191);
     this.txtXSMY.Name = "txtXSMY";
     this.txtXSMY.ReadOnly = true;
     this.txtXSMY.Size = new System.Drawing.Size(194, 21);
     this.txtXSMY.TabIndex = 43;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label22.Location = new System.Drawing.Point(573, 232);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(63, 14);
     this.label22.TabIndex = 42;
     this.label22.Text = "无税金额";
     //
     // txtSE
     //
     this.txtSE.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtSE.Location = new System.Drawing.Point(372, 224);
     this.txtSE.Name = "txtSE";
     this.txtSE.ReadOnly = true;
     this.txtSE.Size = new System.Drawing.Size(184, 21);
     this.txtSE.TabIndex = 41;
     //
     // txtXSSY
     //
     this.txtXSSY.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtXSSY.Location = new System.Drawing.Point(372, 191);
     this.txtXSSY.Name = "txtXSSY";
     this.txtXSSY.ReadOnly = true;
     this.txtXSSY.Size = new System.Drawing.Size(184, 21);
     this.txtXSSY.TabIndex = 40;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label21.Location = new System.Drawing.Point(303, 231);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(35, 14);
     this.label21.TabIndex = 39;
     this.label21.Text = "税额";
     //
     // txtZT
     //
     this.txtZT.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtZT.Location = new System.Drawing.Point(93, 260);
     this.txtZT.Name = "txtZT";
     this.txtZT.ReadOnly = true;
     this.txtZT.Size = new System.Drawing.Size(203, 21);
     this.txtZT.TabIndex = 38;
     //
     // txtXSSL
     //
     this.txtXSSL.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtXSSL.Location = new System.Drawing.Point(93, 191);
     this.txtXSSL.Name = "txtXSSL";
     this.txtXSSL.ReadOnly = true;
     this.txtXSSL.Size = new System.Drawing.Size(203, 21);
     this.txtXSSL.TabIndex = 37;
     //
     // txtJSHJ
     //
     this.txtJSHJ.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtJSHJ.Location = new System.Drawing.Point(93, 224);
     this.txtJSHJ.Name = "txtJSHJ";
     this.txtJSHJ.ReadOnly = true;
     this.txtJSHJ.Size = new System.Drawing.Size(203, 21);
     this.txtJSHJ.TabIndex = 36;
     //
     // txtPJZK
     //
     this.txtPJZK.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtPJZK.Location = new System.Drawing.Point(93, 156);
     this.txtPJZK.Name = "txtPJZK";
     this.txtPJZK.ReadOnly = true;
     this.txtPJZK.Size = new System.Drawing.Size(203, 21);
     this.txtPJZK.TabIndex = 35;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label20.Location = new System.Drawing.Point(303, 198);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(63, 14);
     this.label20.TabIndex = 34;
     this.label20.Text = "销售实洋";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label19.Location = new System.Drawing.Point(573, 198);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(63, 14);
     this.label19.TabIndex = 33;
     this.label19.Text = "销售码洋";
     //
     // txtPZS
     //
     this.txtPZS.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtPZS.Location = new System.Drawing.Point(642, 156);
     this.txtPZS.Name = "txtPZS";
     this.txtPZS.ReadOnly = true;
     this.txtPZS.Size = new System.Drawing.Size(194, 21);
     this.txtPZS.TabIndex = 32;
     //
     // txtZKE
     //
     this.txtZKE.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtZKE.Location = new System.Drawing.Point(372, 156);
     this.txtZKE.Name = "txtZKE";
     this.txtZKE.ReadOnly = true;
     this.txtZKE.Size = new System.Drawing.Size(184, 21);
     this.txtZKE.TabIndex = 31;
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label18.Location = new System.Drawing.Point(303, 163);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(49, 14);
     this.label18.TabIndex = 30;
     this.label18.Text = "折扣额";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label17.Location = new System.Drawing.Point(573, 163);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(49, 14);
     this.label17.TabIndex = 29;
     this.label17.Text = "品种数";
     //
     // txtPJDJ
     //
     this.txtPJDJ.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtPJDJ.Location = new System.Drawing.Point(642, 122);
     this.txtPJDJ.Name = "txtPJDJ";
     this.txtPJDJ.ReadOnly = true;
     this.txtPJDJ.Size = new System.Drawing.Size(194, 21);
     this.txtPJDJ.TabIndex = 28;
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label16.Location = new System.Drawing.Point(573, 129);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(63, 14);
     this.label16.TabIndex = 27;
     this.label16.Text = "平均单价";
     //
     // comboxSL
     //
     this.comboxSL.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.comboxSL.FormattingEnabled = true;
     this.comboxSL.Items.AddRange(new object[] {
     "13",
     "17"});
     this.comboxSL.Location = new System.Drawing.Point(94, 123);
     this.comboxSL.Name = "comboxSL";
     this.comboxSL.Size = new System.Drawing.Size(203, 20);
     this.comboxSL.TabIndex = 26;
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label15.Location = new System.Drawing.Point(303, 130);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(35, 14);
     this.label15.TabIndex = 25;
     this.label15.Text = "备注";
     //
     // txtBZ
     //
     this.txtBZ.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtBZ.Location = new System.Drawing.Point(372, 123);
     this.txtBZ.Name = "txtBZ";
     this.txtBZ.Size = new System.Drawing.Size(184, 21);
     this.txtBZ.TabIndex = 24;
     //
     // btnDWselect
     //
     this.btnDWselect.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.btnDWselect.Location = new System.Drawing.Point(789, 86);
     this.btnDWselect.Name = "btnDWselect";
     this.btnDWselect.Size = new System.Drawing.Size(47, 23);
     this.btnDWselect.TabIndex = 23;
     this.btnDWselect.Text = "选择";
     this.btnDWselect.UseVisualStyleBackColor = true;
     this.btnDWselect.Click += new System.EventHandler(this.btnDWselect_Click);
     //
     // txtGHDW
     //
     this.txtGHDW.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtGHDW.Location = new System.Drawing.Point(642, 88);
     this.txtGHDW.Name = "txtGHDW";
     this.txtGHDW.ReadOnly = true;
     this.txtGHDW.Size = new System.Drawing.Size(141, 21);
     this.txtGHDW.TabIndex = 22;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label14.Location = new System.Drawing.Point(573, 95);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(63, 14);
     this.label14.TabIndex = 21;
     this.label14.Text = "购货单位";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label13.Location = new System.Drawing.Point(303, 95);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(63, 14);
     this.label13.TabIndex = 19;
     this.label13.Text = "结算方式";
     //
     // txtJSR
     //
     this.txtJSR.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtJSR.Location = new System.Drawing.Point(94, 88);
     this.txtJSR.Name = "txtJSR";
     this.txtJSR.Size = new System.Drawing.Size(203, 21);
     this.txtJSR.TabIndex = 18;
     //
     // txtCZY
     //
     this.txtCZY.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtCZY.Location = new System.Drawing.Point(94, 55);
     this.txtCZY.Name = "txtCZY";
     this.txtCZY.ReadOnly = true;
     this.txtCZY.Size = new System.Drawing.Size(203, 21);
     this.txtCZY.TabIndex = 17;
     //
     // dateTimePicker2
     //
     this.dateTimePicker2.CalendarFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker2.CalendarTitleBackColor = System.Drawing.Color.Thistle;
     this.dateTimePicker2.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker2.Location = new System.Drawing.Point(642, 53);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(195, 23);
     this.dateTimePicker2.TabIndex = 16;
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.CalendarFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker1.CalendarTitleBackColor = System.Drawing.Color.Thistle;
     this.dateTimePicker1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker1.Location = new System.Drawing.Point(372, 55);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(184, 23);
     this.dateTimePicker1.TabIndex = 15;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label12.Location = new System.Drawing.Point(573, 66);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(63, 14);
     this.label12.TabIndex = 14;
     this.label12.Text = "制单日期";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label11.Location = new System.Drawing.Point(303, 62);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(63, 14);
     this.label11.TabIndex = 13;
     this.label11.Text = "操作日期";
     //
     // txtZTID
     //
     this.txtZTID.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtZTID.Location = new System.Drawing.Point(614, 22);
     this.txtZTID.Name = "txtZTID";
     this.txtZTID.ReadOnly = true;
     this.txtZTID.Size = new System.Drawing.Size(223, 21);
     this.txtZTID.TabIndex = 12;
     //
     // txtBM
     //
     this.txtBM.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtBM.Location = new System.Drawing.Point(344, 24);
     this.txtBM.Name = "txtBM";
     this.txtBM.ReadOnly = true;
     this.txtBM.Size = new System.Drawing.Size(212, 21);
     this.txtBM.TabIndex = 11;
     //
     // txtJSDH
     //
     this.txtJSDH.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtJSDH.Location = new System.Drawing.Point(93, 22);
     this.txtJSDH.Name = "txtJSDH";
     this.txtJSDH.ReadOnly = true;
     this.txtJSDH.Size = new System.Drawing.Size(203, 21);
     this.txtJSDH.TabIndex = 10;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label10.Location = new System.Drawing.Point(31, 198);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(63, 14);
     this.label10.TabIndex = 9;
     this.label10.Text = "销售数量";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label9.Location = new System.Drawing.Point(31, 231);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(63, 14);
     this.label9.TabIndex = 8;
     this.label9.Text = "价税合计";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label8.Location = new System.Drawing.Point(31, 267);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(35, 14);
     this.label8.TabIndex = 7;
     this.label8.Text = "状态";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label7.Location = new System.Drawing.Point(303, 29);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(35, 14);
     this.label7.TabIndex = 6;
     this.label7.Text = "部门";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label6.Location = new System.Drawing.Point(573, 25);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(35, 14);
     this.label6.TabIndex = 5;
     this.label6.Text = "帐套";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label5.Location = new System.Drawing.Point(31, 95);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(49, 14);
     this.label5.TabIndex = 4;
     this.label5.Text = "经手人";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label4.Location = new System.Drawing.Point(31, 130);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(35, 14);
     this.label4.TabIndex = 3;
     this.label4.Text = "税率";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label3.Location = new System.Drawing.Point(31, 163);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(63, 14);
     this.label3.TabIndex = 2;
     this.label3.Text = "平均折扣";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label2.Location = new System.Drawing.Point(31, 62);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(49, 14);
     this.label2.TabIndex = 1;
     this.label2.Text = "操作员";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.Location = new System.Drawing.Point(31, 29);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(63, 14);
     this.label1.TabIndex = 0;
     this.label1.Text = "结算单号";
     //
     // panel2
     //
     this.panel2.Controls.Add(this.gridControl1);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 344);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(867, 359);
     this.panel2.TabIndex = 1;
     //
     // gridControl1
     //
     this.gridControl1.DataSource = this.xpServerCollectionSource1;
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(867, 359);
     this.gridControl1.TabIndex = 1;
     this.gridControl1.UseEmbeddedNavigator = true;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // xpServerCollectionSource1
     //
     this.xpServerCollectionSource1.ObjectType = typeof(XINHUA.VIEW_JC_C_XSD);
     this.xpServerCollectionSource1.Session = this.unitOfWork1;
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSJLX,
     this.colXSJSDH,
     this.colXSDH,
     this.colXSBMMC,
     this.colKHMC,
     this.colXSSL,
     this.colXSSY,
     this.colXSMY,
     this.colYSSL,
     this.colYSSY,
     this.colYSMY,
     this.colZT,
     this.colXSDID,
     this.colXSJSDID});
     this.gridView1.FooterPanelHeight = 45;
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsPrint.AutoWidth = false;
     this.gridView1.OptionsPrint.PrintSelectedRowsOnly = true;
     this.gridView1.OptionsSelection.MultiSelect = true;
     this.gridView1.OptionsView.ColumnAutoWidth = false;
     this.gridView1.OptionsView.ShowFooter = true;
     this.gridView1.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridView1_CustomDrawRowIndicator);
     this.gridView1.CustomDrawFooterCell += new DevExpress.XtraGrid.Views.Grid.FooterCellCustomDrawEventHandler(this.gridView1_CustomDrawFooterCell);
     this.gridView1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.gridView1_MouseUp);
     //
     // colSJLX
     //
     this.colSJLX.Caption = "数据类型";
     this.colSJLX.FieldName = "SJLX";
     this.colSJLX.Name = "colSJLX";
     this.colSJLX.SummaryItem.DisplayFormat = "总计:";
     this.colSJLX.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Custom;
     this.colSJLX.Visible = true;
     this.colSJLX.VisibleIndex = 0;
     //
     // colXSJSDH
     //
     this.colXSJSDH.Caption = "销售结算单号";
     this.colXSJSDH.FieldName = "XSJSDH";
     this.colXSJSDH.Name = "colXSJSDH";
     this.colXSJSDH.Visible = true;
     this.colXSJSDH.VisibleIndex = 1;
     //
     // colXSDH
     //
     this.colXSDH.Caption = "销售单号";
     this.colXSDH.FieldName = "XSDH";
     this.colXSDH.Name = "colXSDH";
     this.colXSDH.Visible = true;
     this.colXSDH.VisibleIndex = 2;
     //
     // colXSBMMC
     //
     this.colXSBMMC.Caption = "销售部门名称";
     this.colXSBMMC.FieldName = "XSBMMC";
     this.colXSBMMC.Name = "colXSBMMC";
     this.colXSBMMC.Visible = true;
     this.colXSBMMC.VisibleIndex = 3;
     //
     // colKHMC
     //
     this.colKHMC.Caption = "客户名称";
     this.colKHMC.FieldName = "KHMC";
     this.colKHMC.Name = "colKHMC";
     this.colKHMC.Visible = true;
     this.colKHMC.VisibleIndex = 4;
     //
     // colXSSL
     //
     this.colXSSL.Caption = "销售数量";
     this.colXSSL.FieldName = "XSSL";
     this.colXSSL.Name = "colXSSL";
     this.colXSSL.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.colXSSL.Visible = true;
     this.colXSSL.VisibleIndex = 5;
     //
     // colXSSY
     //
     this.colXSSY.Caption = "销售实洋";
     this.colXSSY.FieldName = "XSSY";
     this.colXSSY.Name = "colXSSY";
     this.colXSSY.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.colXSSY.Visible = true;
     this.colXSSY.VisibleIndex = 6;
     //
     // colXSMY
     //
     this.colXSMY.Caption = "销售码洋";
     this.colXSMY.FieldName = "XSMY";
     this.colXSMY.Name = "colXSMY";
     this.colXSMY.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.colXSMY.Visible = true;
     this.colXSMY.VisibleIndex = 7;
     //
     // colYSSL
     //
     this.colYSSL.Caption = "已结数量";
     this.colYSSL.FieldName = "YSSL";
     this.colYSSL.Name = "colYSSL";
     this.colYSSL.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.colYSSL.Visible = true;
     this.colYSSL.VisibleIndex = 8;
     //
     // colYSSY
     //
     this.colYSSY.Caption = "已结实洋";
     this.colYSSY.FieldName = "YSSY";
     this.colYSSY.Name = "colYSSY";
     this.colYSSY.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.colYSSY.Visible = true;
     this.colYSSY.VisibleIndex = 9;
     //
     // colYSMY
     //
     this.colYSMY.Caption = "已结码洋";
     this.colYSMY.FieldName = "YSMY";
     this.colYSMY.Name = "colYSMY";
     this.colYSMY.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.colYSMY.Visible = true;
     this.colYSMY.VisibleIndex = 10;
     //
     // colZT
     //
     this.colZT.Caption = "状态ID";
     this.colZT.FieldName = "ZT";
     this.colZT.Name = "colZT";
     //
     // colXSDID
     //
     this.colXSDID.Caption = "销售单ID";
     this.colXSDID.FieldName = "XSDID";
     this.colXSDID.Name = "colXSDID";
     //
     // colXSJSDID
     //
     this.colXSJSDID.Caption = "销售结算单ID";
     this.colXSJSDID.FieldName = "XSJSDID";
     this.colXSJSDID.Name = "colXSJSDID";
     //
     // btnView
     //
     this.btnView.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.btnView.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btnColCustomize,
     this.btnSaveLayout,
     this.btnLoadLayout});
     this.btnView.Image = ((System.Drawing.Image)(resources.GetObject("btnView.Image")));
     this.btnView.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnView.Name = "btnView";
     this.btnView.Size = new System.Drawing.Size(42, 24);
     this.btnView.Text = "视图";
     //
     // btnColCustomize
     //
     this.btnColCustomize.Name = "btnColCustomize";
     this.btnColCustomize.Size = new System.Drawing.Size(152, 22);
     this.btnColCustomize.Text = "列定制";
     this.btnColCustomize.Click += new System.EventHandler(this.btnColCustomize_Click);
     //
     // btnSaveLayout
     //
     this.btnSaveLayout.Name = "btnSaveLayout";
     this.btnSaveLayout.Size = new System.Drawing.Size(152, 22);
     this.btnSaveLayout.Text = "保存视图";
     this.btnSaveLayout.Click += new System.EventHandler(this.btnSaveLayout_Click);
     //
     // btnLoadLayout
     //
     this.btnLoadLayout.Name = "btnLoadLayout";
     this.btnLoadLayout.Size = new System.Drawing.Size(152, 22);
     this.btnLoadLayout.Text = "载入视图";
     this.btnLoadLayout.Click += new System.EventHandler(this.btnLoadLayout_Click);
     //
     // FrmSaleStageJCAdd
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(867, 703);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.MaximizeBox = false;
     this.Name = "FrmSaleStageJCAdd";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "FrmXSJSDSXSJAdd";
     this.Load += new System.EventHandler(this.FrmSaleStageJCAdd_Load);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.toolStrip2.ResumeLayout(false);
     this.toolStrip2.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xpServerCollectionSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.unitOfWork1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     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);
 }
Пример #51
0
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(IdentifyDialog));
     this.InfoDisplay = new System.Windows.Forms.StatusStrip();
     this.lblFeatureCount = new System.Windows.Forms.ToolStripStatusLabel();
     this.IdentifyProgress = new System.Windows.Forms.ToolStripProgressBar();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel7 = new System.Windows.Forms.Panel();
     this.cmbLayerFilter = new System.Windows.Forms.ComboBox();
     this.panel6 = new System.Windows.Forms.Panel();
     this.lblLayers = new System.Windows.Forms.Label();
     this.panel2 = new System.Windows.Forms.Panel();
     this.splitContainer = new System.Windows.Forms.SplitContainer();
     this.trvDataList = new System.Windows.Forms.TreeView();
     this.attributePanel = new System.Windows.Forms.Panel();
     this.lstProperties = new System.Windows.Forms.ListView();
     this.panel3 = new System.Windows.Forms.Panel();
     this.panel4 = new System.Windows.Forms.Panel();
     this.txtCoordinate = new System.Windows.Forms.TextBox();
     this.panel5 = new System.Windows.Forms.Panel();
     this.lblHitPointTxt = new System.Windows.Forms.Label();
     this.InfoDisplay.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel7.SuspendLayout();
     this.panel6.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
     this.splitContainer.Panel1.SuspendLayout();
     this.splitContainer.Panel2.SuspendLayout();
     this.splitContainer.SuspendLayout();
     this.attributePanel.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel4.SuspendLayout();
     this.panel5.SuspendLayout();
     this.SuspendLayout();
     //
     // InfoDisplay
     //
     this.InfoDisplay.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.lblFeatureCount,
     this.IdentifyProgress});
     this.InfoDisplay.Location = new System.Drawing.Point(3, 338);
     this.InfoDisplay.Name = "InfoDisplay";
     this.InfoDisplay.Size = new System.Drawing.Size(522, 22);
     this.InfoDisplay.TabIndex = 3;
     this.InfoDisplay.Text = "信息显示";
     //
     // lblFeatureCount
     //
     this.lblFeatureCount.AutoSize = false;
     this.lblFeatureCount.BorderStyle = System.Windows.Forms.Border3DStyle.Adjust;
     this.lblFeatureCount.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.lblFeatureCount.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.lblFeatureCount.Name = "lblFeatureCount";
     this.lblFeatureCount.Size = new System.Drawing.Size(160, 17);
     this.lblFeatureCount.Text = "查询到 0 条记录";
     this.lblFeatureCount.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // IdentifyProgress
     //
     this.IdentifyProgress.Name = "IdentifyProgress";
     this.IdentifyProgress.Size = new System.Drawing.Size(200, 16);
     this.IdentifyProgress.Visible = false;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.panel7);
     this.panel1.Controls.Add(this.panel6);
     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(522, 28);
     this.panel1.TabIndex = 4;
     //
     // panel7
     //
     this.panel7.Controls.Add(this.cmbLayerFilter);
     this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel7.Location = new System.Drawing.Point(74, 0);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(448, 28);
     this.panel7.TabIndex = 1;
     //
     // cmbLayerFilter
     //
     this.cmbLayerFilter.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbLayerFilter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbLayerFilter.FormattingEnabled = true;
     this.cmbLayerFilter.ItemHeight = 12;
     this.cmbLayerFilter.Location = new System.Drawing.Point(0, 4);
     this.cmbLayerFilter.Name = "cmbLayerFilter";
     this.cmbLayerFilter.Size = new System.Drawing.Size(448, 20);
     this.cmbLayerFilter.TabIndex = 5;
     //
     // panel6
     //
     this.panel6.Controls.Add(this.lblLayers);
     this.panel6.Dock = System.Windows.Forms.DockStyle.Left;
     this.panel6.Location = new System.Drawing.Point(0, 0);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(74, 28);
     this.panel6.TabIndex = 0;
     //
     // lblLayers
     //
     this.lblLayers.AutoSize = true;
     this.lblLayers.Location = new System.Drawing.Point(7, 9);
     this.lblLayers.Name = "lblLayers";
     this.lblLayers.Size = new System.Drawing.Size(65, 12);
     this.lblLayers.TabIndex = 4;
     this.lblLayers.Text = "查询图层:";
     //
     // panel2
     //
     this.panel2.Controls.Add(this.splitContainer);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(3, 31);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(522, 307);
     this.panel2.TabIndex = 5;
     //
     // splitContainer
     //
     this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer.Location = new System.Drawing.Point(0, 0);
     this.splitContainer.Name = "splitContainer";
     //
     // splitContainer.Panel1
     //
     this.splitContainer.Panel1.Controls.Add(this.trvDataList);
     //
     // splitContainer.Panel2
     //
     this.splitContainer.Panel2.Controls.Add(this.attributePanel);
     this.splitContainer.Panel2.Controls.Add(this.panel3);
     this.splitContainer.Size = new System.Drawing.Size(522, 307);
     this.splitContainer.SplitterDistance = 176;
     this.splitContainer.TabIndex = 5;
     //
     // trvDataList
     //
     this.trvDataList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.trvDataList.Location = new System.Drawing.Point(0, 0);
     this.trvDataList.Name = "trvDataList";
     this.trvDataList.Size = new System.Drawing.Size(176, 307);
     this.trvDataList.TabIndex = 0;
     this.trvDataList.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.OnNodeMouseClick);
     //
     // attributePanel
     //
     this.attributePanel.Controls.Add(this.lstProperties);
     this.attributePanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.attributePanel.Location = new System.Drawing.Point(0, 23);
     this.attributePanel.Name = "attributePanel";
     this.attributePanel.Size = new System.Drawing.Size(342, 284);
     this.attributePanel.TabIndex = 1;
     //
     // lstProperties
     //
     this.lstProperties.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.lstProperties.FullRowSelect = true;
     this.lstProperties.GridLines = true;
     this.lstProperties.HideSelection = false;
     this.lstProperties.Location = new System.Drawing.Point(0, 2);
     this.lstProperties.Name = "lstProperties";
     this.lstProperties.Size = new System.Drawing.Size(342, 282);
     this.lstProperties.TabIndex = 0;
     this.lstProperties.UseCompatibleStateImageBehavior = false;
     this.lstProperties.View = System.Windows.Forms.View.Details;
     this.lstProperties.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.lstProperties_ColumnClick);
     this.lstProperties.Resize += new System.EventHandler(this.lstProperties_Resize);
     //
     // panel3
     //
     this.panel3.Controls.Add(this.panel4);
     this.panel3.Controls.Add(this.panel5);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel3.Location = new System.Drawing.Point(0, 0);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(342, 23);
     this.panel3.TabIndex = 0;
     //
     // panel4
     //
     this.panel4.Controls.Add(this.txtCoordinate);
     this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel4.Location = new System.Drawing.Point(68, 0);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(274, 23);
     this.panel4.TabIndex = 1;
     //
     // txtCoordinate
     //
     this.txtCoordinate.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtCoordinate.Location = new System.Drawing.Point(0, 0);
     this.txtCoordinate.Name = "txtCoordinate";
     this.txtCoordinate.ReadOnly = true;
     this.txtCoordinate.Size = new System.Drawing.Size(274, 21);
     this.txtCoordinate.TabIndex = 0;
     //
     // panel5
     //
     this.panel5.Controls.Add(this.lblHitPointTxt);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Left;
     this.panel5.Location = new System.Drawing.Point(0, 0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(68, 23);
     this.panel5.TabIndex = 0;
     //
     // lblHitPointTxt
     //
     this.lblHitPointTxt.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lblHitPointTxt.Location = new System.Drawing.Point(0, 0);
     this.lblHitPointTxt.Name = "lblHitPointTxt";
     this.lblHitPointTxt.Size = new System.Drawing.Size(68, 23);
     this.lblHitPointTxt.TabIndex = 3;
     this.lblHitPointTxt.Text = "点击位置:";
     this.lblHitPointTxt.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // IdentifyDialog
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(528, 363);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.InfoDisplay);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "IdentifyDialog";
     this.Padding = new System.Windows.Forms.Padding(3);
     this.Text = "属性查询";
     this.TopMost = true;
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.IdentifyDialog_FormClosed);
     this.Load += new System.EventHandler(this.IdentifyDialog_Load);
     this.InfoDisplay.ResumeLayout(false);
     this.InfoDisplay.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel7.ResumeLayout(false);
     this.panel6.ResumeLayout(false);
     this.panel6.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.splitContainer.Panel1.ResumeLayout(false);
     this.splitContainer.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
     this.splitContainer.ResumeLayout(false);
     this.attributePanel.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     this.panel4.PerformLayout();
     this.panel5.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #52
0
 /// <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);
 }
Пример #53
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 componentResourceManager = new System.ComponentModel.ComponentResourceManager(typeof(IntelliTrack.Client.Application.MapForm));
   toolStrip1 = new System.Windows.Forms.ToolStrip();
   ZoomWindow = new System.Windows.Forms.ToolStripButton();
   ZoomIn = new System.Windows.Forms.ToolStripButton();
   ZoomOut = new System.Windows.Forms.ToolStripButton();
   toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
   Pan = new System.Windows.Forms.ToolStripButton();
   toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
   btnLaunchInBrowser = new System.Windows.Forms.ToolStripButton();
   Info = new System.Windows.Forms.ToolStripButton();
   toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
   RedrawProgressBar = new System.Windows.Forms.ToolStripProgressBar();
   toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
   btnInicio = new System.Windows.Forms.ToolStripButton();
   btnEjecutar = new System.Windows.Forms.ToolStripButton();
   btnPausa = new System.Windows.Forms.ToolStripButton();
   btnDetener = new System.Windows.Forms.ToolStripButton();
   btnConfiguracionConsultaHistorica = new System.Windows.Forms.ToolStripButton();
   lblInformation = new System.Windows.Forms.Label();
   panel1 = new System.Windows.Forms.Panel();
   udRegistrosPorSegundo = new System.Windows.Forms.NumericUpDown();
   lblPosicion = new System.Windows.Forms.Label();
   trackPosicion = new System.Windows.Forms.TrackBar();
   lblEstado = new System.Windows.Forms.Label();
   toolStrip1.SuspendLayout();
   panel1.SuspendLayout();
   udRegistrosPorSegundo.BeginInit();
   trackPosicion.BeginInit();
   SuspendLayout();
   System.Windows.Forms.ToolStripItem[] toolStripItemArr = new System.Windows.Forms.ToolStripItem[] {
                                                                                                            ZoomWindow, 
                                                                                                            ZoomIn, 
                                                                                                            ZoomOut, 
                                                                                                            toolStripSeparator1, 
                                                                                                            Pan, 
                                                                                                            toolStripSeparator3, 
                                                                                                            btnLaunchInBrowser, 
                                                                                                            Info, 
                                                                                                            toolStripSeparator2, 
                                                                                                            RedrawProgressBar, 
                                                                                                            toolStripSeparator4, 
                                                                                                            btnInicio, 
                                                                                                            btnEjecutar, 
                                                                                                            btnPausa, 
                                                                                                            btnDetener, 
                                                                                                            btnConfiguracionConsultaHistorica };
   toolStrip1.Items.AddRange(toolStripItemArr);
   toolStrip1.Location = new System.Drawing.Point(0, 0);
   toolStrip1.Name = "toolStrip1";
   toolStrip1.Size = new System.Drawing.Size(542, 25);
   toolStrip1.TabIndex = 0;
   toolStrip1.Text = "toolStrip1";
   ZoomWindow.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
   ZoomWindow.Image = (System.Drawing.Image)componentResourceManager.GetObject("ZoomWindow.Image");
   ZoomWindow.ImageTransparentColor = System.Drawing.Color.Magenta;
   ZoomWindow.Name = "ZoomWindow";
   ZoomWindow.Size = new System.Drawing.Size(23, 22);
   ZoomWindow.Text = "toolStripButton1";
   ZoomWindow.ToolTipText = "Zoom Window";
   ZoomWindow.Click += new System.EventHandler(ZoomWindow_Click);
   ZoomIn.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
   ZoomIn.Image = (System.Drawing.Image)componentResourceManager.GetObject("ZoomIn.Image");
   ZoomIn.ImageTransparentColor = System.Drawing.Color.Magenta;
   ZoomIn.Name = "ZoomIn";
   ZoomIn.Size = new System.Drawing.Size(23, 22);
   ZoomIn.Text = "toolStripButton2";
   ZoomIn.ToolTipText = "Zoom In";
   ZoomIn.Click += new System.EventHandler(ZoomIn_Click);
   ZoomOut.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
   ZoomOut.Image = (System.Drawing.Image)componentResourceManager.GetObject("ZoomOut.Image");
   ZoomOut.ImageTransparentColor = System.Drawing.Color.Magenta;
   ZoomOut.Name = "ZoomOut";
   ZoomOut.Size = new System.Drawing.Size(23, 22);
   ZoomOut.Text = "toolStripButton3";
   ZoomOut.ToolTipText = "Zoom out";
   ZoomOut.Click += new System.EventHandler(ZoomOut_Click);
   toolStripSeparator1.Name = "toolStripSeparator1";
   toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
   Pan.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
   Pan.Image = (System.Drawing.Image)componentResourceManager.GetObject("Pan.Image");
   Pan.ImageTransparentColor = System.Drawing.Color.Magenta;
   Pan.Name = "Pan";
   Pan.Size = new System.Drawing.Size(23, 22);
   Pan.Text = "toolStripButton1";
   Pan.ToolTipText = "Pan";
   Pan.Click += new System.EventHandler(Pan_Click);
   toolStripSeparator3.Name = "toolStripSeparator3";
   toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
   toolStripSeparator3.Visible = false;
   btnLaunchInBrowser.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
   btnLaunchInBrowser.Image = (System.Drawing.Image)componentResourceManager.GetObject("btnLaunchInBrowser.Image");
   btnLaunchInBrowser.ImageTransparentColor = System.Drawing.Color.Magenta;
   btnLaunchInBrowser.Name = "btnLaunchInBrowser";
   btnLaunchInBrowser.Size = new System.Drawing.Size(23, 22);
   btnLaunchInBrowser.Text = "btnLaunchInBrowser";
   btnLaunchInBrowser.Click += new System.EventHandler(toolStripButton1_Click);
   Info.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
   Info.Image = (System.Drawing.Image)componentResourceManager.GetObject("Info.Image");
   Info.ImageTransparentColor = System.Drawing.Color.Magenta;
   Info.Name = "Info";
   Info.Size = new System.Drawing.Size(23, 22);
   Info.Text = "toolStripButton1";
   Info.Click += new System.EventHandler(Info_Click);
   toolStripSeparator2.Name = "toolStripSeparator2";
   toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
   RedrawProgressBar.Name = "RedrawProgressBar";
   RedrawProgressBar.Size = new System.Drawing.Size(100, 22);
   RedrawProgressBar.Visible = false;
   toolStripSeparator4.Name = "toolStripSeparator4";
   toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
   btnInicio.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
   btnInicio.Image = (System.Drawing.Image)componentResourceManager.GetObject("btnInicio.Image");
   btnInicio.ImageTransparentColor = System.Drawing.Color.Magenta;
   btnInicio.Name = "btnInicio";
   btnInicio.Size = new System.Drawing.Size(23, 22);
   btnInicio.Text = "Inicio";
   btnInicio.Click += new System.EventHandler(btnInicio_Click);
   btnEjecutar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
   btnEjecutar.Image = (System.Drawing.Image)componentResourceManager.GetObject("btnEjecutar.Image");
   btnEjecutar.ImageTransparentColor = System.Drawing.Color.Magenta;
   btnEjecutar.Name = "btnEjecutar";
   btnEjecutar.Size = new System.Drawing.Size(23, 22);
   btnEjecutar.Text = "Ejecutar";
   btnEjecutar.Click += new System.EventHandler(btnEjecutar_Click);
   btnPausa.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
   btnPausa.Image = (System.Drawing.Image)componentResourceManager.GetObject("btnPausa.Image");
   btnPausa.ImageTransparentColor = System.Drawing.Color.Magenta;
   btnPausa.Name = "btnPausa";
   btnPausa.Size = new System.Drawing.Size(23, 22);
   btnPausa.Text = "Pausa";
   btnPausa.Click += new System.EventHandler(btnPausa_Click);
   btnDetener.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
   btnDetener.Image = (System.Drawing.Image)componentResourceManager.GetObject("btnDetener.Image");
   btnDetener.ImageTransparentColor = System.Drawing.Color.Magenta;
   btnDetener.Name = "btnDetener";
   btnDetener.Size = new System.Drawing.Size(23, 22);
   btnDetener.Text = "Detener";
   btnDetener.Click += new System.EventHandler(btnDetener_Click);
   btnConfiguracionConsultaHistorica.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
   btnConfiguracionConsultaHistorica.Image = (System.Drawing.Image)componentResourceManager.GetObject("btnConfiguracionConsultaHistorica.Image");
   btnConfiguracionConsultaHistorica.ImageTransparentColor = System.Drawing.Color.Magenta;
   btnConfiguracionConsultaHistorica.Name = "btnConfiguracionConsultaHistorica";
   btnConfiguracionConsultaHistorica.Size = new System.Drawing.Size(23, 22);
   btnConfiguracionConsultaHistorica.Text = "Configuraci\u00F3n";
   btnConfiguracionConsultaHistorica.Click += new System.EventHandler(btnConfiguracionConsultaHistorica_Click);
   lblInformation.AutoSize = true;
   lblInformation.Location = new System.Drawing.Point(12, 45);
   lblInformation.Name = "lblInformation";
   lblInformation.Size = new System.Drawing.Size(69, 13);
   lblInformation.TabIndex = 1;
   lblInformation.Text = "lblInformation";
   panel1.Anchor = System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left;
   panel1.Controls.Add(udRegistrosPorSegundo);
   panel1.Controls.Add(lblPosicion);
   panel1.Controls.Add(trackPosicion);
   panel1.Controls.Add(lblEstado);
   panel1.Location = new System.Drawing.Point(0, 189);
   panel1.Name = "panel1";
   panel1.Size = new System.Drawing.Size(142, 77);
   panel1.TabIndex = 2;
   udRegistrosPorSegundo.Dock = System.Windows.Forms.DockStyle.Top;
   udRegistrosPorSegundo.Location = new System.Drawing.Point(0, 54);
   int[] iArr1 = new int[4];
   iArr1[0] = 50;
   udRegistrosPorSegundo.Maximum = new System.Decimal(iArr1);
   int[] iArr2 = new int[4];
   iArr2[0] = 1;
   udRegistrosPorSegundo.Minimum = new System.Decimal(iArr2);
   udRegistrosPorSegundo.Name = "udRegistrosPorSegundo";
   udRegistrosPorSegundo.Size = new System.Drawing.Size(142, 20);
   udRegistrosPorSegundo.TabIndex = 3;
   int[] iArr3 = new int[4];
   iArr3[0] = 1;
   udRegistrosPorSegundo.Value = new System.Decimal(iArr3);
   udRegistrosPorSegundo.ValueChanged += new System.EventHandler(udRegistrosPorSegundo_ValueChanged);
   lblPosicion.Dock = System.Windows.Forms.DockStyle.Top;
   lblPosicion.Location = new System.Drawing.Point(0, 41);
   lblPosicion.Name = "lblPosicion";
   lblPosicion.Size = new System.Drawing.Size(142, 13);
   lblPosicion.TabIndex = 2;
   trackPosicion.AutoSize = false;
   trackPosicion.Dock = System.Windows.Forms.DockStyle.Top;
   trackPosicion.Location = new System.Drawing.Point(0, 13);
   trackPosicion.Maximum = 1000000;
   trackPosicion.Name = "trackPosicion";
   trackPosicion.Size = new System.Drawing.Size(142, 28);
   trackPosicion.TabIndex = 1;
   trackPosicion.TickFrequency = 0;
   trackPosicion.TickStyle = System.Windows.Forms.TickStyle.None;
   trackPosicion.Scroll += new System.EventHandler(trackPosicion_Scroll);
   lblEstado.Dock = System.Windows.Forms.DockStyle.Top;
   lblEstado.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
   lblEstado.ForeColor = System.Drawing.Color.Green;
   lblEstado.Location = new System.Drawing.Point(0, 0);
   lblEstado.Name = "lblEstado";
   lblEstado.Size = new System.Drawing.Size(142, 13);
   lblEstado.TabIndex = 0;
   lblEstado.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
   AutoScaleDimensions = new System.Drawing.SizeF(6.0F, 13.0F);
   AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
   AutoSize = true;
   BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
   ClientSize = new System.Drawing.Size(542, 266);
   Controls.Add(panel1);
   Controls.Add(lblInformation);
   Controls.Add(toolStrip1);
   DoubleBuffered = true;
   Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
   Name = "MapForm";
   Text = "Mapa";
   MouseUp += new System.Windows.Forms.MouseEventHandler(MapForm_MouseUp);
   Scroll += new System.Windows.Forms.ScrollEventHandler(MapForm_Scroll);
   SizeChanged += new System.EventHandler(MapForm_SizeChanged);
   MouseDown += new System.Windows.Forms.MouseEventHandler(MapForm_MouseDown);
   FormClosing += new System.Windows.Forms.FormClosingEventHandler(MapForm_FormClosing);
   MouseMove += new System.Windows.Forms.MouseEventHandler(MapForm_MouseMove);
   toolStrip1.ResumeLayout(false);
   toolStrip1.PerformLayout();
   panel1.ResumeLayout(false);
   udRegistrosPorSegundo.EndInit();
   trackPosicion.EndInit();
   ResumeLayout(false);
   PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.cmdOK = new System.Windows.Forms.Button();
     this.cmdCancel = new System.Windows.Forms.Button();
     this.picASCOM = new System.Windows.Forms.PictureBox();
     this.label2 = new System.Windows.Forms.Label();
     this.chkTrace = new System.Windows.Forms.CheckBox();
     this.button1 = new System.Windows.Forms.Button();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.SelectedComPort = new System.Windows.Forms.ComboBox();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.label3 = new System.Windows.Forms.Label();
     this.SelectedBluetooth = new System.Windows.Forms.TextBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.CheckScope = new System.Windows.Forms.Button();
     this.TrackingMode = new System.Windows.Forms.ComboBox();
     this.label13 = new System.Windows.Forms.Label();
     this.HasGPS = new System.Windows.Forms.CheckBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.Obstruction = new System.Windows.Forms.NumericUpDown();
     this.Focal = new System.Windows.Forms.NumericUpDown();
     this.Apperture = new System.Windows.Forms.NumericUpDown();
     this.ObstructionLabel = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.ScopeSelection = new System.Windows.Forms.ComboBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.Elevation = new System.Windows.Forms.NumericUpDown();
     this.Latitude = new System.Windows.Forms.TextBox();
     this.Longitude = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.LatSuff = new System.Windows.Forms.ComboBox();
     this.LonSuff = new System.Windows.Forms.ComboBox();
     this.label4 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
     this.ShowHandControl = new System.Windows.Forms.CheckBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     ((System.ComponentModel.ISupportInitialize)(this.picASCOM)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Obstruction)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Focal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Apperture)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Elevation)).BeginInit();
     this.statusStrip1.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.SuspendLayout();
     //
     // cmdOK
     //
     this.cmdOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.cmdOK.Location = new System.Drawing.Point(4, 228);
     this.cmdOK.Name = "cmdOK";
     this.cmdOK.Size = new System.Drawing.Size(59, 24);
     this.cmdOK.TabIndex = 0;
     this.cmdOK.Text = "OK";
     this.cmdOK.UseVisualStyleBackColor = true;
     this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click);
     //
     // cmdCancel
     //
     this.cmdCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cmdCancel.Location = new System.Drawing.Point(4, 256);
     this.cmdCancel.Name = "cmdCancel";
     this.cmdCancel.Size = new System.Drawing.Size(59, 25);
     this.cmdCancel.TabIndex = 1;
     this.cmdCancel.Text = "Cancel";
     this.cmdCancel.UseVisualStyleBackColor = true;
     this.cmdCancel.Click += new System.EventHandler(this.cmdCancel_Click);
     //
     // picASCOM
     //
     this.picASCOM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.picASCOM.Cursor = System.Windows.Forms.Cursors.Hand;
     this.picASCOM.Image = global::ASCOM.CelestronAdvancedBlueTooth.Properties.Resources.ASCOM;
     this.picASCOM.Location = new System.Drawing.Point(15, 3);
     this.picASCOM.Name = "picASCOM";
     this.picASCOM.Size = new System.Drawing.Size(48, 56);
     this.picASCOM.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.picASCOM.TabIndex = 3;
     this.picASCOM.TabStop = false;
     this.picASCOM.Click += new System.EventHandler(this.BrowseToAscom);
     this.picASCOM.DoubleClick += new System.EventHandler(this.BrowseToAscom);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(9, 9);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(58, 13);
     this.label2.TabIndex = 0;
     this.label2.Text = "Comm Port";
     //
     // chkTrace
     //
     this.chkTrace.AutoSize = true;
     this.chkTrace.Location = new System.Drawing.Point(133, 16);
     this.chkTrace.Name = "chkTrace";
     this.chkTrace.Size = new System.Drawing.Size(69, 17);
     this.chkTrace.TabIndex = 6;
     this.chkTrace.Text = "Trace on";
     this.chkTrace.UseVisualStyleBackColor = true;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(335, 4);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(21, 23);
     this.button1.TabIndex = 0;
     this.button1.Text = "..";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.tabControl1.Location = new System.Drawing.Point(0, 0);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(475, 59);
     this.tabControl1.TabIndex = 0;
     this.tabControl1.Selected += new System.Windows.Forms.TabControlEventHandler(this.tabControl1_Selected);
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.SelectedComPort);
     this.tabPage1.Controls.Add(this.label2);
     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(467, 33);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "COM";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // SelectedComPort
     //
     this.SelectedComPort.FormattingEnabled = true;
     this.SelectedComPort.Location = new System.Drawing.Point(73, 6);
     this.SelectedComPort.Name = "SelectedComPort";
     this.SelectedComPort.Size = new System.Drawing.Size(121, 21);
     this.SelectedComPort.TabIndex = 1;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.label3);
     this.tabPage2.Controls.Add(this.SelectedBluetooth);
     this.tabPage2.Controls.Add(this.button1);
     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(467, 33);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "BlueTooth";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(8, 9);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(87, 13);
     this.label3.TabIndex = 0;
     this.label3.Text = "Selected device:";
     //
     // SelectedBluetooth
     //
     this.SelectedBluetooth.Location = new System.Drawing.Point(101, 6);
     this.SelectedBluetooth.Name = "SelectedBluetooth";
     this.SelectedBluetooth.ReadOnly = true;
     this.SelectedBluetooth.Size = new System.Drawing.Size(228, 20);
     this.SelectedBluetooth.TabIndex = 1;
     this.SelectedBluetooth.Click += new System.EventHandler(this.SelectedBluetooth_Click);
     this.SelectedBluetooth.TextChanged += new System.EventHandler(this.SelectedBluetooth_TextChanged);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.CheckScope);
     this.panel1.Controls.Add(this.picASCOM);
     this.panel1.Controls.Add(this.cmdOK);
     this.panel1.Controls.Add(this.cmdCancel);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel1.Location = new System.Drawing.Point(475, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(66, 284);
     this.panel1.TabIndex = 11;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.groupBox4);
     this.panel2.Controls.Add(this.groupBox3);
     this.panel2.Controls.Add(this.groupBox2);
     this.panel2.Controls.Add(this.groupBox1);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 59);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(475, 225);
     this.panel2.TabIndex = 12;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.TrackingMode);
     this.groupBox3.Controls.Add(this.label13);
     this.groupBox3.Controls.Add(this.HasGPS);
     this.groupBox3.Location = new System.Drawing.Point(220, 136);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(247, 86);
     this.groupBox3.TabIndex = 18;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Telescope Settings";
     //
     // CheckScope
     //
     this.CheckScope.Enabled = false;
     this.CheckScope.Location = new System.Drawing.Point(4, 202);
     this.CheckScope.Name = "CheckScope";
     this.CheckScope.Size = new System.Drawing.Size(59, 23);
     this.CheckScope.TabIndex = 16;
     this.CheckScope.Text = "Check";
     this.CheckScope.UseVisualStyleBackColor = true;
     this.CheckScope.Click += new System.EventHandler(this.CheckScope_Click);
     //
     // TrackingMode
     //
     this.TrackingMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.TrackingMode.FormattingEnabled = true;
     this.TrackingMode.Items.AddRange(new object[] {
     "None",
     "AltAzm",
     "Eq N",
     "Eq S"});
     this.TrackingMode.Location = new System.Drawing.Point(90, 36);
     this.TrackingMode.Name = "TrackingMode";
     this.TrackingMode.Size = new System.Drawing.Size(79, 21);
     this.TrackingMode.TabIndex = 1;
     this.TrackingMode.SelectedIndexChanged += new System.EventHandler(this.Field_ValueChanged);
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(8, 39);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(79, 13);
     this.label13.TabIndex = 19;
     this.label13.Text = "Tracking Mode";
     //
     // HasGPS
     //
     this.HasGPS.AutoSize = true;
     this.HasGPS.Checked = true;
     this.HasGPS.CheckState = System.Windows.Forms.CheckState.Indeterminate;
     this.HasGPS.Location = new System.Drawing.Point(9, 19);
     this.HasGPS.Name = "HasGPS";
     this.HasGPS.Size = new System.Drawing.Size(68, 17);
     this.HasGPS.TabIndex = 0;
     this.HasGPS.Text = "has GPS";
     this.HasGPS.UseVisualStyleBackColor = true;
     this.HasGPS.CheckedChanged += new System.EventHandler(this.HasGPS_CheckedChanged);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.Obstruction);
     this.groupBox2.Controls.Add(this.Focal);
     this.groupBox2.Controls.Add(this.Apperture);
     this.groupBox2.Controls.Add(this.ObstructionLabel);
     this.groupBox2.Controls.Add(this.label10);
     this.groupBox2.Controls.Add(this.label8);
     this.groupBox2.Controls.Add(this.ScopeSelection);
     this.groupBox2.Location = new System.Drawing.Point(220, 6);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(247, 124);
     this.groupBox2.TabIndex = 2;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Telescope Properties";
     //
     // Obstruction
     //
     this.Obstruction.Location = new System.Drawing.Point(90, 98);
     this.Obstruction.Name = "Obstruction";
     this.Obstruction.Size = new System.Drawing.Size(79, 20);
     this.Obstruction.TabIndex = 18;
     this.Obstruction.ValueChanged += new System.EventHandler(this.Field_ValueChanged);
     //
     // Focal
     //
     this.Focal.Location = new System.Drawing.Point(90, 72);
     this.Focal.Maximum = new decimal(new int[] {
     10000,
     0,
     0,
     0});
     this.Focal.Name = "Focal";
     this.Focal.Size = new System.Drawing.Size(79, 20);
     this.Focal.TabIndex = 17;
     this.Focal.ValueChanged += new System.EventHandler(this.Field_ValueChanged);
     //
     // Apperture
     //
     this.Apperture.Location = new System.Drawing.Point(90, 46);
     this.Apperture.Maximum = new decimal(new int[] {
     50000,
     0,
     0,
     0});
     this.Apperture.Name = "Apperture";
     this.Apperture.Size = new System.Drawing.Size(79, 20);
     this.Apperture.TabIndex = 16;
     this.Apperture.ValueChanged += new System.EventHandler(this.Field_ValueChanged);
     //
     // ObstructionLabel
     //
     this.ObstructionLabel.AutoSize = true;
     this.ObstructionLabel.Location = new System.Drawing.Point(6, 100);
     this.ObstructionLabel.Name = "ObstructionLabel";
     this.ObstructionLabel.Size = new System.Drawing.Size(81, 13);
     this.ObstructionLabel.TabIndex = 15;
     this.ObstructionLabel.Text = "Obstruction (%):";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(6, 74);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(61, 13);
     this.label10.TabIndex = 12;
     this.label10.Text = "Focal (mm):";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(6, 48);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(81, 13);
     this.label8.TabIndex = 9;
     this.label8.Text = "Apperture (mm):";
     //
     // ScopeSelection
     //
     this.ScopeSelection.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ScopeSelection.FormattingEnabled = true;
     this.ScopeSelection.Items.AddRange(new object[] {
     "Celestrone Advanced C6-NGT",
     "Celestrone Advanced C6-SCT",
     "Celestrone Advanced C8-NGT",
     "Celestrone Advanced C8-SCT"});
     this.ScopeSelection.Location = new System.Drawing.Point(6, 19);
     this.ScopeSelection.Name = "ScopeSelection";
     this.ScopeSelection.Size = new System.Drawing.Size(234, 21);
     this.ScopeSelection.TabIndex = 0;
     this.ScopeSelection.SelectedIndexChanged += new System.EventHandler(this.ScopeSelection_SelectedIndexChanged);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.Elevation);
     this.groupBox1.Controls.Add(this.Latitude);
     this.groupBox1.Controls.Add(this.Longitude);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.LatSuff);
     this.groupBox1.Controls.Add(this.LonSuff);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Location = new System.Drawing.Point(4, 6);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(210, 124);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Location";
     //
     // Elevation
     //
     this.Elevation.Location = new System.Drawing.Point(79, 72);
     this.Elevation.Maximum = new decimal(new int[] {
     10000,
     0,
     0,
     0});
     this.Elevation.Name = "Elevation";
     this.Elevation.Size = new System.Drawing.Size(79, 20);
     this.Elevation.TabIndex = 17;
     this.Elevation.ValueChanged += new System.EventHandler(this.Field_ValueChanged);
     //
     // Latitude
     //
     this.Latitude.Location = new System.Drawing.Point(79, 19);
     this.Latitude.Name = "Latitude";
     this.Latitude.Size = new System.Drawing.Size(79, 20);
     this.Latitude.TabIndex = 8;
     this.Latitude.Validated += new System.EventHandler(this.GPS_Validated);
     //
     // Longitude
     //
     this.Longitude.Location = new System.Drawing.Point(79, 45);
     this.Longitude.Name = "Longitude";
     this.Longitude.Size = new System.Drawing.Size(79, 20);
     this.Longitude.TabIndex = 7;
     this.Longitude.Validated += new System.EventHandler(this.GPS_Validated);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(6, 74);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(71, 13);
     this.label5.TabIndex = 6;
     this.label5.Text = "Elevation (m):";
     //
     // LatSuff
     //
     this.LatSuff.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.LatSuff.FormattingEnabled = true;
     this.LatSuff.Items.AddRange(new object[] {
     "N",
     "S"});
     this.LatSuff.Location = new System.Drawing.Point(164, 19);
     this.LatSuff.Name = "LatSuff";
     this.LatSuff.Size = new System.Drawing.Size(38, 21);
     this.LatSuff.TabIndex = 1;
     //
     // LonSuff
     //
     this.LonSuff.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.LonSuff.FormattingEnabled = true;
     this.LonSuff.Items.AddRange(new object[] {
     "E",
     "W"});
     this.LonSuff.Location = new System.Drawing.Point(164, 45);
     this.LonSuff.Name = "LonSuff";
     this.LonSuff.Size = new System.Drawing.Size(38, 21);
     this.LonSuff.TabIndex = 3;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(6, 48);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(57, 13);
     this.label4.TabIndex = 4;
     this.label4.Text = "Longitude:";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(6, 22);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(48, 13);
     this.label1.TabIndex = 1;
     this.label1.Text = "Latitude:";
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel1,
     this.toolStripProgressBar1});
     this.statusStrip1.Location = new System.Drawing.Point(0, 284);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(541, 22);
     this.statusStrip1.TabIndex = 13;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(39, 17);
     this.toolStripStatusLabel1.Text = "Ready";
     //
     // toolStripProgressBar1
     //
     this.toolStripProgressBar1.Name = "toolStripProgressBar1";
     this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 16);
     this.toolStripProgressBar1.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
     this.toolStripProgressBar1.Visible = false;
     //
     // ShowHandControl
     //
     this.ShowHandControl.AutoSize = true;
     this.ShowHandControl.Location = new System.Drawing.Point(11, 16);
     this.ShowHandControl.Name = "ShowHandControl";
     this.ShowHandControl.Size = new System.Drawing.Size(88, 17);
     this.ShowHandControl.TabIndex = 19;
     this.ShowHandControl.Text = "Hand Control";
     this.ShowHandControl.UseVisualStyleBackColor = true;
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.ShowHandControl);
     this.groupBox4.Controls.Add(this.chkTrace);
     this.groupBox4.Location = new System.Drawing.Point(4, 136);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(210, 86);
     this.groupBox4.TabIndex = 19;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Misc";
     //
     // SetupDialogForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(541, 306);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.statusStrip1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "SetupDialogForm";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Celestron ASCOM Driver Setup";
     ((System.ComponentModel.ISupportInitialize)(this.picASCOM)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Obstruction)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Focal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Apperture)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Elevation)).EndInit();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #55
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();
 }
Пример #56
0
 public void setAtt(ref System.Windows.Forms.ToolStripProgressBar pb, ref System.Windows.Forms.ToolStripStatusLabel lb)
 {
     this.PB = pb;
     this.LB = lb;
 }
        /// <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();
        }
Пример #58
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.ColourTypeComboBox = new System.Windows.Forms.ComboBox();
     this.paintButton = new System.Windows.Forms.Button();
     this.ResolutionComboBox = new System.Windows.Forms.ComboBox();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.pictureBox = new System.Windows.Forms.PictureBox();
     this.leftButton = new System.Windows.Forms.Button();
     this.rightButton = new System.Windows.Forms.Button();
     this.button4 = new System.Windows.Forms.Button();
     this.deleteButton = new System.Windows.Forms.Button();
     this.progressBar = new System.Windows.Forms.ToolStripProgressBar();
     this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuOpen = new System.Windows.Forms.ToolStripMenuItem();
     this.saveMnu = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.filePathTextBox = new System.Windows.Forms.TextBox();
     this.filePathButton = new System.Windows.Forms.Button();
     this.label3 = new System.Windows.Forms.Label();
     this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
     this.statusStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // ColourTypeComboBox
     //
     this.ColourTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ColourTypeComboBox.FormattingEnabled = true;
     this.ColourTypeComboBox.Items.AddRange(new object[] {
     "2-bit Gray Scale(RAW, 2-bit for Y only)",
     "4-bit Gray Scale(RAW,4-bit for Y only)",
     "8-bit Gray Scale(RAW, 8-bit for Y only)",
     "8-bit Colour (RAW,332(RGB))",
     "12-bit Colour(RAW,332(RGB))",
     "16-bit Colour(RAW,565(RGB))",
     "JPEG"});
     this.ColourTypeComboBox.Location = new System.Drawing.Point(138, 27);
     this.ColourTypeComboBox.Name = "ColourTypeComboBox";
     this.ColourTypeComboBox.Size = new System.Drawing.Size(188, 21);
     this.ColourTypeComboBox.TabIndex = 0;
     //
     // paintButton
     //
     this.paintButton.Location = new System.Drawing.Point(138, 94);
     this.paintButton.Name = "paintButton";
     this.paintButton.Size = new System.Drawing.Size(75, 23);
     this.paintButton.TabIndex = 0;
     this.paintButton.Text = "Get Picture";
     this.paintButton.Click += new System.EventHandler(this.paintButton_Click);
     //
     // ResolutionComboBox
     //
     this.ResolutionComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ResolutionComboBox.FormattingEnabled = true;
     this.ResolutionComboBox.Items.AddRange(new object[] {
     "  80 x 64 ",
     "160 x 128 ",
     "320 x 240",
     "640 x 480",
     "128 x 128 (Raw only)",
     "128 x 96   (Raw only)"});
     this.ResolutionComboBox.Location = new System.Drawing.Point(138, 57);
     this.ResolutionComboBox.Name = "ResolutionComboBox";
     this.ResolutionComboBox.Size = new System.Drawing.Size(188, 21);
     this.ResolutionComboBox.TabIndex = 1;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(13, 30);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(64, 13);
     this.label1.TabIndex = 3;
     this.label1.Text = "Colour Type";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(13, 57);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(57, 13);
     this.label2.TabIndex = 4;
     this.label2.Text = "Resolution";
     //
     // pictureBox
     //
     this.pictureBox.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.pictureBox.Location = new System.Drawing.Point(418, 27);
     this.pictureBox.Name = "pictureBox";
     this.pictureBox.Size = new System.Drawing.Size(398, 289);
     this.pictureBox.TabIndex = 6;
     this.pictureBox.TabStop = false;
     this.pictureBox.Click += new System.EventHandler(this.pictureBox_Click);
     //
     // leftButton
     //
     this.leftButton.Location = new System.Drawing.Point(380, 153);
     this.leftButton.Name = "leftButton";
     this.leftButton.Size = new System.Drawing.Size(23, 23);
     this.leftButton.TabIndex = 7;
     this.leftButton.Text = "<";
     this.leftButton.UseVisualStyleBackColor = true;
     this.leftButton.Click += new System.EventHandler(this.leftButton_Click);
     //
     // rightButton
     //
     this.rightButton.Location = new System.Drawing.Point(822, 153);
     this.rightButton.Name = "rightButton";
     this.rightButton.Size = new System.Drawing.Size(23, 23);
     this.rightButton.TabIndex = 8;
     this.rightButton.Text = ">";
     this.rightButton.UseVisualStyleBackColor = true;
     this.rightButton.Click += new System.EventHandler(this.rightButton_Click);
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(16, 94);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(75, 23);
     this.button4.TabIndex = 12;
     this.button4.Text = "AutoTrigger";
     this.button4.UseVisualStyleBackColor = true;
     //
     // deleteButton
     //
     this.deleteButton.Location = new System.Drawing.Point(251, 94);
     this.deleteButton.Name = "deleteButton";
     this.deleteButton.Size = new System.Drawing.Size(75, 23);
     this.deleteButton.TabIndex = 14;
     this.deleteButton.Text = "Delete";
     this.deleteButton.UseVisualStyleBackColor = true;
     this.deleteButton.Click += new System.EventHandler(this.deleteButton_Click);
     //
     // progressBar
     //
     this.progressBar.Name = "progressBar";
     this.progressBar.Size = new System.Drawing.Size(100, 16);
     //
     // statusLabel
     //
     this.statusLabel.Name = "statusLabel";
     this.statusLabel.Size = new System.Drawing.Size(103, 17);
     this.statusLabel.Text = "status:No Loading";
     this.statusLabel.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.progressBar,
     this.statusLabel});
     this.statusStrip1.Location = new System.Drawing.Point(0, 354);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(858, 22);
     this.statusStrip1.TabIndex = 11;
     this.statusStrip1.Text = "statusStrip1";
     //
     // openFileDialog1
     //
     this.openFileDialog1.FileName = "test";
     this.openFileDialog1.InitialDirectory = "\"C:\\Users\\peak\\Pictures\\\"";
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.helpToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(858, 24);
     this.menuStrip1.TabIndex = 18;
     this.menuStrip1.Text = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuOpen,
     this.saveMnu,
     this.exitToolStripMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "File";
     //
     // mnuOpen
     //
     this.mnuOpen.Name = "mnuOpen";
     this.mnuOpen.Size = new System.Drawing.Size(114, 22);
     this.mnuOpen.Text = "&Open";
     this.mnuOpen.Click += new System.EventHandler(this.mnuOpen_Click);
     //
     // saveMnu
     //
     this.saveMnu.Name = "saveMnu";
     this.saveMnu.Size = new System.Drawing.Size(114, 22);
     this.saveMnu.Text = "&Save As";
     this.saveMnu.Click += new System.EventHandler(this.saveMnu_Click);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
     this.exitToolStripMenuItem.Text = "E&xit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "Help";
     //
     // filePathTextBox
     //
     this.filePathTextBox.Location = new System.Drawing.Point(12, 153);
     this.filePathTextBox.Name = "filePathTextBox";
     this.filePathTextBox.Size = new System.Drawing.Size(267, 20);
     this.filePathTextBox.TabIndex = 19;
     //
     // filePathButton
     //
     this.filePathButton.Location = new System.Drawing.Point(286, 153);
     this.filePathButton.Name = "filePathButton";
     this.filePathButton.Size = new System.Drawing.Size(39, 23);
     this.filePathButton.TabIndex = 20;
     this.filePathButton.Text = "...";
     this.filePathButton.UseVisualStyleBackColor = true;
     this.filePathButton.Click += new System.EventHandler(this.filePathButton_Click);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(13, 137);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(109, 13);
     this.label3.TabIndex = 21;
     this.label3.Text = "Choose your file path:";
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(858, 376);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.filePathButton);
     this.Controls.Add(this.filePathTextBox);
     this.Controls.Add(this.deleteButton);
     this.Controls.Add(this.button4);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.menuStrip1);
     this.Controls.Add(this.rightButton);
     this.Controls.Add(this.leftButton);
     this.Controls.Add(this.pictureBox);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.ResolutionComboBox);
     this.Controls.Add(this.paintButton);
     this.Controls.Add(this.ColourTypeComboBox);
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "MainForm";
     this.Text = "MainForm";
     this.Load += new System.EventHandler(this.MainForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     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()
 {
     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();
 }
Пример #60
0
 private void InitializeComponent()
 {
     this.kryptonPanel1 = new Krypton.Toolkit.KryptonPanel();
     this.statusStrip1  = new System.Windows.Forms.StatusStrip();
     this.tslInfo       = new System.Windows.Forms.ToolStripStatusLabel();
     this.tspbProgress  = new System.Windows.Forms.ToolStripProgressBar();
     this.panel1        = new System.Windows.Forms.Panel();
     this.kryptonPanel2 = new Krypton.Toolkit.KryptonPanel();
     this.kryptonCancelDialogButton1 = new Krypton.Toolkit.Suite.Extended.Dialogs.KryptonCancelDialogButton();
     this.kbtnLessDetails            = new Krypton.Toolkit.KryptonButton();
     this.kbtnCopy              = new Krypton.Toolkit.KryptonButton();
     this.kbtnSave              = new Krypton.Toolkit.KryptonButton();
     this.kbtnSend              = new Krypton.Toolkit.KryptonButton();
     this.kryptonPanel3         = new Krypton.Toolkit.KryptonPanel();
     this.kryptonNavigator1     = new Krypton.Navigator.KryptonNavigator();
     this.kryptonPage1          = new Krypton.Navigator.KryptonPage();
     this.krtbUserExpanation    = new Krypton.Toolkit.KryptonRichTextBox();
     this.kryptonLabel6         = new Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel4         = new Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel5         = new Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel3         = new Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel2         = new Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel1         = new Krypton.Toolkit.KryptonLabel();
     this.krtbExceptionMessage  = new Krypton.Toolkit.KryptonRichTextBox();
     this.picGeneral            = new System.Windows.Forms.PictureBox();
     this.kryptonPage2          = new Krypton.Navigator.KryptonPage();
     this.krtbExceptionLarge    = new Krypton.Toolkit.KryptonRichTextBox();
     this.kryptonPage3          = new Krypton.Navigator.KryptonPage();
     this.lvAssemblies          = new System.Windows.Forms.ListView();
     this.kryptonPage4          = new Krypton.Navigator.KryptonPage();
     this.ktvEnvironment        = new Krypton.Toolkit.KryptonTreeView();
     this.kryptonBorderedLabel1 = new Krypton.Toolkit.Suite.Extended.Base.KryptonBorderedLabel();
     this.kryptonBorderedLabel2 = new Krypton.Toolkit.Suite.Extended.Base.KryptonBorderedLabel();
     this.kryptonBorderedLabel3 = new Krypton.Toolkit.Suite.Extended.Base.KryptonBorderedLabel();
     this.kryptonBorderedLabel4 = new Krypton.Toolkit.Suite.Extended.Base.KryptonBorderedLabel();
     this.kryptonBorderedLabel5 = new Krypton.Toolkit.Suite.Extended.Base.KryptonBorderedLabel();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel3)).BeginInit();
     this.kryptonPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonNavigator1)).BeginInit();
     this.kryptonNavigator1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage1)).BeginInit();
     this.kryptonPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picGeneral)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage2)).BeginInit();
     this.kryptonPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage3)).BeginInit();
     this.kryptonPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage4)).BeginInit();
     this.kryptonPage4.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.statusStrip1);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 566);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(613, 22);
     this.kryptonPanel1.TabIndex = 0;
     //
     // statusStrip1
     //
     this.statusStrip1.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.tslInfo,
         this.tspbProgress
     });
     this.statusStrip1.Location   = new System.Drawing.Point(0, 0);
     this.statusStrip1.Name       = "statusStrip1";
     this.statusStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode;
     this.statusStrip1.Size       = new System.Drawing.Size(613, 22);
     this.statusStrip1.TabIndex   = 0;
     this.statusStrip1.Text       = "statusStrip1";
     //
     // tslInfo
     //
     this.tslInfo.Name      = "tslInfo";
     this.tslInfo.Size      = new System.Drawing.Size(496, 17);
     this.tslInfo.Spring    = true;
     this.tslInfo.Text      = "Loading system information...";
     this.tslInfo.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // tspbProgress
     //
     this.tspbProgress.Name = "tspbProgress";
     this.tspbProgress.Size = new System.Drawing.Size(100, 16);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 522);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(613, 3);
     this.panel1.TabIndex  = 2;
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kryptonCancelDialogButton1);
     this.kryptonPanel2.Controls.Add(this.kbtnLessDetails);
     this.kryptonPanel2.Controls.Add(this.kbtnCopy);
     this.kryptonPanel2.Controls.Add(this.kbtnSave);
     this.kryptonPanel2.Controls.Add(this.kbtnSend);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 525);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(613, 41);
     this.kryptonPanel2.TabIndex = 3;
     //
     // kryptonCancelDialogButton1
     //
     this.kryptonCancelDialogButton1.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kryptonCancelDialogButton1.Location     = new System.Drawing.Point(515, 7);
     this.kryptonCancelDialogButton1.Name         = "kryptonCancelDialogButton1";
     this.kryptonCancelDialogButton1.ParentWindow = null;
     this.kryptonCancelDialogButton1.Size         = new System.Drawing.Size(90, 25);
     this.kryptonCancelDialogButton1.TabIndex     = 9;
     this.kryptonCancelDialogButton1.Values.Text  = "C&ancel";
     //
     // kbtnLessDetails
     //
     this.kbtnLessDetails.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnLessDetails.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnLessDetails.Location     = new System.Drawing.Point(130, 7);
     this.kbtnLessDetails.Name         = "kbtnLessDetails";
     this.kbtnLessDetails.Size         = new System.Drawing.Size(90, 25);
     this.kbtnLessDetails.TabIndex     = 8;
     this.kbtnLessDetails.Values.Text  = "Less &Details";
     //
     // kbtnCopy
     //
     this.kbtnCopy.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnCopy.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnCopy.Location     = new System.Drawing.Point(226, 7);
     this.kbtnCopy.Name         = "kbtnCopy";
     this.kbtnCopy.Size         = new System.Drawing.Size(90, 25);
     this.kbtnCopy.TabIndex     = 7;
     this.kbtnCopy.Values.Text  = "&Copy";
     //
     // kbtnSave
     //
     this.kbtnSave.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnSave.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnSave.Location     = new System.Drawing.Point(322, 7);
     this.kbtnSave.Name         = "kbtnSave";
     this.kbtnSave.Size         = new System.Drawing.Size(90, 25);
     this.kbtnSave.TabIndex     = 6;
     this.kbtnSave.Values.Text  = "S&ave";
     //
     // kbtnSend
     //
     this.kbtnSend.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnSend.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnSend.Location     = new System.Drawing.Point(418, 7);
     this.kbtnSend.Name         = "kbtnSend";
     this.kbtnSend.Size         = new System.Drawing.Size(90, 25);
     this.kbtnSend.TabIndex     = 5;
     this.kbtnSend.Values.Text  = "S&end";
     //
     // kryptonPanel3
     //
     this.kryptonPanel3.Controls.Add(this.kryptonNavigator1);
     this.kryptonPanel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel3.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel3.Name     = "kryptonPanel3";
     this.kryptonPanel3.Size     = new System.Drawing.Size(613, 522);
     this.kryptonPanel3.TabIndex = 4;
     //
     // kryptonNavigator1
     //
     this.kryptonNavigator1.Button.CloseButtonDisplay = Krypton.Navigator.ButtonDisplay.Hide;
     this.kryptonNavigator1.Location = new System.Drawing.Point(12, 12);
     this.kryptonNavigator1.Name     = "kryptonNavigator1";
     this.kryptonNavigator1.Pages.AddRange(new Krypton.Navigator.KryptonPage[] {
         this.kryptonPage1,
         this.kryptonPage2,
         this.kryptonPage3,
         this.kryptonPage4
     });
     this.kryptonNavigator1.SelectedIndex = 0;
     this.kryptonNavigator1.Size          = new System.Drawing.Size(591, 500);
     this.kryptonNavigator1.TabIndex      = 0;
     this.kryptonNavigator1.Text          = "kryptonNavigator1";
     //
     // kryptonPage1
     //
     this.kryptonPage1.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kryptonPage1.Controls.Add(this.kryptonBorderedLabel5);
     this.kryptonPage1.Controls.Add(this.kryptonBorderedLabel4);
     this.kryptonPage1.Controls.Add(this.kryptonBorderedLabel3);
     this.kryptonPage1.Controls.Add(this.kryptonBorderedLabel2);
     this.kryptonPage1.Controls.Add(this.kryptonBorderedLabel1);
     this.kryptonPage1.Controls.Add(this.krtbUserExpanation);
     this.kryptonPage1.Controls.Add(this.kryptonLabel6);
     this.kryptonPage1.Controls.Add(this.kryptonLabel4);
     this.kryptonPage1.Controls.Add(this.kryptonLabel5);
     this.kryptonPage1.Controls.Add(this.kryptonLabel3);
     this.kryptonPage1.Controls.Add(this.kryptonLabel2);
     this.kryptonPage1.Controls.Add(this.kryptonLabel1);
     this.kryptonPage1.Controls.Add(this.krtbExceptionMessage);
     this.kryptonPage1.Controls.Add(this.picGeneral);
     this.kryptonPage1.Flags          = 65534;
     this.kryptonPage1.LastVisibleSet = true;
     this.kryptonPage1.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kryptonPage1.Name           = "kryptonPage1";
     this.kryptonPage1.Size           = new System.Drawing.Size(589, 473);
     this.kryptonPage1.Text           = "General";
     this.kryptonPage1.ToolTipTitle   = "Page ToolTip";
     this.kryptonPage1.UniqueName     = "08a4072e2e444d618f93b1769d0f5934";
     //
     // krtbUserExpanation
     //
     this.krtbUserExpanation.Location = new System.Drawing.Point(22, 265);
     this.krtbUserExpanation.Name     = "krtbUserExpanation";
     this.krtbUserExpanation.Size     = new System.Drawing.Size(552, 195);
     this.krtbUserExpanation.StateCommon.Back.Color1 = System.Drawing.Color.Cornsilk;
     this.krtbUserExpanation.TabIndex = 39;
     this.krtbUserExpanation.Text     = "";
     //
     // kryptonLabel6
     //
     this.kryptonLabel6.Location    = new System.Drawing.Point(22, 238);
     this.kryptonLabel6.Name        = "kryptonLabel6";
     this.kryptonLabel6.Size        = new System.Drawing.Size(390, 20);
     this.kryptonLabel6.TabIndex    = 38;
     this.kryptonLabel6.Values.Text = "Please enter a brief explanation of events leading up to this exception";
     //
     // kryptonLabel4
     //
     this.kryptonLabel4.Location    = new System.Drawing.Point(288, 196);
     this.kryptonLabel4.Name        = "kryptonLabel4";
     this.kryptonLabel4.Size        = new System.Drawing.Size(40, 20);
     this.kryptonLabel4.TabIndex    = 36;
     this.kryptonLabel4.Values.Text = "Time:";
     //
     // kryptonLabel5
     //
     this.kryptonLabel5.Location    = new System.Drawing.Point(22, 196);
     this.kryptonLabel5.Name        = "kryptonLabel5";
     this.kryptonLabel5.Size        = new System.Drawing.Size(39, 20);
     this.kryptonLabel5.TabIndex    = 34;
     this.kryptonLabel5.Values.Text = "Date:";
     //
     // kryptonLabel3
     //
     this.kryptonLabel3.Location    = new System.Drawing.Point(288, 154);
     this.kryptonLabel3.Name        = "kryptonLabel3";
     this.kryptonLabel3.Size        = new System.Drawing.Size(52, 20);
     this.kryptonLabel3.TabIndex    = 32;
     this.kryptonLabel3.Values.Text = "Region:";
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.Location    = new System.Drawing.Point(22, 154);
     this.kryptonLabel2.Name        = "kryptonLabel2";
     this.kryptonLabel2.Size        = new System.Drawing.Size(54, 20);
     this.kryptonLabel2.TabIndex    = 30;
     this.kryptonLabel2.Values.Text = "Version:";
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location    = new System.Drawing.Point(22, 107);
     this.kryptonLabel1.Name        = "kryptonLabel1";
     this.kryptonLabel1.Size        = new System.Drawing.Size(75, 20);
     this.kryptonLabel1.TabIndex    = 28;
     this.kryptonLabel1.Values.Text = "Application:";
     //
     // krtbExceptionMessage
     //
     this.krtbExceptionMessage.Location   = new System.Drawing.Point(92, 20);
     this.krtbExceptionMessage.Name       = "krtbExceptionMessage";
     this.krtbExceptionMessage.ReadOnly   = true;
     this.krtbExceptionMessage.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedVertical;
     this.krtbExceptionMessage.Size       = new System.Drawing.Size(482, 64);
     this.krtbExceptionMessage.TabIndex   = 27;
     this.krtbExceptionMessage.Text       = "";
     //
     // picGeneral
     //
     this.picGeneral.BackColor = System.Drawing.Color.Transparent;
     this.picGeneral.Image     = global::Krypton.Toolkit.Suite.Extended.Error.Reporting.Properties.Resources.Warning_64_x_58;
     this.picGeneral.Location  = new System.Drawing.Point(22, 20);
     this.picGeneral.Name      = "picGeneral";
     this.picGeneral.Size      = new System.Drawing.Size(64, 64);
     this.picGeneral.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.picGeneral.TabIndex  = 26;
     this.picGeneral.TabStop   = false;
     //
     // kryptonPage2
     //
     this.kryptonPage2.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kryptonPage2.Controls.Add(this.krtbExceptionLarge);
     this.kryptonPage2.Flags          = 65534;
     this.kryptonPage2.LastVisibleSet = true;
     this.kryptonPage2.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kryptonPage2.Name           = "kryptonPage2";
     this.kryptonPage2.Size           = new System.Drawing.Size(589, 473);
     this.kryptonPage2.Text           = "Exceptions";
     this.kryptonPage2.ToolTipTitle   = "Page ToolTip";
     this.kryptonPage2.UniqueName     = "694cc14036a848cf80adc36d768d2a0a";
     //
     // krtbExceptionLarge
     //
     this.krtbExceptionLarge.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.krtbExceptionLarge.Location = new System.Drawing.Point(0, 0);
     this.krtbExceptionLarge.Name     = "krtbExceptionLarge";
     this.krtbExceptionLarge.ReadOnly = true;
     this.krtbExceptionLarge.Size     = new System.Drawing.Size(589, 473);
     this.krtbExceptionLarge.TabIndex = 0;
     this.krtbExceptionLarge.Text     = "";
     //
     // kryptonPage3
     //
     this.kryptonPage3.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kryptonPage3.Controls.Add(this.lvAssemblies);
     this.kryptonPage3.Flags          = 65534;
     this.kryptonPage3.LastVisibleSet = true;
     this.kryptonPage3.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kryptonPage3.Name           = "kryptonPage3";
     this.kryptonPage3.Size           = new System.Drawing.Size(589, 473);
     this.kryptonPage3.Text           = "Assemblies";
     this.kryptonPage3.ToolTipTitle   = "Page ToolTip";
     this.kryptonPage3.UniqueName     = "fde488a4932e4ef29bd2bcb5e3a9d6fd";
     //
     // lvAssemblies
     //
     this.lvAssemblies.Activation     = System.Windows.Forms.ItemActivation.OneClick;
     this.lvAssemblies.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.lvAssemblies.FullRowSelect  = true;
     this.lvAssemblies.HideSelection  = false;
     this.lvAssemblies.HotTracking    = true;
     this.lvAssemblies.HoverSelection = true;
     this.lvAssemblies.Location       = new System.Drawing.Point(0, 0);
     this.lvAssemblies.Name           = "lvAssemblies";
     this.lvAssemblies.Size           = new System.Drawing.Size(589, 473);
     this.lvAssemblies.TabIndex       = 0;
     this.lvAssemblies.UseCompatibleStateImageBehavior = false;
     this.lvAssemblies.View = System.Windows.Forms.View.Details;
     //
     // kryptonPage4
     //
     this.kryptonPage4.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kryptonPage4.Controls.Add(this.ktvEnvironment);
     this.kryptonPage4.Flags          = 65534;
     this.kryptonPage4.LastVisibleSet = true;
     this.kryptonPage4.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kryptonPage4.Name           = "kryptonPage4";
     this.kryptonPage4.Size           = new System.Drawing.Size(589, 473);
     this.kryptonPage4.Text           = "System";
     this.kryptonPage4.ToolTipTitle   = "Page ToolTip";
     this.kryptonPage4.UniqueName     = "c6c80bc57dec4d9f974905ba7ac0c48a";
     //
     // ktvEnvironment
     //
     this.ktvEnvironment.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.ktvEnvironment.Location = new System.Drawing.Point(0, 0);
     this.ktvEnvironment.Name     = "ktvEnvironment";
     this.ktvEnvironment.Size     = new System.Drawing.Size(589, 473);
     this.ktvEnvironment.TabIndex = 0;
     //
     // kryptonBorderedLabel1
     //
     this.kryptonBorderedLabel1.AutoSize    = false;
     this.kryptonBorderedLabel1.BackColor   = System.Drawing.Color.Transparent;
     this.kryptonBorderedLabel1.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(177)))), ((int)(((byte)(192)))), ((int)(((byte)(214)))));
     this.kryptonBorderedLabel1.Location    = new System.Drawing.Point(104, 106);
     this.kryptonBorderedLabel1.Name        = "kryptonBorderedLabel1";
     this.kryptonBorderedLabel1.Size        = new System.Drawing.Size(470, 25);
     this.kryptonBorderedLabel1.TabIndex    = 40;
     this.kryptonBorderedLabel1.Values.Text = "kryptonBorderedLabel1";
     //
     // kryptonBorderedLabel2
     //
     this.kryptonBorderedLabel2.AutoSize    = false;
     this.kryptonBorderedLabel2.BackColor   = System.Drawing.Color.Transparent;
     this.kryptonBorderedLabel2.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(177)))), ((int)(((byte)(192)))), ((int)(((byte)(214)))));
     this.kryptonBorderedLabel2.Location    = new System.Drawing.Point(92, 149);
     this.kryptonBorderedLabel2.Name        = "kryptonBorderedLabel2";
     this.kryptonBorderedLabel2.Size        = new System.Drawing.Size(165, 25);
     this.kryptonBorderedLabel2.TabIndex    = 41;
     this.kryptonBorderedLabel2.Values.Text = "kryptonBorderedLabel2";
     //
     // kryptonBorderedLabel3
     //
     this.kryptonBorderedLabel3.AutoSize    = false;
     this.kryptonBorderedLabel3.BackColor   = System.Drawing.Color.Transparent;
     this.kryptonBorderedLabel3.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(177)))), ((int)(((byte)(192)))), ((int)(((byte)(214)))));
     this.kryptonBorderedLabel3.Location    = new System.Drawing.Point(92, 191);
     this.kryptonBorderedLabel3.Name        = "kryptonBorderedLabel3";
     this.kryptonBorderedLabel3.Size        = new System.Drawing.Size(165, 25);
     this.kryptonBorderedLabel3.TabIndex    = 42;
     this.kryptonBorderedLabel3.Values.Text = "kryptonBorderedLabel3";
     //
     // kryptonBorderedLabel4
     //
     this.kryptonBorderedLabel4.AutoSize    = false;
     this.kryptonBorderedLabel4.BackColor   = System.Drawing.Color.Transparent;
     this.kryptonBorderedLabel4.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(177)))), ((int)(((byte)(192)))), ((int)(((byte)(214)))));
     this.kryptonBorderedLabel4.Location    = new System.Drawing.Point(361, 149);
     this.kryptonBorderedLabel4.Name        = "kryptonBorderedLabel4";
     this.kryptonBorderedLabel4.Size        = new System.Drawing.Size(165, 25);
     this.kryptonBorderedLabel4.TabIndex    = 43;
     this.kryptonBorderedLabel4.Values.Text = "kryptonBorderedLabel4";
     //
     // kryptonBorderedLabel5
     //
     this.kryptonBorderedLabel5.AutoSize    = false;
     this.kryptonBorderedLabel5.BackColor   = System.Drawing.Color.Transparent;
     this.kryptonBorderedLabel5.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(177)))), ((int)(((byte)(192)))), ((int)(((byte)(214)))));
     this.kryptonBorderedLabel5.Location    = new System.Drawing.Point(361, 191);
     this.kryptonBorderedLabel5.Name        = "kryptonBorderedLabel5";
     this.kryptonBorderedLabel5.Size        = new System.Drawing.Size(165, 25);
     this.kryptonBorderedLabel5.TabIndex    = 44;
     this.kryptonBorderedLabel5.Values.Text = "kryptonBorderedLabel5";
     //
     // KryptonFullReportView
     //
     this.ClientSize = new System.Drawing.Size(613, 588);
     this.Controls.Add(this.kryptonPanel3);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "KryptonFullReportView";
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     this.Load           += new System.EventHandler(this.KryptonFullReportView_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel3)).EndInit();
     this.kryptonPanel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonNavigator1)).EndInit();
     this.kryptonNavigator1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage1)).EndInit();
     this.kryptonPage1.ResumeLayout(false);
     this.kryptonPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picGeneral)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage2)).EndInit();
     this.kryptonPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage3)).EndInit();
     this.kryptonPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage4)).EndInit();
     this.kryptonPage4.ResumeLayout(false);
     this.ResumeLayout(false);
 }