Ejemplo n.º 1
0
        private bool BuildTableStyles(ref mdlComponentesGraficos.DataGrid dgPropriedades)
        {
            // Limpando os anteriores
            dgPropriedades.TableStyles.Clear();

            // Criando o Table Style
            System.Windows.Forms.DataGridTableStyle dtgdtbstMaster = new System.Windows.Forms.DataGridTableStyle(false);

            // Configurando
            dtgdtbstMaster.MappingName          = TEXTO_MASTER;
            dtgdtbstMaster.GridLineStyle        = System.Windows.Forms.DataGridLineStyle.Solid;
            dtgdtbstMaster.GridLineColor        = System.Drawing.Color.Gray;
            dtgdtbstMaster.AlternatingBackColor = dgPropriedades.BackColor;
            dtgdtbstMaster.BackColor            = System.Drawing.Color.White;
            dtgdtbstMaster.HeaderBackColor      = dgPropriedades.BackColor;
            dtgdtbstMaster.AllowSorting         = false;

            // Configurando os GridColumnStyles
            dtgdtbstMaster.GridColumnStyles.Clear();

            dtgdtbstMaster.GridColumnStyles.Add(GetColumnIdOrdem());
            InsertDataGridColumnStyleIdiomas(ref dtgdtbstMaster);

            dgPropriedades.TableStyles.Add(dtgdtbstMaster);

            return(true);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Append a boolean column to a DataGrid table style
        /// </summary>
        /// <param name="tableStyle"></param>
        /// <param name="mappingName"></param>
        /// <param name="headerText">User-friendly column name</param>
        /// <param name="columnWidth"></param>
        /// <param name="isReadOnly"></param>
        /// <param name="sourceIsTrueFalse">
        /// True if the source data represents true and false using a bool.
        /// False if the source data represents true and false using 1 and 0.
        /// </param>
        public static void AppendBoolColumnToTableStyle(
            System.Windows.Forms.DataGridTableStyle tableStyle,
            string mappingName,
            string headerText,
            int columnWidth        = 75,
            bool isReadOnly        = false,
            bool sourceIsTrueFalse = true)
        {
            var newColumn = new System.Windows.Forms.DataGridBoolColumn
            {
                MappingName = mappingName,
                HeaderText  = headerText,
                Width       = columnWidth,
                ReadOnly    = isReadOnly
            };

            if (sourceIsTrueFalse)
            {
                newColumn.FalseValue = false;
                newColumn.TrueValue  = true;
            }
            else
            {
                newColumn.FalseValue = 0;
                newColumn.TrueValue  = 1;
            }

            newColumn.AllowNull = false;
            newColumn.NullValue = Convert.DBNull;

            tableStyle.GridColumnStyles.Add(newColumn);
        }
Ejemplo n.º 3
0
        /// <summary>
        /// Append a column to a DataGrid table style
        /// </summary>
        /// <param name="tableStyle"></param>
        /// <param name="mappingName"></param>
        /// <param name="headerText">User-friendly column name</param>
        /// <param name="columnWidth"></param>
        /// <param name="isReadOnly"></param>
        /// <param name="isDateTime">When true, format the column as a date</param>
        /// <param name="decimalPlaces">
        /// If 0 or greater, a format string is constructed to show the specified number of decimal places
        /// (ignored if isDateTime is true)
        /// </param>
        public static void AppendColumnToTableStyle(
            System.Windows.Forms.DataGridTableStyle tableStyle,
            string mappingName,
            string headerText,
            int columnWidth   = 75,
            bool isReadOnly   = false,
            bool isDateTime   = false,
            int decimalPlaces = -1)
        {
            var newColumn = new System.Windows.Forms.DataGridTextBoxColumn
            {
                MappingName = mappingName,
                HeaderText  = headerText,
                Width       = columnWidth,
                ReadOnly    = isReadOnly
            };

            if (isDateTime)
            {
                newColumn.Format = "g";
            }
            else if (decimalPlaces >= 0)
            {
                newColumn.Format = "0.";
                for (var i = 0; i <= decimalPlaces - 1; i++)
                {
                    newColumn.Format += "0";
                }
            }

            tableStyle.GridColumnStyles.Add(newColumn);
        }
Ejemplo n.º 4
0
        private DataSet importExcelFile(string fileName)
        {
            Microsoft.Office.Interop.Excel.Application excelApp = new Microsoft.Office.Interop.Excel.Application();

            System.Data.DataSet ds     = new System.Data.DataSet();
            Workbook            wkBook = excelApp.Workbooks.Open(fileName, 0, true, 5, "", "", true, Microsoft.Office.Interop.Excel.XlPlatform.xlWindows, "\t", false, false, 0, true, 1, 0);

            ds.DataSetName = wkBook.Name;

            foreach (Worksheet ws in wkBook.Worksheets)
            {
                ds.Merge(importExcelSheet(ws));
                ds.AcceptChanges();
            }

            System.Windows.Forms.DataGridTableStyle tstyle = new System.Windows.Forms.DataGridTableStyle();
            tstyle.AllowSorting   = true;
            tstyle.RowHeaderWidth = 0;

            DG.TableStyles.Add(tstyle);

            DG.NavigateBack();
            DG.NavigateBack();
            DG.DataSource = ds;

            excelApp.Quit();
            releaseObject(excelApp);
            releaseObject(wkBook);

            return(ds);
        }
Ejemplo n.º 5
0
 internal void SetDataGridTableInColumn(System.Windows.Forms.DataGridTableStyle value, bool force)
 {
     if (((this.dataGridTableStyle == null) || !this.dataGridTableStyle.Equals(value)) || force)
     {
         if (((value != null) && (value.DataGrid != null)) && !value.DataGrid.Initializing)
         {
             this.SetDataGridInColumn(value.DataGrid);
         }
         this.dataGridTableStyle = value;
     }
 }
Ejemplo n.º 6
0
        private void BuildGUI()
        {
            System.Windows.Forms.DataGridTableStyle style = new System.Windows.Forms.DataGridTableStyle();
            style.MappingName = "Parameters";
            style.AlternatingBackColor = System.Drawing.Color.LightGray;
            style.BackColor = System.Drawing.Color.LightSteelBlue;
            style.PreferredColumnWidth = 160;
            window.dataGrid1.TableStyles.Clear();
            window.dataGrid1.TableStyles.Add(style);

            window.dataGrid1.DataSource = parameterTable;

            window.Show();
        }
Ejemplo n.º 7
0
        private void BuildGUI()
        {
            System.Windows.Forms.DataGridTableStyle style = new System.Windows.Forms.DataGridTableStyle();
            style.MappingName          = "Parameters";
            style.AlternatingBackColor = System.Drawing.Color.LightGray;
            style.BackColor            = System.Drawing.Color.LightSteelBlue;
            style.PreferredColumnWidth = 160;
            window.dataGrid1.TableStyles.Clear();
            window.dataGrid1.TableStyles.Add(style);

            window.dataGrid1.DataSource = parameterTable;

            window.Show();
        }
Ejemplo n.º 8
0
 protected virtual void Invalidate()
 {
     if (this.updating)
     {
         this.invalid = true;
     }
     else
     {
         System.Windows.Forms.DataGridTableStyle dataGridTableStyle = this.DataGridTableStyle;
         if (dataGridTableStyle != null)
         {
             dataGridTableStyle.InvalidateColumn(this);
         }
     }
 }
 public DataGridRow(System.Windows.Forms.DataGrid dataGrid, System.Windows.Forms.DataGridTableStyle dgTable, int rowNumber)
 {
     if ((dataGrid == null) || (dgTable.DataGrid == null))
     {
         throw new ArgumentNullException("dataGrid");
     }
     if (rowNumber < 0)
     {
         throw new ArgumentException(System.Windows.Forms.SR.GetString("DataGridRowRowNumber"), "rowNumber");
     }
     this.number = rowNumber;
     colorMap[0].OldColor = Color.Black;
     colorMap[0].NewColor = dgTable.HeaderForeColor;
     this.dgTable = dgTable;
     this.height = this.MinimumRowHeight(dgTable);
 }
Ejemplo n.º 10
0
 private void SetTableStyle()
 {
     System.Diagnostics.Debug.WriteLine(gridStack.TableStyles.Count);
     System.Windows.Forms.DataGridTableStyle ts = new System.Windows.Forms.DataGridTableStyle();
     //.GridColumnStyles.Clear()
     ts.RowHeadersVisible = false;
     ts.MappingName       = "StackEntry[]";
     ts.GridColumnStyles.Add(BuildCS("", "RowNum", 30));
     ts.GridColumnStyles.Add(BuildCS("Location", "MethodShort", 100));
     ts.GridColumnStyles.Add(BuildCS("Line Num", "Position", 40));
     ts.GridColumnStyles.Add(BuildCS("File", "File", 100));
     ts.GridColumnStyles.Add(BuildCS("Long Method Name", "Method", 200));
     ts.GridColumnStyles.Add(BuildCS("Long File Name", "FullFile", 200));
     gridStack.TableStyles.Add(ts);
     gridStack.Refresh();
 }
Ejemplo n.º 11
0
 public DataGridRow(System.Windows.Forms.DataGrid dataGrid, System.Windows.Forms.DataGridTableStyle dgTable, int rowNumber)
 {
     if ((dataGrid == null) || (dgTable.DataGrid == null))
     {
         throw new ArgumentNullException("dataGrid");
     }
     if (rowNumber < 0)
     {
         throw new ArgumentException(System.Windows.Forms.SR.GetString("DataGridRowRowNumber"), "rowNumber");
     }
     this.number          = rowNumber;
     colorMap[0].OldColor = Color.Black;
     colorMap[0].NewColor = dgTable.HeaderForeColor;
     this.dgTable         = dgTable;
     this.height          = this.MinimumRowHeight(dgTable);
 }
Ejemplo n.º 12
0
 private void InsertDataGridColumnStyleIdiomas(ref System.Windows.Forms.DataGridTableStyle dtgdtbstMaster)
 {
     System.Windows.Forms.DataGridColumnStyle dtgdcsColuna     = null;
     mdlDataBaseAccess.Tabelas.XsdTbIdiomas   typDatSetIdiomas = this.TypDatSetIdiomas;
     for (int i = 0; i < typDatSetIdiomas.tbIdiomas.Count; i++)
     {
         mdlDataBaseAccess.Tabelas.XsdTbIdiomas.tbIdiomasRow dtrwIdioma = typDatSetIdiomas.tbIdiomas[i];
         if (dtrwIdioma.IsmstrIdiomaNull())
         {
             continue;
         }
         dtgdcsColuna             = new System.Windows.Forms.DataGridTextBoxColumn();
         dtgdcsColuna.MappingName = dtrwIdioma.mstrIdioma;
         dtgdcsColuna.HeaderText  = dtrwIdioma.mstrIdioma;
         dtgdcsColuna.NullText    = "";
         dtgdcsColuna.ReadOnly    = false;
         dtgdcsColuna.Width       = 100;
         dtgdtbstMaster.GridColumnStyles.Add(dtgdcsColuna);
     }
 }
Ejemplo n.º 13
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.dgLokacija = new System.Windows.Forms.DataGrid();
     this.dgLokacijaTS = new System.Windows.Forms.DataGridTableStyle();
     this.colLokacijaOznaka = new System.Windows.Forms.DataGridTextBoxColumn();
     this.colZonaOznaka = new System.Windows.Forms.DataGridTextBoxColumn();
     this.colDokument = new System.Windows.Forms.DataGridTextBoxColumn();
     this.btnOdustani = new System.Windows.Forms.Button();
     this.btnZakljuci = new System.Windows.Forms.Button();
     this.btnDodaj = new System.Windows.Forms.Button();
     this.txtDokument = new System.Windows.Forms.TextBox();
     this.lblDok = new System.Windows.Forms.Label();
     this.txtStranka = new System.Windows.Forms.TextBox();
     this.lblStranka = new System.Windows.Forms.Label();
     this.dgDokument = new System.Windows.Forms.DataGrid();
     this.dgDokumentTS = new System.Windows.Forms.DataGridTableStyle();
     this.colSkladisteOznaka = new System.Windows.Forms.DataGridTextBoxColumn();
     this.colDokVrsta = new System.Windows.Forms.DataGridTextBoxColumn();
     this.colDokBroj = new System.Windows.Forms.DataGridTextBoxColumn();
     this.SuspendLayout();
     //
     // dgLokacija
     //
     this.dgLokacija.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.dgLokacija.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Regular);
     this.dgLokacija.Location = new System.Drawing.Point(3, 91);
     this.dgLokacija.Name = "dgLokacija";
     this.dgLokacija.RowHeadersVisible = false;
     this.dgLokacija.Size = new System.Drawing.Size(230, 86);
     this.dgLokacija.TabIndex = 0;
     this.dgLokacija.TableStyles.Add(this.dgLokacijaTS);
     //
     // dgLokacijaTS
     //
     this.dgLokacijaTS.GridColumnStyles.Add(this.colLokacijaOznaka);
     this.dgLokacijaTS.GridColumnStyles.Add(this.colZonaOznaka);
     this.dgLokacijaTS.GridColumnStyles.Add(this.colDokument);
     this.dgLokacijaTS.MappingName = "IzlaznaLokacija";
     //
     // colLokacijaOznaka
     //
     this.colLokacijaOznaka.Format = "";
     this.colLokacijaOznaka.FormatInfo = null;
     this.colLokacijaOznaka.HeaderText = "Lokacija";
     this.colLokacijaOznaka.MappingName = "LokacijaOznaka";
     this.colLokacijaOznaka.Width = 60;
     //
     // colZonaOznaka
     //
     this.colZonaOznaka.Format = "";
     this.colZonaOznaka.FormatInfo = null;
     this.colZonaOznaka.HeaderText = "Zona";
     this.colZonaOznaka.MappingName = "ZonaOznaka";
     this.colZonaOznaka.Width = 40;
     //
     // colDokument
     //
     this.colDokument.Format = "";
     this.colDokument.FormatInfo = null;
     this.colDokument.HeaderText = "Dokument";
     this.colDokument.MappingName = "Dokument";
     this.colDokument.Width = 160;
     //
     // btnOdustani
     //
     this.btnOdustani.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular);
     this.btnOdustani.Location = new System.Drawing.Point(3, 212);
     this.btnOdustani.Name = "btnOdustani";
     this.btnOdustani.Size = new System.Drawing.Size(112, 25);
     this.btnOdustani.TabIndex = 1;
     this.btnOdustani.Text = "Odustani";
     this.btnOdustani.Click += new System.EventHandler(this.btnOdustani_Click);
     //
     // btnZakljuci
     //
     this.btnZakljuci.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular);
     this.btnZakljuci.Location = new System.Drawing.Point(121, 212);
     this.btnZakljuci.Name = "btnZakljuci";
     this.btnZakljuci.Size = new System.Drawing.Size(112, 25);
     this.btnZakljuci.TabIndex = 2;
     this.btnZakljuci.Text = "Izlazne lok.";
     this.btnZakljuci.Click += new System.EventHandler(this.btnZakljuci_Click);
     //
     // btnDodaj
     //
     this.btnDodaj.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.btnDodaj.Location = new System.Drawing.Point(188, 3);
     this.btnDodaj.Name = "btnDodaj";
     this.btnDodaj.Size = new System.Drawing.Size(45, 23);
     this.btnDodaj.TabIndex = 5;
     this.btnDodaj.Tag = "";
     this.btnDodaj.Text = "Dodaj";
     this.btnDodaj.Click += new System.EventHandler(this.btnDodaj_Click);
     //
     // txtDokument
     //
     this.txtDokument.Location = new System.Drawing.Point(32, 3);
     this.txtDokument.MaxLength = 19;
     this.txtDokument.Name = "txtDokument";
     this.txtDokument.Size = new System.Drawing.Size(150, 23);
     this.txtDokument.TabIndex = 4;
     //
     // lblDok
     //
     this.lblDok.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.lblDok.Location = new System.Drawing.Point(3, 3);
     this.lblDok.Name = "lblDok";
     this.lblDok.Size = new System.Drawing.Size(23, 23);
     this.lblDok.Text = "Dok";
     this.lblDok.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // txtStranka
     //
     this.txtStranka.Location = new System.Drawing.Point(56, 183);
     this.txtStranka.MaxLength = 19;
     this.txtStranka.Name = "txtStranka";
     this.txtStranka.Size = new System.Drawing.Size(177, 23);
     this.txtStranka.TabIndex = 8;
     //
     // lblStranka
     //
     this.lblStranka.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.lblStranka.Location = new System.Drawing.Point(3, 187);
     this.lblStranka.Name = "lblStranka";
     this.lblStranka.Size = new System.Drawing.Size(47, 19);
     this.lblStranka.Text = "Preuzeo:";
     this.lblStranka.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // dgDokument
     //
     this.dgDokument.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.dgDokument.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Regular);
     this.dgDokument.Location = new System.Drawing.Point(3, 32);
     this.dgDokument.Name = "dgDokument";
     this.dgDokument.RowHeadersVisible = false;
     this.dgDokument.Size = new System.Drawing.Size(230, 53);
     this.dgDokument.TabIndex = 10;
     this.dgDokument.TableStyles.Add(this.dgDokumentTS);
     this.dgDokument.TabStop = false;
     //
     // dgDokumentTS
     //
     this.dgDokumentTS.GridColumnStyles.Add(this.colSkladisteOznaka);
     this.dgDokumentTS.GridColumnStyles.Add(this.colDokVrsta);
     this.dgDokumentTS.GridColumnStyles.Add(this.colDokBroj);
     this.dgDokumentTS.MappingName = "Dokument";
     //
     // colSkladisteOznaka
     //
     this.colSkladisteOznaka.Format = "";
     this.colSkladisteOznaka.FormatInfo = null;
     this.colSkladisteOznaka.MappingName = "SkladisteOznaka";
     this.colSkladisteOznaka.NullText = "";
     this.colSkladisteOznaka.Width = 0;
     //
     // colDokVrsta
     //
     this.colDokVrsta.Format = "";
     this.colDokVrsta.FormatInfo = null;
     this.colDokVrsta.HeaderText = "Vrsta";
     this.colDokVrsta.MappingName = "DokVrsta";
     this.colDokVrsta.NullText = "";
     this.colDokVrsta.Width = 80;
     //
     // colDokBroj
     //
     this.colDokBroj.Format = "";
     this.colDokBroj.FormatInfo = null;
     this.colDokBroj.HeaderText = "Broj";
     this.colDokBroj.MappingName = "DokBroj";
     this.colDokBroj.NullText = "";
     this.colDokBroj.Width = 130;
     //
     // SkladokOtprema
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
     this.Controls.Add(this.dgDokument);
     this.Controls.Add(this.lblStranka);
     this.Controls.Add(this.txtStranka);
     this.Controls.Add(this.btnDodaj);
     this.Controls.Add(this.txtDokument);
     this.Controls.Add(this.lblDok);
     this.Controls.Add(this.btnZakljuci);
     this.Controls.Add(this.btnOdustani);
     this.Controls.Add(this.dgLokacija);
     this.Name = "SkladokOtprema";
     this.Size = new System.Drawing.Size(236, 240);
     this.ResumeLayout(false);
 }
Ejemplo n.º 14
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnDodijeliBarkod = new System.Windows.Forms.Button();
     this.lblBarkod = new System.Windows.Forms.Label();
     this.txtBarkod = new System.Windows.Forms.TextBox();
     this.dgRoba = new System.Windows.Forms.DataGrid();
     this.dgRobaTS = new System.Windows.Forms.DataGridTableStyle();
     this.colRobaSifra = new System.Windows.Forms.DataGridTextBoxColumn();
     this.colRobaNaziv = new System.Windows.Forms.DataGridTextBoxColumn();
     this.btnOdustani = new System.Windows.Forms.Button();
     this.cboVrstaPretrage = new System.Windows.Forms.ComboBox();
     this.lblVrstaPretrage = new System.Windows.Forms.Label();
     this.txtNaziv = new System.Windows.Forms.TextBox();
     this.btnTrazi = new System.Windows.Forms.Button();
     this.lblNaziv = new System.Windows.Forms.Label();
     this.lblSifre = new System.Windows.Forms.Label();
     this.txtSifre = new System.Windows.Forms.TextBox();
     this.SuspendLayout();
     //
     // btnDodijeliBarkod
     //
     this.btnDodijeliBarkod.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular);
     this.btnDodijeliBarkod.Location = new System.Drawing.Point(121, 222);
     this.btnDodijeliBarkod.Name = "btnDodijeliBarkod";
     this.btnDodijeliBarkod.Size = new System.Drawing.Size(112, 25);
     this.btnDodijeliBarkod.TabIndex = 6;
     this.btnDodijeliBarkod.Text = "Dodijeli";
     this.btnDodijeliBarkod.Visible = false;
     this.btnDodijeliBarkod.Click += new System.EventHandler(this.btnDodijeliBarkod_Click);
     //
     // lblBarkod
     //
     this.lblBarkod.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.lblBarkod.Location = new System.Drawing.Point(3, 178);
     this.lblBarkod.Name = "lblBarkod";
     this.lblBarkod.Size = new System.Drawing.Size(230, 16);
     this.lblBarkod.Text = "Barkod (dobavljaèev)";
     //
     // txtBarkod
     //
     this.txtBarkod.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.txtBarkod.Location = new System.Drawing.Point(3, 197);
     this.txtBarkod.MaxLength = 30;
     this.txtBarkod.Name = "txtBarkod";
     this.txtBarkod.Size = new System.Drawing.Size(230, 19);
     this.txtBarkod.TabIndex = 5;
     //
     // dgRoba
     //
     this.dgRoba.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.dgRoba.Location = new System.Drawing.Point(3, 74);
     this.dgRoba.Name = "dgRoba";
     this.dgRoba.RowHeadersVisible = false;
     this.dgRoba.Size = new System.Drawing.Size(230, 101);
     this.dgRoba.TabIndex = 4;
     this.dgRoba.TableStyles.Add(this.dgRobaTS);
     this.dgRoba.MouseUp += new System.Windows.Forms.MouseEventHandler(this.dgRoba_MouseUp);
     //
     // dgRobaTS
     //
     this.dgRobaTS.GridColumnStyles.Add(this.colRobaSifra);
     this.dgRobaTS.GridColumnStyles.Add(this.colRobaNaziv);
     this.dgRobaTS.MappingName = "Roba";
     //
     // colRobaSifra
     //
     this.colRobaSifra.Format = "";
     this.colRobaSifra.FormatInfo = null;
     this.colRobaSifra.HeaderText = "Šifra";
     this.colRobaSifra.MappingName = "RobaSifra";
     this.colRobaSifra.NullText = "";
     this.colRobaSifra.PropertyDescriptor = null;
     this.colRobaSifra.Width = 80;
     //
     // colRobaNaziv
     //
     this.colRobaNaziv.Format = "";
     this.colRobaNaziv.FormatInfo = null;
     this.colRobaNaziv.HeaderText = "Naziv";
     this.colRobaNaziv.MappingName = "RobaNaziv";
     this.colRobaNaziv.NullText = "";
     this.colRobaNaziv.PropertyDescriptor = null;
     this.colRobaNaziv.Width = 250;
     //
     // btnOdustani
     //
     this.btnOdustani.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular);
     this.btnOdustani.Location = new System.Drawing.Point(3, 222);
     this.btnOdustani.Name = "btnOdustani";
     this.btnOdustani.Size = new System.Drawing.Size(112, 25);
     this.btnOdustani.TabIndex = 7;
     this.btnOdustani.Text = "Odustani";
     this.btnOdustani.Click += new System.EventHandler(this.btnOdustani_Click);
     //
     // cboVrstaPretrage
     //
     this.cboVrstaPretrage.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.cboVrstaPretrage.Items.Add("Dobavljaèeva šifra");
     this.cboVrstaPretrage.Items.Add("Ellabova šifra + naziv robe");
     this.cboVrstaPretrage.Location = new System.Drawing.Point(54, 3);
     this.cboVrstaPretrage.Name = "cboVrstaPretrage";
     this.cboVrstaPretrage.Size = new System.Drawing.Size(179, 19);
     this.cboVrstaPretrage.TabIndex = 0;
     this.cboVrstaPretrage.SelectedIndexChanged += new System.EventHandler(this.cboVrstaPretrage_SelectedIndexChanged);
     //
     // lblVrstaPretrage
     //
     this.lblVrstaPretrage.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.lblVrstaPretrage.Location = new System.Drawing.Point(3, 3);
     this.lblVrstaPretrage.Name = "lblVrstaPretrage";
     this.lblVrstaPretrage.Size = new System.Drawing.Size(45, 20);
     this.lblVrstaPretrage.Text = "Traži po";
     //
     // txtNaziv
     //
     this.txtNaziv.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.txtNaziv.Location = new System.Drawing.Point(54, 28);
     this.txtNaziv.MaxLength = 100;
     this.txtNaziv.Name = "txtNaziv";
     this.txtNaziv.Size = new System.Drawing.Size(179, 19);
     this.txtNaziv.TabIndex = 1;
     this.txtNaziv.Visible = false;
     //
     // btnTrazi
     //
     this.btnTrazi.Location = new System.Drawing.Point(188, 52);
     this.btnTrazi.Name = "btnTrazi";
     this.btnTrazi.Size = new System.Drawing.Size(45, 19);
     this.btnTrazi.TabIndex = 3;
     this.btnTrazi.Text = "Traži";
     this.btnTrazi.Click += new System.EventHandler(this.btnTrazi_Click);
     //
     // lblNaziv
     //
     this.lblNaziv.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.lblNaziv.Location = new System.Drawing.Point(3, 28);
     this.lblNaziv.Name = "lblNaziv";
     this.lblNaziv.Size = new System.Drawing.Size(45, 19);
     this.lblNaziv.Text = "Naziv";
     this.lblNaziv.TextAlign = System.Drawing.ContentAlignment.TopRight;
     this.lblNaziv.Visible = false;
     //
     // lblSifre
     //
     this.lblSifre.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.lblSifre.Location = new System.Drawing.Point(3, 52);
     this.lblSifre.Name = "lblSifre";
     this.lblSifre.Size = new System.Drawing.Size(45, 19);
     this.lblSifre.Text = "Šifra";
     this.lblSifre.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // txtSifre
     //
     this.txtSifre.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.txtSifre.Location = new System.Drawing.Point(54, 52);
     this.txtSifre.MaxLength = 16;
     this.txtSifre.Name = "txtSifre";
     this.txtSifre.Size = new System.Drawing.Size(128, 19);
     this.txtSifre.TabIndex = 2;
     //
     // BarkodDodjela
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
     this.Controls.Add(this.lblSifre);
     this.Controls.Add(this.txtSifre);
     this.Controls.Add(this.lblNaziv);
     this.Controls.Add(this.btnTrazi);
     this.Controls.Add(this.txtNaziv);
     this.Controls.Add(this.lblVrstaPretrage);
     this.Controls.Add(this.cboVrstaPretrage);
     this.Controls.Add(this.btnOdustani);
     this.Controls.Add(this.dgRoba);
     this.Controls.Add(this.txtBarkod);
     this.Controls.Add(this.lblBarkod);
     this.Controls.Add(this.btnDodijeliBarkod);
     this.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular);
     this.Name = "BarkodDodjela";
     this.Size = new System.Drawing.Size(236, 250);
     this.ResumeLayout(false);
 }
Ejemplo n.º 15
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.timerAutoRefresh = new System.Windows.Forms.Timer(this.components);
     this.closeButton = new Terrarium.Glass.GlassButton();
     this.refreshButton = new Terrarium.Glass.GlassButton();
     this.dataGrid1 = new System.Windows.Forms.DataGrid();
     this.dataGridTableStyle1 = new System.Windows.Forms.DataGridTableStyle();
     this.dataGridTextBoxColumn2 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn3 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn4 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn5 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn10 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn6 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn9 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn7 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn8 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn12 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn11 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.resizeBar1 = new Terrarium.Forms.ResizeBar();
     this._bottomPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // titleBar
     //
     this._titleBar.Size = new System.Drawing.Size(434, 32);
     this._titleBar.Title = "Local Statistics";
     this._titleBar.CloseClicked += new System.EventHandler(this.CloseForm_Click);
     //
     // bottomPanel
     //
     this._bottomPanel.Controls.Add(this.resizeBar1);
     this._bottomPanel.Controls.Add(this.closeButton);
     this._bottomPanel.Controls.Add(this.refreshButton);
     this._bottomPanel.Gradient.Bottom = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this._bottomPanel.Gradient.Top = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(96)))), ((int)(((byte)(96)))));
     this._bottomPanel.Location = new System.Drawing.Point(0, 328);
     this._bottomPanel.Size = new System.Drawing.Size(434, 40);
     //
     // timerAutoRefresh
     //
     this.timerAutoRefresh.Enabled = true;
     this.timerAutoRefresh.Interval = 10000;
     this.timerAutoRefresh.Tick += new System.EventHandler(this.timerAutoRefresh_Tick);
     //
     // closeButton
     //
     this.closeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.closeButton.BackColor = System.Drawing.Color.Transparent;
     this.closeButton.BorderColor = System.Drawing.Color.Black;
     this.closeButton.Depth = 4;
     this.closeButton.DisabledGradient.Bottom = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.closeButton.DisabledGradient.Top = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.closeButton.Font = new System.Drawing.Font("Verdana", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.closeButton.ForeColor = System.Drawing.Color.White;
     this.closeButton.Highlight = false;
     this.closeButton.HighlightGradient.Bottom = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(96)))), ((int)(((byte)(96)))));
     this.closeButton.HighlightGradient.Top = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.closeButton.HoverGradient.Bottom = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.closeButton.HoverGradient.Top = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(216)))), ((int)(((byte)(0)))));
     this.closeButton.IsGlass = true;
     this.closeButton.Location = new System.Drawing.Point(338, 2);
     this.closeButton.Name = "closeButton";
     this.closeButton.NormalGradient.Bottom = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.closeButton.NormalGradient.Top = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(96)))), ((int)(((byte)(96)))));
     this.closeButton.PressedGradient.Bottom = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(216)))), ((int)(((byte)(0)))));
     this.closeButton.PressedGradient.Top = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.closeButton.Size = new System.Drawing.Size(75, 36);
     this.closeButton.TabIndex = 11;
     this.closeButton.TabStop = false;
     this.closeButton.Text = "Close";
     this.closeButton.UseStyles = true;
     this.closeButton.UseVisualStyleBackColor = false;
     this.closeButton.Click += new System.EventHandler(this.CloseForm_Click);
     //
     // refreshButton
     //
     this.refreshButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.refreshButton.BackColor = System.Drawing.Color.Transparent;
     this.refreshButton.BorderColor = System.Drawing.Color.Black;
     this.refreshButton.Depth = 4;
     this.refreshButton.DisabledGradient.Bottom = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.refreshButton.DisabledGradient.Top = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.refreshButton.Font = new System.Drawing.Font("Verdana", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.refreshButton.ForeColor = System.Drawing.Color.White;
     this.refreshButton.Highlight = false;
     this.refreshButton.HighlightGradient.Bottom = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(96)))), ((int)(((byte)(96)))));
     this.refreshButton.HighlightGradient.Top = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.refreshButton.HoverGradient.Bottom = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.refreshButton.HoverGradient.Top = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(216)))), ((int)(((byte)(0)))));
     this.refreshButton.IsGlass = true;
     this.refreshButton.Location = new System.Drawing.Point(257, 2);
     this.refreshButton.Name = "refreshButton";
     this.refreshButton.NormalGradient.Bottom = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.refreshButton.NormalGradient.Top = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(96)))), ((int)(((byte)(96)))));
     this.refreshButton.PressedGradient.Bottom = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(216)))), ((int)(((byte)(0)))));
     this.refreshButton.PressedGradient.Top = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.refreshButton.Size = new System.Drawing.Size(75, 36);
     this.refreshButton.TabIndex = 10;
     this.refreshButton.TabStop = false;
     this.refreshButton.Text = "Refresh";
     this.refreshButton.UseStyles = true;
     this.refreshButton.UseVisualStyleBackColor = false;
     this.refreshButton.Click += new System.EventHandler(this.Refresh_Click);
     //
     // dataGrid1
     //
     this.dataGrid1.AlternatingBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.dataGrid1.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.dataGrid1.BackgroundColor = System.Drawing.Color.Gray;
     this.dataGrid1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.dataGrid1.CaptionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.dataGrid1.CaptionForeColor = System.Drawing.Color.White;
     this.dataGrid1.CaptionVisible = false;
     this.dataGrid1.DataMember = "";
     this.dataGrid1.FlatMode = true;
     this.dataGrid1.Font = new System.Drawing.Font("Verdana", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dataGrid1.ForeColor = System.Drawing.Color.Black;
     this.dataGrid1.GridLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.dataGrid1.HeaderBackColor = System.Drawing.Color.Gray;
     this.dataGrid1.HeaderForeColor = System.Drawing.Color.White;
     this.dataGrid1.Location = new System.Drawing.Point(12, 81);
     this.dataGrid1.Name = "dataGrid1";
     this.dataGrid1.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.dataGrid1.Size = new System.Drawing.Size(410, 232);
     this.dataGrid1.TabIndex = 8;
     this.dataGrid1.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {
     this.dataGridTableStyle1});
     //
     // dataGridTableStyle1
     //
     this.dataGridTableStyle1.AlternatingBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))));
     this.dataGridTableStyle1.BackColor = System.Drawing.Color.White;
     this.dataGridTableStyle1.DataGrid = this.dataGrid1;
     this.dataGridTableStyle1.ForeColor = System.Drawing.Color.Black;
     this.dataGridTableStyle1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {
     this.dataGridTextBoxColumn2,
     this.dataGridTextBoxColumn3,
     this.dataGridTextBoxColumn4,
     this.dataGridTextBoxColumn5,
     this.dataGridTextBoxColumn10,
     this.dataGridTextBoxColumn6,
     this.dataGridTextBoxColumn9,
     this.dataGridTextBoxColumn7,
     this.dataGridTextBoxColumn8,
     this.dataGridTextBoxColumn1,
     this.dataGridTextBoxColumn12,
     this.dataGridTextBoxColumn11});
     this.dataGridTableStyle1.HeaderBackColor = System.Drawing.Color.Gray;
     this.dataGridTableStyle1.HeaderForeColor = System.Drawing.Color.White;
     this.dataGridTableStyle1.MappingName = "History";
     //
     // dataGridTextBoxColumn2
     //
     this.dataGridTextBoxColumn2.Format = "";
     this.dataGridTextBoxColumn2.FormatInfo = null;
     this.dataGridTextBoxColumn2.HeaderText = "Species";
     this.dataGridTextBoxColumn2.MappingName = "SpeciesName";
     this.dataGridTextBoxColumn2.ReadOnly = true;
     this.dataGridTextBoxColumn2.Width = 125;
     //
     // dataGridTextBoxColumn3
     //
     this.dataGridTextBoxColumn3.Format = "d";
     this.dataGridTextBoxColumn3.FormatInfo = null;
     this.dataGridTextBoxColumn3.HeaderText = "Population";
     this.dataGridTextBoxColumn3.MappingName = "Population";
     this.dataGridTextBoxColumn3.ReadOnly = true;
     this.dataGridTextBoxColumn3.Width = 75;
     //
     // dataGridTextBoxColumn4
     //
     this.dataGridTextBoxColumn4.Format = "d";
     this.dataGridTextBoxColumn4.FormatInfo = null;
     this.dataGridTextBoxColumn4.HeaderText = "Births";
     this.dataGridTextBoxColumn4.MappingName = "BirthCount";
     this.dataGridTextBoxColumn4.ReadOnly = true;
     this.dataGridTextBoxColumn4.Width = 50;
     //
     // dataGridTextBoxColumn5
     //
     this.dataGridTextBoxColumn5.Format = "d";
     this.dataGridTextBoxColumn5.FormatInfo = null;
     this.dataGridTextBoxColumn5.HeaderText = "Starved";
     this.dataGridTextBoxColumn5.MappingName = "StarvedCount";
     this.dataGridTextBoxColumn5.ReadOnly = true;
     this.dataGridTextBoxColumn5.Width = 75;
     //
     // dataGridTextBoxColumn10
     //
     this.dataGridTextBoxColumn10.Format = "d";
     this.dataGridTextBoxColumn10.FormatInfo = null;
     this.dataGridTextBoxColumn10.HeaderText = "Old Age";
     this.dataGridTextBoxColumn10.MappingName = "OldAgeCount";
     this.dataGridTextBoxColumn10.ReadOnly = true;
     this.dataGridTextBoxColumn10.Width = 75;
     //
     // dataGridTextBoxColumn6
     //
     this.dataGridTextBoxColumn6.Format = "d";
     this.dataGridTextBoxColumn6.FormatInfo = null;
     this.dataGridTextBoxColumn6.HeaderText = "Killed";
     this.dataGridTextBoxColumn6.MappingName = "KilledCount";
     this.dataGridTextBoxColumn6.ReadOnly = true;
     this.dataGridTextBoxColumn6.Width = 50;
     //
     // dataGridTextBoxColumn9
     //
     this.dataGridTextBoxColumn9.Format = "d";
     this.dataGridTextBoxColumn9.FormatInfo = null;
     this.dataGridTextBoxColumn9.HeaderText = "Sick";
     this.dataGridTextBoxColumn9.MappingName = "SickCount";
     this.dataGridTextBoxColumn9.ReadOnly = true;
     this.dataGridTextBoxColumn9.Width = 50;
     //
     // dataGridTextBoxColumn7
     //
     this.dataGridTextBoxColumn7.Format = "d";
     this.dataGridTextBoxColumn7.FormatInfo = null;
     this.dataGridTextBoxColumn7.HeaderText = "Errors";
     this.dataGridTextBoxColumn7.MappingName = "ErrorCount";
     this.dataGridTextBoxColumn7.ReadOnly = true;
     this.dataGridTextBoxColumn7.Width = 50;
     //
     // dataGridTextBoxColumn8
     //
     this.dataGridTextBoxColumn8.Format = "d";
     this.dataGridTextBoxColumn8.FormatInfo = null;
     this.dataGridTextBoxColumn8.HeaderText = "Timeouts";
     this.dataGridTextBoxColumn8.MappingName = "TimeoutCount";
     this.dataGridTextBoxColumn8.ReadOnly = true;
     this.dataGridTextBoxColumn8.Width = 50;
     //
     // dataGridTextBoxColumn1
     //
     this.dataGridTextBoxColumn1.Format = "d";
     this.dataGridTextBoxColumn1.FormatInfo = null;
     this.dataGridTextBoxColumn1.HeaderText = "Security Violations";
     this.dataGridTextBoxColumn1.MappingName = "SecurityViolationCount";
     this.dataGridTextBoxColumn1.ReadOnly = true;
     this.dataGridTextBoxColumn1.Width = 75;
     //
     // dataGridTextBoxColumn12
     //
     this.dataGridTextBoxColumn12.Format = "d";
     this.dataGridTextBoxColumn12.FormatInfo = null;
     this.dataGridTextBoxColumn12.HeaderText = "Teleported Here";
     this.dataGridTextBoxColumn12.MappingName = "TeleportedToCount";
     this.dataGridTextBoxColumn12.ReadOnly = true;
     this.dataGridTextBoxColumn12.Width = 75;
     //
     // dataGridTextBoxColumn11
     //
     this.dataGridTextBoxColumn11.Format = "d";
     this.dataGridTextBoxColumn11.FormatInfo = null;
     this.dataGridTextBoxColumn11.HeaderText = "Teleported Away";
     this.dataGridTextBoxColumn11.MappingName = "TeleportedFromCount";
     this.dataGridTextBoxColumn11.ReadOnly = true;
     this.dataGridTextBoxColumn11.Width = 75;
     //
     // resizeBar1
     //
     this.resizeBar1.BackColor = System.Drawing.Color.Black;
     this.resizeBar1.Dock = System.Windows.Forms.DockStyle.Right;
     this.resizeBar1.Font = new System.Drawing.Font("Verdana", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.resizeBar1.ForeColor = System.Drawing.Color.White;
     this.resizeBar1.Location = new System.Drawing.Point(414, 0);
     this.resizeBar1.Name = "resizeBar1";
     this.resizeBar1.Size = new System.Drawing.Size(20, 40);
     this.resizeBar1.TabIndex = 12;
     //
     // ReportStats
     //
     this.BackColor = System.Drawing.Color.Black;
     this.ClientSize = new System.Drawing.Size(434, 368);
     this.Controls.Add(this.dataGrid1);
     this.Description = "Every statistic except population is only counted from the start of this terrariu" +
         "m session.  Population carries over between sessions.";
     this.Name = "ReportStats";
     this.Title = "Population Statistics";
     this.Controls.SetChildIndex(this.dataGrid1, 0);
     this.Controls.SetChildIndex(this._titleBar, 0);
     this.Controls.SetChildIndex(this._bottomPanel, 0);
     this._bottomPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lblRoba = new System.Windows.Forms.Label();
     this.dgIzmjestaj = new System.Windows.Forms.DataGrid();
     this.dgIzmjestajTS = new System.Windows.Forms.DataGridTableStyle();
     this.colPrezime = new System.Windows.Forms.DataGridTextBoxColumn();
     this.colIme = new System.Windows.Forms.DataGridTextBoxColumn();
     this.colVrijeme = new System.Windows.Forms.DataGridTextBoxColumn();
     this.colLokacijaIzlaz = new System.Windows.Forms.DataGridTextBoxColumn();
     this.colIzlaz = new System.Windows.Forms.DataGridTextBoxColumn();
     this.colLokacijaUlaz = new System.Windows.Forms.DataGridTextBoxColumn();
     this.colUlaz = new System.Windows.Forms.DataGridTextBoxColumn();
     this.btnNatrag = new System.Windows.Forms.Button();
     this.lblTotal = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // lblRoba
     //
     this.lblRoba.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.lblRoba.Location = new System.Drawing.Point(3, 0);
     this.lblRoba.Name = "lblRoba";
     this.lblRoba.Size = new System.Drawing.Size(230, 28);
     //
     // dgIzmjestaj
     //
     this.dgIzmjestaj.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.dgIzmjestaj.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Regular);
     this.dgIzmjestaj.Location = new System.Drawing.Point(3, 31);
     this.dgIzmjestaj.Name = "dgIzmjestaj";
     this.dgIzmjestaj.RowHeadersVisible = false;
     this.dgIzmjestaj.Size = new System.Drawing.Size(230, 155);
     this.dgIzmjestaj.TabIndex = 0;
     this.dgIzmjestaj.TableStyles.Add(this.dgIzmjestajTS);
     //
     // dgIzmjestajTS
     //
     this.dgIzmjestajTS.GridColumnStyles.Add(this.colPrezime);
     this.dgIzmjestajTS.GridColumnStyles.Add(this.colIme);
     this.dgIzmjestajTS.GridColumnStyles.Add(this.colVrijeme);
     this.dgIzmjestajTS.GridColumnStyles.Add(this.colLokacijaIzlaz);
     this.dgIzmjestajTS.GridColumnStyles.Add(this.colIzlaz);
     this.dgIzmjestajTS.GridColumnStyles.Add(this.colLokacijaUlaz);
     this.dgIzmjestajTS.GridColumnStyles.Add(this.colUlaz);
     this.dgIzmjestajTS.MappingName = "NesmjestenaRoba";
     //
     // colPrezime
     //
     this.colPrezime.Format = "";
     this.colPrezime.FormatInfo = null;
     this.colPrezime.HeaderText = "Prezime";
     this.colPrezime.MappingName = "Prezime";
     this.colPrezime.NullText = "";
     this.colPrezime.Width = 80;
     //
     // colIme
     //
     this.colIme.Format = "";
     this.colIme.FormatInfo = null;
     this.colIme.HeaderText = "Ime";
     this.colIme.MappingName = "Ime";
     this.colIme.NullText = "";
     this.colIme.Width = 80;
     //
     // colVrijeme
     //
     this.colVrijeme.Format = "";
     this.colVrijeme.FormatInfo = null;
     this.colVrijeme.HeaderText = "Vrijeme";
     this.colVrijeme.MappingName = "Vrijeme";
     this.colVrijeme.NullText = "";
     this.colVrijeme.Width = 120;
     //
     // colLokacijaIzlaz
     //
     this.colLokacijaIzlaz.Format = "";
     this.colLokacijaIzlaz.FormatInfo = null;
     this.colLokacijaIzlaz.HeaderText = "Iz.Lok";
     this.colLokacijaIzlaz.MappingName = "LokacijaIzlaz";
     this.colLokacijaIzlaz.NullText = "";
     this.colLokacijaIzlaz.Width = 60;
     //
     // colIzlaz
     //
     this.colIzlaz.Format = "";
     this.colIzlaz.FormatInfo = null;
     this.colIzlaz.HeaderText = "Izlaz";
     this.colIzlaz.MappingName = "Izlaz";
     this.colIzlaz.NullText = "";
     this.colIzlaz.Width = 60;
     //
     // colLokacijaUlaz
     //
     this.colLokacijaUlaz.Format = "";
     this.colLokacijaUlaz.FormatInfo = null;
     this.colLokacijaUlaz.HeaderText = "U.Lok";
     this.colLokacijaUlaz.MappingName = "LokacijaUlaz";
     this.colLokacijaUlaz.NullText = "";
     this.colLokacijaUlaz.Width = 60;
     //
     // colUlaz
     //
     this.colUlaz.Format = "";
     this.colUlaz.FormatInfo = null;
     this.colUlaz.HeaderText = "Ulaz";
     this.colUlaz.MappingName = "Ulaz";
     this.colUlaz.NullText = "";
     this.colUlaz.Width = 60;
     //
     // btnNatrag
     //
     this.btnNatrag.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular);
     this.btnNatrag.Location = new System.Drawing.Point(3, 212);
     this.btnNatrag.Name = "btnNatrag";
     this.btnNatrag.Size = new System.Drawing.Size(230, 25);
     this.btnNatrag.TabIndex = 1;
     this.btnNatrag.Text = "Natrag";
     this.btnNatrag.Click += new System.EventHandler(this.btnNatrag_Click);
     //
     // lblTotal
     //
     this.lblTotal.Location = new System.Drawing.Point(3, 189);
     this.lblTotal.Name = "lblTotal";
     this.lblTotal.Size = new System.Drawing.Size(230, 20);
     //
     // SkladokPllPregled
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
     this.Controls.Add(this.lblTotal);
     this.Controls.Add(this.lblRoba);
     this.Controls.Add(this.dgIzmjestaj);
     this.Controls.Add(this.btnNatrag);
     this.Name = "SkladokPllPregled";
     this.Size = new System.Drawing.Size(236, 240);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 디자이너 지원에 필요한 메서드입니다.
 /// 이 메서드의 내용을 코드 편집기로 수정하지 마십시오.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmFloorSelectCount));
     this.pictureBox4 = new System.Windows.Forms.PictureBox();
     this.button1 = new System.Windows.Forms.PictureBox();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.dgView = new System.Windows.Forms.DataGrid();
     this.lblAct = new System.Windows.Forms.Label();
     this.dataGridTableStyle1 = new System.Windows.Forms.DataGridTableStyle();
     this.colAppNo = new System.Windows.Forms.DataGridTextBoxColumn();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // pictureBox4
     //
     this.pictureBox4.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image")));
     this.pictureBox4.Location = new System.Drawing.Point(57, 278);
     this.pictureBox4.Name = "pictureBox4";
     this.pictureBox4.Size = new System.Drawing.Size(130, 37);
     this.pictureBox4.Click += new System.EventHandler(this.pictureBox4_Click_1);
     //
     // button1
     //
     this.button1.Image = ((System.Drawing.Image)(resources.GetObject("button1.Image")));
     this.button1.Location = new System.Drawing.Point(60, 239);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(122, 34);
     this.button1.Click += new System.EventHandler(this.button1_Click_1);
     //
     // pictureBox1
     //
     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(240, 320);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(114)))), ((int)(((byte)(183)))));
     this.panel1.Controls.Add(this.dgView);
     this.panel1.Location = new System.Drawing.Point(8, 70);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(225, 124);
     this.panel1.Visible = false;
     //
     // dgView
     //
     this.dgView.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.dgView.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.dgView.Location = new System.Drawing.Point(2, 2);
     this.dgView.Name = "dgView";
     this.dgView.Size = new System.Drawing.Size(221, 119);
     this.dgView.TabIndex = 1;
     this.dgView.TableStyles.Add(this.dataGridTableStyle1);
     //
     // lblAct
     //
     this.lblAct.BackColor = System.Drawing.Color.LightCoral;
     this.lblAct.Font = new System.Drawing.Font("Tahoma", 20F, System.Drawing.FontStyle.Regular);
     this.lblAct.ForeColor = System.Drawing.Color.White;
     this.lblAct.Location = new System.Drawing.Point(60, 197);
     this.lblAct.Name = "lblAct";
     this.lblAct.Size = new System.Drawing.Size(122, 33);
     this.lblAct.Text = "0";
     this.lblAct.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // dataGridTableStyle1
     //
     this.dataGridTableStyle1.GridColumnStyles.Add(this.colAppNo);
     //
     // colAppNo
     //
     this.colAppNo.Format = "";
     this.colAppNo.FormatInfo = null;
     this.colAppNo.HeaderText = "หมายเลขแฟ้ม";
     this.colAppNo.MappingName = "app_no";
     this.colAppNo.NullText = "";
     this.colAppNo.Width = 150;
     //
     // frmFloorSelectCount
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
     this.ClientSize = new System.Drawing.Size(640, 480);
     this.ControlBox = false;
     this.Controls.Add(this.lblAct);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.pictureBox4);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.pictureBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmFloorSelectCount";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Closing += new System.ComponentModel.CancelEventHandler(this.Form1_Closing);
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 18
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.DataGridTableStyle dataGridTableStyle1;
     this.cLPN              = new System.Windows.Forms.DataGridTextBoxColumn();
     this.cItemNumebr       = new System.Windows.Forms.DataGridTextBoxColumn();
     this.cItemName         = new System.Windows.Forms.DataGridTextBoxColumn();
     this.cQuantity         = new System.Windows.Forms.DataGridTextBoxColumn();
     this.cUOM              = new System.Windows.Forms.DataGridTextBoxColumn();
     this.cLocationCode     = new System.Windows.Forms.DataGridTextBoxColumn();
     this.cLotNumber        = new System.Windows.Forms.DataGridTextBoxColumn();
     this.cExpiryDate       = new System.Windows.Forms.DataGridTextBoxColumn();
     this.cStatusName       = new System.Windows.Forms.DataGridTextBoxColumn();
     this.cReceiveDate      = new System.Windows.Forms.DataGridTextBoxColumn();
     this.lblLocation       = new System.Windows.Forms.Label();
     this.txtLocation       = new System.Windows.Forms.TextBox();
     this.lblItemNumber     = new System.Windows.Forms.Label();
     this.txtItemNumber     = new System.Windows.Forms.TextBox();
     this.btnBack           = new System.Windows.Forms.Button();
     this.btnRefresh        = new System.Windows.Forms.Button();
     this.dgvInventory      = new System.Windows.Forms.DataGrid();
     this.lblHeaderMainMenu = new System.Windows.Forms.Label();
     this.cmbLotNumber      = new System.Windows.Forms.ComboBox();
     this.lblItemStatus     = new System.Windows.Forms.Label();
     this.label1            = new System.Windows.Forms.Label();
     this.lblResultCountLPN = new System.Windows.Forms.Label();
     this.lblResultCountBox = new System.Windows.Forms.Label();
     this.label3            = new System.Windows.Forms.Label();
     this.btnGetLotNumber   = new System.Windows.Forms.Button();
     dataGridTableStyle1    = new System.Windows.Forms.DataGridTableStyle();
     this.SuspendLayout();
     //
     // dataGridTableStyle1
     //
     dataGridTableStyle1.GridColumnStyles.Add(this.cLPN);
     dataGridTableStyle1.GridColumnStyles.Add(this.cItemNumebr);
     dataGridTableStyle1.GridColumnStyles.Add(this.cItemName);
     dataGridTableStyle1.GridColumnStyles.Add(this.cQuantity);
     dataGridTableStyle1.GridColumnStyles.Add(this.cUOM);
     dataGridTableStyle1.GridColumnStyles.Add(this.cLocationCode);
     dataGridTableStyle1.GridColumnStyles.Add(this.cLotNumber);
     dataGridTableStyle1.GridColumnStyles.Add(this.cExpiryDate);
     dataGridTableStyle1.GridColumnStyles.Add(this.cStatusName);
     dataGridTableStyle1.GridColumnStyles.Add(this.cReceiveDate);
     dataGridTableStyle1.MappingName = "Inventory";
     //
     // cLPN
     //
     this.cLPN.Format      = "";
     this.cLPN.FormatInfo  = null;
     this.cLPN.HeaderText  = "LPN";
     this.cLPN.MappingName = "LPN";
     this.cLPN.Width       = 80;
     //
     // cItemNumebr
     //
     this.cItemNumebr.Format      = "";
     this.cItemNumebr.FormatInfo  = null;
     this.cItemNumebr.HeaderText  = "Item Number";
     this.cItemNumebr.MappingName = "ItemNumber";
     this.cItemNumebr.Width       = 100;
     //
     // cItemName
     //
     this.cItemName.Format      = "";
     this.cItemName.FormatInfo  = null;
     this.cItemName.HeaderText  = "Description";
     this.cItemName.MappingName = "ItemName";
     this.cItemName.Width       = 300;
     //
     // cQuantity
     //
     this.cQuantity.Format      = "";
     this.cQuantity.FormatInfo  = null;
     this.cQuantity.HeaderText  = "Quantity";
     this.cQuantity.MappingName = "Quantity";
     this.cQuantity.Width       = 60;
     //
     // cUOM
     //
     this.cUOM.Format      = "";
     this.cUOM.FormatInfo  = null;
     this.cUOM.HeaderText  = "UOM";
     this.cUOM.MappingName = "UOM";
     //
     // cLocationCode
     //
     this.cLocationCode.Format      = "";
     this.cLocationCode.FormatInfo  = null;
     this.cLocationCode.HeaderText  = "Location";
     this.cLocationCode.MappingName = "LocationCode";
     this.cLocationCode.Width       = 80;
     //
     // cLotNumber
     //
     this.cLotNumber.Format      = "";
     this.cLotNumber.FormatInfo  = null;
     this.cLotNumber.HeaderText  = "Lot Number";
     this.cLotNumber.MappingName = "LotNumber";
     this.cLotNumber.Width       = 90;
     //
     // cExpiryDate
     //
     this.cExpiryDate.Format      = "dd-MM-yyyy HH:mm";
     this.cExpiryDate.FormatInfo  = null;
     this.cExpiryDate.HeaderText  = "Expiry Date";
     this.cExpiryDate.MappingName = "ExpiryDate";
     this.cExpiryDate.Width       = 120;
     //
     // cStatusName
     //
     this.cStatusName.Format      = "";
     this.cStatusName.FormatInfo  = null;
     this.cStatusName.HeaderText  = "Item Status";
     this.cStatusName.MappingName = "StatusName";
     this.cStatusName.Width       = 70;
     //
     // cReceiveDate
     //
     this.cReceiveDate.Format      = "dd-MM-yyyy HH:mm";
     this.cReceiveDate.FormatInfo  = null;
     this.cReceiveDate.HeaderText  = "Receive Date";
     this.cReceiveDate.MappingName = "ReceiveDate";
     this.cReceiveDate.Width       = 120;
     //
     // lblLocation
     //
     this.lblLocation.Font     = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular);
     this.lblLocation.Location = new System.Drawing.Point(10, 29);
     this.lblLocation.Name     = "lblLocation";
     this.lblLocation.Size     = new System.Drawing.Size(76, 13);
     this.lblLocation.Text     = "Location";
     //
     // txtLocation
     //
     this.txtLocation.BackColor = System.Drawing.Color.White;
     this.txtLocation.Font      = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular);
     this.txtLocation.ForeColor = System.Drawing.Color.Black;
     this.txtLocation.Location  = new System.Drawing.Point(87, 26);
     this.txtLocation.Name      = "txtLocation";
     this.txtLocation.Size      = new System.Drawing.Size(149, 18);
     this.txtLocation.TabIndex  = 120;
     this.txtLocation.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.txtLocation_KeyDown);
     //
     // lblItemNumber
     //
     this.lblItemNumber.Font     = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular);
     this.lblItemNumber.Location = new System.Drawing.Point(10, 48);
     this.lblItemNumber.Name     = "lblItemNumber";
     this.lblItemNumber.Size     = new System.Drawing.Size(76, 13);
     this.lblItemNumber.Text     = "Item Number";
     //
     // txtItemNumber
     //
     this.txtItemNumber.BackColor = System.Drawing.Color.White;
     this.txtItemNumber.Font      = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular);
     this.txtItemNumber.ForeColor = System.Drawing.Color.Black;
     this.txtItemNumber.Location  = new System.Drawing.Point(87, 45);
     this.txtItemNumber.Name      = "txtItemNumber";
     this.txtItemNumber.Size      = new System.Drawing.Size(122, 18);
     this.txtItemNumber.TabIndex  = 122;
     this.txtItemNumber.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.txtItemNumber_KeyDown);
     //
     // btnBack
     //
     this.btnBack.Font     = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular);
     this.btnBack.Location = new System.Drawing.Point(24, 266);
     this.btnBack.Name     = "btnBack";
     this.btnBack.Size     = new System.Drawing.Size(196, 20);
     this.btnBack.TabIndex = 136;
     this.btnBack.Text     = "<- Back";
     this.btnBack.Click   += new System.EventHandler(this.btnBack_Click);
     //
     // btnRefresh
     //
     this.btnRefresh.Font     = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular);
     this.btnRefresh.Location = new System.Drawing.Point(158, 84);
     this.btnRefresh.Name     = "btnRefresh";
     this.btnRefresh.Size     = new System.Drawing.Size(78, 20);
     this.btnRefresh.TabIndex = 135;
     this.btnRefresh.Text     = "Refresh";
     this.btnRefresh.Click   += new System.EventHandler(this.btnRefresh_Click);
     //
     // dgvInventory
     //
     this.dgvInventory.BackgroundColor   = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.dgvInventory.GridLineStyle     = System.Windows.Forms.DataGridLineStyle.None;
     this.dgvInventory.Location          = new System.Drawing.Point(3, 108);
     this.dgvInventory.Name              = "dgvInventory";
     this.dgvInventory.RowHeadersVisible = false;
     this.dgvInventory.Size              = new System.Drawing.Size(235, 138);
     this.dgvInventory.TabIndex          = 137;
     this.dgvInventory.TableStyles.Add(dataGridTableStyle1);
     //
     // lblHeaderMainMenu
     //
     this.lblHeaderMainMenu.Font      = new System.Drawing.Font("Tahoma", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
     this.lblHeaderMainMenu.ForeColor = System.Drawing.Color.Black;
     this.lblHeaderMainMenu.Location  = new System.Drawing.Point(3, 9);
     this.lblHeaderMainMenu.Name      = "lblHeaderMainMenu";
     this.lblHeaderMainMenu.Size      = new System.Drawing.Size(236, 15);
     this.lblHeaderMainMenu.Text      = "Inventory";
     //
     // cmbLotNumber
     //
     this.cmbLotNumber.BackColor = System.Drawing.Color.White;
     this.cmbLotNumber.Font      = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular);
     this.cmbLotNumber.ForeColor = System.Drawing.Color.Black;
     this.cmbLotNumber.Location  = new System.Drawing.Point(87, 64);
     this.cmbLotNumber.Name      = "cmbLotNumber";
     this.cmbLotNumber.Size      = new System.Drawing.Size(148, 18);
     this.cmbLotNumber.TabIndex  = 141;
     //
     // lblItemStatus
     //
     this.lblItemStatus.Font     = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular);
     this.lblItemStatus.Location = new System.Drawing.Point(10, 67);
     this.lblItemStatus.Name     = "lblItemStatus";
     this.lblItemStatus.Size     = new System.Drawing.Size(75, 14);
     this.lblItemStatus.Text     = "Lot Number";
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular);
     this.label1.Location = new System.Drawing.Point(3, 250);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(51, 13);
     this.label1.Text     = "Total LPN :";
     //
     // lblResultCountLPN
     //
     this.lblResultCountLPN.Font      = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular);
     this.lblResultCountLPN.ForeColor = System.Drawing.Color.Red;
     this.lblResultCountLPN.Location  = new System.Drawing.Point(60, 250);
     this.lblResultCountLPN.Name      = "lblResultCountLPN";
     this.lblResultCountLPN.Size      = new System.Drawing.Size(35, 13);
     this.lblResultCountLPN.Text      = "0";
     //
     // lblResultCountBox
     //
     this.lblResultCountBox.Font      = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular);
     this.lblResultCountBox.ForeColor = System.Drawing.Color.Red;
     this.lblResultCountBox.Location  = new System.Drawing.Point(165, 250);
     this.lblResultCountBox.Name      = "lblResultCountBox";
     this.lblResultCountBox.Size      = new System.Drawing.Size(35, 13);
     this.lblResultCountBox.Text      = "0";
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular);
     this.label3.Location = new System.Drawing.Point(108, 250);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(51, 13);
     this.label3.Text     = "Total Box :";
     //
     // btnGetLotNumber
     //
     this.btnGetLotNumber.Font     = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular);
     this.btnGetLotNumber.Location = new System.Drawing.Point(211, 45);
     this.btnGetLotNumber.Name     = "btnGetLotNumber";
     this.btnGetLotNumber.Size     = new System.Drawing.Size(24, 17);
     this.btnGetLotNumber.TabIndex = 151;
     this.btnGetLotNumber.Text     = "...";
     this.btnGetLotNumber.Click   += new System.EventHandler(this.btnGetLotNumber_Click);
     //
     // frmInventory
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.ClientSize          = new System.Drawing.Size(242, 307);
     this.ControlBox          = false;
     this.Controls.Add(this.btnGetLotNumber);
     this.Controls.Add(this.lblResultCountBox);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.lblResultCountLPN);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.cmbLotNumber);
     this.Controls.Add(this.lblItemStatus);
     this.Controls.Add(this.lblHeaderMainMenu);
     this.Controls.Add(this.dgvInventory);
     this.Controls.Add(this.btnBack);
     this.Controls.Add(this.btnRefresh);
     this.Controls.Add(this.lblItemNumber);
     this.Controls.Add(this.txtItemNumber);
     this.Controls.Add(this.lblLocation);
     this.Controls.Add(this.txtLocation);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.KeyPreview      = true;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmInventory";
     this.Text            = "Inventory";
     this.Load           += new System.EventHandler(this.frmInventory_Load);
     this.KeyUp          += new System.Windows.Forms.KeyEventHandler(this.frmInventory_KeyUp);
     this.ResumeLayout(false);
 }
Ejemplo n.º 19
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnOdustani = new System.Windows.Forms.Button();
     this.btnUpisi = new System.Windows.Forms.Button();
     this.dgLokacija = new System.Windows.Forms.DataGrid();
     this.dgLokacijaTS = new System.Windows.Forms.DataGridTableStyle();
     this.colLokacija = new System.Windows.Forms.DataGridTextBoxColumn();
     this.colZona = new System.Windows.Forms.DataGridTextBoxColumn();
     this.colStanje = new System.Windows.Forms.DataGridTextBoxColumn();
     this.colKapacitet = new System.Windows.Forms.DataGridTextBoxColumn();
     this.txtKolicina = new System.Windows.Forms.TextBox();
     this.lblKolicina = new System.Windows.Forms.Label();
     this.txtLokacija = new System.Windows.Forms.TextBox();
     this.lblLokacija = new System.Windows.Forms.Label();
     this.lblRoba = new System.Windows.Forms.Label();
     this.btnBrisi = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // btnOdustani
     //
     this.btnOdustani.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular);
     this.btnOdustani.Location = new System.Drawing.Point(3, 212);
     this.btnOdustani.Name = "btnOdustani";
     this.btnOdustani.Size = new System.Drawing.Size(112, 25);
     this.btnOdustani.TabIndex = 4;
     this.btnOdustani.Text = "Odustani";
     this.btnOdustani.Click += new System.EventHandler(this.btnOdustani_Click);
     //
     // btnUpisi
     //
     this.btnUpisi.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular);
     this.btnUpisi.Location = new System.Drawing.Point(121, 212);
     this.btnUpisi.Name = "btnUpisi";
     this.btnUpisi.Size = new System.Drawing.Size(112, 25);
     this.btnUpisi.TabIndex = 3;
     this.btnUpisi.Text = "Upiši";
     this.btnUpisi.Click += new System.EventHandler(this.btnUpisi_Click);
     //
     // dgLokacija
     //
     this.dgLokacija.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.dgLokacija.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Regular);
     this.dgLokacija.Location = new System.Drawing.Point(3, 43);
     this.dgLokacija.Name = "dgLokacija";
     this.dgLokacija.RowHeadersVisible = false;
     this.dgLokacija.Size = new System.Drawing.Size(230, 99);
     this.dgLokacija.TabIndex = 5;
     this.dgLokacija.TableStyles.Add(this.dgLokacijaTS);
     this.dgLokacija.MouseUp += new System.Windows.Forms.MouseEventHandler(this.dgLokacija_MouseUp);
     //
     // dgLokacijaTS
     //
     this.dgLokacijaTS.GridColumnStyles.Add(this.colLokacija);
     this.dgLokacijaTS.GridColumnStyles.Add(this.colZona);
     this.dgLokacijaTS.GridColumnStyles.Add(this.colStanje);
     this.dgLokacijaTS.GridColumnStyles.Add(this.colKapacitet);
     this.dgLokacijaTS.MappingName = "LokacijaRoba";
     //
     // colLokacija
     //
     this.colLokacija.Format = "";
     this.colLokacija.FormatInfo = null;
     this.colLokacija.HeaderText = "Lokacija";
     this.colLokacija.MappingName = "LokacijaOznaka";
     this.colLokacija.NullText = "";
     this.colLokacija.Width = 60;
     //
     // colZona
     //
     this.colZona.Format = "";
     this.colZona.FormatInfo = null;
     this.colZona.HeaderText = "Zona";
     this.colZona.MappingName = "ZonaOznaka";
     this.colZona.NullText = "";
     this.colZona.Width = 40;
     //
     // colStanje
     //
     this.colStanje.Format = "";
     this.colStanje.FormatInfo = null;
     this.colStanje.HeaderText = "Stanje";
     this.colStanje.MappingName = "RobaStanje";
     this.colStanje.NullText = "";
     this.colStanje.Width = 120;
     //
     // colKapacitet
     //
     this.colKapacitet.Format = "";
     this.colKapacitet.FormatInfo = null;
     this.colKapacitet.HeaderText = "Kapacitet";
     this.colKapacitet.MappingName = "Kapacitet";
     this.colKapacitet.NullText = "";
     //
     // txtKolicina
     //
     this.txtKolicina.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular);
     this.txtKolicina.Location = new System.Drawing.Point(89, 180);
     this.txtKolicina.MaxLength = 13;
     this.txtKolicina.Name = "txtKolicina";
     this.txtKolicina.Size = new System.Drawing.Size(144, 26);
     this.txtKolicina.TabIndex = 7;
     //
     // lblKolicina
     //
     this.lblKolicina.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular);
     this.lblKolicina.Location = new System.Drawing.Point(3, 180);
     this.lblKolicina.Name = "lblKolicina";
     this.lblKolicina.Size = new System.Drawing.Size(80, 26);
     this.lblKolicina.Text = "Kolièina:";
     this.lblKolicina.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // txtLokacija
     //
     this.txtLokacija.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular);
     this.txtLokacija.Location = new System.Drawing.Point(89, 148);
     this.txtLokacija.MaxLength = 8;
     this.txtLokacija.Name = "txtLokacija";
     this.txtLokacija.Size = new System.Drawing.Size(80, 26);
     this.txtLokacija.TabIndex = 10;
     //
     // lblLokacija
     //
     this.lblLokacija.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular);
     this.lblLokacija.Location = new System.Drawing.Point(3, 148);
     this.lblLokacija.Name = "lblLokacija";
     this.lblLokacija.Size = new System.Drawing.Size(80, 26);
     this.lblLokacija.Text = "Lokacija:";
     this.lblLokacija.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // lblRoba
     //
     this.lblRoba.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.lblRoba.Location = new System.Drawing.Point(3, 0);
     this.lblRoba.Name = "lblRoba";
     this.lblRoba.Size = new System.Drawing.Size(230, 40);
     //
     // btnBrisi
     //
     this.btnBrisi.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular);
     this.btnBrisi.Location = new System.Drawing.Point(175, 148);
     this.btnBrisi.Name = "btnBrisi";
     this.btnBrisi.Size = new System.Drawing.Size(58, 26);
     this.btnBrisi.TabIndex = 13;
     this.btnBrisi.Text = "Briši";
     this.btnBrisi.Click += new System.EventHandler(this.btnBrisi_Click);
     //
     // SkladokUlaz
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
     this.Controls.Add(this.btnBrisi);
     this.Controls.Add(this.lblRoba);
     this.Controls.Add(this.txtLokacija);
     this.Controls.Add(this.lblLokacija);
     this.Controls.Add(this.txtKolicina);
     this.Controls.Add(this.lblKolicina);
     this.Controls.Add(this.dgLokacija);
     this.Controls.Add(this.btnOdustani);
     this.Controls.Add(this.btnUpisi);
     this.Name = "SkladokUlaz";
     this.Size = new System.Drawing.Size(236, 240);
     this.ResumeLayout(false);
 }
Ejemplo n.º 20
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     base.Load += new System.EventHandler(Form1_Load);
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
     this.TabControl1 = new System.Windows.Forms.TabControl();
     this.TabPage1 = new System.Windows.Forms.TabPage();
     this.Button13 = new System.Windows.Forms.Button();
     this.Button13.Click += new System.EventHandler(this.Button13_Click);
     this.ImageList1 = new System.Windows.Forms.ImageList(this.components);
     this.Button14 = new System.Windows.Forms.Button();
     this.Button14.Click += new System.EventHandler(this.Button14_Click);
     this.Panel10 = new System.Windows.Forms.Panel();
     this.Button2 = new System.Windows.Forms.Button();
     this.Button2.Click += new System.EventHandler(this.Button2_Click);
     this.Button1 = new System.Windows.Forms.Button();
     this.Button1.Click += new System.EventHandler(this.Button1_Click);
     this.Panel4 = new System.Windows.Forms.Panel();
     this.TabPage2 = new System.Windows.Forms.TabPage();
     this.Button12 = new System.Windows.Forms.Button();
     this.Button12.Click += new System.EventHandler(this.Button12_Click);
     this.Button11 = new System.Windows.Forms.Button();
     this.Button11.Click += new System.EventHandler(this.Button11_Click);
     this.Panel9 = new System.Windows.Forms.Panel();
     this.Button10 = new System.Windows.Forms.Button();
     this.Button10.Click += new System.EventHandler(this.Button10_Click);
     this.Button9 = new System.Windows.Forms.Button();
     this.Button9.Click += new System.EventHandler(this.Button9_Click);
     this.Panel8 = new System.Windows.Forms.Panel();
     this.Button8 = new System.Windows.Forms.Button();
     this.Button8.Click += new System.EventHandler(this.Button8_Click);
     this.Button7 = new System.Windows.Forms.Button();
     this.Button7.Click += new System.EventHandler(this.Button7_Click);
     this.Panel7 = new System.Windows.Forms.Panel();
     this.Button6 = new System.Windows.Forms.Button();
     this.Button6.Click += new System.EventHandler(this.Button6_Click);
     this.Button5 = new System.Windows.Forms.Button();
     this.Button5.Click += new System.EventHandler(this.Button5_Click);
     this.Button4 = new System.Windows.Forms.Button();
     this.Button4.Click += new System.EventHandler(this.Button4_Click);
     this.Button3 = new System.Windows.Forms.Button();
     this.Button3.Click += new System.EventHandler(this.Button3_Click);
     this.Panel6 = new System.Windows.Forms.Panel();
     this.Panel5 = new System.Windows.Forms.Panel();
     this.Panel1 = new System.Windows.Forms.Panel();
     this.Panel2 = new System.Windows.Forms.Panel();
     this.Button15 = new System.Windows.Forms.Button();
     this.Button15.Click += new System.EventHandler(this.Button15_Click);
     this.numOpenPsn = new System.Windows.Forms.TextBox();
     this.numOpenPsn.TextChanged += new System.EventHandler(this.numOpenPsn_TextChanged);
     this.numOpenPsn.Enter += new System.EventHandler(this.numOpenPsn_Enter);
     this.numOpenPsn.Click += new System.EventHandler(this.numOpenPsn_Click);
     this.numOpenPsn.Leave += new System.EventHandler(this.numOpenPsn_Leave);
     this.Label2 = new System.Windows.Forms.Label();
     this.Panel3 = new System.Windows.Forms.Panel();
     this.Label1 = new System.Windows.Forms.Label();
     this.lblBillno = new System.Windows.Forms.Label();
     this.lblOpenpsn = new System.Windows.Forms.Label();
     this.lblTableno = new System.Windows.Forms.Label();
     this.lblOpenDate = new System.Windows.Forms.Label();
     this.btnNext = new System.Windows.Forms.Button();
     this.btnNext.Click += new System.EventHandler(this.btnNext_Click);
     this.btnPrior = new System.Windows.Forms.Button();
     this.btnPrior.Click += new System.EventHandler(this.btnPrior_Click);
     this.lblBillTypeName = new System.Windows.Forms.Label();
     this.dgSaleFoods = new System.Windows.Forms.DataGrid();
     this.DataGridTableStyle4 = new System.Windows.Forms.DataGridTableStyle();
     this.DataGridTextBoxColumn13 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn14 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn15 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn16 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn17 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridBoolColumn2 = new System.Windows.Forms.DataGridBoolColumn();
     this.DataGridTextBoxColumn18 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn19 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.LinkLabel1 = new System.Windows.Forms.LinkLabel();
     this.LinkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LinkLabel1_LinkClicked);
     this.ToolBar1 = new System.Windows.Forms.ToolBar();
     this.ToolBar1.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.ToolBar1_ButtonClick);
     this.ToolBarButton1 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton2 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton13 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton4 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton15 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton20 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton6 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton7 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton3 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton8 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton12 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton18 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton9 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton10 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton11 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton21 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton5 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton22 = new System.Windows.Forms.ToolBarButton();
     this.ImageList2 = new System.Windows.Forms.ImageList(this.components);
     this.txtFoodCode = new System.Windows.Forms.TextBox();
     this.txtFoodCode.TextChanged += new System.EventHandler(this.txtFoodCode_TextChanged);
     this.txtFoodCode.Leave += new System.EventHandler(this.txtFoodCode_Leave);
     this.txtFoodCode.Enter += new System.EventHandler(this.txtFoodCode_Enter);
     this.txtFoodCode.Click += new System.EventHandler(this.txtFoodCode_Click);
     this.pnlInput = new System.Windows.Forms.Panel();
     this.bHide = new System.Windows.Forms.Button();
     this.bHide.Click += new System.EventHandler(this.bHide_Click);
     this.bDot = new System.Windows.Forms.Button();
     this.bDot.Click += new System.EventHandler(this.bDot_Click);
     this.bCaps = new System.Windows.Forms.Button();
     this.bCaps.Click += new System.EventHandler(this.bCaps_Click);
     this.bSpc = new System.Windows.Forms.Button();
     this.bSpc.Click += new System.EventHandler(this.bSpc_Click);
     this.bM = new System.Windows.Forms.Button();
     this.bM.Click += new System.EventHandler(this.bM_Click);
     this.bN = new System.Windows.Forms.Button();
     this.bN.Click += new System.EventHandler(this.bN_Click);
     this.bB = new System.Windows.Forms.Button();
     this.bB.Click += new System.EventHandler(this.bB_Click);
     this.bV = new System.Windows.Forms.Button();
     this.bV.Click += new System.EventHandler(this.bV_Click);
     this.bC = new System.Windows.Forms.Button();
     this.bC.Click += new System.EventHandler(this.bC_Click);
     this.bX = new System.Windows.Forms.Button();
     this.bX.Click += new System.EventHandler(this.bX_Click);
     this.bZ = new System.Windows.Forms.Button();
     this.bZ.Click += new System.EventHandler(this.bZ_Click);
     this.bL = new System.Windows.Forms.Button();
     this.bL.Click += new System.EventHandler(this.bL_Click);
     this.bK = new System.Windows.Forms.Button();
     this.bK.Click += new System.EventHandler(this.bK_Click);
     this.bJ = new System.Windows.Forms.Button();
     this.bJ.Click += new System.EventHandler(this.bJ_Click);
     this.bH = new System.Windows.Forms.Button();
     this.bH.Click += new System.EventHandler(this.bH_Click);
     this.bG = new System.Windows.Forms.Button();
     this.bG.Click += new System.EventHandler(this.bG_Click);
     this.bF = new System.Windows.Forms.Button();
     this.bF.Click += new System.EventHandler(this.bF_Click);
     this.bD = new System.Windows.Forms.Button();
     this.bD.Click += new System.EventHandler(this.bD_Click);
     this.bS = new System.Windows.Forms.Button();
     this.bS.Click += new System.EventHandler(this.bS_Click);
     this.bA = new System.Windows.Forms.Button();
     this.bA.Click += new System.EventHandler(this.bA_Click);
     this.bBack = new System.Windows.Forms.Button();
     this.bBack.Click += new System.EventHandler(this.bBack_Click);
     this.bP = new System.Windows.Forms.Button();
     this.bP.Click += new System.EventHandler(this.bP_Click);
     this.bO = new System.Windows.Forms.Button();
     this.bO.Click += new System.EventHandler(this.bO_Click);
     this.bI = new System.Windows.Forms.Button();
     this.bI.Click += new System.EventHandler(this.bI_Click);
     this.bU = new System.Windows.Forms.Button();
     this.bU.Click += new System.EventHandler(this.bU_Click);
     this.bY = new System.Windows.Forms.Button();
     this.bY.Click += new System.EventHandler(this.bY_Click);
     this.bT = new System.Windows.Forms.Button();
     this.bT.Click += new System.EventHandler(this.bT_Click);
     this.bR = new System.Windows.Forms.Button();
     this.bR.Click += new System.EventHandler(this.bR_Click);
     this.bE = new System.Windows.Forms.Button();
     this.bE.Click += new System.EventHandler(this.bE_Click);
     this.bW = new System.Windows.Forms.Button();
     this.bW.Click += new System.EventHandler(this.bW_Click);
     this.bQ = new System.Windows.Forms.Button();
     this.bQ.Click += new System.EventHandler(this.bQ_Click);
     this.b0 = new System.Windows.Forms.Button();
     this.b0.Click += new System.EventHandler(this.b0_Click);
     this.b9 = new System.Windows.Forms.Button();
     this.b9.Click += new System.EventHandler(this.b9_Click);
     this.b8 = new System.Windows.Forms.Button();
     this.b8.Click += new System.EventHandler(this.b8_Click);
     this.b7 = new System.Windows.Forms.Button();
     this.b7.Click += new System.EventHandler(this.b7_Click);
     this.b6 = new System.Windows.Forms.Button();
     this.b6.Click += new System.EventHandler(this.b6_Click);
     this.b5 = new System.Windows.Forms.Button();
     this.b5.Click += new System.EventHandler(this.b5_Click);
     this.b4 = new System.Windows.Forms.Button();
     this.b4.Click += new System.EventHandler(this.b4_Click);
     this.b3 = new System.Windows.Forms.Button();
     this.b3.Click += new System.EventHandler(this.b3_Click);
     this.b2 = new System.Windows.Forms.Button();
     this.b2.Click += new System.EventHandler(this.b2_Click);
     this.b1 = new System.Windows.Forms.Button();
     this.b1.Click += new System.EventHandler(this.b1_Click);
     this.Timer1 = new System.Timers.Timer();
     this.Timer1.Elapsed += new System.Timers.ElapsedEventHandler(this.Timer1_Elapsed);
     this.TabControl1.SuspendLayout();
     this.TabPage1.SuspendLayout();
     this.TabPage2.SuspendLayout();
     this.Panel1.SuspendLayout();
     this.Panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize) this.dgSaleFoods).BeginInit();
     this.pnlInput.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize) this.Timer1).BeginInit();
     this.SuspendLayout();
     //
     //TabControl1
     //
     this.TabControl1.Alignment = System.Windows.Forms.TabAlignment.Bottom;
     this.TabControl1.Anchor = (System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right);
     this.TabControl1.Controls.Add(this.TabPage1);
     this.TabControl1.Controls.Add(this.TabPage2);
     this.TabControl1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.TabControl1.ItemSize = new System.Drawing.Size(0, 40);
     this.TabControl1.Location = new System.Drawing.Point(8, 7);
     this.TabControl1.Name = "TabControl1";
     this.TabControl1.SelectedIndex = 0;
     this.TabControl1.Size = new System.Drawing.Size(904, 585);
     this.TabControl1.TabIndex = 2;
     //
     //TabPage1
     //
     this.TabPage1.Controls.Add(this.Button13);
     this.TabPage1.Controls.Add(this.Button14);
     this.TabPage1.Controls.Add(this.Panel10);
     this.TabPage1.Controls.Add(this.Button2);
     this.TabPage1.Controls.Add(this.Button1);
     this.TabPage1.Controls.Add(this.Panel4);
     this.TabPage1.Location = new System.Drawing.Point(4, 4);
     this.TabPage1.Name = "TabPage1";
     this.TabPage1.Size = new System.Drawing.Size(896, 537);
     this.TabPage1.TabIndex = 0;
     this.TabPage1.Text = " 桌台状态 ";
     //
     //Button13
     //
     this.Button13.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
     this.Button13.BackColor = System.Drawing.Color.Lavender;
     this.Button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button13.ImageIndex = 5;
     this.Button13.ImageList = this.ImageList1;
     this.Button13.Location = new System.Drawing.Point(772, 480);
     this.Button13.Name = "Button13";
     this.Button13.Size = new System.Drawing.Size(116, 40);
     this.Button13.TabIndex = 9;
     //
     //ImageList1
     //
     this.ImageList1.ImageSize = new System.Drawing.Size(32, 32);
     this.ImageList1.ImageStream = (System.Windows.Forms.ImageListStreamer) (resources.GetObject("ImageList1.ImageStream"));
     this.ImageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     //Button14
     //
     this.Button14.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
     this.Button14.BackColor = System.Drawing.Color.Lavender;
     this.Button14.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button14.ImageIndex = 4;
     this.Button14.ImageList = this.ImageList1;
     this.Button14.Location = new System.Drawing.Point(656, 480);
     this.Button14.Name = "Button14";
     this.Button14.Size = new System.Drawing.Size(116, 40);
     this.Button14.TabIndex = 8;
     //
     //Panel10
     //
     this.Panel10.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.Panel10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Panel10.Location = new System.Drawing.Point(248, 8);
     this.Panel10.Name = "Panel10";
     this.Panel10.Size = new System.Drawing.Size(640, 472);
     this.Panel10.TabIndex = 7;
     //
     //Button2
     //
     this.Button2.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left);
     this.Button2.BackColor = System.Drawing.Color.Lavender;
     this.Button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button2.ImageIndex = 5;
     this.Button2.ImageList = this.ImageList1;
     this.Button2.Location = new System.Drawing.Point(124, 481);
     this.Button2.Name = "Button2";
     this.Button2.Size = new System.Drawing.Size(116, 40);
     this.Button2.TabIndex = 6;
     //
     //Button1
     //
     this.Button1.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left);
     this.Button1.BackColor = System.Drawing.Color.Lavender;
     this.Button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button1.ImageIndex = 4;
     this.Button1.ImageList = this.ImageList1;
     this.Button1.Location = new System.Drawing.Point(8, 481);
     this.Button1.Name = "Button1";
     this.Button1.Size = new System.Drawing.Size(116, 40);
     this.Button1.TabIndex = 5;
     //
     //Panel4
     //
     this.Panel4.Anchor = (System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left);
     this.Panel4.BackColor = System.Drawing.Color.SteelBlue;
     this.Panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Panel4.Location = new System.Drawing.Point(8, 8);
     this.Panel4.Name = "Panel4";
     this.Panel4.Size = new System.Drawing.Size(232, 473);
     this.Panel4.TabIndex = 4;
     //
     //TabPage2
     //
     this.TabPage2.Controls.Add(this.Button12);
     this.TabPage2.Controls.Add(this.Button11);
     this.TabPage2.Controls.Add(this.Panel9);
     this.TabPage2.Controls.Add(this.Button10);
     this.TabPage2.Controls.Add(this.Button9);
     this.TabPage2.Controls.Add(this.Panel8);
     this.TabPage2.Controls.Add(this.Button8);
     this.TabPage2.Controls.Add(this.Button7);
     this.TabPage2.Controls.Add(this.Panel7);
     this.TabPage2.Controls.Add(this.Button6);
     this.TabPage2.Controls.Add(this.Button5);
     this.TabPage2.Controls.Add(this.Button4);
     this.TabPage2.Controls.Add(this.Button3);
     this.TabPage2.Controls.Add(this.Panel6);
     this.TabPage2.Controls.Add(this.Panel5);
     this.TabPage2.Controls.Add(this.Panel1);
     this.TabPage2.Controls.Add(this.LinkLabel1);
     this.TabPage2.Controls.Add(this.ToolBar1);
     this.TabPage2.Controls.Add(this.txtFoodCode);
     this.TabPage2.Location = new System.Drawing.Point(4, 4);
     this.TabPage2.Name = "TabPage2";
     this.TabPage2.Size = new System.Drawing.Size(896, 537);
     this.TabPage2.TabIndex = 1;
     this.TabPage2.Text = " 单据输入 ";
     this.TabPage2.Visible = false;
     //
     //Button12
     //
     this.Button12.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.Button12.BackColor = System.Drawing.Color.Lavender;
     this.Button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button12.ImageIndex = 5;
     this.Button12.ImageList = this.ImageList1;
     this.Button12.Location = new System.Drawing.Point(768, 200);
     this.Button12.Name = "Button12";
     this.Button12.Size = new System.Drawing.Size(120, 40);
     this.Button12.TabIndex = 47;
     //
     //Button11
     //
     this.Button11.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.Button11.BackColor = System.Drawing.Color.Lavender;
     this.Button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button11.ImageIndex = 4;
     this.Button11.ImageList = this.ImageList1;
     this.Button11.Location = new System.Drawing.Point(648, 200);
     this.Button11.Name = "Button11";
     this.Button11.Size = new System.Drawing.Size(120, 40);
     this.Button11.TabIndex = 46;
     //
     //Panel9
     //
     this.Panel9.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.Panel9.BackColor = System.Drawing.Color.SteelBlue;
     this.Panel9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Panel9.Location = new System.Drawing.Point(648, 96);
     this.Panel9.Name = "Panel9";
     this.Panel9.Size = new System.Drawing.Size(240, 104);
     this.Panel9.TabIndex = 45;
     //
     //Button10
     //
     this.Button10.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
     this.Button10.BackColor = System.Drawing.Color.Lavender;
     this.Button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button10.ImageIndex = 5;
     this.Button10.ImageList = this.ImageList1;
     this.Button10.Location = new System.Drawing.Point(768, 489);
     this.Button10.Name = "Button10";
     this.Button10.Size = new System.Drawing.Size(120, 40);
     this.Button10.TabIndex = 44;
     //
     //Button9
     //
     this.Button9.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
     this.Button9.BackColor = System.Drawing.Color.Lavender;
     this.Button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button9.ImageIndex = 4;
     this.Button9.ImageList = this.ImageList1;
     this.Button9.Location = new System.Drawing.Point(648, 489);
     this.Button9.Name = "Button9";
     this.Button9.Size = new System.Drawing.Size(120, 40);
     this.Button9.TabIndex = 43;
     //
     //Panel8
     //
     this.Panel8.Anchor = (System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Right);
     this.Panel8.BackColor = System.Drawing.Color.SteelBlue;
     this.Panel8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Panel8.Location = new System.Drawing.Point(648, 416);
     this.Panel8.Name = "Panel8";
     this.Panel8.Size = new System.Drawing.Size(240, 73);
     this.Panel8.TabIndex = 42;
     //
     //Button8
     //
     this.Button8.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.Button8.BackColor = System.Drawing.Color.Lavender;
     this.Button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button8.ImageIndex = 5;
     this.Button8.ImageList = this.ImageList1;
     this.Button8.Location = new System.Drawing.Point(768, 376);
     this.Button8.Name = "Button8";
     this.Button8.Size = new System.Drawing.Size(120, 40);
     this.Button8.TabIndex = 40;
     //
     //Button7
     //
     this.Button7.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.Button7.BackColor = System.Drawing.Color.Lavender;
     this.Button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button7.ImageIndex = 4;
     this.Button7.ImageList = this.ImageList1;
     this.Button7.Location = new System.Drawing.Point(648, 376);
     this.Button7.Name = "Button7";
     this.Button7.Size = new System.Drawing.Size(120, 40);
     this.Button7.TabIndex = 39;
     //
     //Panel7
     //
     this.Panel7.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.Panel7.BackColor = System.Drawing.Color.SteelBlue;
     this.Panel7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Panel7.Location = new System.Drawing.Point(648, 240);
     this.Panel7.Name = "Panel7";
     this.Panel7.Size = new System.Drawing.Size(240, 136);
     this.Panel7.TabIndex = 38;
     //
     //Button6
     //
     this.Button6.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left);
     this.Button6.BackColor = System.Drawing.Color.Lavender;
     this.Button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button6.ImageIndex = 5;
     this.Button6.ImageList = this.ImageList1;
     this.Button6.Location = new System.Drawing.Point(116, 489);
     this.Button6.Name = "Button6";
     this.Button6.Size = new System.Drawing.Size(108, 40);
     this.Button6.TabIndex = 36;
     //
     //Button5
     //
     this.Button5.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left);
     this.Button5.BackColor = System.Drawing.Color.Lavender;
     this.Button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button5.ImageIndex = 4;
     this.Button5.ImageList = this.ImageList1;
     this.Button5.Location = new System.Drawing.Point(8, 489);
     this.Button5.Name = "Button5";
     this.Button5.Size = new System.Drawing.Size(108, 40);
     this.Button5.TabIndex = 35;
     //
     //Button4
     //
     this.Button4.BackColor = System.Drawing.Color.Lavender;
     this.Button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button4.ImageIndex = 5;
     this.Button4.ImageList = this.ImageList1;
     this.Button4.Location = new System.Drawing.Point(116, 232);
     this.Button4.Name = "Button4";
     this.Button4.Size = new System.Drawing.Size(108, 40);
     this.Button4.TabIndex = 34;
     //
     //Button3
     //
     this.Button3.BackColor = System.Drawing.Color.Lavender;
     this.Button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button3.ImageIndex = 4;
     this.Button3.ImageList = this.ImageList1;
     this.Button3.Location = new System.Drawing.Point(8, 232);
     this.Button3.Name = "Button3";
     this.Button3.Size = new System.Drawing.Size(108, 40);
     this.Button3.TabIndex = 33;
     //
     //Panel6
     //
     this.Panel6.Anchor = (System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left);
     this.Panel6.BackColor = System.Drawing.Color.SteelBlue;
     this.Panel6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Panel6.Location = new System.Drawing.Point(8, 280);
     this.Panel6.Name = "Panel6";
     this.Panel6.Size = new System.Drawing.Size(216, 209);
     this.Panel6.TabIndex = 32;
     //
     //Panel5
     //
     this.Panel5.BackColor = System.Drawing.Color.SteelBlue;
     this.Panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Panel5.Location = new System.Drawing.Point(8, 72);
     this.Panel5.Name = "Panel5";
     this.Panel5.Size = new System.Drawing.Size(216, 160);
     this.Panel5.TabIndex = 31;
     //
     //Panel1
     //
     this.Panel1.Anchor = (System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right);
     this.Panel1.Controls.Add(this.Panel2);
     this.Panel1.Controls.Add(this.btnNext);
     this.Panel1.Controls.Add(this.btnPrior);
     this.Panel1.Controls.Add(this.lblBillTypeName);
     this.Panel1.Controls.Add(this.dgSaleFoods);
     this.Panel1.Location = new System.Drawing.Point(224, 72);
     this.Panel1.Name = "Panel1";
     this.Panel1.Size = new System.Drawing.Size(424, 465);
     this.Panel1.TabIndex = 25;
     //
     //Panel2
     //
     this.Panel2.Anchor = (System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right);
     this.Panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Panel2.Controls.Add(this.Button15);
     this.Panel2.Controls.Add(this.numOpenPsn);
     this.Panel2.Controls.Add(this.Label2);
     this.Panel2.Controls.Add(this.Panel3);
     this.Panel2.Controls.Add(this.Label1);
     this.Panel2.Controls.Add(this.lblBillno);
     this.Panel2.Controls.Add(this.lblOpenpsn);
     this.Panel2.Controls.Add(this.lblTableno);
     this.Panel2.Controls.Add(this.lblOpenDate);
     this.Panel2.Location = new System.Drawing.Point(8, 72);
     this.Panel2.Name = "Panel2";
     this.Panel2.Size = new System.Drawing.Size(408, 128);
     this.Panel2.TabIndex = 15;
     //
     //Button15
     //
     this.Button15.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.Button15.Location = new System.Drawing.Point(328, 27);
     this.Button15.Name = "Button15";
     this.Button15.Size = new System.Drawing.Size(64, 23);
     this.Button15.TabIndex = 15;
     this.Button15.Text = "更新";
     this.Button15.Visible = false;
     //
     //numOpenPsn
     //
     this.numOpenPsn.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.numOpenPsn.BackColor = System.Drawing.Color.FromArgb((byte) (224), (byte) (224), (byte) (224));
     this.numOpenPsn.Location = new System.Drawing.Point(224, 27);
     this.numOpenPsn.Name = "numOpenPsn";
     this.numOpenPsn.TabIndex = 16;
     this.numOpenPsn.Text = "TextBox1";
     this.numOpenPsn.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.numOpenPsn.Visible = false;
     //
     //Label2
     //
     this.Label2.Anchor = (System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right);
     this.Label2.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.Label2.ForeColor = System.Drawing.Color.Red;
     this.Label2.Location = new System.Drawing.Point(224, 64);
     this.Label2.Name = "Label2";
     this.Label2.Size = new System.Drawing.Size(176, 56);
     this.Label2.TabIndex = 14;
     this.Label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     //Panel3
     //
     this.Panel3.Anchor = (System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right);
     this.Panel3.BackColor = System.Drawing.Color.Black;
     this.Panel3.Location = new System.Drawing.Point(8, 56);
     this.Panel3.Name = "Panel3";
     this.Panel3.Size = new System.Drawing.Size(390, 3);
     this.Panel3.TabIndex = 13;
     //
     //Label1
     //
     this.Label1.Anchor = (System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right);
     this.Label1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.Label1.Location = new System.Drawing.Point(8, 64);
     this.Label1.Name = "Label1";
     this.Label1.Size = new System.Drawing.Size(168, 56);
     this.Label1.TabIndex = 12;
     this.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     //lblBillno
     //
     this.lblBillno.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.lblBillno.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.lblBillno.Location = new System.Drawing.Point(152, 8);
     this.lblBillno.Name = "lblBillno";
     this.lblBillno.Size = new System.Drawing.Size(240, 23);
     this.lblBillno.TabIndex = 11;
     this.lblBillno.Text = "单据号:";
     //
     //lblOpenpsn
     //
     this.lblOpenpsn.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.lblOpenpsn.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.lblOpenpsn.Location = new System.Drawing.Point(152, 32);
     this.lblOpenpsn.Name = "lblOpenpsn";
     this.lblOpenpsn.Size = new System.Drawing.Size(240, 23);
     this.lblOpenpsn.TabIndex = 10;
     this.lblOpenpsn.Text = "开台人数:";
     //
     //lblTableno
     //
     this.lblTableno.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.lblTableno.Location = new System.Drawing.Point(8, 32);
     this.lblTableno.Name = "lblTableno";
     this.lblTableno.Size = new System.Drawing.Size(256, 23);
     this.lblTableno.TabIndex = 9;
     this.lblTableno.Text = "桌台号:";
     //
     //lblOpenDate
     //
     this.lblOpenDate.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.lblOpenDate.Location = new System.Drawing.Point(8, 8);
     this.lblOpenDate.Name = "lblOpenDate";
     this.lblOpenDate.Size = new System.Drawing.Size(256, 23);
     this.lblOpenDate.TabIndex = 8;
     this.lblOpenDate.Text = "日期:";
     //
     //btnNext
     //
     this.btnNext.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.btnNext.Enabled = false;
     this.btnNext.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnNext.Location = new System.Drawing.Point(360, 16);
     this.btnNext.Name = "btnNext";
     this.btnNext.Size = new System.Drawing.Size(56, 48);
     this.btnNext.TabIndex = 14;
     this.btnNext.Text = ">>";
     //
     //btnPrior
     //
     this.btnPrior.Enabled = false;
     this.btnPrior.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnPrior.Location = new System.Drawing.Point(8, 16);
     this.btnPrior.Name = "btnPrior";
     this.btnPrior.Size = new System.Drawing.Size(56, 48);
     this.btnPrior.TabIndex = 13;
     this.btnPrior.Text = "<<";
     //
     //lblBillTypeName
     //
     this.lblBillTypeName.Anchor = (System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right);
     this.lblBillTypeName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblBillTypeName.Font = new System.Drawing.Font("宋体", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.lblBillTypeName.ForeColor = System.Drawing.Color.Navy;
     this.lblBillTypeName.Location = new System.Drawing.Point(72, 16);
     this.lblBillTypeName.Name = "lblBillTypeName";
     this.lblBillTypeName.Size = new System.Drawing.Size(280, 48);
     this.lblBillTypeName.TabIndex = 7;
     this.lblBillTypeName.Text = "点菜单";
     this.lblBillTypeName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     //dgSaleFoods
     //
     this.dgSaleFoods.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.dgSaleFoods.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.dgSaleFoods.CaptionVisible = false;
     this.dgSaleFoods.DataMember = "";
     this.dgSaleFoods.FlatMode = true;
     this.dgSaleFoods.Font = new System.Drawing.Font("宋体", 12.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.dgSaleFoods.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dgSaleFoods.Location = new System.Drawing.Point(8, 208);
     this.dgSaleFoods.Name = "dgSaleFoods";
     this.dgSaleFoods.ReadOnly = true;
     this.dgSaleFoods.Size = new System.Drawing.Size(408, 248);
     this.dgSaleFoods.TabIndex = 6;
     this.dgSaleFoods.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {this.DataGridTableStyle4});
     //
     //DataGridTableStyle4
     //
     this.DataGridTableStyle4.ColumnHeadersVisible = false;
     this.DataGridTableStyle4.DataGrid = this.dgSaleFoods;
     this.DataGridTableStyle4.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {this.DataGridTextBoxColumn13, this.DataGridTextBoxColumn14, this.DataGridTextBoxColumn15, this.DataGridTextBoxColumn16, this.DataGridTextBoxColumn17, this.DataGridBoolColumn2, this.DataGridTextBoxColumn18, this.DataGridTextBoxColumn19, this.DataGridTextBoxColumn1});
     this.DataGridTableStyle4.HeaderFont = new System.Drawing.Font("宋体", 12.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.DataGridTableStyle4.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.DataGridTableStyle4.MappingName = "salefoods";
     //
     //DataGridTextBoxColumn13
     //
     this.DataGridTextBoxColumn13.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn13.Format = "";
     this.DataGridTextBoxColumn13.FormatInfo = null;
     this.DataGridTextBoxColumn13.HeaderText = "菜品编码";
     this.DataGridTextBoxColumn13.MappingName = "foodcode";
     this.DataGridTextBoxColumn13.Width = 90;
     //
     //DataGridTextBoxColumn14
     //
     this.DataGridTextBoxColumn14.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn14.Format = "";
     this.DataGridTextBoxColumn14.FormatInfo = null;
     this.DataGridTextBoxColumn14.HeaderText = "菜品名称";
     this.DataGridTextBoxColumn14.MappingName = "foodname";
     this.DataGridTextBoxColumn14.Width = 120;
     //
     //DataGridTextBoxColumn15
     //
     this.DataGridTextBoxColumn15.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn15.Format = "";
     this.DataGridTextBoxColumn15.FormatInfo = null;
     this.DataGridTextBoxColumn15.HeaderText = "单位";
     this.DataGridTextBoxColumn15.MappingName = "unit";
     this.DataGridTextBoxColumn15.Width = 50;
     //
     //DataGridTextBoxColumn16
     //
     this.DataGridTextBoxColumn16.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn16.Format = "";
     this.DataGridTextBoxColumn16.FormatInfo = null;
     this.DataGridTextBoxColumn16.HeaderText = "数量";
     this.DataGridTextBoxColumn16.MappingName = "addquantity";
     this.DataGridTextBoxColumn16.Width = 50;
     //
     //DataGridTextBoxColumn17
     //
     this.DataGridTextBoxColumn17.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn17.Format = "";
     this.DataGridTextBoxColumn17.FormatInfo = null;
     this.DataGridTextBoxColumn17.HeaderText = "价格";
     this.DataGridTextBoxColumn17.MappingName = "price";
     this.DataGridTextBoxColumn17.Width = 65;
     //
     //DataGridBoolColumn2
     //
     this.DataGridBoolColumn2.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridBoolColumn2.FalseValue = "0";
     this.DataGridBoolColumn2.HeaderText = "已上菜";
     this.DataGridBoolColumn2.MappingName = "transfered";
     this.DataGridBoolColumn2.NullText = "";
     this.DataGridBoolColumn2.NullValue = "1";
     this.DataGridBoolColumn2.TrueValue = "2";
     this.DataGridBoolColumn2.Width = 55;
     //
     //DataGridTextBoxColumn18
     //
     this.DataGridTextBoxColumn18.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn18.Format = "";
     this.DataGridTextBoxColumn18.FormatInfo = null;
     this.DataGridTextBoxColumn18.HeaderText = "做法";
     this.DataGridTextBoxColumn18.MappingName = "operandi";
     this.DataGridTextBoxColumn18.Width = 120;
     //
     //DataGridTextBoxColumn19
     //
     this.DataGridTextBoxColumn19.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn19.Format = "";
     this.DataGridTextBoxColumn19.FormatInfo = null;
     this.DataGridTextBoxColumn19.HeaderText = "口味";
     this.DataGridTextBoxColumn19.MappingName = "taste";
     this.DataGridTextBoxColumn19.Width = 120;
     //
     //DataGridTextBoxColumn1
     //
     this.DataGridTextBoxColumn1.Format = "";
     this.DataGridTextBoxColumn1.FormatInfo = null;
     this.DataGridTextBoxColumn1.MappingName = "barcode";
     this.DataGridTextBoxColumn1.Width = 0;
     //
     //LinkLabel1
     //
     this.LinkLabel1.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.LinkLabel1.Location = new System.Drawing.Point(648, 72);
     this.LinkLabel1.Name = "LinkLabel1";
     this.LinkLabel1.Size = new System.Drawing.Size(80, 23);
     this.LinkLabel1.TabIndex = 24;
     this.LinkLabel1.TabStop = true;
     this.LinkLabel1.Text = "菜品类别:";
     this.LinkLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     //ToolBar1
     //
     this.ToolBar1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.ToolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {this.ToolBarButton1, this.ToolBarButton2, this.ToolBarButton13, this.ToolBarButton4, this.ToolBarButton15, this.ToolBarButton20, this.ToolBarButton6, this.ToolBarButton7, this.ToolBarButton3, this.ToolBarButton8, this.ToolBarButton12, this.ToolBarButton18, this.ToolBarButton9, this.ToolBarButton10, this.ToolBarButton11, this.ToolBarButton21, this.ToolBarButton5, this.ToolBarButton22});
     this.ToolBar1.ButtonSize = new System.Drawing.Size(60, 56);
     this.ToolBar1.DropDownArrows = true;
     this.ToolBar1.ImageList = this.ImageList2;
     this.ToolBar1.Location = new System.Drawing.Point(0, 0);
     this.ToolBar1.Name = "ToolBar1";
     this.ToolBar1.ShowToolTips = true;
     this.ToolBar1.Size = new System.Drawing.Size(896, 63);
     this.ToolBar1.TabIndex = 21;
     this.ToolBar1.Wrappable = false;
     //
     //ToolBarButton1
     //
     this.ToolBarButton1.ImageIndex = 0;
     this.ToolBarButton1.Text = "开台";
     this.ToolBarButton1.ToolTipText = "对选中桌台进行开台操作";
     //
     //ToolBarButton2
     //
     this.ToolBarButton2.ImageIndex = 1;
     this.ToolBarButton2.Text = "加单";
     this.ToolBarButton2.ToolTipText = "向选中桌台进行加单操作";
     //
     //ToolBarButton13
     //
     this.ToolBarButton13.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     //ToolBarButton4
     //
     this.ToolBarButton4.ImageIndex = 3;
     this.ToolBarButton4.Text = "传菜";
     this.ToolBarButton4.ToolTipText = "对选中菜品进行传菜操作";
     //
     //ToolBarButton15
     //
     this.ToolBarButton15.ImageIndex = 4;
     this.ToolBarButton15.Text = "催菜";
     this.ToolBarButton15.ToolTipText = "对选中菜品进行催菜操作";
     //
     //ToolBarButton20
     //
     this.ToolBarButton20.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     //ToolBarButton6
     //
     this.ToolBarButton6.ImageIndex = 5;
     this.ToolBarButton6.Text = "转台";
     this.ToolBarButton6.ToolTipText = "对选中桌台进行转台操作";
     //
     //ToolBarButton7
     //
     this.ToolBarButton7.ImageIndex = 6;
     this.ToolBarButton7.Text = "并台";
     this.ToolBarButton7.ToolTipText = "对选中桌台进行并台操作";
     //
     //ToolBarButton3
     //
     this.ToolBarButton3.ImageIndex = 5;
     this.ToolBarButton3.Text = "转并台";
     //
     //ToolBarButton8
     //
     this.ToolBarButton8.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     //ToolBarButton12
     //
     this.ToolBarButton12.ImageIndex = 7;
     this.ToolBarButton12.Text = "套餐";
     this.ToolBarButton12.ToolTipText = "向选中桌台及当前单据添加套餐";
     //
     //ToolBarButton18
     //
     this.ToolBarButton18.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     //ToolBarButton9
     //
     this.ToolBarButton9.ImageIndex = 10;
     this.ToolBarButton9.Text = "删单据";
     this.ToolBarButton9.ToolTipText = "删除当前单据";
     //
     //ToolBarButton10
     //
     this.ToolBarButton10.ImageIndex = 11;
     this.ToolBarButton10.Text = "删菜品";
     this.ToolBarButton10.ToolTipText = "删除当前选中的菜品";
     //
     //ToolBarButton11
     //
     this.ToolBarButton11.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     //ToolBarButton21
     //
     this.ToolBarButton21.ImageIndex = 12;
     this.ToolBarButton21.Text = "注销";
     //
     //ToolBarButton5
     //
     this.ToolBarButton5.ImageIndex = 13;
     this.ToolBarButton5.Text = "关于";
     //
     //ToolBarButton22
     //
     this.ToolBarButton22.ImageIndex = 14;
     this.ToolBarButton22.Text = "退出";
     //
     //ImageList2
     //
     this.ImageList2.ColorDepth = System.Windows.Forms.ColorDepth.Depth16Bit;
     this.ImageList2.ImageSize = new System.Drawing.Size(28, 28);
     this.ImageList2.ImageStream = (System.Windows.Forms.ImageListStreamer) (resources.GetObject("ImageList2.ImageStream"));
     this.ImageList2.TransparentColor = System.Drawing.Color.Transparent;
     //
     //txtFoodCode
     //
     this.txtFoodCode.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.txtFoodCode.Location = new System.Drawing.Point(728, 72);
     this.txtFoodCode.Name = "txtFoodCode";
     this.txtFoodCode.Size = new System.Drawing.Size(160, 23);
     this.txtFoodCode.TabIndex = 23;
     this.txtFoodCode.Text = "";
     this.txtFoodCode.Visible = false;
     //
     //pnlInput
     //
     this.pnlInput.BackColor = System.Drawing.Color.FromArgb((byte) (192), (byte) (192), (byte) (255));
     this.pnlInput.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnlInput.Controls.Add(this.bHide);
     this.pnlInput.Controls.Add(this.bDot);
     this.pnlInput.Controls.Add(this.bCaps);
     this.pnlInput.Controls.Add(this.bSpc);
     this.pnlInput.Controls.Add(this.bM);
     this.pnlInput.Controls.Add(this.bN);
     this.pnlInput.Controls.Add(this.bB);
     this.pnlInput.Controls.Add(this.bV);
     this.pnlInput.Controls.Add(this.bC);
     this.pnlInput.Controls.Add(this.bX);
     this.pnlInput.Controls.Add(this.bZ);
     this.pnlInput.Controls.Add(this.bL);
     this.pnlInput.Controls.Add(this.bK);
     this.pnlInput.Controls.Add(this.bJ);
     this.pnlInput.Controls.Add(this.bH);
     this.pnlInput.Controls.Add(this.bG);
     this.pnlInput.Controls.Add(this.bF);
     this.pnlInput.Controls.Add(this.bD);
     this.pnlInput.Controls.Add(this.bS);
     this.pnlInput.Controls.Add(this.bA);
     this.pnlInput.Controls.Add(this.bBack);
     this.pnlInput.Controls.Add(this.bP);
     this.pnlInput.Controls.Add(this.bO);
     this.pnlInput.Controls.Add(this.bI);
     this.pnlInput.Controls.Add(this.bU);
     this.pnlInput.Controls.Add(this.bY);
     this.pnlInput.Controls.Add(this.bT);
     this.pnlInput.Controls.Add(this.bR);
     this.pnlInput.Controls.Add(this.bE);
     this.pnlInput.Controls.Add(this.bW);
     this.pnlInput.Controls.Add(this.bQ);
     this.pnlInput.Controls.Add(this.b0);
     this.pnlInput.Controls.Add(this.b9);
     this.pnlInput.Controls.Add(this.b8);
     this.pnlInput.Controls.Add(this.b7);
     this.pnlInput.Controls.Add(this.b6);
     this.pnlInput.Controls.Add(this.b5);
     this.pnlInput.Controls.Add(this.b4);
     this.pnlInput.Controls.Add(this.b3);
     this.pnlInput.Controls.Add(this.b2);
     this.pnlInput.Controls.Add(this.b1);
     this.pnlInput.Location = new System.Drawing.Point(224, 199);
     this.pnlInput.Name = "pnlInput";
     this.pnlInput.Size = new System.Drawing.Size(496, 216);
     this.pnlInput.TabIndex = 3;
     this.pnlInput.TabStop = true;
     this.pnlInput.Visible = false;
     //
     //bHide
     //
     this.bHide.BackColor = System.Drawing.SystemColors.Control;
     this.bHide.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bHide.Location = new System.Drawing.Point(400, 168);
     this.bHide.Name = "bHide";
     this.bHide.Size = new System.Drawing.Size(88, 40);
     this.bHide.TabIndex = 40;
     this.bHide.Text = "隐藏";
     //
     //bDot
     //
     this.bDot.BackColor = System.Drawing.SystemColors.Control;
     this.bDot.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bDot.Location = new System.Drawing.Point(392, 128);
     this.bDot.Name = "bDot";
     this.bDot.Size = new System.Drawing.Size(48, 40);
     this.bDot.TabIndex = 39;
     this.bDot.Tag = ".";
     this.bDot.Text = ".";
     //
     //bCaps
     //
     this.bCaps.BackColor = System.Drawing.SystemColors.Control;
     this.bCaps.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bCaps.Location = new System.Drawing.Point(8, 168);
     this.bCaps.Name = "bCaps";
     this.bCaps.Size = new System.Drawing.Size(88, 40);
     this.bCaps.TabIndex = 38;
     this.bCaps.Text = "Caps/小写";
     //
     //bSpc
     //
     this.bSpc.BackColor = System.Drawing.SystemColors.Control;
     this.bSpc.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bSpc.Location = new System.Drawing.Point(104, 168);
     this.bSpc.Name = "bSpc";
     this.bSpc.Size = new System.Drawing.Size(288, 40);
     this.bSpc.TabIndex = 37;
     this.bSpc.Tag = "";
     this.bSpc.Text = "SPACE/空格";
     //
     //bM
     //
     this.bM.BackColor = System.Drawing.SystemColors.Control;
     this.bM.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bM.Location = new System.Drawing.Point(344, 128);
     this.bM.Name = "bM";
     this.bM.Size = new System.Drawing.Size(48, 40);
     this.bM.TabIndex = 36;
     this.bM.Tag = "M";
     this.bM.Text = "M";
     //
     //bN
     //
     this.bN.BackColor = System.Drawing.SystemColors.Control;
     this.bN.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bN.Location = new System.Drawing.Point(296, 128);
     this.bN.Name = "bN";
     this.bN.Size = new System.Drawing.Size(48, 40);
     this.bN.TabIndex = 35;
     this.bN.Tag = "N";
     this.bN.Text = "N";
     //
     //bB
     //
     this.bB.BackColor = System.Drawing.SystemColors.Control;
     this.bB.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bB.Location = new System.Drawing.Point(248, 128);
     this.bB.Name = "bB";
     this.bB.Size = new System.Drawing.Size(48, 40);
     this.bB.TabIndex = 34;
     this.bB.Tag = "B";
     this.bB.Text = "B";
     //
     //bV
     //
     this.bV.BackColor = System.Drawing.SystemColors.Control;
     this.bV.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bV.Location = new System.Drawing.Point(200, 128);
     this.bV.Name = "bV";
     this.bV.Size = new System.Drawing.Size(48, 40);
     this.bV.TabIndex = 33;
     this.bV.Tag = "V";
     this.bV.Text = "V";
     //
     //bC
     //
     this.bC.BackColor = System.Drawing.SystemColors.Control;
     this.bC.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bC.Location = new System.Drawing.Point(152, 128);
     this.bC.Name = "bC";
     this.bC.Size = new System.Drawing.Size(48, 40);
     this.bC.TabIndex = 32;
     this.bC.Tag = "C";
     this.bC.Text = "C";
     //
     //bX
     //
     this.bX.BackColor = System.Drawing.SystemColors.Control;
     this.bX.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bX.Location = new System.Drawing.Point(104, 128);
     this.bX.Name = "bX";
     this.bX.Size = new System.Drawing.Size(48, 40);
     this.bX.TabIndex = 31;
     this.bX.Tag = "X";
     this.bX.Text = "X";
     //
     //bZ
     //
     this.bZ.BackColor = System.Drawing.SystemColors.Control;
     this.bZ.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bZ.Location = new System.Drawing.Point(56, 128);
     this.bZ.Name = "bZ";
     this.bZ.Size = new System.Drawing.Size(48, 40);
     this.bZ.TabIndex = 30;
     this.bZ.Tag = "Z";
     this.bZ.Text = "Z";
     //
     //bL
     //
     this.bL.BackColor = System.Drawing.SystemColors.Control;
     this.bL.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bL.Location = new System.Drawing.Point(416, 88);
     this.bL.Name = "bL";
     this.bL.Size = new System.Drawing.Size(48, 40);
     this.bL.TabIndex = 29;
     this.bL.Tag = "L";
     this.bL.Text = "L";
     //
     //bK
     //
     this.bK.BackColor = System.Drawing.SystemColors.Control;
     this.bK.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bK.Location = new System.Drawing.Point(368, 88);
     this.bK.Name = "bK";
     this.bK.Size = new System.Drawing.Size(48, 40);
     this.bK.TabIndex = 28;
     this.bK.Tag = "K";
     this.bK.Text = "K";
     //
     //bJ
     //
     this.bJ.BackColor = System.Drawing.SystemColors.Control;
     this.bJ.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bJ.Location = new System.Drawing.Point(320, 88);
     this.bJ.Name = "bJ";
     this.bJ.Size = new System.Drawing.Size(48, 40);
     this.bJ.TabIndex = 27;
     this.bJ.Tag = "J";
     this.bJ.Text = "J";
     //
     //bH
     //
     this.bH.BackColor = System.Drawing.SystemColors.Control;
     this.bH.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bH.Location = new System.Drawing.Point(272, 88);
     this.bH.Name = "bH";
     this.bH.Size = new System.Drawing.Size(48, 40);
     this.bH.TabIndex = 26;
     this.bH.Tag = "H";
     this.bH.Text = "H";
     //
     //bG
     //
     this.bG.BackColor = System.Drawing.SystemColors.Control;
     this.bG.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bG.Location = new System.Drawing.Point(224, 88);
     this.bG.Name = "bG";
     this.bG.Size = new System.Drawing.Size(48, 40);
     this.bG.TabIndex = 25;
     this.bG.Tag = "G";
     this.bG.Text = "G";
     //
     //bF
     //
     this.bF.BackColor = System.Drawing.SystemColors.Control;
     this.bF.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bF.Location = new System.Drawing.Point(176, 88);
     this.bF.Name = "bF";
     this.bF.Size = new System.Drawing.Size(48, 40);
     this.bF.TabIndex = 24;
     this.bF.Tag = "F";
     this.bF.Text = "F";
     //
     //bD
     //
     this.bD.BackColor = System.Drawing.SystemColors.Control;
     this.bD.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bD.Location = new System.Drawing.Point(128, 88);
     this.bD.Name = "bD";
     this.bD.Size = new System.Drawing.Size(48, 40);
     this.bD.TabIndex = 23;
     this.bD.Tag = "D";
     this.bD.Text = "D";
     //
     //bS
     //
     this.bS.BackColor = System.Drawing.SystemColors.Control;
     this.bS.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bS.Location = new System.Drawing.Point(80, 88);
     this.bS.Name = "bS";
     this.bS.Size = new System.Drawing.Size(48, 40);
     this.bS.TabIndex = 22;
     this.bS.Tag = "S";
     this.bS.Text = "S";
     //
     //bA
     //
     this.bA.BackColor = System.Drawing.SystemColors.Control;
     this.bA.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bA.Location = new System.Drawing.Point(32, 88);
     this.bA.Name = "bA";
     this.bA.Size = new System.Drawing.Size(48, 40);
     this.bA.TabIndex = 21;
     this.bA.Tag = "A";
     this.bA.Text = "A";
     //
     //bBack
     //
     this.bBack.BackColor = System.Drawing.SystemColors.Control;
     this.bBack.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bBack.Location = new System.Drawing.Point(416, 8);
     this.bBack.Name = "bBack";
     this.bBack.Size = new System.Drawing.Size(72, 32);
     this.bBack.TabIndex = 20;
     this.bBack.Text = "BACK Space";
     //
     //bP
     //
     this.bP.BackColor = System.Drawing.SystemColors.Control;
     this.bP.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bP.Location = new System.Drawing.Point(440, 48);
     this.bP.Name = "bP";
     this.bP.Size = new System.Drawing.Size(48, 40);
     this.bP.TabIndex = 19;
     this.bP.Tag = "P";
     this.bP.Text = "P";
     //
     //bO
     //
     this.bO.BackColor = System.Drawing.SystemColors.Control;
     this.bO.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bO.Location = new System.Drawing.Point(392, 48);
     this.bO.Name = "bO";
     this.bO.Size = new System.Drawing.Size(48, 40);
     this.bO.TabIndex = 18;
     this.bO.Tag = "O";
     this.bO.Text = "O";
     //
     //bI
     //
     this.bI.BackColor = System.Drawing.SystemColors.Control;
     this.bI.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bI.Location = new System.Drawing.Point(344, 48);
     this.bI.Name = "bI";
     this.bI.Size = new System.Drawing.Size(48, 40);
     this.bI.TabIndex = 17;
     this.bI.Tag = "I";
     this.bI.Text = "I";
     //
     //bU
     //
     this.bU.BackColor = System.Drawing.SystemColors.Control;
     this.bU.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bU.Location = new System.Drawing.Point(296, 48);
     this.bU.Name = "bU";
     this.bU.Size = new System.Drawing.Size(48, 40);
     this.bU.TabIndex = 16;
     this.bU.Tag = "U";
     this.bU.Text = "U";
     //
     //bY
     //
     this.bY.BackColor = System.Drawing.SystemColors.Control;
     this.bY.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bY.Location = new System.Drawing.Point(248, 48);
     this.bY.Name = "bY";
     this.bY.Size = new System.Drawing.Size(48, 40);
     this.bY.TabIndex = 15;
     this.bY.Tag = "Y";
     this.bY.Text = "Y";
     //
     //bT
     //
     this.bT.BackColor = System.Drawing.SystemColors.Control;
     this.bT.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bT.Location = new System.Drawing.Point(200, 48);
     this.bT.Name = "bT";
     this.bT.Size = new System.Drawing.Size(48, 40);
     this.bT.TabIndex = 14;
     this.bT.Tag = "T";
     this.bT.Text = "T";
     //
     //bR
     //
     this.bR.BackColor = System.Drawing.SystemColors.Control;
     this.bR.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bR.Location = new System.Drawing.Point(152, 48);
     this.bR.Name = "bR";
     this.bR.Size = new System.Drawing.Size(48, 40);
     this.bR.TabIndex = 13;
     this.bR.Tag = "R";
     this.bR.Text = "R";
     //
     //bE
     //
     this.bE.BackColor = System.Drawing.SystemColors.Control;
     this.bE.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bE.Location = new System.Drawing.Point(104, 48);
     this.bE.Name = "bE";
     this.bE.Size = new System.Drawing.Size(48, 40);
     this.bE.TabIndex = 12;
     this.bE.Tag = "E";
     this.bE.Text = "E";
     //
     //bW
     //
     this.bW.BackColor = System.Drawing.SystemColors.Control;
     this.bW.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bW.Location = new System.Drawing.Point(56, 48);
     this.bW.Name = "bW";
     this.bW.Size = new System.Drawing.Size(48, 40);
     this.bW.TabIndex = 11;
     this.bW.Tag = "W";
     this.bW.Text = "W";
     //
     //bQ
     //
     this.bQ.BackColor = System.Drawing.SystemColors.Control;
     this.bQ.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bQ.Location = new System.Drawing.Point(8, 48);
     this.bQ.Name = "bQ";
     this.bQ.Size = new System.Drawing.Size(48, 40);
     this.bQ.TabIndex = 10;
     this.bQ.Tag = "Q";
     this.bQ.Text = "Q";
     //
     //b0
     //
     this.b0.BackColor = System.Drawing.SystemColors.Control;
     this.b0.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.b0.Location = new System.Drawing.Point(368, 8);
     this.b0.Name = "b0";
     this.b0.Size = new System.Drawing.Size(40, 32);
     this.b0.TabIndex = 9;
     this.b0.Tag = "0";
     this.b0.Text = "0";
     //
     //b9
     //
     this.b9.BackColor = System.Drawing.SystemColors.Control;
     this.b9.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.b9.Location = new System.Drawing.Point(328, 8);
     this.b9.Name = "b9";
     this.b9.Size = new System.Drawing.Size(40, 32);
     this.b9.TabIndex = 8;
     this.b9.Tag = "9";
     this.b9.Text = "9";
     //
     //b8
     //
     this.b8.BackColor = System.Drawing.SystemColors.Control;
     this.b8.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.b8.Location = new System.Drawing.Point(288, 8);
     this.b8.Name = "b8";
     this.b8.Size = new System.Drawing.Size(40, 32);
     this.b8.TabIndex = 7;
     this.b8.Tag = "8";
     this.b8.Text = "8";
     //
     //b7
     //
     this.b7.BackColor = System.Drawing.SystemColors.Control;
     this.b7.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.b7.Location = new System.Drawing.Point(248, 8);
     this.b7.Name = "b7";
     this.b7.Size = new System.Drawing.Size(40, 32);
     this.b7.TabIndex = 6;
     this.b7.Tag = "7";
     this.b7.Text = "7";
     //
     //b6
     //
     this.b6.BackColor = System.Drawing.SystemColors.Control;
     this.b6.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.b6.Location = new System.Drawing.Point(208, 8);
     this.b6.Name = "b6";
     this.b6.Size = new System.Drawing.Size(40, 32);
     this.b6.TabIndex = 5;
     this.b6.Tag = "6";
     this.b6.Text = "6";
     //
     //b5
     //
     this.b5.BackColor = System.Drawing.SystemColors.Control;
     this.b5.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.b5.Location = new System.Drawing.Point(168, 8);
     this.b5.Name = "b5";
     this.b5.Size = new System.Drawing.Size(40, 32);
     this.b5.TabIndex = 4;
     this.b5.Tag = "5";
     this.b5.Text = "5";
     //
     //b4
     //
     this.b4.BackColor = System.Drawing.SystemColors.Control;
     this.b4.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.b4.Location = new System.Drawing.Point(128, 8);
     this.b4.Name = "b4";
     this.b4.Size = new System.Drawing.Size(40, 32);
     this.b4.TabIndex = 3;
     this.b4.Tag = "4";
     this.b4.Text = "4";
     //
     //b3
     //
     this.b3.BackColor = System.Drawing.SystemColors.Control;
     this.b3.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.b3.Location = new System.Drawing.Point(88, 8);
     this.b3.Name = "b3";
     this.b3.Size = new System.Drawing.Size(40, 32);
     this.b3.TabIndex = 2;
     this.b3.Tag = "3";
     this.b3.Text = "3";
     //
     //b2
     //
     this.b2.BackColor = System.Drawing.SystemColors.Control;
     this.b2.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.b2.Location = new System.Drawing.Point(48, 8);
     this.b2.Name = "b2";
     this.b2.Size = new System.Drawing.Size(40, 32);
     this.b2.TabIndex = 1;
     this.b2.Tag = "2";
     this.b2.Text = "2";
     //
     //b1
     //
     this.b1.BackColor = System.Drawing.SystemColors.Control;
     this.b1.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.b1.Location = new System.Drawing.Point(8, 8);
     this.b1.Name = "b1";
     this.b1.Size = new System.Drawing.Size(40, 32);
     this.b1.TabIndex = 0;
     this.b1.Tag = "1";
     this.b1.Text = "1";
     //
     //Timer1
     //
     this.Timer1.Enabled = true;
     this.Timer1.Interval = 480000;
     this.Timer1.SynchronizingObject = this;
     //
     //Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize = new System.Drawing.Size(920, 598);
     this.ControlBox = false;
     this.Controls.Add(this.TabControl1);
     this.Controls.Add(this.pnlInput);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "Form1";
     this.Text = "餐厅管家 - 触摸屏客户端";
     this.TopMost = true;
     this.TabControl1.ResumeLayout(false);
     this.TabPage1.ResumeLayout(false);
     this.TabPage2.ResumeLayout(false);
     this.Panel1.ResumeLayout(false);
     this.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize) this.dgSaleFoods).EndInit();
     this.pnlInput.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize) this.Timer1).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 21
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.timerAutoRefresh        = new System.Windows.Forms.Timer(this.components);
     this.closeButton             = new Terrarium.Glass.GlassButton();
     this.refreshButton           = new Terrarium.Glass.GlassButton();
     this.dataGrid1               = new System.Windows.Forms.DataGrid();
     this.dataGridTableStyle1     = new System.Windows.Forms.DataGridTableStyle();
     this.dataGridTextBoxColumn2  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn3  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn4  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn5  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn10 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn6  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn9  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn7  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn8  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn1  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn12 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn11 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.resizeBar1              = new Terrarium.Forms.ResizeBar();
     this._bottomPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // titleBar
     //
     this._titleBar.Size          = new System.Drawing.Size(434, 32);
     this._titleBar.Title         = "Local Statistics";
     this._titleBar.CloseClicked += new System.EventHandler(this.CloseForm_Click);
     //
     // bottomPanel
     //
     this._bottomPanel.Controls.Add(this.resizeBar1);
     this._bottomPanel.Controls.Add(this.closeButton);
     this._bottomPanel.Controls.Add(this.refreshButton);
     this._bottomPanel.Gradient.Bottom = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this._bottomPanel.Gradient.Top    = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(96)))), ((int)(((byte)(96)))));
     this._bottomPanel.Location        = new System.Drawing.Point(0, 328);
     this._bottomPanel.Size            = new System.Drawing.Size(434, 40);
     //
     // timerAutoRefresh
     //
     this.timerAutoRefresh.Enabled  = true;
     this.timerAutoRefresh.Interval = 10000;
     this.timerAutoRefresh.Tick    += new System.EventHandler(this.timerAutoRefresh_Tick);
     //
     // closeButton
     //
     this.closeButton.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.closeButton.BackColor               = System.Drawing.Color.Transparent;
     this.closeButton.BorderColor             = System.Drawing.Color.Black;
     this.closeButton.Depth                   = 4;
     this.closeButton.DisabledGradient.Bottom = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.closeButton.DisabledGradient.Top    = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.closeButton.Font      = new System.Drawing.Font("Verdana", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.closeButton.ForeColor = System.Drawing.Color.White;
     this.closeButton.Highlight = false;
     this.closeButton.HighlightGradient.Bottom = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(96)))), ((int)(((byte)(96)))));
     this.closeButton.HighlightGradient.Top    = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.closeButton.HoverGradient.Bottom     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.closeButton.HoverGradient.Top        = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(216)))), ((int)(((byte)(0)))));
     this.closeButton.IsGlass  = true;
     this.closeButton.Location = new System.Drawing.Point(338, 2);
     this.closeButton.Name     = "closeButton";
     this.closeButton.NormalGradient.Bottom  = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.closeButton.NormalGradient.Top     = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(96)))), ((int)(((byte)(96)))));
     this.closeButton.PressedGradient.Bottom = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(216)))), ((int)(((byte)(0)))));
     this.closeButton.PressedGradient.Top    = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.closeButton.Size      = new System.Drawing.Size(75, 36);
     this.closeButton.TabIndex  = 11;
     this.closeButton.TabStop   = false;
     this.closeButton.Text      = "Close";
     this.closeButton.UseStyles = true;
     this.closeButton.UseVisualStyleBackColor = false;
     this.closeButton.Click += new System.EventHandler(this.CloseForm_Click);
     //
     // refreshButton
     //
     this.refreshButton.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.refreshButton.BackColor               = System.Drawing.Color.Transparent;
     this.refreshButton.BorderColor             = System.Drawing.Color.Black;
     this.refreshButton.Depth                   = 4;
     this.refreshButton.DisabledGradient.Bottom = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.refreshButton.DisabledGradient.Top    = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.refreshButton.Font      = new System.Drawing.Font("Verdana", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.refreshButton.ForeColor = System.Drawing.Color.White;
     this.refreshButton.Highlight = false;
     this.refreshButton.HighlightGradient.Bottom = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(96)))), ((int)(((byte)(96)))));
     this.refreshButton.HighlightGradient.Top    = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.refreshButton.HoverGradient.Bottom     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.refreshButton.HoverGradient.Top        = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(216)))), ((int)(((byte)(0)))));
     this.refreshButton.IsGlass  = true;
     this.refreshButton.Location = new System.Drawing.Point(257, 2);
     this.refreshButton.Name     = "refreshButton";
     this.refreshButton.NormalGradient.Bottom  = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.refreshButton.NormalGradient.Top     = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(96)))), ((int)(((byte)(96)))));
     this.refreshButton.PressedGradient.Bottom = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(216)))), ((int)(((byte)(0)))));
     this.refreshButton.PressedGradient.Top    = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.refreshButton.Size      = new System.Drawing.Size(75, 36);
     this.refreshButton.TabIndex  = 10;
     this.refreshButton.TabStop   = false;
     this.refreshButton.Text      = "Refresh";
     this.refreshButton.UseStyles = true;
     this.refreshButton.UseVisualStyleBackColor = false;
     this.refreshButton.Click += new System.EventHandler(this.Refresh_Click);
     //
     // dataGrid1
     //
     this.dataGrid1.AlternatingBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.dataGrid1.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.dataGrid1.BackgroundColor    = System.Drawing.Color.Gray;
     this.dataGrid1.BorderStyle        = System.Windows.Forms.BorderStyle.FixedSingle;
     this.dataGrid1.CaptionBackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.dataGrid1.CaptionForeColor   = System.Drawing.Color.White;
     this.dataGrid1.CaptionVisible     = false;
     this.dataGrid1.DataMember         = "";
     this.dataGrid1.FlatMode           = true;
     this.dataGrid1.Font               = new System.Drawing.Font("Verdana", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dataGrid1.ForeColor          = System.Drawing.Color.Black;
     this.dataGrid1.GridLineColor      = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.dataGrid1.HeaderBackColor    = System.Drawing.Color.Gray;
     this.dataGrid1.HeaderForeColor    = System.Drawing.Color.White;
     this.dataGrid1.Location           = new System.Drawing.Point(12, 81);
     this.dataGrid1.Name               = "dataGrid1";
     this.dataGrid1.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.dataGrid1.Size               = new System.Drawing.Size(410, 232);
     this.dataGrid1.TabIndex           = 8;
     this.dataGrid1.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {
         this.dataGridTableStyle1
     });
     //
     // dataGridTableStyle1
     //
     this.dataGridTableStyle1.AlternatingBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))));
     this.dataGridTableStyle1.BackColor            = System.Drawing.Color.White;
     this.dataGridTableStyle1.DataGrid             = this.dataGrid1;
     this.dataGridTableStyle1.ForeColor            = System.Drawing.Color.Black;
     this.dataGridTableStyle1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {
         this.dataGridTextBoxColumn2,
         this.dataGridTextBoxColumn3,
         this.dataGridTextBoxColumn4,
         this.dataGridTextBoxColumn5,
         this.dataGridTextBoxColumn10,
         this.dataGridTextBoxColumn6,
         this.dataGridTextBoxColumn9,
         this.dataGridTextBoxColumn7,
         this.dataGridTextBoxColumn8,
         this.dataGridTextBoxColumn1,
         this.dataGridTextBoxColumn12,
         this.dataGridTextBoxColumn11
     });
     this.dataGridTableStyle1.HeaderBackColor = System.Drawing.Color.Gray;
     this.dataGridTableStyle1.HeaderForeColor = System.Drawing.Color.White;
     this.dataGridTableStyle1.MappingName     = "History";
     //
     // dataGridTextBoxColumn2
     //
     this.dataGridTextBoxColumn2.Format      = "";
     this.dataGridTextBoxColumn2.FormatInfo  = null;
     this.dataGridTextBoxColumn2.HeaderText  = "Species";
     this.dataGridTextBoxColumn2.MappingName = "SpeciesName";
     this.dataGridTextBoxColumn2.ReadOnly    = true;
     this.dataGridTextBoxColumn2.Width       = 125;
     //
     // dataGridTextBoxColumn3
     //
     this.dataGridTextBoxColumn3.Format      = "d";
     this.dataGridTextBoxColumn3.FormatInfo  = null;
     this.dataGridTextBoxColumn3.HeaderText  = "Population";
     this.dataGridTextBoxColumn3.MappingName = "Population";
     this.dataGridTextBoxColumn3.ReadOnly    = true;
     this.dataGridTextBoxColumn3.Width       = 75;
     //
     // dataGridTextBoxColumn4
     //
     this.dataGridTextBoxColumn4.Format      = "d";
     this.dataGridTextBoxColumn4.FormatInfo  = null;
     this.dataGridTextBoxColumn4.HeaderText  = "Births";
     this.dataGridTextBoxColumn4.MappingName = "BirthCount";
     this.dataGridTextBoxColumn4.ReadOnly    = true;
     this.dataGridTextBoxColumn4.Width       = 50;
     //
     // dataGridTextBoxColumn5
     //
     this.dataGridTextBoxColumn5.Format      = "d";
     this.dataGridTextBoxColumn5.FormatInfo  = null;
     this.dataGridTextBoxColumn5.HeaderText  = "Starved";
     this.dataGridTextBoxColumn5.MappingName = "StarvedCount";
     this.dataGridTextBoxColumn5.ReadOnly    = true;
     this.dataGridTextBoxColumn5.Width       = 75;
     //
     // dataGridTextBoxColumn10
     //
     this.dataGridTextBoxColumn10.Format      = "d";
     this.dataGridTextBoxColumn10.FormatInfo  = null;
     this.dataGridTextBoxColumn10.HeaderText  = "Old Age";
     this.dataGridTextBoxColumn10.MappingName = "OldAgeCount";
     this.dataGridTextBoxColumn10.ReadOnly    = true;
     this.dataGridTextBoxColumn10.Width       = 75;
     //
     // dataGridTextBoxColumn6
     //
     this.dataGridTextBoxColumn6.Format      = "d";
     this.dataGridTextBoxColumn6.FormatInfo  = null;
     this.dataGridTextBoxColumn6.HeaderText  = "Killed";
     this.dataGridTextBoxColumn6.MappingName = "KilledCount";
     this.dataGridTextBoxColumn6.ReadOnly    = true;
     this.dataGridTextBoxColumn6.Width       = 50;
     //
     // dataGridTextBoxColumn9
     //
     this.dataGridTextBoxColumn9.Format      = "d";
     this.dataGridTextBoxColumn9.FormatInfo  = null;
     this.dataGridTextBoxColumn9.HeaderText  = "Sick";
     this.dataGridTextBoxColumn9.MappingName = "SickCount";
     this.dataGridTextBoxColumn9.ReadOnly    = true;
     this.dataGridTextBoxColumn9.Width       = 50;
     //
     // dataGridTextBoxColumn7
     //
     this.dataGridTextBoxColumn7.Format      = "d";
     this.dataGridTextBoxColumn7.FormatInfo  = null;
     this.dataGridTextBoxColumn7.HeaderText  = "Errors";
     this.dataGridTextBoxColumn7.MappingName = "ErrorCount";
     this.dataGridTextBoxColumn7.ReadOnly    = true;
     this.dataGridTextBoxColumn7.Width       = 50;
     //
     // dataGridTextBoxColumn8
     //
     this.dataGridTextBoxColumn8.Format      = "d";
     this.dataGridTextBoxColumn8.FormatInfo  = null;
     this.dataGridTextBoxColumn8.HeaderText  = "Timeouts";
     this.dataGridTextBoxColumn8.MappingName = "TimeoutCount";
     this.dataGridTextBoxColumn8.ReadOnly    = true;
     this.dataGridTextBoxColumn8.Width       = 50;
     //
     // dataGridTextBoxColumn1
     //
     this.dataGridTextBoxColumn1.Format      = "d";
     this.dataGridTextBoxColumn1.FormatInfo  = null;
     this.dataGridTextBoxColumn1.HeaderText  = "Security Violations";
     this.dataGridTextBoxColumn1.MappingName = "SecurityViolationCount";
     this.dataGridTextBoxColumn1.ReadOnly    = true;
     this.dataGridTextBoxColumn1.Width       = 75;
     //
     // dataGridTextBoxColumn12
     //
     this.dataGridTextBoxColumn12.Format      = "d";
     this.dataGridTextBoxColumn12.FormatInfo  = null;
     this.dataGridTextBoxColumn12.HeaderText  = "Teleported Here";
     this.dataGridTextBoxColumn12.MappingName = "TeleportedToCount";
     this.dataGridTextBoxColumn12.ReadOnly    = true;
     this.dataGridTextBoxColumn12.Width       = 75;
     //
     // dataGridTextBoxColumn11
     //
     this.dataGridTextBoxColumn11.Format      = "d";
     this.dataGridTextBoxColumn11.FormatInfo  = null;
     this.dataGridTextBoxColumn11.HeaderText  = "Teleported Away";
     this.dataGridTextBoxColumn11.MappingName = "TeleportedFromCount";
     this.dataGridTextBoxColumn11.ReadOnly    = true;
     this.dataGridTextBoxColumn11.Width       = 75;
     //
     // resizeBar1
     //
     this.resizeBar1.BackColor = System.Drawing.Color.Black;
     this.resizeBar1.Dock      = System.Windows.Forms.DockStyle.Right;
     this.resizeBar1.Font      = new System.Drawing.Font("Verdana", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.resizeBar1.ForeColor = System.Drawing.Color.White;
     this.resizeBar1.Location  = new System.Drawing.Point(414, 0);
     this.resizeBar1.Name      = "resizeBar1";
     this.resizeBar1.Size      = new System.Drawing.Size(20, 40);
     this.resizeBar1.TabIndex  = 12;
     //
     // ReportStats
     //
     this.BackColor  = System.Drawing.Color.Black;
     this.ClientSize = new System.Drawing.Size(434, 368);
     this.Controls.Add(this.dataGrid1);
     this.Description = "Every statistic except population is only counted from the start of this terrariu" +
                        "m session.  Population carries over between sessions.";
     this.Name  = "ReportStats";
     this.Title = "Population Statistics";
     this.Controls.SetChildIndex(this.dataGrid1, 0);
     this.Controls.SetChildIndex(this._titleBar, 0);
     this.Controls.SetChildIndex(this._bottomPanel, 0);
     this._bottomPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 22
0
 internal GridColumnStylesCollection(System.Windows.Forms.DataGridTableStyle table, bool isDefault) : this(table)
 {
     this.isDefault = isDefault;
 }
Ejemplo n.º 23
0
 internal GridColumnStylesCollection(System.Windows.Forms.DataGridTableStyle table)
 {
     this.items = new ArrayList();
     this.owner = table;
 }
Ejemplo n.º 24
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(FAttributs));
     this.dgAttributs = new System.Windows.Forms.DataGrid();
     this.dataGridTableStyleAttributs         = new System.Windows.Forms.DataGridTableStyle();
     this.dataGridTextBoxColumnAttributsName  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumnAttributsValue = new System.Windows.Forms.DataGridTextBoxColumn();
     this.bClose = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.dgAttributs)).BeginInit();
     this.SuspendLayout();
     //
     // dgAttributs
     //
     this.dgAttributs.CaptionBackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(66)))), ((int)(((byte)(0)))));
     this.dgAttributs.CaptionText          = "Attributs";
     this.dgAttributs.ColumnHeadersVisible = false;
     this.dgAttributs.DataMember           = "";
     this.dgAttributs.HeaderForeColor      = System.Drawing.SystemColors.ControlText;
     this.dgAttributs.Location             = new System.Drawing.Point(8, 8);
     this.dgAttributs.Name = "dgAttributs";
     this.dgAttributs.ParentRowsVisible = false;
     this.dgAttributs.RowHeadersVisible = false;
     this.dgAttributs.Size     = new System.Drawing.Size(464, 216);
     this.dgAttributs.TabIndex = 0;
     this.dgAttributs.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {
         this.dataGridTableStyleAttributs
     });
     this.dgAttributs.CurrentCellChanged += new System.EventHandler(this.dgAttributs_CurrentCellChanged);
     //
     // dataGridTableStyleAttributs
     //
     this.dataGridTableStyleAttributs.ColumnHeadersVisible = false;
     this.dataGridTableStyleAttributs.DataGrid             = this.dgAttributs;
     this.dataGridTableStyleAttributs.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {
         this.dataGridTextBoxColumnAttributsName,
         this.dataGridTextBoxColumnAttributsValue
     });
     this.dataGridTableStyleAttributs.HeaderForeColor   = System.Drawing.SystemColors.ControlText;
     this.dataGridTableStyleAttributs.RowHeadersVisible = false;
     //
     // dataGridTextBoxColumnAttributsName
     //
     this.dataGridTextBoxColumnAttributsName.Format      = "";
     this.dataGridTextBoxColumnAttributsName.FormatInfo  = null;
     this.dataGridTextBoxColumnAttributsName.MappingName = "name";
     this.dataGridTextBoxColumnAttributsName.ReadOnly    = true;
     this.dataGridTextBoxColumnAttributsName.Width       = 75;
     //
     // dataGridTextBoxColumnAttributsValue
     //
     this.dataGridTextBoxColumnAttributsValue.Format      = "";
     this.dataGridTextBoxColumnAttributsValue.FormatInfo  = null;
     this.dataGridTextBoxColumnAttributsValue.MappingName = "value";
     this.dataGridTextBoxColumnAttributsValue.Width       = 75;
     //
     // bClose
     //
     this.bClose.Location = new System.Drawing.Point(392, 232);
     this.bClose.Name     = "bClose";
     this.bClose.Size     = new System.Drawing.Size(75, 23);
     this.bClose.TabIndex = 1;
     this.bClose.Text     = "Fermer";
     this.bClose.Click   += new System.EventHandler(this.bClose_Click);
     //
     // FAttributs
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(480, 285);
     this.Controls.Add(this.bClose);
     this.Controls.Add(this.dgAttributs);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name        = "FAttributs";
     this.Text        = "Attributs";
     this.Closing    += new System.ComponentModel.CancelEventHandler(this.FAttributs_Closing);
     this.Load       += new System.EventHandler(this.FAttributs_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgAttributs)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 25
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SKSystem));
     this.tabCtrl = new System.Windows.Forms.TabControl();
     this.tabSK = new System.Windows.Forms.TabPage();
     this.huiyuanbh = new System.Windows.Forms.Label();
     this.label26 = new System.Windows.Forms.Label();
     this.SKOpenDialgBox = new System.Windows.Forms.CheckBox();
     this.ClassName = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.SWSName = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.LawyerCredit = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.LawyerName = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.Photo = new System.Windows.Forms.PictureBox();
     this.SKlV = new System.Windows.Forms.ListView();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader5 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.tabSKByHand = new System.Windows.Forms.TabPage();
     this.lsbh = new System.Windows.Forms.TextBox();
     this.label24 = new System.Windows.Forms.Label();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.hzbh = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.CreditNoTB = new System.Windows.Forms.Label();
     this.KHTB = new System.Windows.Forms.Label();
     this.ReqMinutesLb = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.SKBHLb = new System.Windows.Forms.Label();
     this.SWSNameLb = new System.Windows.Forms.Label();
     this.LawyerNameLb = new System.Windows.Forms.Label();
     this.LessonNameLb = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.SKMinuteTB = new System.Windows.Forms.TextBox();
     this.label16 = new System.Windows.Forms.Label();
     this.SKDTPicker = new System.Windows.Forms.DateTimePicker();
     this.label17 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.label20 = new System.Windows.Forms.Label();
     this.label21 = new System.Windows.Forms.Label();
     this.label22 = new System.Windows.Forms.Label();
     this.ErrorLb = new System.Windows.Forms.Label();
     this.OKBtn = new System.Windows.Forms.Button();
     this.label23 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.SchBtn = new System.Windows.Forms.Button();
     this.XMTB = new System.Windows.Forms.TextBox();
     this.SWSNameTB = new System.Windows.Forms.TextBox();
     this.DGLawInfo = new System.Windows.Forms.DataGrid();
     this.LawInfoTableStyle = new System.Windows.Forms.DataGridTableStyle();
     this.dataGridTextBoxColumn7 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn8 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn12 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn9 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn10 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn11 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.tabKQTJ = new System.Windows.Forms.TabPage();
     this.btDelSKRecs = new System.Windows.Forms.Button();
     this.rBLawyer = new System.Windows.Forms.RadioButton();
     this.rBSWS = new System.Windows.Forms.RadioButton();
     this.cBSKLessons = new System.Windows.Forms.ComboBox();
     this.label11 = new System.Windows.Forms.Label();
     this.dGKQ = new System.Windows.Forms.DataGrid();
     this.dataGridTableStyleSWS = new System.Windows.Forms.DataGridTableStyle();
     this.dataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn2 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTableStyleLawyers = new System.Windows.Forms.DataGridTableStyle();
     this.dataGridTextBoxColumn3 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn4 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn5 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn6 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.tabAdmin = new System.Windows.Forms.TabPage();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.LawyerPhoto = new System.Windows.Forms.CheckBox();
     this.DownLessonInfo = new System.Windows.Forms.CheckBox();
     this.PSWord = new System.Windows.Forms.TextBox();
     this.UserID = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.WebName = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.GetLawyersDataBtn = new System.Windows.Forms.Button();
     this.DownCardNo = new System.Windows.Forms.CheckBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.UploadBtn = new System.Windows.Forms.Button();
     this.RemoteWrite = new System.Windows.Forms.CheckBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.OldLessonType = new System.Windows.Forms.CheckBox();
     this.KCBHComboBox = new System.Windows.Forms.ComboBox();
     this.label3 = new System.Windows.Forms.Label();
     this.HaveTMode = new System.Windows.Forms.CheckBox();
     this.label13 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.SKNum = new System.Windows.Forms.Label();
     this.AutoExportNum = new System.Windows.Forms.Label();
     this.PBLine = new System.Windows.Forms.ProgressBar();
     this.ShowState = new System.Windows.Forms.Label();
     this.tabCtrl.SuspendLayout();
     this.tabSK.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Photo)).BeginInit();
     this.tabSKByHand.SuspendLayout();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DGLawInfo)).BeginInit();
     this.tabKQTJ.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dGKQ)).BeginInit();
     this.tabAdmin.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // tabCtrl
     //
     this.tabCtrl.Controls.Add(this.tabSK);
     this.tabCtrl.Controls.Add(this.tabSKByHand);
     this.tabCtrl.Controls.Add(this.tabKQTJ);
     this.tabCtrl.Controls.Add(this.tabAdmin);
     this.tabCtrl.Location = new System.Drawing.Point(5, 13);
     this.tabCtrl.Name = "tabCtrl";
     this.tabCtrl.SelectedIndex = 0;
     this.tabCtrl.Size = new System.Drawing.Size(659, 440);
     this.tabCtrl.TabIndex = 1;
     this.tabCtrl.SelectedIndexChanged += new System.EventHandler(this.tabCtrl_SelectedIndexChanged);
     //
     // tabSK
     //
     this.tabSK.Controls.Add(this.huiyuanbh);
     this.tabSK.Controls.Add(this.label26);
     this.tabSK.Controls.Add(this.SKOpenDialgBox);
     this.tabSK.Controls.Add(this.ClassName);
     this.tabSK.Controls.Add(this.label9);
     this.tabSK.Controls.Add(this.SWSName);
     this.tabSK.Controls.Add(this.label2);
     this.tabSK.Controls.Add(this.LawyerCredit);
     this.tabSK.Controls.Add(this.label6);
     this.tabSK.Controls.Add(this.LawyerName);
     this.tabSK.Controls.Add(this.label4);
     this.tabSK.Controls.Add(this.Photo);
     this.tabSK.Controls.Add(this.SKlV);
     this.tabSK.Location = new System.Drawing.Point(4, 21);
     this.tabSK.Name = "tabSK";
     this.tabSK.Size = new System.Drawing.Size(651, 415);
     this.tabSK.TabIndex = 0;
     this.tabSK.Text = "自动刷卡";
     this.tabSK.UseVisualStyleBackColor = true;
     //
     // huiyuanbh
     //
     this.huiyuanbh.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.huiyuanbh.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.huiyuanbh.Location = new System.Drawing.Point(503, 304);
     this.huiyuanbh.Name = "huiyuanbh";
     this.huiyuanbh.Size = new System.Drawing.Size(141, 23);
     this.huiyuanbh.TabIndex = 41;
     this.huiyuanbh.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label26
     //
     this.label26.Font = new System.Drawing.Font("新宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label26.Location = new System.Drawing.Point(433, 304);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(77, 23);
     this.label26.TabIndex = 40;
     this.label26.Text = "会员编号:";
     this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // SKOpenDialgBox
     //
     this.SKOpenDialgBox.Location = new System.Drawing.Point(506, 173);
     this.SKOpenDialgBox.Name = "SKOpenDialgBox";
     this.SKOpenDialgBox.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.SKOpenDialgBox.Size = new System.Drawing.Size(110, 24);
     this.SKOpenDialgBox.TabIndex = 39;
     this.SKOpenDialgBox.Text = "刷卡记录需确认";
     this.SKOpenDialgBox.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.SKOpenDialgBox.CheckedChanged += new System.EventHandler(this.SKOpenDialgBox_CheckedChanged);
     //
     // ClassName
     //
     this.ClassName.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.ClassName.Font = new System.Drawing.Font("宋体", 9.5F, System.Drawing.FontStyle.Bold);
     this.ClassName.Location = new System.Drawing.Point(96, 8);
     this.ClassName.Name = "ClassName";
     this.ClassName.Size = new System.Drawing.Size(334, 36);
     this.ClassName.TabIndex = 37;
     this.ClassName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label9
     //
     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(16, 13);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(72, 24);
     this.label9.TabIndex = 36;
     this.label9.Text = "考勤课程:";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // SWSName
     //
     this.SWSName.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.SWSName.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.SWSName.Location = new System.Drawing.Point(436, 365);
     this.SWSName.Name = "SWSName";
     this.SWSName.Size = new System.Drawing.Size(208, 42);
     this.SWSName.TabIndex = 35;
     this.SWSName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label2
     //
     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(433, 341);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(91, 24);
     this.label2.TabIndex = 34;
     this.label2.Text = "所属事务所:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // LawyerCredit
     //
     this.LawyerCredit.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.LawyerCredit.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.LawyerCredit.Location = new System.Drawing.Point(503, 259);
     this.LawyerCredit.Name = "LawyerCredit";
     this.LawyerCredit.Size = new System.Drawing.Size(141, 23);
     this.LawyerCredit.TabIndex = 31;
     this.LawyerCredit.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label6
     //
     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(433, 259);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(77, 23);
     this.label6.TabIndex = 30;
     this.label6.Text = "执业证号:";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // LawyerName
     //
     this.LawyerName.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.LawyerName.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.LawyerName.Location = new System.Drawing.Point(503, 219);
     this.LawyerName.Name = "LawyerName";
     this.LawyerName.Size = new System.Drawing.Size(141, 24);
     this.LawyerName.TabIndex = 29;
     this.LawyerName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label4
     //
     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(433, 219);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(43, 24);
     this.label4.TabIndex = 28;
     this.label4.Text = "姓名:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // Photo
     //
     this.Photo.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.Photo.Location = new System.Drawing.Point(499, 12);
     this.Photo.Name = "Photo";
     this.Photo.Size = new System.Drawing.Size(117, 155);
     this.Photo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.Photo.TabIndex = 27;
     this.Photo.TabStop = false;
     //
     // SKlV
     //
     this.SKlV.Alignment = System.Windows.Forms.ListViewAlignment.Default;
     this.SKlV.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.SKlV.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2,
     this.columnHeader5,
     this.columnHeader3,
     this.columnHeader4});
     this.SKlV.Font = new System.Drawing.Font("宋体", 10.5F);
     this.SKlV.ForeColor = System.Drawing.Color.Black;
     this.SKlV.FullRowSelect = true;
     this.SKlV.GridLines = true;
     this.SKlV.Location = new System.Drawing.Point(3, 47);
     this.SKlV.MultiSelect = false;
     this.SKlV.Name = "SKlV";
     this.SKlV.Size = new System.Drawing.Size(422, 360);
     this.SKlV.TabIndex = 24;
     this.SKlV.UseCompatibleStateImageBehavior = false;
     this.SKlV.View = System.Windows.Forms.View.Details;
     this.SKlV.SelectedIndexChanged += new System.EventHandler(this.SKlV_SelectedIndexChanged);
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "卡号";
     this.columnHeader1.Width = 75;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "姓名";
     this.columnHeader2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader2.Width = 86;
     //
     // columnHeader5
     //
     this.columnHeader5.Text = "律师编号";
     this.columnHeader5.Width = 90;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "日期";
     this.columnHeader3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader3.Width = 89;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "时间";
     this.columnHeader4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader4.Width = 77;
     //
     // tabSKByHand
     //
     this.tabSKByHand.Controls.Add(this.lsbh);
     this.tabSKByHand.Controls.Add(this.label24);
     this.tabSKByHand.Controls.Add(this.groupBox3);
     this.tabSKByHand.Controls.Add(this.ErrorLb);
     this.tabSKByHand.Controls.Add(this.OKBtn);
     this.tabSKByHand.Controls.Add(this.label23);
     this.tabSKByHand.Controls.Add(this.label5);
     this.tabSKByHand.Controls.Add(this.label8);
     this.tabSKByHand.Controls.Add(this.SchBtn);
     this.tabSKByHand.Controls.Add(this.XMTB);
     this.tabSKByHand.Controls.Add(this.SWSNameTB);
     this.tabSKByHand.Controls.Add(this.DGLawInfo);
     this.tabSKByHand.Location = new System.Drawing.Point(4, 21);
     this.tabSKByHand.Name = "tabSKByHand";
     this.tabSKByHand.Padding = new System.Windows.Forms.Padding(3);
     this.tabSKByHand.Size = new System.Drawing.Size(651, 415);
     this.tabSKByHand.TabIndex = 3;
     this.tabSKByHand.Text = "手动刷卡";
     this.tabSKByHand.UseVisualStyleBackColor = true;
     //
     // lsbh
     //
     this.lsbh.Location = new System.Drawing.Point(210, 10);
     this.lsbh.Name = "lsbh";
     this.lsbh.Size = new System.Drawing.Size(87, 21);
     this.lsbh.TabIndex = 24;
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label24.Location = new System.Drawing.Point(145, 14);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(70, 12);
     this.label24.TabIndex = 23;
     this.label24.Text = "律师编号:";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.hzbh);
     this.groupBox3.Controls.Add(this.label25);
     this.groupBox3.Controls.Add(this.CreditNoTB);
     this.groupBox3.Controls.Add(this.KHTB);
     this.groupBox3.Controls.Add(this.ReqMinutesLb);
     this.groupBox3.Controls.Add(this.label14);
     this.groupBox3.Controls.Add(this.SKBHLb);
     this.groupBox3.Controls.Add(this.SWSNameLb);
     this.groupBox3.Controls.Add(this.LawyerNameLb);
     this.groupBox3.Controls.Add(this.LessonNameLb);
     this.groupBox3.Controls.Add(this.label15);
     this.groupBox3.Controls.Add(this.SKMinuteTB);
     this.groupBox3.Controls.Add(this.label16);
     this.groupBox3.Controls.Add(this.SKDTPicker);
     this.groupBox3.Controls.Add(this.label17);
     this.groupBox3.Controls.Add(this.label18);
     this.groupBox3.Controls.Add(this.label19);
     this.groupBox3.Controls.Add(this.label20);
     this.groupBox3.Controls.Add(this.label21);
     this.groupBox3.Controls.Add(this.label22);
     this.groupBox3.Location = new System.Drawing.Point(7, 30);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(303, 349);
     this.groupBox3.TabIndex = 21;
     this.groupBox3.TabStop = false;
     //
     // hzbh
     //
     this.hzbh.AutoSize = true;
     this.hzbh.Location = new System.Drawing.Point(224, 292);
     this.hzbh.Name = "hzbh";
     this.hzbh.Size = new System.Drawing.Size(47, 12);
     this.hzbh.TabIndex = 24;
     this.hzbh.Text = "label27";
     this.hzbh.Visible = false;
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Font = new System.Drawing.Font("宋体", 10.5F);
     this.label25.Location = new System.Drawing.Point(36, 165);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(77, 14);
     this.label25.TabIndex = 23;
     this.label25.Text = "律师编号:";
     //
     // CreditNoTB
     //
     this.CreditNoTB.AutoSize = true;
     this.CreditNoTB.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.CreditNoTB.Location = new System.Drawing.Point(113, 227);
     this.CreditNoTB.Name = "CreditNoTB";
     this.CreditNoTB.Size = new System.Drawing.Size(15, 14);
     this.CreditNoTB.TabIndex = 22;
     this.CreditNoTB.Text = "a";
     //
     // KHTB
     //
     this.KHTB.AutoSize = true;
     this.KHTB.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.KHTB.Location = new System.Drawing.Point(113, 196);
     this.KHTB.Name = "KHTB";
     this.KHTB.Size = new System.Drawing.Size(15, 14);
     this.KHTB.TabIndex = 21;
     this.KHTB.Text = "a";
     //
     // ReqMinutesLb
     //
     this.ReqMinutesLb.AutoSize = true;
     this.ReqMinutesLb.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.ReqMinutesLb.Location = new System.Drawing.Point(109, 292);
     this.ReqMinutesLb.Name = "ReqMinutesLb";
     this.ReqMinutesLb.Size = new System.Drawing.Size(22, 14);
     this.ReqMinutesLb.TabIndex = 20;
     this.ReqMinutesLb.Text = "a";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Font = new System.Drawing.Font("宋体", 10.5F);
     this.label14.Location = new System.Drawing.Point(36, 292);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(77, 14);
     this.label14.TabIndex = 19;
     this.label14.Text = "刷卡时长:";
     //
     // SKBHLb
     //
     this.SKBHLb.AutoSize = true;
     this.SKBHLb.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.SKBHLb.Location = new System.Drawing.Point(113, 165);
     this.SKBHLb.Name = "SKBHLb";
     this.SKBHLb.Size = new System.Drawing.Size(15, 14);
     this.SKBHLb.TabIndex = 18;
     this.SKBHLb.Text = "a";
     //
     // SWSNameLb
     //
     this.SWSNameLb.Font = new System.Drawing.Font("宋体", 9.5F, System.Drawing.FontStyle.Bold);
     this.SWSNameLb.Location = new System.Drawing.Point(113, 79);
     this.SWSNameLb.Name = "SWSNameLb";
     this.SWSNameLb.Size = new System.Drawing.Size(188, 49);
     this.SWSNameLb.TabIndex = 17;
     this.SWSNameLb.Text = "a";
     this.SWSNameLb.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // LawyerNameLb
     //
     this.LawyerNameLb.AutoSize = true;
     this.LawyerNameLb.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.LawyerNameLb.Location = new System.Drawing.Point(113, 133);
     this.LawyerNameLb.Name = "LawyerNameLb";
     this.LawyerNameLb.Size = new System.Drawing.Size(22, 14);
     this.LawyerNameLb.TabIndex = 16;
     this.LawyerNameLb.Text = "a";
     //
     // LessonNameLb
     //
     this.LessonNameLb.AutoEllipsis = true;
     this.LessonNameLb.Font = new System.Drawing.Font("宋体", 9.5F, System.Drawing.FontStyle.Bold);
     this.LessonNameLb.Location = new System.Drawing.Point(113, 17);
     this.LessonNameLb.Name = "LessonNameLb";
     this.LessonNameLb.Size = new System.Drawing.Size(184, 54);
     this.LessonNameLb.TabIndex = 15;
     this.LessonNameLb.Text = "a";
     this.LessonNameLb.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Font = new System.Drawing.Font("宋体", 10.5F);
     this.label15.Location = new System.Drawing.Point(167, 325);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(63, 14);
     this.label15.TabIndex = 14;
     this.label15.Text = "(分钟)";
     //
     // SKMinuteTB
     //
     this.SKMinuteTB.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.SKMinuteTB.Font = new System.Drawing.Font("宋体", 10.5F);
     this.SKMinuteTB.Location = new System.Drawing.Point(116, 320);
     this.SKMinuteTB.Name = "SKMinuteTB";
     this.SKMinuteTB.Size = new System.Drawing.Size(49, 23);
     this.SKMinuteTB.TabIndex = 13;
     this.SKMinuteTB.Text = "0";
     this.SKMinuteTB.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Font = new System.Drawing.Font("宋体", 10.5F);
     this.label16.Location = new System.Drawing.Point(36, 325);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(77, 14);
     this.label16.TabIndex = 12;
     this.label16.Text = "填写时长:";
     //
     // SKDTPicker
     //
     this.SKDTPicker.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.SKDTPicker.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.SKDTPicker.Location = new System.Drawing.Point(112, 259);
     this.SKDTPicker.Name = "SKDTPicker";
     this.SKDTPicker.Size = new System.Drawing.Size(160, 21);
     this.SKDTPicker.TabIndex = 11;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Font = new System.Drawing.Font("宋体", 10.5F);
     this.label17.Location = new System.Drawing.Point(8, 259);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(105, 14);
     this.label17.TabIndex = 9;
     this.label17.Text = "课程开始时间:";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Font = new System.Drawing.Font("宋体", 10.5F);
     this.label18.Location = new System.Drawing.Point(36, 37);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(77, 14);
     this.label18.TabIndex = 3;
     this.label18.Text = "刷卡课程:";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Font = new System.Drawing.Font("宋体", 10.5F);
     this.label19.Location = new System.Drawing.Point(9, 227);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(105, 14);
     this.label19.TabIndex = 7;
     this.label19.Text = "输入执业证号:";
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Font = new System.Drawing.Font("宋体", 10.5F);
     this.label20.Location = new System.Drawing.Point(64, 196);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(49, 14);
     this.label20.TabIndex = 6;
     this.label20.Text = "卡号:";
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Font = new System.Drawing.Font("宋体", 10.5F);
     this.label21.Location = new System.Drawing.Point(36, 133);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(77, 14);
     this.label21.TabIndex = 4;
     this.label21.Text = "律师姓名:";
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Font = new System.Drawing.Font("宋体", 10.5F);
     this.label22.Location = new System.Drawing.Point(23, 96);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(91, 14);
     this.label22.TabIndex = 5;
     this.label22.Text = "所属事务所:";
     //
     // ErrorLb
     //
     this.ErrorLb.AutoSize = true;
     this.ErrorLb.BackColor = System.Drawing.SystemColors.ActiveBorder;
     this.ErrorLb.Font = new System.Drawing.Font("宋体", 9F);
     this.ErrorLb.ForeColor = System.Drawing.Color.Red;
     this.ErrorLb.Location = new System.Drawing.Point(16, 385);
     this.ErrorLb.Name = "ErrorLb";
     this.ErrorLb.Size = new System.Drawing.Size(17, 12);
     this.ErrorLb.TabIndex = 22;
     this.ErrorLb.Text = "a";
     //
     // OKBtn
     //
     this.OKBtn.Location = new System.Drawing.Point(242, 385);
     this.OKBtn.Name = "OKBtn";
     this.OKBtn.Size = new System.Drawing.Size(68, 23);
     this.OKBtn.TabIndex = 19;
     this.OKBtn.Text = "确定";
     this.OKBtn.UseVisualStyleBackColor = true;
     this.OKBtn.Click += new System.EventHandler(this.OKBtn_Click);
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(121, 58);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(0, 12);
     this.label23.TabIndex = 20;
     this.label23.Tag = "刷卡课程";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label5.Location = new System.Drawing.Point(457, 14);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(44, 12);
     this.label5.TabIndex = 13;
     this.label5.Text = "姓名:";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label8.Location = new System.Drawing.Point(303, 14);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(57, 12);
     this.label8.TabIndex = 12;
     this.label8.Text = "事务所:";
     //
     // SchBtn
     //
     this.SchBtn.Location = new System.Drawing.Point(573, 8);
     this.SchBtn.Name = "SchBtn";
     this.SchBtn.Size = new System.Drawing.Size(52, 23);
     this.SchBtn.TabIndex = 11;
     this.SchBtn.Text = "查询";
     this.SchBtn.UseVisualStyleBackColor = true;
     this.SchBtn.Click += new System.EventHandler(this.SchBtn_Click);
     //
     // XMTB
     //
     this.XMTB.Location = new System.Drawing.Point(505, 9);
     this.XMTB.Name = "XMTB";
     this.XMTB.Size = new System.Drawing.Size(64, 21);
     this.XMTB.TabIndex = 10;
     //
     // SWSNameTB
     //
     this.SWSNameTB.Location = new System.Drawing.Point(364, 9);
     this.SWSNameTB.Name = "SWSNameTB";
     this.SWSNameTB.Size = new System.Drawing.Size(87, 21);
     this.SWSNameTB.TabIndex = 9;
     //
     // DGLawInfo
     //
     this.DGLawInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.DGLawInfo.CaptionBackColor = System.Drawing.Color.WhiteSmoke;
     this.DGLawInfo.CaptionForeColor = System.Drawing.SystemColors.ControlText;
     this.DGLawInfo.CaptionVisible = false;
     this.DGLawInfo.DataMember = "";
     this.DGLawInfo.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.DGLawInfo.Location = new System.Drawing.Point(316, 37);
     this.DGLawInfo.Name = "DGLawInfo";
     this.DGLawInfo.PreferredColumnWidth = 150;
     this.DGLawInfo.ReadOnly = true;
     this.DGLawInfo.RowHeadersVisible = false;
     this.DGLawInfo.Size = new System.Drawing.Size(330, 371);
     this.DGLawInfo.TabIndex = 8;
     this.DGLawInfo.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {
     this.LawInfoTableStyle});
     this.DGLawInfo.CurrentCellChanged += new System.EventHandler(this.DGLawInfo_CurrentCellChanged);
     //
     // LawInfoTableStyle
     //
     this.LawInfoTableStyle.DataGrid = this.DGLawInfo;
     this.LawInfoTableStyle.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {
     this.dataGridTextBoxColumn7,
     this.dataGridTextBoxColumn8,
     this.dataGridTextBoxColumn12,
     this.dataGridTextBoxColumn9,
     this.dataGridTextBoxColumn10,
     this.dataGridTextBoxColumn11});
     this.LawInfoTableStyle.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.LawInfoTableStyle.MappingName = "LawyersInfo";
     this.LawInfoTableStyle.ReadOnly = true;
     //
     // dataGridTextBoxColumn7
     //
     this.dataGridTextBoxColumn7.Format = "";
     this.dataGridTextBoxColumn7.FormatInfo = null;
     this.dataGridTextBoxColumn7.HeaderText = "律师事务所";
     this.dataGridTextBoxColumn7.MappingName = "SWSName";
     this.dataGridTextBoxColumn7.ReadOnly = true;
     this.dataGridTextBoxColumn7.Width = 120;
     //
     // dataGridTextBoxColumn8
     //
     this.dataGridTextBoxColumn8.Format = "";
     this.dataGridTextBoxColumn8.FormatInfo = null;
     this.dataGridTextBoxColumn8.HeaderText = "姓名";
     this.dataGridTextBoxColumn8.MappingName = "XM";
     this.dataGridTextBoxColumn8.ReadOnly = true;
     this.dataGridTextBoxColumn8.Width = 75;
     //
     // dataGridTextBoxColumn12
     //
     this.dataGridTextBoxColumn12.Format = "";
     this.dataGridTextBoxColumn12.FormatInfo = null;
     this.dataGridTextBoxColumn12.HeaderText = "会员编号";
     this.dataGridTextBoxColumn12.MappingName = "mobile";
     this.dataGridTextBoxColumn12.ReadOnly = true;
     this.dataGridTextBoxColumn12.Width = 75;
     //
     // dataGridTextBoxColumn9
     //
     this.dataGridTextBoxColumn9.Format = "";
     this.dataGridTextBoxColumn9.FormatInfo = null;
     this.dataGridTextBoxColumn9.MappingName = "KH";
     this.dataGridTextBoxColumn9.ReadOnly = true;
     this.dataGridTextBoxColumn9.Width = 0;
     //
     // dataGridTextBoxColumn10
     //
     this.dataGridTextBoxColumn10.Format = "";
     this.dataGridTextBoxColumn10.FormatInfo = null;
     this.dataGridTextBoxColumn10.MappingName = "LawCreditNO";
     this.dataGridTextBoxColumn10.ReadOnly = true;
     this.dataGridTextBoxColumn10.Width = 0;
     //
     // dataGridTextBoxColumn11
     //
     this.dataGridTextBoxColumn11.Format = "";
     this.dataGridTextBoxColumn11.FormatInfo = null;
     this.dataGridTextBoxColumn11.MappingName = "bh";
     this.dataGridTextBoxColumn11.Width = 0;
     //
     // tabKQTJ
     //
     this.tabKQTJ.BackColor = System.Drawing.Color.LightGray;
     this.tabKQTJ.Controls.Add(this.btDelSKRecs);
     this.tabKQTJ.Controls.Add(this.rBLawyer);
     this.tabKQTJ.Controls.Add(this.rBSWS);
     this.tabKQTJ.Controls.Add(this.cBSKLessons);
     this.tabKQTJ.Controls.Add(this.label11);
     this.tabKQTJ.Controls.Add(this.dGKQ);
     this.tabKQTJ.Location = new System.Drawing.Point(4, 21);
     this.tabKQTJ.Name = "tabKQTJ";
     this.tabKQTJ.Size = new System.Drawing.Size(651, 415);
     this.tabKQTJ.TabIndex = 2;
     this.tabKQTJ.Text = "考勤统计";
     this.tabKQTJ.UseVisualStyleBackColor = true;
     //
     // btDelSKRecs
     //
     this.btDelSKRecs.Location = new System.Drawing.Point(480, 384);
     this.btDelSKRecs.Name = "btDelSKRecs";
     this.btDelSKRecs.Size = new System.Drawing.Size(144, 24);
     this.btDelSKRecs.TabIndex = 6;
     this.btDelSKRecs.Text = "删除该课程的本地考勤";
     this.btDelSKRecs.Click += new System.EventHandler(this.btDelSKRecs_Click);
     //
     // rBLawyer
     //
     this.rBLawyer.Location = new System.Drawing.Point(520, 16);
     this.rBLawyer.Name = "rBLawyer";
     this.rBLawyer.Size = new System.Drawing.Size(72, 24);
     this.rBLawyer.TabIndex = 5;
     this.rBLawyer.Text = "律师考勤";
     this.rBLawyer.CheckedChanged += new System.EventHandler(this.rBLawyer_CheckedChanged);
     //
     // rBSWS
     //
     this.rBSWS.Checked = true;
     this.rBSWS.Location = new System.Drawing.Point(424, 16);
     this.rBSWS.Name = "rBSWS";
     this.rBSWS.Size = new System.Drawing.Size(88, 24);
     this.rBSWS.TabIndex = 4;
     this.rBSWS.TabStop = true;
     this.rBSWS.Text = "事务所考勤";
     //
     // cBSKLessons
     //
     this.cBSKLessons.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cBSKLessons.Location = new System.Drawing.Point(80, 16);
     this.cBSKLessons.Name = "cBSKLessons";
     this.cBSKLessons.Size = new System.Drawing.Size(328, 20);
     this.cBSKLessons.TabIndex = 3;
     this.cBSKLessons.SelectedIndexChanged += new System.EventHandler(this.cBSKLessons_SelectionChangeCommitted);
     //
     // label11
     //
     this.label11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label11.Location = new System.Drawing.Point(8, 15);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(72, 23);
     this.label11.TabIndex = 2;
     this.label11.Text = "考勤课程:";
     this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // dGKQ
     //
     this.dGKQ.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.dGKQ.CaptionBackColor = System.Drawing.Color.WhiteSmoke;
     this.dGKQ.CaptionForeColor = System.Drawing.SystemColors.ControlText;
     this.dGKQ.DataMember = "";
     this.dGKQ.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dGKQ.Location = new System.Drawing.Point(8, 48);
     this.dGKQ.Name = "dGKQ";
     this.dGKQ.PreferredColumnWidth = 150;
     this.dGKQ.ReadOnly = true;
     this.dGKQ.RowHeadersVisible = false;
     this.dGKQ.Size = new System.Drawing.Size(616, 328);
     this.dGKQ.TabIndex = 1;
     this.dGKQ.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {
     this.dataGridTableStyleSWS,
     this.dataGridTableStyleLawyers});
     //
     // dataGridTableStyleSWS
     //
     this.dataGridTableStyleSWS.DataGrid = this.dGKQ;
     this.dataGridTableStyleSWS.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {
     this.dataGridTextBoxColumn1,
     this.dataGridTextBoxColumn2});
     this.dataGridTableStyleSWS.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dataGridTableStyleSWS.MappingName = "SKSWS";
     this.dataGridTableStyleSWS.ReadOnly = true;
     //
     // dataGridTextBoxColumn1
     //
     this.dataGridTextBoxColumn1.Format = "";
     this.dataGridTextBoxColumn1.FormatInfo = null;
     this.dataGridTextBoxColumn1.HeaderText = "事务所名称";
     this.dataGridTextBoxColumn1.MappingName = "SWSName";
     this.dataGridTextBoxColumn1.ReadOnly = true;
     this.dataGridTextBoxColumn1.Width = 460;
     //
     // dataGridTextBoxColumn2
     //
     this.dataGridTextBoxColumn2.Format = "";
     this.dataGridTextBoxColumn2.FormatInfo = null;
     this.dataGridTextBoxColumn2.HeaderText = "课程参加人数";
     this.dataGridTextBoxColumn2.MappingName = "LawyerIDs";
     this.dataGridTextBoxColumn2.ReadOnly = true;
     this.dataGridTextBoxColumn2.Width = 120;
     //
     // dataGridTableStyleLawyers
     //
     this.dataGridTableStyleLawyers.DataGrid = this.dGKQ;
     this.dataGridTableStyleLawyers.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {
     this.dataGridTextBoxColumn3,
     this.dataGridTextBoxColumn4,
     this.dataGridTextBoxColumn5,
     this.dataGridTextBoxColumn6});
     this.dataGridTableStyleLawyers.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dataGridTableStyleLawyers.MappingName = "SKLawyers";
     this.dataGridTableStyleLawyers.ReadOnly = true;
     //
     // dataGridTextBoxColumn3
     //
     this.dataGridTextBoxColumn3.Format = "";
     this.dataGridTextBoxColumn3.FormatInfo = null;
     this.dataGridTextBoxColumn3.HeaderText = "所属事务所";
     this.dataGridTextBoxColumn3.MappingName = "SWSName";
     this.dataGridTextBoxColumn3.ReadOnly = true;
     this.dataGridTextBoxColumn3.Width = 260;
     //
     // dataGridTextBoxColumn4
     //
     this.dataGridTextBoxColumn4.Format = "";
     this.dataGridTextBoxColumn4.FormatInfo = null;
     this.dataGridTextBoxColumn4.HeaderText = "姓名";
     this.dataGridTextBoxColumn4.MappingName = "XM";
     this.dataGridTextBoxColumn4.ReadOnly = true;
     this.dataGridTextBoxColumn4.Width = 75;
     //
     // dataGridTextBoxColumn5
     //
     this.dataGridTextBoxColumn5.Format = "";
     this.dataGridTextBoxColumn5.FormatInfo = null;
     this.dataGridTextBoxColumn5.HeaderText = "进场时间";
     this.dataGridTextBoxColumn5.MappingName = "minSJ";
     this.dataGridTextBoxColumn5.ReadOnly = true;
     this.dataGridTextBoxColumn5.Width = 115;
     //
     // dataGridTextBoxColumn6
     //
     this.dataGridTextBoxColumn6.Format = "";
     this.dataGridTextBoxColumn6.FormatInfo = null;
     this.dataGridTextBoxColumn6.HeaderText = "离场时间";
     this.dataGridTextBoxColumn6.MappingName = "maxSJ";
     this.dataGridTextBoxColumn6.ReadOnly = true;
     this.dataGridTextBoxColumn6.Width = 115;
     //
     // tabAdmin
     //
     this.tabAdmin.Controls.Add(this.groupBox2);
     this.tabAdmin.Controls.Add(this.groupBox4);
     this.tabAdmin.Controls.Add(this.groupBox1);
     this.tabAdmin.Location = new System.Drawing.Point(4, 21);
     this.tabAdmin.Name = "tabAdmin";
     this.tabAdmin.Size = new System.Drawing.Size(651, 415);
     this.tabAdmin.TabIndex = 1;
     this.tabAdmin.Text = "系统管理";
     this.tabAdmin.UseVisualStyleBackColor = true;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.LawyerPhoto);
     this.groupBox2.Controls.Add(this.DownLessonInfo);
     this.groupBox2.Controls.Add(this.PSWord);
     this.groupBox2.Controls.Add(this.UserID);
     this.groupBox2.Controls.Add(this.label10);
     this.groupBox2.Controls.Add(this.label7);
     this.groupBox2.Controls.Add(this.WebName);
     this.groupBox2.Controls.Add(this.label1);
     this.groupBox2.Controls.Add(this.GetLawyersDataBtn);
     this.groupBox2.Controls.Add(this.DownCardNo);
     this.groupBox2.Location = new System.Drawing.Point(40, 37);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(552, 104);
     this.groupBox2.TabIndex = 11;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "本地备份";
     //
     // LawyerPhoto
     //
     this.LawyerPhoto.Location = new System.Drawing.Point(122, 64);
     this.LawyerPhoto.Name = "LawyerPhoto";
     this.LawyerPhoto.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.LawyerPhoto.Size = new System.Drawing.Size(73, 24);
     this.LawyerPhoto.TabIndex = 19;
     this.LawyerPhoto.Text = "律师照片";
     this.LawyerPhoto.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.LawyerPhoto.CheckedChanged += new System.EventHandler(this.LawyerPhoto_CheckedChanged);
     //
     // DownLessonInfo
     //
     this.DownLessonInfo.Location = new System.Drawing.Point(206, 64);
     this.DownLessonInfo.Name = "DownLessonInfo";
     this.DownLessonInfo.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.DownLessonInfo.Size = new System.Drawing.Size(104, 24);
     this.DownLessonInfo.TabIndex = 17;
     this.DownLessonInfo.Text = "培训课程资料";
     this.DownLessonInfo.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.DownLessonInfo.CheckedChanged += new System.EventHandler(this.DownLessonInfo_CheckedChanged);
     //
     // PSWord
     //
     this.PSWord.Location = new System.Drawing.Point(444, 22);
     this.PSWord.Name = "PSWord";
     this.PSWord.PasswordChar = '*';
     this.PSWord.Size = new System.Drawing.Size(64, 21);
     this.PSWord.TabIndex = 16;
     this.PSWord.Visible = false;
     this.PSWord.TextChanged += new System.EventHandler(this.PSWord_TextChanged);
     //
     // UserID
     //
     this.UserID.Location = new System.Drawing.Point(324, 22);
     this.UserID.Name = "UserID";
     this.UserID.Size = new System.Drawing.Size(96, 21);
     this.UserID.TabIndex = 15;
     this.UserID.Visible = false;
     this.UserID.TextChanged += new System.EventHandler(this.UserID_TextChanged);
     //
     // label10
     //
     this.label10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label10.Location = new System.Drawing.Point(428, 24);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(8, 16);
     this.label10.TabIndex = 14;
     this.label10.Text = "/";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.label10.Visible = false;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(236, 26);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(88, 16);
     this.label7.TabIndex = 13;
     this.label7.Text = "用户名/密码:";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.label7.Visible = false;
     //
     // WebName
     //
     this.WebName.Location = new System.Drawing.Point(78, 22);
     this.WebName.Name = "WebName";
     this.WebName.Size = new System.Drawing.Size(152, 21);
     this.WebName.TabIndex = 4;
     this.WebName.Visible = false;
     this.WebName.TextChanged += new System.EventHandler(this.WebName_TextChanged);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(6, 26);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(71, 16);
     this.label1.TabIndex = 3;
     this.label1.Text = "站点名称:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.label1.Visible = false;
     //
     // GetLawyersDataBtn
     //
     this.GetLawyersDataBtn.Location = new System.Drawing.Point(448, 64);
     this.GetLawyersDataBtn.Name = "GetLawyersDataBtn";
     this.GetLawyersDataBtn.Size = new System.Drawing.Size(80, 23);
     this.GetLawyersDataBtn.TabIndex = 9;
     this.GetLawyersDataBtn.Text = "开始备份";
     this.GetLawyersDataBtn.Click += new System.EventHandler(this.GetLawyersDataBtn_Click);
     //
     // DownCardNo
     //
     this.DownCardNo.Location = new System.Drawing.Point(16, 64);
     this.DownCardNo.Name = "DownCardNo";
     this.DownCardNo.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.DownCardNo.Size = new System.Drawing.Size(104, 24);
     this.DownCardNo.TabIndex = 12;
     this.DownCardNo.Text = "律师卡号资料";
     this.DownCardNo.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.DownCardNo.CheckedChanged += new System.EventHandler(this.DownCardNo_CheckedChanged);
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.UploadBtn);
     this.groupBox4.Controls.Add(this.RemoteWrite);
     this.groupBox4.Location = new System.Drawing.Point(40, 169);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(552, 70);
     this.groupBox4.TabIndex = 12;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "刷卡数据上传";
     //
     // UploadBtn
     //
     this.UploadBtn.Location = new System.Drawing.Point(437, 28);
     this.UploadBtn.Name = "UploadBtn";
     this.UploadBtn.Size = new System.Drawing.Size(91, 23);
     this.UploadBtn.TabIndex = 10;
     this.UploadBtn.Text = "上传考勤数据";
     this.UploadBtn.Click += new System.EventHandler(this.UploadBtn_Click);
     //
     // RemoteWrite
     //
     this.RemoteWrite.Location = new System.Drawing.Point(16, 27);
     this.RemoteWrite.Name = "RemoteWrite";
     this.RemoteWrite.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.RemoteWrite.Size = new System.Drawing.Size(128, 24);
     this.RemoteWrite.TabIndex = 0;
     this.RemoteWrite.Text = "同步上传刷卡数据";
     this.RemoteWrite.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.RemoteWrite.Visible = false;
     this.RemoteWrite.CheckedChanged += new System.EventHandler(this.RemoteWrite_CheckedChanged);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.OldLessonType);
     this.groupBox1.Controls.Add(this.KCBHComboBox);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.HaveTMode);
     this.groupBox1.Location = new System.Drawing.Point(40, 264);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(552, 104);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "系统设置";
     //
     // OldLessonType
     //
     this.OldLessonType.Location = new System.Drawing.Point(441, 30);
     this.OldLessonType.Name = "OldLessonType";
     this.OldLessonType.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.OldLessonType.Size = new System.Drawing.Size(103, 24);
     this.OldLessonType.TabIndex = 15;
     this.OldLessonType.Text = "显示往期课程";
     this.OldLessonType.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.OldLessonType.CheckedChanged += new System.EventHandler(this.OldLessonType_CheckedChanged);
     //
     // KCBHComboBox
     //
     this.KCBHComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.KCBHComboBox.Location = new System.Drawing.Point(82, 31);
     this.KCBHComboBox.Name = "KCBHComboBox";
     this.KCBHComboBox.Size = new System.Drawing.Size(351, 20);
     this.KCBHComboBox.TabIndex = 12;
     this.KCBHComboBox.SelectedValueChanged += new System.EventHandler(this.KCBHComboBox_SelectedValueChanged);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(16, 35);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(65, 16);
     this.label3.TabIndex = 10;
     this.label3.Text = "考勤课程:";
     //
     // HaveTMode
     //
     this.HaveTMode.Location = new System.Drawing.Point(16, 64);
     this.HaveTMode.Name = "HaveTMode";
     this.HaveTMode.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.HaveTMode.Size = new System.Drawing.Size(84, 24);
     this.HaveTMode.TabIndex = 11;
     this.HaveTMode.Text = "模拟刷卡";
     this.HaveTMode.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.HaveTMode.CheckedChanged += new System.EventHandler(this.HaveTMode_CheckedChanged);
     //
     // label13
     //
     this.label13.BackColor = System.Drawing.Color.Transparent;
     this.label13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label13.Location = new System.Drawing.Point(124, 465);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(43, 16);
     this.label13.TabIndex = 36;
     this.label13.Text = "已上传";
     this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label12
     //
     this.label12.BackColor = System.Drawing.Color.Transparent;
     this.label12.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label12.Location = new System.Drawing.Point(11, 465);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(48, 16);
     this.label12.TabIndex = 35;
     this.label12.Text = "已刷卡";
     this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // SKNum
     //
     this.SKNum.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.SKNum.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.SKNum.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.SKNum.ForeColor = System.Drawing.Color.Red;
     this.SKNum.Location = new System.Drawing.Point(60, 465);
     this.SKNum.Name = "SKNum";
     this.SKNum.Size = new System.Drawing.Size(56, 16);
     this.SKNum.TabIndex = 34;
     this.SKNum.Text = "0";
     this.SKNum.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // AutoExportNum
     //
     this.AutoExportNum.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.AutoExportNum.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.AutoExportNum.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.AutoExportNum.ForeColor = System.Drawing.Color.Red;
     this.AutoExportNum.Location = new System.Drawing.Point(167, 465);
     this.AutoExportNum.Name = "AutoExportNum";
     this.AutoExportNum.Size = new System.Drawing.Size(56, 16);
     this.AutoExportNum.TabIndex = 33;
     this.AutoExportNum.Text = "0";
     this.AutoExportNum.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // PBLine
     //
     this.PBLine.ForeColor = System.Drawing.Color.Red;
     this.PBLine.Location = new System.Drawing.Point(508, 465);
     this.PBLine.Name = "PBLine";
     this.PBLine.Size = new System.Drawing.Size(147, 16);
     this.PBLine.TabIndex = 32;
     this.PBLine.Visible = false;
     //
     // ShowState
     //
     this.ShowState.BackColor = System.Drawing.Color.Transparent;
     this.ShowState.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ShowState.ForeColor = System.Drawing.Color.Red;
     this.ShowState.Location = new System.Drawing.Point(235, 465);
     this.ShowState.Name = "ShowState";
     this.ShowState.Size = new System.Drawing.Size(266, 16);
     this.ShowState.TabIndex = 37;
     this.ShowState.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // SKSystem
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(668, 491);
     this.Controls.Add(this.label13);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.SKNum);
     this.Controls.Add(this.AutoExportNum);
     this.Controls.Add(this.PBLine);
     this.Controls.Add(this.ShowState);
     this.Controls.Add(this.tabCtrl);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "SKSystem";
     this.Text = "律师行业协会培训刷卡系统(V2.1)";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.SKSystem_FormClosing);
     this.tabCtrl.ResumeLayout(false);
     this.tabSK.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.Photo)).EndInit();
     this.tabSKByHand.ResumeLayout(false);
     this.tabSKByHand.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DGLawInfo)).EndInit();
     this.tabKQTJ.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dGKQ)).EndInit();
     this.tabAdmin.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 internal GridColumnStylesCollection(System.Windows.Forms.DataGridTableStyle table)
 {
     this.items = new ArrayList();
     this.owner = table;
 }
Ejemplo n.º 27
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.statusBar1             = new System.Windows.Forms.StatusBar();
     this.tabControl1            = new System.Windows.Forms.TabControl();
     this.tbpCurrent             = new System.Windows.Forms.TabPage();
     this.pnlMainBack            = new System.Windows.Forms.Panel();
     this.pnlMainFront           = new System.Windows.Forms.Panel();
     this.txtItem                = new System.Windows.Forms.TextBox();
     this.lblCount               = new System.Windows.Forms.Label();
     this.cmdNext                = new System.Windows.Forms.Button();
     this.cmdPrev                = new System.Windows.Forms.Button();
     this.txtUOM                 = new System.Windows.Forms.TextBox();
     this.txtQty                 = new System.Windows.Forms.TextBox();
     this.txtMtnr                = new System.Windows.Forms.TextBox();
     this.txtOldMat              = new System.Windows.Forms.TextBox();
     this.lblOldMat              = new System.Windows.Forms.Label();
     this.txtMaterial            = new System.Windows.Forms.TextBox();
     this.lblMaterial            = new System.Windows.Forms.Label();
     this.txtBin                 = new System.Windows.Forms.TextBox();
     this.lblBin                 = new System.Windows.Forms.Label();
     this.txtPlant               = new System.Windows.Forms.TextBox();
     this.lblPlant               = new System.Windows.Forms.Label();
     this.lblSloc                = new System.Windows.Forms.Label();
     this.txtSloc                = new System.Windows.Forms.TextBox();
     this.chkSerial              = new System.Windows.Forms.CheckBox();
     this.tbpOverview            = new System.Windows.Forms.TabPage();
     this.cmdGoto                = new System.Windows.Forms.Button();
     this.cmdPost                = new System.Windows.Forms.Button();
     this.txtEdit                = new System.Windows.Forms.TextBox();
     this.dgOverview             = new System.Windows.Forms.DataGrid();
     this.chkZero                = new System.Windows.Forms.CheckBox();
     this.tbpVariance            = new System.Windows.Forms.TabPage();
     this.cmdConfirm             = new System.Windows.Forms.Button();
     this.dgVariance             = new System.Windows.Forms.DataGrid();
     this.tbpMessages            = new System.Windows.Forms.TabPage();
     this.dgAlert                = new System.Windows.Forms.DataGrid();
     this.dataGridTableStyle1    = new System.Windows.Forms.DataGridTableStyle();
     this.dataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.tbpSerial              = new System.Windows.Forms.TabPage();
     this.txtSernrEdit           = new System.Windows.Forms.TextBox();
     this.dgSerial               = new System.Windows.Forms.DataGrid();
     this.tabControl1.SuspendLayout();
     this.tbpCurrent.SuspendLayout();
     this.pnlMainBack.SuspendLayout();
     this.pnlMainFront.SuspendLayout();
     this.tbpOverview.SuspendLayout();
     this.tbpVariance.SuspendLayout();
     this.tbpMessages.SuspendLayout();
     this.tbpSerial.SuspendLayout();
     this.SuspendLayout();
     //
     // statusBar1
     //
     this.statusBar1.Location = new System.Drawing.Point(0, 264);
     this.statusBar1.Name     = "statusBar1";
     this.statusBar1.Size     = new System.Drawing.Size(242, 24);
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tbpCurrent);
     this.tabControl1.Controls.Add(this.tbpOverview);
     this.tabControl1.Controls.Add(this.tbpVariance);
     this.tabControl1.Controls.Add(this.tbpMessages);
     this.tabControl1.Controls.Add(this.tbpSerial);
     this.tabControl1.Location              = new System.Drawing.Point(2, 10);
     this.tabControl1.Name                  = "tabControl1";
     this.tabControl1.SelectedIndex         = 0;
     this.tabControl1.Size                  = new System.Drawing.Size(237, 247);
     this.tabControl1.TabIndex              = 0;
     this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
     //
     // tbpCurrent
     //
     this.tbpCurrent.Controls.Add(this.pnlMainBack);
     this.tbpCurrent.Location = new System.Drawing.Point(4, 25);
     this.tbpCurrent.Name     = "tbpCurrent";
     this.tbpCurrent.Size     = new System.Drawing.Size(229, 218);
     this.tbpCurrent.Text     = "Current";
     this.tbpCurrent.Click   += new System.EventHandler(this.tbpCurrent_Click);
     //
     // pnlMainBack
     //
     this.pnlMainBack.BackColor = System.Drawing.Color.Black;
     this.pnlMainBack.Controls.Add(this.pnlMainFront);
     this.pnlMainBack.Location = new System.Drawing.Point(8, 8);
     this.pnlMainBack.Name     = "pnlMainBack";
     this.pnlMainBack.Size     = new System.Drawing.Size(216, 208);
     //
     // pnlMainFront
     //
     this.pnlMainFront.BackColor = System.Drawing.Color.AliceBlue;
     this.pnlMainFront.Controls.Add(this.txtItem);
     this.pnlMainFront.Controls.Add(this.lblCount);
     this.pnlMainFront.Controls.Add(this.cmdNext);
     this.pnlMainFront.Controls.Add(this.cmdPrev);
     this.pnlMainFront.Controls.Add(this.txtUOM);
     this.pnlMainFront.Controls.Add(this.txtQty);
     this.pnlMainFront.Controls.Add(this.txtMtnr);
     this.pnlMainFront.Controls.Add(this.txtOldMat);
     this.pnlMainFront.Controls.Add(this.lblOldMat);
     this.pnlMainFront.Controls.Add(this.txtMaterial);
     this.pnlMainFront.Controls.Add(this.lblMaterial);
     this.pnlMainFront.Controls.Add(this.txtBin);
     this.pnlMainFront.Controls.Add(this.lblBin);
     this.pnlMainFront.Controls.Add(this.txtPlant);
     this.pnlMainFront.Controls.Add(this.lblPlant);
     this.pnlMainFront.Controls.Add(this.lblSloc);
     this.pnlMainFront.Controls.Add(this.txtSloc);
     this.pnlMainFront.Controls.Add(this.chkSerial);
     this.pnlMainFront.Location = new System.Drawing.Point(1, 1);
     this.pnlMainFront.Name     = "pnlMainFront";
     this.pnlMainFront.Size     = new System.Drawing.Size(213, 205);
     //
     // txtItem
     //
     this.txtItem.Location = new System.Drawing.Point(136, 176);
     this.txtItem.Name     = "txtItem";
     this.txtItem.ReadOnly = true;
     this.txtItem.Size     = new System.Drawing.Size(72, 23);
     this.txtItem.TabIndex = 0;
     //
     // lblCount
     //
     this.lblCount.Location = new System.Drawing.Point(8, 154);
     this.lblCount.Name     = "lblCount";
     this.lblCount.Size     = new System.Drawing.Size(48, 20);
     this.lblCount.Text     = "Count";
     //
     // cmdNext
     //
     this.cmdNext.Location = new System.Drawing.Point(96, 176);
     this.cmdNext.Name     = "cmdNext";
     this.cmdNext.Size     = new System.Drawing.Size(32, 24);
     this.cmdNext.TabIndex = 2;
     this.cmdNext.Text     = ">";
     this.cmdNext.Click   += new System.EventHandler(this.cmdNext_Click);
     //
     // cmdPrev
     //
     this.cmdPrev.Location = new System.Drawing.Point(64, 176);
     this.cmdPrev.Name     = "cmdPrev";
     this.cmdPrev.Size     = new System.Drawing.Size(32, 24);
     this.cmdPrev.TabIndex = 3;
     this.cmdPrev.Text     = "<";
     this.cmdPrev.Click   += new System.EventHandler(this.cmdPrev_Click);
     //
     // txtUOM
     //
     this.txtUOM.Location = new System.Drawing.Point(144, 152);
     this.txtUOM.Name     = "txtUOM";
     this.txtUOM.ReadOnly = true;
     this.txtUOM.Size     = new System.Drawing.Size(64, 23);
     this.txtUOM.TabIndex = 4;
     //
     // txtQty
     //
     this.txtQty.Location     = new System.Drawing.Point(64, 152);
     this.txtQty.Name         = "txtQty";
     this.txtQty.Size         = new System.Drawing.Size(80, 23);
     this.txtQty.TabIndex     = 5;
     this.txtQty.Validated   += new System.EventHandler(this.txtQty_Validated);
     this.txtQty.TextChanged += new System.EventHandler(this.txtQty_TextChanged);
     //
     // txtMtnr
     //
     this.txtMtnr.Location = new System.Drawing.Point(64, 104);
     this.txtMtnr.Name     = "txtMtnr";
     this.txtMtnr.ReadOnly = true;
     this.txtMtnr.Size     = new System.Drawing.Size(144, 23);
     this.txtMtnr.TabIndex = 6;
     //
     // txtOldMat
     //
     this.txtOldMat.Location = new System.Drawing.Point(64, 128);
     this.txtOldMat.Name     = "txtOldMat";
     this.txtOldMat.ReadOnly = true;
     this.txtOldMat.Size     = new System.Drawing.Size(144, 23);
     this.txtOldMat.TabIndex = 7;
     //
     // lblOldMat
     //
     this.lblOldMat.Location = new System.Drawing.Point(8, 130);
     this.lblOldMat.Name     = "lblOldMat";
     this.lblOldMat.Size     = new System.Drawing.Size(56, 20);
     this.lblOldMat.Text     = "Old Mat.";
     //
     // txtMaterial
     //
     this.txtMaterial.Location     = new System.Drawing.Point(64, 80);
     this.txtMaterial.Name         = "txtMaterial";
     this.txtMaterial.ReadOnly     = true;
     this.txtMaterial.Size         = new System.Drawing.Size(144, 23);
     this.txtMaterial.TabIndex     = 9;
     this.txtMaterial.TextChanged += new System.EventHandler(this.txtMaterial_TextChanged);
     //
     // lblMaterial
     //
     this.lblMaterial.Location = new System.Drawing.Point(8, 94);
     this.lblMaterial.Name     = "lblMaterial";
     this.lblMaterial.Size     = new System.Drawing.Size(56, 20);
     this.lblMaterial.Text     = "Material";
     //
     // txtBin
     //
     this.txtBin.Location = new System.Drawing.Point(64, 56);
     this.txtBin.Name     = "txtBin";
     this.txtBin.ReadOnly = true;
     this.txtBin.Size     = new System.Drawing.Size(144, 23);
     this.txtBin.TabIndex = 11;
     //
     // lblBin
     //
     this.lblBin.Location = new System.Drawing.Point(8, 60);
     this.lblBin.Name     = "lblBin";
     this.lblBin.Size     = new System.Drawing.Size(40, 20);
     this.lblBin.Text     = "Bin";
     //
     // txtPlant
     //
     this.txtPlant.Location     = new System.Drawing.Point(64, 8);
     this.txtPlant.Name         = "txtPlant";
     this.txtPlant.ReadOnly     = true;
     this.txtPlant.Size         = new System.Drawing.Size(144, 23);
     this.txtPlant.TabIndex     = 13;
     this.txtPlant.TextChanged += new System.EventHandler(this.txtPlant_TextChanged);
     //
     // lblPlant
     //
     this.lblPlant.Location = new System.Drawing.Point(8, 10);
     this.lblPlant.Name     = "lblPlant";
     this.lblPlant.Size     = new System.Drawing.Size(48, 20);
     this.lblPlant.Text     = "Plant";
     //
     // lblSloc
     //
     this.lblSloc.Location = new System.Drawing.Point(8, 34);
     this.lblSloc.Name     = "lblSloc";
     this.lblSloc.Size     = new System.Drawing.Size(40, 20);
     this.lblSloc.Text     = "S Loc";
     //
     // txtSloc
     //
     this.txtSloc.Location = new System.Drawing.Point(64, 32);
     this.txtSloc.Name     = "txtSloc";
     this.txtSloc.ReadOnly = true;
     this.txtSloc.Size     = new System.Drawing.Size(144, 23);
     this.txtSloc.TabIndex = 16;
     //
     // chkSerial
     //
     this.chkSerial.Enabled            = false;
     this.chkSerial.Location           = new System.Drawing.Point(8, 176);
     this.chkSerial.Name               = "chkSerial";
     this.chkSerial.Size               = new System.Drawing.Size(60, 20);
     this.chkSerial.TabIndex           = 17;
     this.chkSerial.Text               = "Serial";
     this.chkSerial.CheckStateChanged += new System.EventHandler(this.chkSerial_CheckStateChanged);
     //
     // tbpOverview
     //
     this.tbpOverview.Controls.Add(this.cmdGoto);
     this.tbpOverview.Controls.Add(this.cmdPost);
     this.tbpOverview.Controls.Add(this.txtEdit);
     this.tbpOverview.Controls.Add(this.dgOverview);
     this.tbpOverview.Controls.Add(this.chkZero);
     this.tbpOverview.Location = new System.Drawing.Point(4, 25);
     this.tbpOverview.Name     = "tbpOverview";
     this.tbpOverview.Size     = new System.Drawing.Size(229, 218);
     this.tbpOverview.Text     = "All";
     //
     // cmdGoto
     //
     this.cmdGoto.Location = new System.Drawing.Point(152, 4);
     this.cmdGoto.Name     = "cmdGoto";
     this.cmdGoto.Size     = new System.Drawing.Size(72, 24);
     this.cmdGoto.TabIndex = 0;
     this.cmdGoto.Text     = "Goto Line";
     this.cmdGoto.Click   += new System.EventHandler(this.cmdGoto_Click);
     //
     // cmdPost
     //
     this.cmdPost.Location = new System.Drawing.Point(88, 4);
     this.cmdPost.Name     = "cmdPost";
     this.cmdPost.Size     = new System.Drawing.Size(56, 24);
     this.cmdPost.TabIndex = 1;
     this.cmdPost.Text     = "Post";
     this.cmdPost.Click   += new System.EventHandler(this.cmdPost_Click);
     //
     // txtEdit
     //
     this.txtEdit.Location     = new System.Drawing.Point(56, 88);
     this.txtEdit.Name         = "txtEdit";
     this.txtEdit.Size         = new System.Drawing.Size(100, 23);
     this.txtEdit.TabIndex     = 2;
     this.txtEdit.Visible      = false;
     this.txtEdit.TextChanged += new System.EventHandler(this.txtEdit_TextChanged);
     //
     // dgOverview
     //
     this.dgOverview.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.dgOverview.Location        = new System.Drawing.Point(2, 32);
     this.dgOverview.Name            = "dgOverview";
     this.dgOverview.Size            = new System.Drawing.Size(232, 184);
     this.dgOverview.TabIndex        = 3;
     this.dgOverview.Click          += new System.EventHandler(this.dgOverview_Click);
     //
     // chkZero
     //
     this.chkZero.Location = new System.Drawing.Point(8, 8);
     this.chkZero.Name     = "chkZero";
     this.chkZero.Size     = new System.Drawing.Size(88, 20);
     this.chkZero.TabIndex = 4;
     this.chkZero.Text     = "Post Zeros";
     this.chkZero.Click   += new System.EventHandler(this.chkZero_Click);
     //
     // tbpVariance
     //
     this.tbpVariance.Controls.Add(this.cmdConfirm);
     this.tbpVariance.Controls.Add(this.dgVariance);
     this.tbpVariance.Location = new System.Drawing.Point(4, 25);
     this.tbpVariance.Name     = "tbpVariance";
     this.tbpVariance.Size     = new System.Drawing.Size(229, 218);
     this.tbpVariance.Text     = "Variance";
     //
     // cmdConfirm
     //
     this.cmdConfirm.Location = new System.Drawing.Point(64, 8);
     this.cmdConfirm.Name     = "cmdConfirm";
     this.cmdConfirm.Size     = new System.Drawing.Size(96, 20);
     this.cmdConfirm.TabIndex = 0;
     this.cmdConfirm.Text     = "Confirm Post";
     this.cmdConfirm.Visible  = false;
     this.cmdConfirm.Click   += new System.EventHandler(this.cmdConfirm_Click);
     //
     // dgVariance
     //
     this.dgVariance.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.dgVariance.Location        = new System.Drawing.Point(2, 32);
     this.dgVariance.Name            = "dgVariance";
     this.dgVariance.Size            = new System.Drawing.Size(240, 176);
     this.dgVariance.TabIndex        = 1;
     //
     // tbpMessages
     //
     this.tbpMessages.Controls.Add(this.dgAlert);
     this.tbpMessages.Location = new System.Drawing.Point(4, 25);
     this.tbpMessages.Name     = "tbpMessages";
     this.tbpMessages.Size     = new System.Drawing.Size(229, 218);
     this.tbpMessages.Text     = "Alerts";
     //
     // dgAlert
     //
     this.dgAlert.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.dgAlert.Location        = new System.Drawing.Point(2, 8);
     this.dgAlert.Name            = "dgAlert";
     this.dgAlert.Size            = new System.Drawing.Size(240, 200);
     this.dgAlert.TabIndex        = 0;
     this.dgAlert.TableStyles.Add(this.dataGridTableStyle1);
     //
     // dataGridTableStyle1
     //
     this.dataGridTableStyle1.GridColumnStyles.Add(this.dataGridTextBoxColumn1);
     this.dataGridTableStyle1.MappingName = "Alerts";
     //
     // dataGridTextBoxColumn1
     //
     this.dataGridTextBoxColumn1.HeaderText  = "Message";
     this.dataGridTextBoxColumn1.MappingName = "message";
     this.dataGridTextBoxColumn1.Width       = 250;
     //
     // tbpSerial
     //
     this.tbpSerial.Controls.Add(this.txtSernrEdit);
     this.tbpSerial.Controls.Add(this.dgSerial);
     this.tbpSerial.Location = new System.Drawing.Point(4, 25);
     this.tbpSerial.Name     = "tbpSerial";
     this.tbpSerial.Size     = new System.Drawing.Size(229, 218);
     this.tbpSerial.Text     = "Serial #";
     //
     // txtSernrEdit
     //
     this.txtSernrEdit.Location   = new System.Drawing.Point(48, 96);
     this.txtSernrEdit.Name       = "txtSernrEdit";
     this.txtSernrEdit.Size       = new System.Drawing.Size(100, 23);
     this.txtSernrEdit.TabIndex   = 0;
     this.txtSernrEdit.Visible    = false;
     this.txtSernrEdit.LostFocus += new System.EventHandler(this.txtSernrEdit_LostFocus);
     this.txtSernrEdit.Validated += new System.EventHandler(this.txtSernrEdit_Validated);
     //
     // dgSerial
     //
     this.dgSerial.BackgroundColor     = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.dgSerial.Location            = new System.Drawing.Point(8, 8);
     this.dgSerial.Name                = "dgSerial";
     this.dgSerial.Size                = new System.Drawing.Size(216, 208);
     this.dgSerial.TabIndex            = 1;
     this.dgSerial.CurrentCellChanged += new System.EventHandler(this.dgSerial_CurrentCellChanged);
     this.dgSerial.Click              += new System.EventHandler(this.dgSerial_Click);
     //
     // frmStockCountMain
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
     this.ClientSize    = new System.Drawing.Size(242, 288);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.statusBar1);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name        = "frmStockCountMain";
     this.Text        = "Stock Count";
     this.Closing    += new System.ComponentModel.CancelEventHandler(this.frmStockCountMain_Closing);
     this.Load       += new System.EventHandler(this.frmStockCountMain_Load);
     this.tabControl1.ResumeLayout(false);
     this.tbpCurrent.ResumeLayout(false);
     this.pnlMainBack.ResumeLayout(false);
     this.pnlMainFront.ResumeLayout(false);
     this.tbpOverview.ResumeLayout(false);
     this.tbpVariance.ResumeLayout(false);
     this.tbpMessages.ResumeLayout(false);
     this.tbpSerial.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.dataGrid                = new System.Windows.Forms.DataGrid();
     this.dataGridTableStyle      = new System.Windows.Forms.DataGridTableStyle();
     this.dataGridTextBoxColumn1  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn2  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn3  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn4  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn5  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn6  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn7  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn8  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn9  = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn10 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn11 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn12 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn13 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn14 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn15 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn16 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn17 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn18 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn19 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn20 = new System.Windows.Forms.DataGridTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid)).BeginInit();
     this.SuspendLayout();
     //
     // dataGrid
     //
     this.dataGrid.BackgroundColor = System.Drawing.Color.LightGray;
     this.dataGrid.CaptionVisible  = false;
     this.dataGrid.DataMember      = "";
     this.dataGrid.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.dataGrid.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dataGrid.Location        = new System.Drawing.Point(0, 0);
     this.dataGrid.Name            = "dataGrid";
     this.dataGrid.ReadOnly        = true;
     this.dataGrid.Size            = new System.Drawing.Size(1184, 461);
     this.dataGrid.TabIndex        = 0;
     this.dataGrid.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {
         this.dataGridTableStyle
     });
     //
     // dataGridTableStyle
     //
     this.dataGridTableStyle.DataGrid             = this.dataGrid;
     this.dataGridTableStyle.HeaderForeColor      = System.Drawing.SystemColors.ControlText;
     this.dataGridTableStyle.PreferredColumnWidth = 150;
     //
     // dataGridTextBoxColumn1
     //
     this.dataGridTextBoxColumn1.Format     = "";
     this.dataGridTextBoxColumn1.FormatInfo = null;
     this.dataGridTextBoxColumn1.Width      = -1;
     //
     // dataGridTextBoxColumn2
     //
     this.dataGridTextBoxColumn2.Format     = "";
     this.dataGridTextBoxColumn2.FormatInfo = null;
     this.dataGridTextBoxColumn2.Width      = -1;
     //
     // dataGridTextBoxColumn3
     //
     this.dataGridTextBoxColumn3.Format     = "";
     this.dataGridTextBoxColumn3.FormatInfo = null;
     this.dataGridTextBoxColumn3.Width      = -1;
     //
     // dataGridTextBoxColumn4
     //
     this.dataGridTextBoxColumn4.Format     = "";
     this.dataGridTextBoxColumn4.FormatInfo = null;
     this.dataGridTextBoxColumn4.Width      = -1;
     //
     // dataGridTextBoxColumn5
     //
     this.dataGridTextBoxColumn5.Format     = "";
     this.dataGridTextBoxColumn5.FormatInfo = null;
     this.dataGridTextBoxColumn5.Width      = -1;
     //
     // dataGridTextBoxColumn6
     //
     this.dataGridTextBoxColumn6.Format     = "";
     this.dataGridTextBoxColumn6.FormatInfo = null;
     this.dataGridTextBoxColumn6.Width      = -1;
     //
     // dataGridTextBoxColumn7
     //
     this.dataGridTextBoxColumn7.Format     = "";
     this.dataGridTextBoxColumn7.FormatInfo = null;
     this.dataGridTextBoxColumn7.Width      = -1;
     //
     // dataGridTextBoxColumn8
     //
     this.dataGridTextBoxColumn8.Format     = "";
     this.dataGridTextBoxColumn8.FormatInfo = null;
     this.dataGridTextBoxColumn8.Width      = -1;
     //
     // dataGridTextBoxColumn9
     //
     this.dataGridTextBoxColumn9.Format     = "";
     this.dataGridTextBoxColumn9.FormatInfo = null;
     this.dataGridTextBoxColumn9.Width      = -1;
     //
     // dataGridTextBoxColumn10
     //
     this.dataGridTextBoxColumn10.Format     = "";
     this.dataGridTextBoxColumn10.FormatInfo = null;
     this.dataGridTextBoxColumn10.Width      = -1;
     //
     // dataGridTextBoxColumn11
     //
     this.dataGridTextBoxColumn11.Format     = "";
     this.dataGridTextBoxColumn11.FormatInfo = null;
     this.dataGridTextBoxColumn11.Width      = -1;
     //
     // dataGridTextBoxColumn12
     //
     this.dataGridTextBoxColumn12.Format     = "";
     this.dataGridTextBoxColumn12.FormatInfo = null;
     this.dataGridTextBoxColumn12.Width      = -1;
     //
     // dataGridTextBoxColumn13
     //
     this.dataGridTextBoxColumn13.Format     = "";
     this.dataGridTextBoxColumn13.FormatInfo = null;
     this.dataGridTextBoxColumn13.Width      = -1;
     //
     // dataGridTextBoxColumn14
     //
     this.dataGridTextBoxColumn14.Format     = "";
     this.dataGridTextBoxColumn14.FormatInfo = null;
     this.dataGridTextBoxColumn14.Width      = -1;
     //
     // dataGridTextBoxColumn15
     //
     this.dataGridTextBoxColumn15.Format     = "";
     this.dataGridTextBoxColumn15.FormatInfo = null;
     this.dataGridTextBoxColumn15.Width      = -1;
     //
     // dataGridTextBoxColumn16
     //
     this.dataGridTextBoxColumn16.Format     = "";
     this.dataGridTextBoxColumn16.FormatInfo = null;
     this.dataGridTextBoxColumn16.Width      = -1;
     //
     // dataGridTextBoxColumn17
     //
     this.dataGridTextBoxColumn17.Format     = "";
     this.dataGridTextBoxColumn17.FormatInfo = null;
     this.dataGridTextBoxColumn17.Width      = -1;
     //
     // dataGridTextBoxColumn18
     //
     this.dataGridTextBoxColumn18.Format     = "";
     this.dataGridTextBoxColumn18.FormatInfo = null;
     this.dataGridTextBoxColumn18.Width      = -1;
     //
     // dataGridTextBoxColumn19
     //
     this.dataGridTextBoxColumn19.Format     = "";
     this.dataGridTextBoxColumn19.FormatInfo = null;
     this.dataGridTextBoxColumn19.Width      = -1;
     //
     // dataGridTextBoxColumn20
     //
     this.dataGridTextBoxColumn20.Format     = "";
     this.dataGridTextBoxColumn20.FormatInfo = null;
     this.dataGridTextBoxColumn20.Width      = -1;
     //
     // frmProtokollRennvelo
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(1184, 461);
     this.Controls.Add(this.dataGrid);
     this.Name    = "frmProtokollRennvelo";
     this.Text    = "Protokoll";
     this.Load   += new System.EventHandler(this.frmProtokoll_Load);
     this.Resize += new System.EventHandler(this.OnResize);
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 29
0
 protected internal virtual int MinimumRowHeight(System.Windows.Forms.DataGridTableStyle dgTable)
 {
     return(this.MinimumRowHeight(dgTable.GridColumnStyles));
 }
Ejemplo n.º 30
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lblStranica = new System.Windows.Forms.Label();
     this.btnPrethodni = new System.Windows.Forms.Button();
     this.btnSlijedeci = new System.Windows.Forms.Button();
     this.lblPoruka = new System.Windows.Forms.Label();
     this.btnNatrag = new System.Windows.Forms.Button();
     this.btnTrazi = new System.Windows.Forms.Button();
     this.txtLokacijaOznaka = new System.Windows.Forms.TextBox();
     this.txtRobaSifra = new System.Windows.Forms.TextBox();
     this.colKolicinaUlaz = new System.Windows.Forms.DataGridTextBoxColumn();
     this.colRobaSifra = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dgPllPregledTS = new System.Windows.Forms.DataGridTableStyle();
     this.colLokacijaIzlaz = new System.Windows.Forms.DataGridTextBoxColumn();
     this.colKolicinaIzlaz = new System.Windows.Forms.DataGridTextBoxColumn();
     this.colLokacijaUlaz = new System.Windows.Forms.DataGridTextBoxColumn();
     this.colVrijeme = new System.Windows.Forms.DataGridTextBoxColumn();
     this.lblLokacijaOznaka = new System.Windows.Forms.Label();
     this.dgPllPregled = new System.Windows.Forms.DataGrid();
     this.lblRobaSifra = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // lblStranica
     //
     this.lblStranica.Location = new System.Drawing.Point(33, 163);
     this.lblStranica.Name = "lblStranica";
     this.lblStranica.Size = new System.Drawing.Size(170, 20);
     this.lblStranica.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // btnPrethodni
     //
     this.btnPrethodni.Enabled = false;
     this.btnPrethodni.Location = new System.Drawing.Point(3, 156);
     this.btnPrethodni.Name = "btnPrethodni";
     this.btnPrethodni.Size = new System.Drawing.Size(24, 20);
     this.btnPrethodni.TabIndex = 17;
     this.btnPrethodni.Text = "<";
     this.btnPrethodni.Click += new System.EventHandler(this.btnPrethodni_Click);
     //
     // btnSlijedeci
     //
     this.btnSlijedeci.Enabled = false;
     this.btnSlijedeci.Location = new System.Drawing.Point(209, 156);
     this.btnSlijedeci.Name = "btnSlijedeci";
     this.btnSlijedeci.Size = new System.Drawing.Size(24, 20);
     this.btnSlijedeci.TabIndex = 16;
     this.btnSlijedeci.Text = ">";
     this.btnSlijedeci.Click += new System.EventHandler(this.btnSlijedeci_Click);
     //
     // lblPoruka
     //
     this.lblPoruka.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.lblPoruka.ForeColor = System.Drawing.Color.Maroon;
     this.lblPoruka.Location = new System.Drawing.Point(3, 179);
     this.lblPoruka.Name = "lblPoruka";
     this.lblPoruka.Size = new System.Drawing.Size(230, 30);
     //
     // btnNatrag
     //
     this.btnNatrag.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular);
     this.btnNatrag.Location = new System.Drawing.Point(3, 212);
     this.btnNatrag.Name = "btnNatrag";
     this.btnNatrag.Size = new System.Drawing.Size(112, 25);
     this.btnNatrag.TabIndex = 19;
     this.btnNatrag.Text = "Natrag";
     this.btnNatrag.Click += new System.EventHandler(this.btnNatrag_Click);
     //
     // btnTrazi
     //
     this.btnTrazi.Location = new System.Drawing.Point(175, 22);
     this.btnTrazi.Name = "btnTrazi";
     this.btnTrazi.Size = new System.Drawing.Size(58, 23);
     this.btnTrazi.TabIndex = 14;
     this.btnTrazi.Text = "Traži";
     this.btnTrazi.Click += new System.EventHandler(this.btnTrazi_Click);
     //
     // txtLokacijaOznaka
     //
     this.txtLokacijaOznaka.Location = new System.Drawing.Point(105, 22);
     this.txtLokacijaOznaka.Name = "txtLokacijaOznaka";
     this.txtLokacijaOznaka.Size = new System.Drawing.Size(64, 23);
     this.txtLokacijaOznaka.TabIndex = 13;
     //
     // txtRobaSifra
     //
     this.txtRobaSifra.Location = new System.Drawing.Point(3, 22);
     this.txtRobaSifra.MaxLength = 30;
     this.txtRobaSifra.Name = "txtRobaSifra";
     this.txtRobaSifra.Size = new System.Drawing.Size(96, 23);
     this.txtRobaSifra.TabIndex = 11;
     //
     // colKolicinaUlaz
     //
     this.colKolicinaUlaz.Format = "";
     this.colKolicinaUlaz.FormatInfo = null;
     this.colKolicinaUlaz.HeaderText = "U.Kol";
     this.colKolicinaUlaz.MappingName = "KolicinaUlaz";
     this.colKolicinaUlaz.NullText = "";
     this.colKolicinaUlaz.Width = 70;
     //
     // colRobaSifra
     //
     this.colRobaSifra.Format = "";
     this.colRobaSifra.FormatInfo = null;
     this.colRobaSifra.HeaderText = "Šifra robe";
     this.colRobaSifra.MappingName = "RobaSifra";
     this.colRobaSifra.NullText = "";
     this.colRobaSifra.Width = 90;
     //
     // dgPllPregledTS
     //
     this.dgPllPregledTS.GridColumnStyles.Add(this.colRobaSifra);
     this.dgPllPregledTS.GridColumnStyles.Add(this.colLokacijaIzlaz);
     this.dgPllPregledTS.GridColumnStyles.Add(this.colKolicinaIzlaz);
     this.dgPllPregledTS.GridColumnStyles.Add(this.colLokacijaUlaz);
     this.dgPllPregledTS.GridColumnStyles.Add(this.colKolicinaUlaz);
     this.dgPllPregledTS.GridColumnStyles.Add(this.colVrijeme);
     this.dgPllPregledTS.MappingName = "PllHistorijat";
     //
     // colLokacijaIzlaz
     //
     this.colLokacijaIzlaz.Format = "";
     this.colLokacijaIzlaz.FormatInfo = null;
     this.colLokacijaIzlaz.HeaderText = "Iz.Lok";
     this.colLokacijaIzlaz.MappingName = "LokacijaIzlaz";
     this.colLokacijaIzlaz.NullText = "";
     this.colLokacijaIzlaz.Width = 60;
     //
     // colKolicinaIzlaz
     //
     this.colKolicinaIzlaz.Format = "";
     this.colKolicinaIzlaz.FormatInfo = null;
     this.colKolicinaIzlaz.HeaderText = "Iz.Kol";
     this.colKolicinaIzlaz.MappingName = "KolicinaIzlaz";
     this.colKolicinaIzlaz.NullText = "";
     this.colKolicinaIzlaz.Width = 70;
     //
     // colLokacijaUlaz
     //
     this.colLokacijaUlaz.Format = "";
     this.colLokacijaUlaz.FormatInfo = null;
     this.colLokacijaUlaz.HeaderText = "U.Lok";
     this.colLokacijaUlaz.MappingName = "LokacijaUlaz";
     this.colLokacijaUlaz.NullText = "";
     this.colLokacijaUlaz.Width = 60;
     //
     // colVrijeme
     //
     this.colVrijeme.Format = "";
     this.colVrijeme.FormatInfo = null;
     this.colVrijeme.HeaderText = "Vrijeme upisa";
     this.colVrijeme.MappingName = "Vrijeme";
     this.colVrijeme.NullText = "";
     this.colVrijeme.Width = 120;
     //
     // lblLokacijaOznaka
     //
     this.lblLokacijaOznaka.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.lblLokacijaOznaka.Location = new System.Drawing.Point(105, 3);
     this.lblLokacijaOznaka.Name = "lblLokacijaOznaka";
     this.lblLokacijaOznaka.Size = new System.Drawing.Size(64, 16);
     this.lblLokacijaOznaka.Text = "Lokacija";
     //
     // dgPllPregled
     //
     this.dgPllPregled.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.dgPllPregled.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.dgPllPregled.Location = new System.Drawing.Point(3, 51);
     this.dgPllPregled.Name = "dgPllPregled";
     this.dgPllPregled.RowHeadersVisible = false;
     this.dgPllPregled.Size = new System.Drawing.Size(230, 99);
     this.dgPllPregled.TabIndex = 15;
     this.dgPllPregled.TableStyles.Add(this.dgPllPregledTS);
     //
     // lblRobaSifra
     //
     this.lblRobaSifra.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.lblRobaSifra.Location = new System.Drawing.Point(3, 3);
     this.lblRobaSifra.Name = "lblRobaSifra";
     this.lblRobaSifra.Size = new System.Drawing.Size(96, 16);
     this.lblRobaSifra.Text = "Šifra/barkod robe";
     //
     // PllPregled
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
     this.Controls.Add(this.lblStranica);
     this.Controls.Add(this.btnPrethodni);
     this.Controls.Add(this.btnSlijedeci);
     this.Controls.Add(this.lblPoruka);
     this.Controls.Add(this.btnNatrag);
     this.Controls.Add(this.btnTrazi);
     this.Controls.Add(this.txtLokacijaOznaka);
     this.Controls.Add(this.txtRobaSifra);
     this.Controls.Add(this.lblLokacijaOznaka);
     this.Controls.Add(this.dgPllPregled);
     this.Controls.Add(this.lblRobaSifra);
     this.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular);
     this.Name = "PllPregled";
     this.Size = new System.Drawing.Size(236, 240);
     this.ResumeLayout(false);
 }
Ejemplo n.º 31
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.DataGridTableStyle        dataGridTableStyle1;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmImpCodigoBarra));
     this.dataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn2 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn3 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.mainMenu1  = new System.Windows.Forms.MainMenu();
     this.panel2     = new System.Windows.Forms.Panel();
     this.pbImprimir = new System.Windows.Forms.PictureBox();
     this.pbSalir    = new System.Windows.Forms.PictureBox();
     this.panel1     = new System.Windows.Forms.Panel();
     this.label4     = new System.Windows.Forms.Label();
     this.txtDesc    = new System.Windows.Forms.TextBox();
     this.label3     = new System.Windows.Forms.Label();
     this.label1     = new System.Windows.Forms.Label();
     this.txtBuscar  = new System.Windows.Forms.TextBox();
     this.label2     = new System.Windows.Forms.Label();
     this.codigosBarraBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dgCodigos      = new System.Windows.Forms.DataGrid();
     dataGridTableStyle1 = new System.Windows.Forms.DataGridTableStyle();
     this.panel2.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.codigosBarraBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // dataGridTableStyle1
     //
     dataGridTableStyle1.GridColumnStyles.Add(this.dataGridTextBoxColumn1);
     dataGridTableStyle1.GridColumnStyles.Add(this.dataGridTextBoxColumn2);
     dataGridTableStyle1.GridColumnStyles.Add(this.dataGridTextBoxColumn3);
     dataGridTableStyle1.MappingName = "CodigosBarra";
     //
     // dataGridTextBoxColumn1
     //
     this.dataGridTextBoxColumn1.Format      = "";
     this.dataGridTextBoxColumn1.FormatInfo  = null;
     this.dataGridTextBoxColumn1.HeaderText  = "Clave";
     this.dataGridTextBoxColumn1.MappingName = "cve_art";
     //
     // dataGridTextBoxColumn2
     //
     this.dataGridTextBoxColumn2.Format      = "";
     this.dataGridTextBoxColumn2.FormatInfo  = null;
     this.dataGridTextBoxColumn2.HeaderText  = "Piezas";
     this.dataGridTextBoxColumn2.MappingName = "cant_piezas";
     //
     // dataGridTextBoxColumn3
     //
     this.dataGridTextBoxColumn3.Format      = "";
     this.dataGridTextBoxColumn3.FormatInfo  = null;
     this.dataGridTextBoxColumn3.HeaderText  = "Codigo de Barra";
     this.dataGridTextBoxColumn3.MappingName = "codigo_barra";
     this.dataGridTextBoxColumn3.Width       = 150;
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.SystemColors.Window;
     this.panel2.Controls.Add(this.pbImprimir);
     this.panel2.Controls.Add(this.pbSalir);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel2.Location = new System.Drawing.Point(0, 235);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(238, 40);
     //
     // pbImprimir
     //
     this.pbImprimir.Image    = ((System.Drawing.Image)(resources.GetObject("pbImprimir.Image")));
     this.pbImprimir.Location = new System.Drawing.Point(198, 3);
     this.pbImprimir.Name     = "pbImprimir";
     this.pbImprimir.Size     = new System.Drawing.Size(35, 35);
     this.pbImprimir.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.pbImprimir.Click   += new System.EventHandler(this.pbImprimir_Click);
     //
     // pbSalir
     //
     this.pbSalir.Image    = ((System.Drawing.Image)(resources.GetObject("pbSalir.Image")));
     this.pbSalir.Location = new System.Drawing.Point(5, 3);
     this.pbSalir.Name     = "pbSalir";
     this.pbSalir.Size     = new System.Drawing.Size(35, 35);
     this.pbSalir.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.pbSalir.Click   += new System.EventHandler(this.pbSalir_Click);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.White;
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.txtDesc);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.txtBuscar);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.dgCodigos);
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(238, 235);
     //
     // label4
     //
     this.label4.Font     = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.label4.Location = new System.Drawing.Point(8, 42);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(42, 21);
     this.label4.Text     = "Buscar";
     //
     // txtDesc
     //
     this.txtDesc.Font     = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.txtDesc.Location = new System.Drawing.Point(56, 59);
     this.txtDesc.Name     = "txtDesc";
     this.txtDesc.ReadOnly = true;
     this.txtDesc.Size     = new System.Drawing.Size(174, 19);
     this.txtDesc.TabIndex = 15;
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.label3.Location = new System.Drawing.Point(8, 63);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(42, 21);
     this.label3.Text     = "Desc.";
     //
     // label1
     //
     this.label1.Font      = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.label1.Location  = new System.Drawing.Point(9, 3);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(221, 20);
     this.label1.Text      = "Impresión de Código de Barra";
     this.label1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // txtBuscar
     //
     this.txtBuscar.Font       = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.txtBuscar.Location   = new System.Drawing.Point(56, 38);
     this.txtBuscar.Name       = "txtBuscar";
     this.txtBuscar.Size       = new System.Drawing.Size(174, 19);
     this.txtBuscar.TabIndex   = 13;
     this.txtBuscar.KeyPress  += new System.Windows.Forms.KeyPressEventHandler(this.txtBuscar_KeyPress);
     this.txtBuscar.LostFocus += new System.EventHandler(this.txtBuscar_LostFocus);
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.label2.Location = new System.Drawing.Point(8, 22);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(223, 20);
     this.label2.Text     = "Introduzca Clave o Codigo de Barra";
     //
     // codigosBarraBindingSource
     //
     this.codigosBarraBindingSource.AllowNew   = false;
     this.codigosBarraBindingSource.DataSource = typeof(SWYRA_Movil.CodigosBarra);
     //
     // dgCodigos
     //
     this.dgCodigos.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.dgCodigos.DataSource      = this.codigosBarraBindingSource;
     this.dgCodigos.Location        = new System.Drawing.Point(8, 84);
     this.dgCodigos.Name            = "dgCodigos";
     this.dgCodigos.Size            = new System.Drawing.Size(223, 147);
     this.dgCodigos.TabIndex        = 14;
     this.dgCodigos.TableStyles.Add(dataGridTableStyle1);
     this.dgCodigos.CurrentCellChanged += new System.EventHandler(this.dgCodigos_CurrentCellChanged);
     //
     // FrmImpCodigoBarra
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.BackColor           = System.Drawing.Color.White;
     this.ClientSize          = new System.Drawing.Size(238, 275);
     this.ControlBox          = false;
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.panel2);
     this.Icon  = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Menu  = this.mainMenu1;
     this.Name  = "FrmImpCodigoBarra";
     this.Text  = "SWRYA";
     this.Load += new System.EventHandler(this.FrmImpCodigoBarra_Load);
     this.panel2.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.codigosBarraBindingSource)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.dataGrid               = new System.Windows.Forms.DataGrid();
     this.dataGridTableStyle1    = new System.Windows.Forms.DataGridTableStyle();
     this.dataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn2 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn3 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn4 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn5 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn6 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn7 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn8 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.lblInfo = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid)).BeginInit();
     this.SuspendLayout();
     //
     // dataGrid
     //
     this.dataGrid.BackgroundColor = System.Drawing.Color.LightGray;
     this.dataGrid.CaptionVisible  = false;
     this.dataGrid.DataMember      = "";
     this.dataGrid.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dataGrid.Location        = new System.Drawing.Point(6, 38);
     this.dataGrid.Name            = "dataGrid";
     this.dataGrid.ReadOnly        = true;
     this.dataGrid.Size            = new System.Drawing.Size(518, 258);
     this.dataGrid.TabIndex        = 0;
     this.dataGrid.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {
         this.dataGridTableStyle1
     });
     //
     // dataGridTableStyle1
     //
     this.dataGridTableStyle1.DataGrid = this.dataGrid;
     this.dataGridTableStyle1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {
         this.dataGridTextBoxColumn1,
         this.dataGridTextBoxColumn2,
         this.dataGridTextBoxColumn3,
         this.dataGridTextBoxColumn4,
         this.dataGridTextBoxColumn5,
         this.dataGridTextBoxColumn6,
         this.dataGridTextBoxColumn7,
         this.dataGridTextBoxColumn8
     });
     this.dataGridTableStyle1.HeaderForeColor      = System.Drawing.SystemColors.ControlText;
     this.dataGridTableStyle1.MappingName          = "";
     this.dataGridTableStyle1.PreferredColumnWidth = 150;
     //
     // dataGridTextBoxColumn1
     //
     this.dataGridTextBoxColumn1.Format      = "";
     this.dataGridTextBoxColumn1.FormatInfo  = null;
     this.dataGridTextBoxColumn1.HeaderText  = "Datum";
     this.dataGridTextBoxColumn1.MappingName = "Datum";
     //
     // dataGridTextBoxColumn2
     //
     this.dataGridTextBoxColumn2.Format      = "";
     this.dataGridTextBoxColumn2.FormatInfo  = null;
     this.dataGridTextBoxColumn2.HeaderText  = "Kcal";
     this.dataGridTextBoxColumn2.MappingName = "Kcal";
     //
     // dataGridTextBoxColumn3
     //
     this.dataGridTextBoxColumn3.Format      = "";
     this.dataGridTextBoxColumn3.FormatInfo  = null;
     this.dataGridTextBoxColumn3.HeaderText  = "Kg";
     this.dataGridTextBoxColumn3.MappingName = "Kg";
     //
     // dataGridTextBoxColumn4
     //
     this.dataGridTextBoxColumn4.Format      = "";
     this.dataGridTextBoxColumn4.FormatInfo  = null;
     this.dataGridTextBoxColumn4.HeaderText  = "Km";
     this.dataGridTextBoxColumn4.MappingName = "Km";
     //
     // dataGridTextBoxColumn5
     //
     this.dataGridTextBoxColumn5.Format      = "";
     this.dataGridTextBoxColumn5.FormatInfo  = null;
     this.dataGridTextBoxColumn5.HeaderText  = "Zeit";
     this.dataGridTextBoxColumn5.MappingName = "Zeit";
     //
     // dataGridTextBoxColumn6
     //
     this.dataGridTextBoxColumn6.Format      = "";
     this.dataGridTextBoxColumn6.FormatInfo  = null;
     this.dataGridTextBoxColumn6.HeaderText  = "Km/h";
     this.dataGridTextBoxColumn6.MappingName = "Km/h";
     //
     // dataGridTextBoxColumn7
     //
     this.dataGridTextBoxColumn7.Format      = "";
     this.dataGridTextBoxColumn7.FormatInfo  = null;
     this.dataGridTextBoxColumn7.HeaderText  = "Strecke";
     this.dataGridTextBoxColumn7.MappingName = "Strecke";
     this.dataGridTextBoxColumn7.Width       = 150;
     //
     // dataGridTextBoxColumn8
     //
     this.dataGridTextBoxColumn8.Format      = "";
     this.dataGridTextBoxColumn8.FormatInfo  = null;
     this.dataGridTextBoxColumn8.HeaderText  = "Bemerkung";
     this.dataGridTextBoxColumn8.MappingName = "Bemerkung";
     this.dataGridTextBoxColumn8.Width       = 250;
     //
     // lblInfo
     //
     this.lblInfo.Location = new System.Drawing.Point(8, 10);
     this.lblInfo.Name     = "lblInfo";
     this.lblInfo.Size     = new System.Drawing.Size(514, 20);
     this.lblInfo.TabIndex = 1;
     //
     // frmProtokoll
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
     this.ClientSize        = new System.Drawing.Size(676, 354);
     this.Controls.Add(this.lblInfo);
     this.Controls.Add(this.dataGrid);
     this.Name    = "frmProtokoll";
     this.Text    = "Protokoll";
     this.Resize += new System.EventHandler(this.OnResize);
     this.Load   += new System.EventHandler(this.frmProtokoll_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 33
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnNatrag = new System.Windows.Forms.Button();
     this.btnTrazi = new System.Windows.Forms.Button();
     this.txtRobaSifra = new System.Windows.Forms.TextBox();
     this.lblSkladiste = new System.Windows.Forms.Label();
     this.lblRobaSifra = new System.Windows.Forms.Label();
     this.cboSkladiste = new System.Windows.Forms.ComboBox();
     this.dgRobaPregled = new System.Windows.Forms.DataGrid();
     this.dgRobaPregledTS = new System.Windows.Forms.DataGridTableStyle();
     this.colLokacija = new System.Windows.Forms.DataGridTextBoxColumn();
     this.colStanje = new System.Windows.Forms.DataGridTextBoxColumn();
     this.colKapacitet = new System.Windows.Forms.DataGridTextBoxColumn();
     this.colSifra = new System.Windows.Forms.DataGridTextBoxColumn();
     this.lblRobaNaziv = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // btnNatrag
     //
     this.btnNatrag.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular);
     this.btnNatrag.Location = new System.Drawing.Point(3, 212);
     this.btnNatrag.Name = "btnNatrag";
     this.btnNatrag.Size = new System.Drawing.Size(112, 25);
     this.btnNatrag.TabIndex = 3;
     this.btnNatrag.Text = "Natrag";
     this.btnNatrag.Click += new System.EventHandler(this.btnNatrag_Click);
     //
     // btnTrazi
     //
     this.btnTrazi.Location = new System.Drawing.Point(193, 67);
     this.btnTrazi.Name = "btnTrazi";
     this.btnTrazi.Size = new System.Drawing.Size(40, 23);
     this.btnTrazi.TabIndex = 2;
     this.btnTrazi.Text = "Traži";
     this.btnTrazi.Click += new System.EventHandler(this.btnTrazi_Click);
     //
     // txtRobaSifra
     //
     this.txtRobaSifra.Location = new System.Drawing.Point(3, 22);
     this.txtRobaSifra.MaxLength = 30;
     this.txtRobaSifra.Name = "txtRobaSifra";
     this.txtRobaSifra.Size = new System.Drawing.Size(230, 23);
     this.txtRobaSifra.TabIndex = 0;
     //
     // lblSkladiste
     //
     this.lblSkladiste.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.lblSkladiste.Location = new System.Drawing.Point(3, 48);
     this.lblSkladiste.Name = "lblSkladiste";
     this.lblSkladiste.Size = new System.Drawing.Size(48, 16);
     this.lblSkladiste.Text = "Skladište";
     //
     // lblRobaSifra
     //
     this.lblRobaSifra.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.lblRobaSifra.Location = new System.Drawing.Point(3, 3);
     this.lblRobaSifra.Name = "lblRobaSifra";
     this.lblRobaSifra.Size = new System.Drawing.Size(96, 16);
     this.lblRobaSifra.Text = "Šifra/barkod robe";
     //
     // cboSkladiste
     //
     this.cboSkladiste.DisplayMember = "SkladisteNaziv";
     this.cboSkladiste.Location = new System.Drawing.Point(3, 67);
     this.cboSkladiste.Name = "cboSkladiste";
     this.cboSkladiste.Size = new System.Drawing.Size(184, 23);
     this.cboSkladiste.TabIndex = 1;
     this.cboSkladiste.ValueMember = "MobSkladiste_Oznaka";
     //
     // dgRobaPregled
     //
     this.dgRobaPregled.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.dgRobaPregled.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.dgRobaPregled.Location = new System.Drawing.Point(3, 124);
     this.dgRobaPregled.Name = "dgRobaPregled";
     this.dgRobaPregled.Size = new System.Drawing.Size(230, 82);
     this.dgRobaPregled.TabIndex = 36;
     this.dgRobaPregled.TableStyles.Add(this.dgRobaPregledTS);
     //
     // dgRobaPregledTS
     //
     this.dgRobaPregledTS.GridColumnStyles.Add(this.colLokacija);
     this.dgRobaPregledTS.GridColumnStyles.Add(this.colStanje);
     this.dgRobaPregledTS.GridColumnStyles.Add(this.colKapacitet);
     this.dgRobaPregledTS.GridColumnStyles.Add(this.colSifra);
     this.dgRobaPregledTS.MappingName = "LokacijaRoba";
     //
     // colLokacija
     //
     this.colLokacija.Format = "";
     this.colLokacija.FormatInfo = null;
     this.colLokacija.HeaderText = "Lokacija";
     this.colLokacija.MappingName = "LokacijaOznaka";
     this.colLokacija.NullText = "";
     this.colLokacija.Width = 60;
     //
     // colStanje
     //
     this.colStanje.Format = "";
     this.colStanje.FormatInfo = null;
     this.colStanje.HeaderText = "Stanje";
     this.colStanje.MappingName = "RobaStanje";
     this.colStanje.NullText = "";
     this.colStanje.Width = 70;
     //
     // colKapacitet
     //
     this.colKapacitet.Format = "";
     this.colKapacitet.FormatInfo = null;
     this.colKapacitet.HeaderText = "Kapacitet";
     this.colKapacitet.MappingName = "Kapacitet";
     this.colKapacitet.NullText = "";
     this.colKapacitet.Width = 70;
     //
     // colSifra
     //
     this.colSifra.Format = "";
     this.colSifra.FormatInfo = null;
     this.colSifra.HeaderText = "Šifra robe";
     this.colSifra.MappingName = "RobaSifra";
     this.colSifra.NullText = "";
     this.colSifra.Width = 150;
     //
     // lblRobaNaziv
     //
     this.lblRobaNaziv.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.lblRobaNaziv.Location = new System.Drawing.Point(3, 93);
     this.lblRobaNaziv.Name = "lblRobaNaziv";
     this.lblRobaNaziv.Size = new System.Drawing.Size(230, 28);
     //
     // RobaPregled
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
     this.Controls.Add(this.lblRobaNaziv);
     this.Controls.Add(this.dgRobaPregled);
     this.Controls.Add(this.cboSkladiste);
     this.Controls.Add(this.btnNatrag);
     this.Controls.Add(this.btnTrazi);
     this.Controls.Add(this.txtRobaSifra);
     this.Controls.Add(this.lblSkladiste);
     this.Controls.Add(this.lblRobaSifra);
     this.Name = "RobaPregled";
     this.Size = new System.Drawing.Size(236, 240);
     this.ResumeLayout(false);
 }
 internal void SetDataGridTableInColumn(System.Windows.Forms.DataGridTableStyle value, bool force)
 {
     if (((this.dataGridTableStyle == null) || !this.dataGridTableStyle.Equals(value)) || force)
     {
         if (((value != null) && (value.DataGrid != null)) && !value.DataGrid.Initializing)
         {
             this.SetDataGridInColumn(value.DataGrid);
         }
         this.dataGridTableStyle = value;
     }
 }
Ejemplo n.º 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.tabControl1            = new System.Windows.Forms.TabControl();
     this.tbpOverview            = new System.Windows.Forms.TabPage();
     this.button1                = new System.Windows.Forms.Button();
     this.cmdGoto                = new System.Windows.Forms.Button();
     this.cmdPost                = new System.Windows.Forms.Button();
     this.txtEdit                = new System.Windows.Forms.TextBox();
     this.dgOverview             = new System.Windows.Forms.DataGrid();
     this.chkZero                = new System.Windows.Forms.CheckBox();
     this.tbpVariance            = new System.Windows.Forms.TabPage();
     this.cmdConfirm             = new System.Windows.Forms.Button();
     this.dgVariance             = new System.Windows.Forms.DataGrid();
     this.tbpMessages            = new System.Windows.Forms.TabPage();
     this.dgAlert                = new System.Windows.Forms.DataGrid();
     this.dataGridTableStyle1    = new System.Windows.Forms.DataGridTableStyle();
     this.dataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.tbpSerial              = new System.Windows.Forms.TabPage();
     this.txtSernrEdit           = new System.Windows.Forms.TextBox();
     this.dgSerial               = new System.Windows.Forms.DataGrid();
     this.tabControl1.SuspendLayout();
     this.tbpOverview.SuspendLayout();
     this.tbpVariance.SuspendLayout();
     this.tbpMessages.SuspendLayout();
     this.tbpSerial.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tbpOverview);
     this.tabControl1.Controls.Add(this.tbpVariance);
     this.tabControl1.Controls.Add(this.tbpMessages);
     this.tabControl1.Controls.Add(this.tbpSerial);
     this.tabControl1.Location              = new System.Drawing.Point(0, 16);
     this.tabControl1.Name                  = "tabControl1";
     this.tabControl1.SelectedIndex         = 0;
     this.tabControl1.Size                  = new System.Drawing.Size(237, 238);
     this.tabControl1.TabIndex              = 0;
     this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
     //
     // tbpOverview
     //
     this.tbpOverview.Controls.Add(this.button1);
     this.tbpOverview.Controls.Add(this.cmdGoto);
     this.tbpOverview.Controls.Add(this.cmdPost);
     this.tbpOverview.Controls.Add(this.txtEdit);
     this.tbpOverview.Controls.Add(this.dgOverview);
     this.tbpOverview.Controls.Add(this.chkZero);
     this.tbpOverview.Location = new System.Drawing.Point(4, 25);
     this.tbpOverview.Name     = "tbpOverview";
     this.tbpOverview.Size     = new System.Drawing.Size(229, 209);
     this.tbpOverview.Text     = "All";
     this.tbpOverview.Click   += new System.EventHandler(this.tbpOverview_Click);
     //
     // button1
     //
     this.button1.BackColor = System.Drawing.Color.Red;
     this.button1.Font      = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular);
     this.button1.Location  = new System.Drawing.Point(183, 4);
     this.button1.Name      = "button1";
     this.button1.Size      = new System.Drawing.Size(42, 24);
     this.button1.TabIndex  = 5;
     this.button1.Text      = "Delete";
     this.button1.Click    += new System.EventHandler(this.button1_Click);
     //
     // cmdGoto
     //
     this.cmdGoto.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular);
     this.cmdGoto.Location = new System.Drawing.Point(120, 4);
     this.cmdGoto.Name     = "cmdGoto";
     this.cmdGoto.Size     = new System.Drawing.Size(60, 24);
     this.cmdGoto.TabIndex = 0;
     this.cmdGoto.Text     = "Goto Line";
     this.cmdGoto.Click   += new System.EventHandler(this.cmdGoto_Click);
     //
     // cmdPost
     //
     this.cmdPost.Location = new System.Drawing.Point(80, 4);
     this.cmdPost.Name     = "cmdPost";
     this.cmdPost.Size     = new System.Drawing.Size(35, 24);
     this.cmdPost.TabIndex = 1;
     this.cmdPost.Text     = "Post";
     this.cmdPost.Click   += new System.EventHandler(this.cmdPost_Click);
     //
     // txtEdit
     //
     this.txtEdit.Location     = new System.Drawing.Point(56, 88);
     this.txtEdit.Name         = "txtEdit";
     this.txtEdit.Size         = new System.Drawing.Size(100, 23);
     this.txtEdit.TabIndex     = 2;
     this.txtEdit.Visible      = false;
     this.txtEdit.TextChanged += new System.EventHandler(this.txtEdit_TextChanged);
     //
     // dgOverview
     //
     this.dgOverview.BackgroundColor     = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.dgOverview.Location            = new System.Drawing.Point(1, 35);
     this.dgOverview.Name                = "dgOverview";
     this.dgOverview.Size                = new System.Drawing.Size(225, 170);
     this.dgOverview.TabIndex            = 3;
     this.dgOverview.CurrentCellChanged += new System.EventHandler(this.dgOverview_CurrentCellChanged);
     this.dgOverview.Click              += new System.EventHandler(this.dgOverview_Click);
     //
     // chkZero
     //
     this.chkZero.Location           = new System.Drawing.Point(1, 8);
     this.chkZero.Name               = "chkZero";
     this.chkZero.Size               = new System.Drawing.Size(80, 20);
     this.chkZero.TabIndex           = 4;
     this.chkZero.Text               = "Post Zero";
     this.chkZero.Click             += new System.EventHandler(this.chkZero_Click);
     this.chkZero.CheckStateChanged += new System.EventHandler(this.chkZero_CheckStateChanged);
     //
     // tbpVariance
     //
     this.tbpVariance.Controls.Add(this.cmdConfirm);
     this.tbpVariance.Controls.Add(this.dgVariance);
     this.tbpVariance.Location = new System.Drawing.Point(4, 25);
     this.tbpVariance.Name     = "tbpVariance";
     this.tbpVariance.Size     = new System.Drawing.Size(229, 209);
     this.tbpVariance.Text     = "Variance";
     //
     // cmdConfirm
     //
     this.cmdConfirm.Location = new System.Drawing.Point(64, 8);
     this.cmdConfirm.Name     = "cmdConfirm";
     this.cmdConfirm.Size     = new System.Drawing.Size(96, 20);
     this.cmdConfirm.TabIndex = 0;
     this.cmdConfirm.Text     = "Confirm Post";
     this.cmdConfirm.Visible  = false;
     this.cmdConfirm.Click   += new System.EventHandler(this.cmdConfirm_Click);
     //
     // dgVariance
     //
     this.dgVariance.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.dgVariance.Location        = new System.Drawing.Point(2, 32);
     this.dgVariance.Name            = "dgVariance";
     this.dgVariance.Size            = new System.Drawing.Size(240, 176);
     this.dgVariance.TabIndex        = 1;
     //
     // tbpMessages
     //
     this.tbpMessages.Controls.Add(this.dgAlert);
     this.tbpMessages.Location = new System.Drawing.Point(4, 25);
     this.tbpMessages.Name     = "tbpMessages";
     this.tbpMessages.Size     = new System.Drawing.Size(229, 209);
     this.tbpMessages.Text     = "Alerts";
     //
     // dgAlert
     //
     this.dgAlert.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.dgAlert.Location        = new System.Drawing.Point(2, 8);
     this.dgAlert.Name            = "dgAlert";
     this.dgAlert.Size            = new System.Drawing.Size(240, 200);
     this.dgAlert.TabIndex        = 0;
     this.dgAlert.TableStyles.Add(this.dataGridTableStyle1);
     //
     // dataGridTableStyle1
     //
     this.dataGridTableStyle1.GridColumnStyles.Add(this.dataGridTextBoxColumn1);
     this.dataGridTableStyle1.MappingName = "Alerts";
     //
     // dataGridTextBoxColumn1
     //
     this.dataGridTextBoxColumn1.HeaderText  = "Message";
     this.dataGridTextBoxColumn1.MappingName = "message";
     this.dataGridTextBoxColumn1.Width       = 250;
     //
     // tbpSerial
     //
     this.tbpSerial.Controls.Add(this.txtSernrEdit);
     this.tbpSerial.Controls.Add(this.dgSerial);
     this.tbpSerial.Location = new System.Drawing.Point(4, 25);
     this.tbpSerial.Name     = "tbpSerial";
     this.tbpSerial.Size     = new System.Drawing.Size(229, 209);
     this.tbpSerial.Text     = "Serial #";
     //
     // txtSernrEdit
     //
     this.txtSernrEdit.Location   = new System.Drawing.Point(48, 96);
     this.txtSernrEdit.Name       = "txtSernrEdit";
     this.txtSernrEdit.Size       = new System.Drawing.Size(100, 23);
     this.txtSernrEdit.TabIndex   = 0;
     this.txtSernrEdit.Visible    = false;
     this.txtSernrEdit.LostFocus += new System.EventHandler(this.txtSernrEdit_LostFocus);
     this.txtSernrEdit.Validated += new System.EventHandler(this.txtSernrEdit_Validated);
     //
     // dgSerial
     //
     this.dgSerial.BackgroundColor     = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.dgSerial.Location            = new System.Drawing.Point(8, 8);
     this.dgSerial.Name                = "dgSerial";
     this.dgSerial.Size                = new System.Drawing.Size(214, 195);
     this.dgSerial.TabIndex            = 1;
     this.dgSerial.CurrentCellChanged += new System.EventHandler(this.dgSerial_CurrentCellChanged);
     this.dgSerial.Click              += new System.EventHandler(this.dgSerial_Click);
     //
     // frmBlindStockPost
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.ClientSize          = new System.Drawing.Size(242, 288);
     this.Controls.Add(this.tabControl1);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name        = "frmBlindStockPost";
     this.Text        = "Stock Count";
     this.Closing    += new System.ComponentModel.CancelEventHandler(this.frmStockCountMain_Closing);
     this.Load       += new System.EventHandler(this.frmStockCountMain_Load);
     this.tabControl1.ResumeLayout(false);
     this.tbpOverview.ResumeLayout(false);
     this.tbpVariance.ResumeLayout(false);
     this.tbpMessages.ResumeLayout(false);
     this.tbpSerial.ResumeLayout(false);
     this.ResumeLayout(false);
 }