예제 #1
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);
        }
예제 #2
0
 private System.Windows.Forms.DataGridColumnStyle GetColumnIdOrdem()
 {
     System.Windows.Forms.DataGridColumnStyle dtgdcsColuna = new System.Windows.Forms.DataGridTextBoxColumn();
     dtgdcsColuna.MappingName = TEXT_COLUMN_IDORDEM;
     dtgdcsColuna.HeaderText  = TEXT_COLUMN_IDORDEM;
     dtgdcsColuna.NullText    = "";
     dtgdcsColuna.ReadOnly    = true;
     dtgdcsColuna.Width       = 0;
     return(dtgdcsColuna);
 }
예제 #3
0
 public System.Windows.Forms.DataGridColumnStyle BuildCS(
     string HeaderText,
     string MappingName,
     int Width)
 {
     System.Windows.Forms.DataGridTextBoxColumn cs = new System.Windows.Forms.DataGridTextBoxColumn();
     cs.HeaderText  = HeaderText;
     cs.MappingName = MappingName;
     cs.Width       = Width;
     return(cs);
 }
예제 #4
0
        internal System.Windows.Forms.DataGridColumnStyle dtgdcsColuna(clsColuna cls_col_Coluna)
        {
            System.Windows.Forms.DataGridColumnStyle dtgdcsRetorno = null;

            // Column Style
            if (cls_col_Coluna != null)
            {
                switch (cls_col_Coluna.ColumnStyle)
                {
                case clsManipuladorColunas.DataGridColumnStyle.TextColumn:
                    dtgdcsRetorno = new System.Windows.Forms.DataGridTextBoxColumn();
                    switch (cls_col_Coluna.Alinhamento)
                    {
                    case mdlProdutosLancamento.AlinhamentoHorizontal.esquerda:
                        dtgdcsRetorno.Alignment = System.Windows.Forms.HorizontalAlignment.Left;
                        ((System.Windows.Forms.DataGridTextBoxColumn)dtgdcsRetorno).TextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
                        break;

                    case mdlProdutosLancamento.AlinhamentoHorizontal.direita:
                        dtgdcsRetorno.Alignment = System.Windows.Forms.HorizontalAlignment.Right;
                        ((System.Windows.Forms.DataGridTextBoxColumn)dtgdcsRetorno).TextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
                        if (cls_col_Coluna.IsNumeric)
                        {
                            //									System.Globalization.CultureInfo ciBrasil = new System.Globalization.CultureInfo("pt-BR");
                            //									//((System.Windows.Forms.DataGridTextBoxColumn)dtgdcsRetorno).FormatInfo = ciBrasil;
                            //									((System.Windows.Forms.DataGridTextBoxColumn)dtgdcsRetorno).Format = "{0:#,##0.00}";
                        }
                        break;
                    }
                    break;

                case clsManipuladorColunas.DataGridColumnStyle.BoolColumn:
                    dtgdcsRetorno = new System.Windows.Forms.DataGridBoolColumn();
                    ((System.Windows.Forms.DataGridBoolColumn)dtgdcsRetorno).AllowNull  = false;
                    ((System.Windows.Forms.DataGridBoolColumn)dtgdcsRetorno).TrueValue  = true;
                    ((System.Windows.Forms.DataGridBoolColumn)dtgdcsRetorno).FalseValue = false;
                    break;
                }
                dtgdcsRetorno.HeaderText  = cls_col_Coluna.Nome;
                dtgdcsRetorno.MappingName = cls_col_Coluna.Nome;
                dtgdcsRetorno.NullText    = "";
                dtgdcsRetorno.ReadOnly    = cls_col_Coluna.ReadOnly;
                dtgdcsRetorno.Width       = cls_col_Coluna.Tamanho;
                if (cls_col_Coluna.Inutilizada || cls_col_Coluna.Sistema)
                {
                    dtgdcsRetorno.Width = 0;
                }
            }
            return(dtgdcsRetorno);
        }
예제 #5
0
        private DataColumn AddColumn(string columnTitle, int width = 75)
        {
            var textBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();

            textBoxColumn.HeaderText  = columnTitle;
            textBoxColumn.MappingName = textBoxColumn.HeaderText;

            textBoxColumn.Format     = "";
            textBoxColumn.FormatInfo = null;
            textBoxColumn.Width      = width;

            textBoxColumn.NullText = "";
            dataGridTableStyle.GridColumnStyles.Add(textBoxColumn);
            var column = _DataTable.Columns.Add(columnTitle);

            return(column);
        }
예제 #6
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);
     }
 }
예제 #7
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.Label bairroLabel;
            System.Windows.Forms.Label logradouroLabel;
            System.Windows.Forms.Label plaqueta_idLabel;
            System.Windows.Forms.Label ordemLabel;
            System.Windows.Forms.Label n_portaLabel;
            System.Windows.Forms.Label cod_caboLabel;
            System.Windows.Forms.Label cod_proprietarioLabel;
            System.Windows.Forms.Label cod_posteLabel;
            System.Windows.Forms.Label xLabel;
            System.Windows.Forms.Label yLabel;
            System.Windows.Forms.Label observacaoLabel;
            System.Windows.Forms.Label plaqueta_trafo_fkLabel;
            System.Windows.Forms.Label tipo_alimentacaoLabel;
            System.Windows.Forms.Label label2;
            System.Windows.Forms.Label label1;
            System.Windows.Forms.Label medidorLabel;
            System.Windows.Forms.DataGridTextBoxColumn plaqueta_idDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn ordemDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn plaqueta_trafo_fkDataGridColumnStyleDataGridTextBoxColumn;
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.menuItem1 = new System.Windows.Forms.MenuItem();
            this.menuItem4 = new System.Windows.Forms.MenuItem();
            this.menuItem3 = new System.Windows.Forms.MenuItem();
            this.menuItem6 = new System.Windows.Forms.MenuItem();
            this.menuItem7 = new System.Windows.Forms.MenuItem();
            this.menuItem8 = new System.Windows.Forms.MenuItem();
            this.menuItem9 = new System.Windows.Forms.MenuItem();
            this.menuItem10 = new System.Windows.Forms.MenuItem();
            this.menuItem2 = new System.Windows.Forms.MenuItem();
            this.menuItem5 = new System.Windows.Forms.MenuItem();
            this.citeluzDataSet = new Cadx.db.citeluzDataSet();
            this.plaquetaBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.plaquetaTableAdapter = new Cadx.db.citeluzDataSetTableAdapters.plaquetaTableAdapter();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.plaquetaDataGrid = new System.Windows.Forms.DataGrid();
            this.plaquetaTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.trafo_plaquetaTextBox = new Cadx.CipTextBox();
            this.n_portaTextBox = new Cadx.CipTextBox();
            this.ordemTextBox = new Cadx.CipTextBox();
            this.plaqueta_idTextBox = new Cadx.CipTextBox();
            this.logradouroTextBox = new Cadx.CipTextBox();
            this.bairroTextBox = new Cadx.CipTextBox();
            this.tabPage3 = new System.Windows.Forms.TabPage();
            this.medidorTextBox = new Cadx.CipTextBox();
            this.medidoCheck = new System.Windows.Forms.CheckBox();
            this.tipo_alimentacaoComboBox = new System.Windows.Forms.ComboBox();
            this.cod_caboComboBox = new System.Windows.Forms.ComboBox();
            this.cod_proprietarioComboBox = new System.Windows.Forms.ComboBox();
            this.cod_posteComboBox = new System.Windows.Forms.ComboBox();
            this.tabPage4 = new System.Windows.Forms.TabPage();
            this.txtStatus = new System.Windows.Forms.Label();
            this.yTextBox = new System.Windows.Forms.TextBox();
            this.xTextBox = new System.Windows.Forms.TextBox();
            this.txtAcc = new System.Windows.Forms.TextBox();
            this.txtSatelites = new System.Windows.Forms.TextBox();
            this.observacaoTextBox = new Cadx.CipTextBox();
            this.totalLabel = new System.Windows.Forms.Label();
            bairroLabel = new System.Windows.Forms.Label();
            logradouroLabel = new System.Windows.Forms.Label();
            plaqueta_idLabel = new System.Windows.Forms.Label();
            ordemLabel = new System.Windows.Forms.Label();
            n_portaLabel = new System.Windows.Forms.Label();
            cod_caboLabel = new System.Windows.Forms.Label();
            cod_proprietarioLabel = new System.Windows.Forms.Label();
            cod_posteLabel = new System.Windows.Forms.Label();
            xLabel = new System.Windows.Forms.Label();
            yLabel = new System.Windows.Forms.Label();
            observacaoLabel = new System.Windows.Forms.Label();
            plaqueta_trafo_fkLabel = new System.Windows.Forms.Label();
            tipo_alimentacaoLabel = new System.Windows.Forms.Label();
            label2 = new System.Windows.Forms.Label();
            label1 = new System.Windows.Forms.Label();
            medidorLabel = new System.Windows.Forms.Label();
            plaqueta_idDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            ordemDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            plaqueta_trafo_fkDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            ((System.ComponentModel.ISupportInitialize)(this.citeluzDataSet)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.plaquetaBindingSource)).BeginInit();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.tabPage2.SuspendLayout();
            this.tabPage3.SuspendLayout();
            this.tabPage4.SuspendLayout();
            this.SuspendLayout();
            // 
            // bairroLabel
            // 
            bairroLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            bairroLabel.Location = new System.Drawing.Point(59, 91);
            bairroLabel.Name = "bairroLabel";
            bairroLabel.Size = new System.Drawing.Size(47, 14);
            bairroLabel.Text = "bairro:";
            // 
            // logradouroLabel
            // 
            logradouroLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            logradouroLabel.Location = new System.Drawing.Point(27, 118);
            logradouroLabel.Name = "logradouroLabel";
            logradouroLabel.Size = new System.Drawing.Size(79, 14);
            logradouroLabel.Text = "logradouro:";
            // 
            // plaqueta_idLabel
            // 
            plaqueta_idLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            plaqueta_idLabel.Location = new System.Drawing.Point(26, 64);
            plaqueta_idLabel.Name = "plaqueta_idLabel";
            plaqueta_idLabel.Size = new System.Drawing.Size(80, 14);
            plaqueta_idLabel.Text = "plaqueta id:";
            // 
            // ordemLabel
            // 
            ordemLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            ordemLabel.Location = new System.Drawing.Point(56, 37);
            ordemLabel.Name = "ordemLabel";
            ordemLabel.Size = new System.Drawing.Size(50, 14);
            ordemLabel.Text = "ordem:";
            // 
            // n_portaLabel
            // 
            n_portaLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            n_portaLabel.Location = new System.Drawing.Point(49, 145);
            n_portaLabel.Name = "n_portaLabel";
            n_portaLabel.Size = new System.Drawing.Size(57, 14);
            n_portaLabel.Text = "n porta:";
            // 
            // cod_caboLabel
            // 
            cod_caboLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            cod_caboLabel.Location = new System.Drawing.Point(26, 82);
            cod_caboLabel.Name = "cod_caboLabel";
            cod_caboLabel.Size = new System.Drawing.Size(66, 14);
            cod_caboLabel.Text = "cod cabo:";
            // 
            // cod_proprietarioLabel
            // 
            cod_proprietarioLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            cod_proprietarioLabel.Location = new System.Drawing.Point(4, 54);
            cod_proprietarioLabel.Name = "cod_proprietarioLabel";
            cod_proprietarioLabel.Size = new System.Drawing.Size(88, 14);
            cod_proprietarioLabel.Text = "proprietario:";
            // 
            // cod_posteLabel
            // 
            cod_posteLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            cod_posteLabel.Location = new System.Drawing.Point(7, 7);
            cod_posteLabel.Name = "cod_posteLabel";
            cod_posteLabel.Size = new System.Drawing.Size(49, 20);
            cod_posteLabel.Text = "poste:";
            // 
            // xLabel
            // 
            xLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            xLabel.Location = new System.Drawing.Point(69, 12);
            xLabel.Name = "xLabel";
            xLabel.Size = new System.Drawing.Size(18, 14);
            xLabel.Text = "x:";
            // 
            // yLabel
            // 
            yLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            yLabel.Location = new System.Drawing.Point(69, 39);
            yLabel.Name = "yLabel";
            yLabel.Size = new System.Drawing.Size(18, 14);
            yLabel.Text = "y:";
            // 
            // observacaoLabel
            // 
            observacaoLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            observacaoLabel.Location = new System.Drawing.Point(7, 159);
            observacaoLabel.Name = "observacaoLabel";
            observacaoLabel.Size = new System.Drawing.Size(80, 14);
            observacaoLabel.Text = "observacao:";
            // 
            // plaqueta_trafo_fkLabel
            // 
            plaqueta_trafo_fkLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            plaqueta_trafo_fkLabel.Location = new System.Drawing.Point(7, 10);
            plaqueta_trafo_fkLabel.Name = "plaqueta_trafo_fkLabel";
            plaqueta_trafo_fkLabel.Size = new System.Drawing.Size(99, 18);
            plaqueta_trafo_fkLabel.Text = "plaqueta trafo:";
            // 
            // tipo_alimentacaoLabel
            // 
            tipo_alimentacaoLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            tipo_alimentacaoLabel.Location = new System.Drawing.Point(4, 108);
            tipo_alimentacaoLabel.Name = "tipo_alimentacaoLabel";
            tipo_alimentacaoLabel.Size = new System.Drawing.Size(88, 14);
            tipo_alimentacaoLabel.Text = "alimentacao:";
            // 
            // label2
            // 
            label2.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            label2.Location = new System.Drawing.Point(23, 96);
            label2.Name = "label2";
            label2.Size = new System.Drawing.Size(66, 14);
            label2.Text = "Satélites:";
            // 
            // label1
            // 
            label1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            label1.Location = new System.Drawing.Point(23, 69);
            label1.Name = "label1";
            label1.Size = new System.Drawing.Size(66, 14);
            label1.Text = "Acurácia:";
            // 
            // medidorLabel
            // 
            medidorLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            medidorLabel.Location = new System.Drawing.Point(26, 162);
            medidorLabel.Name = "medidorLabel";
            medidorLabel.Size = new System.Drawing.Size(61, 14);
            medidorLabel.Text = "medidor:";
            // 
            // plaqueta_idDataGridColumnStyleDataGridTextBoxColumn
            // 
            plaqueta_idDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            plaqueta_idDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "plaqueta";
            plaqueta_idDataGridColumnStyleDataGridTextBoxColumn.MappingName = "plaqueta_id";
            plaqueta_idDataGridColumnStyleDataGridTextBoxColumn.Width = 80;
            // 
            // ordemDataGridColumnStyleDataGridTextBoxColumn
            // 
            ordemDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            ordemDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "ordem";
            ordemDataGridColumnStyleDataGridTextBoxColumn.MappingName = "ordem";
            ordemDataGridColumnStyleDataGridTextBoxColumn.Width = 40;
            // 
            // plaqueta_trafo_fkDataGridColumnStyleDataGridTextBoxColumn
            // 
            plaqueta_trafo_fkDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            plaqueta_trafo_fkDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "plaqueta_trafo";
            plaqueta_trafo_fkDataGridColumnStyleDataGridTextBoxColumn.MappingName = "plaqueta_trafo_fk";
            plaqueta_trafo_fkDataGridColumnStyleDataGridTextBoxColumn.Width = 100;
            // 
            // mainMenu1
            // 
            this.mainMenu1.MenuItems.Add(this.menuItem1);
            // 
            // menuItem1
            // 
            this.menuItem1.MenuItems.Add(this.menuItem4);
            this.menuItem1.MenuItems.Add(this.menuItem3);
            this.menuItem1.MenuItems.Add(this.menuItem6);
            this.menuItem1.MenuItems.Add(this.menuItem10);
            this.menuItem1.MenuItems.Add(this.menuItem2);
            this.menuItem1.MenuItems.Add(this.menuItem5);
            this.menuItem1.Text = "Opções";
            // 
            // menuItem4
            // 
            this.menuItem4.Text = "Novo";
            this.menuItem4.Click += new System.EventHandler(this.menuItem4_Click);
            // 
            // menuItem3
            // 
            this.menuItem3.Text = "Salvar";
            this.menuItem3.Click += new System.EventHandler(this.menuItem3_Click);
            // 
            // menuItem6
            // 
            this.menuItem6.MenuItems.Add(this.menuItem7);
            this.menuItem6.MenuItems.Add(this.menuItem8);
            this.menuItem6.MenuItems.Add(this.menuItem9);
            this.menuItem6.Text = "Mais";
            // 
            // menuItem7
            // 
            this.menuItem7.Text = "Materiais";
            this.menuItem7.Click += new System.EventHandler(this.menuItem7_Click);
            // 
            // menuItem8
            // 
            this.menuItem8.Text = "-";
            // 
            // menuItem9
            // 
            this.menuItem9.Text = "Conectar Trimble";
            this.menuItem9.Click += new System.EventHandler(this.menuItem9_Click);
            // 
            // menuItem10
            // 
            this.menuItem10.Text = "Excluir";
            this.menuItem10.Click += new System.EventHandler(this.menuItem10_Click);
            // 
            // menuItem2
            // 
            this.menuItem2.Text = "-";
            // 
            // menuItem5
            // 
            this.menuItem5.Text = "Sair";
            this.menuItem5.Click += new System.EventHandler(this.menuItem5_Click);
            // 
            // citeluzDataSet
            // 
            this.citeluzDataSet.DataSetName = "citeluzDataSet";
            this.citeluzDataSet.Prefix = "";
            this.citeluzDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // plaquetaBindingSource
            // 
            this.plaquetaBindingSource.DataMember = "plaqueta";
            this.plaquetaBindingSource.DataSource = this.citeluzDataSet;
            // 
            // plaquetaTableAdapter
            // 
            this.plaquetaTableAdapter.ClearBeforeFill = true;
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Controls.Add(this.tabPage3);
            this.tabControl1.Controls.Add(this.tabPage4);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.Location = new System.Drawing.Point(0, 0);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(240, 294);
            this.tabControl1.TabIndex = 0;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.plaquetaDataGrid);
            this.tabPage1.Location = new System.Drawing.Point(0, 0);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Size = new System.Drawing.Size(240, 271);
            this.tabPage1.Text = "Tabela";
            // 
            // plaquetaDataGrid
            // 
            this.plaquetaDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.plaquetaDataGrid.DataSource = this.plaquetaBindingSource;
            this.plaquetaDataGrid.Dock = System.Windows.Forms.DockStyle.Fill;
            this.plaquetaDataGrid.Location = new System.Drawing.Point(0, 0);
            this.plaquetaDataGrid.Name = "plaquetaDataGrid";
            this.plaquetaDataGrid.RowHeadersVisible = false;
            this.plaquetaDataGrid.Size = new System.Drawing.Size(240, 271);
            this.plaquetaDataGrid.TabIndex = 1;
            this.plaquetaDataGrid.TableStyles.Add(this.plaquetaTableStyleDataGridTableStyle);
            // 
            // plaquetaTableStyleDataGridTableStyle
            // 
            this.plaquetaTableStyleDataGridTableStyle.GridColumnStyles.Add(ordemDataGridColumnStyleDataGridTextBoxColumn);
            this.plaquetaTableStyleDataGridTableStyle.GridColumnStyles.Add(plaqueta_trafo_fkDataGridColumnStyleDataGridTextBoxColumn);
            this.plaquetaTableStyleDataGridTableStyle.GridColumnStyles.Add(plaqueta_idDataGridColumnStyleDataGridTextBoxColumn);
            this.plaquetaTableStyleDataGridTableStyle.MappingName = "plaqueta";
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(this.totalLabel);
            this.tabPage2.Controls.Add(this.trafo_plaquetaTextBox);
            this.tabPage2.Controls.Add(this.n_portaTextBox);
            this.tabPage2.Controls.Add(this.ordemTextBox);
            this.tabPage2.Controls.Add(this.plaqueta_idTextBox);
            this.tabPage2.Controls.Add(this.logradouroTextBox);
            this.tabPage2.Controls.Add(this.bairroTextBox);
            this.tabPage2.Controls.Add(plaqueta_trafo_fkLabel);
            this.tabPage2.Controls.Add(n_portaLabel);
            this.tabPage2.Controls.Add(ordemLabel);
            this.tabPage2.Controls.Add(plaqueta_idLabel);
            this.tabPage2.Controls.Add(logradouroLabel);
            this.tabPage2.Controls.Add(bairroLabel);
            this.tabPage2.Location = new System.Drawing.Point(0, 0);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Size = new System.Drawing.Size(240, 271);
            this.tabPage2.Text = "tabPage2";
            // 
            // trafo_plaquetaTextBox
            // 
            this.trafo_plaquetaTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.plaquetaBindingSource, "plaqueta_trafo_fk", true));
            this.trafo_plaquetaTextBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.trafo_plaquetaTextBox.Location = new System.Drawing.Point(106, 7);
            this.trafo_plaquetaTextBox.Name = "trafo_plaquetaTextBox";
            this.trafo_plaquetaTextBox.ReadOnly = true;
            this.trafo_plaquetaTextBox.Size = new System.Drawing.Size(127, 19);
            this.trafo_plaquetaTextBox.TabIndex = 18;
            // 
            // n_portaTextBox
            // 
            this.n_portaTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.plaquetaBindingSource, "n_porta", true));
            this.n_portaTextBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.n_portaTextBox.Location = new System.Drawing.Point(106, 142);
            this.n_portaTextBox.Name = "n_portaTextBox";
            this.n_portaTextBox.Size = new System.Drawing.Size(127, 19);
            this.n_portaTextBox.TabIndex = 17;
            // 
            // ordemTextBox
            // 
            this.ordemTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.plaquetaBindingSource, "ordem", true));
            this.ordemTextBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.ordemTextBox.Location = new System.Drawing.Point(106, 34);
            this.ordemTextBox.Name = "ordemTextBox";
            this.ordemTextBox.Size = new System.Drawing.Size(63, 19);
            this.ordemTextBox.TabIndex = 15;
            // 
            // plaqueta_idTextBox
            // 
            this.plaqueta_idTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.plaquetaBindingSource, "plaqueta_id", true));
            this.plaqueta_idTextBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.plaqueta_idTextBox.Location = new System.Drawing.Point(106, 61);
            this.plaqueta_idTextBox.Name = "plaqueta_idTextBox";
            this.plaqueta_idTextBox.Size = new System.Drawing.Size(127, 19);
            this.plaqueta_idTextBox.TabIndex = 13;
            // 
            // logradouroTextBox
            // 
            this.logradouroTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.plaquetaBindingSource, "logradouro", true));
            this.logradouroTextBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.logradouroTextBox.Location = new System.Drawing.Point(106, 115);
            this.logradouroTextBox.Name = "logradouroTextBox";
            this.logradouroTextBox.Size = new System.Drawing.Size(127, 19);
            this.logradouroTextBox.TabIndex = 7;
            // 
            // bairroTextBox
            // 
            this.bairroTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.plaquetaBindingSource, "bairro", true));
            this.bairroTextBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.bairroTextBox.Location = new System.Drawing.Point(106, 88);
            this.bairroTextBox.Name = "bairroTextBox";
            this.bairroTextBox.Size = new System.Drawing.Size(127, 19);
            this.bairroTextBox.TabIndex = 5;
            // 
            // tabPage3
            // 
            this.tabPage3.Controls.Add(this.medidorTextBox);
            this.tabPage3.Controls.Add(this.medidoCheck);
            this.tabPage3.Controls.Add(medidorLabel);
            this.tabPage3.Controls.Add(this.tipo_alimentacaoComboBox);
            this.tabPage3.Controls.Add(this.cod_caboComboBox);
            this.tabPage3.Controls.Add(this.cod_proprietarioComboBox);
            this.tabPage3.Controls.Add(this.cod_posteComboBox);
            this.tabPage3.Controls.Add(tipo_alimentacaoLabel);
            this.tabPage3.Controls.Add(cod_caboLabel);
            this.tabPage3.Controls.Add(cod_proprietarioLabel);
            this.tabPage3.Controls.Add(cod_posteLabel);
            this.tabPage3.Location = new System.Drawing.Point(0, 0);
            this.tabPage3.Name = "tabPage3";
            this.tabPage3.Size = new System.Drawing.Size(240, 271);
            this.tabPage3.Text = "tabPage3";
            // 
            // medidorTextBox
            // 
            this.medidorTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.plaquetaBindingSource, "medidor", true));
            this.medidorTextBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.medidorTextBox.Location = new System.Drawing.Point(98, 162);
            this.medidorTextBox.Name = "medidorTextBox";
            this.medidorTextBox.Size = new System.Drawing.Size(135, 19);
            this.medidorTextBox.TabIndex = 46;
            // 
            // medidoCheck
            // 
            this.medidoCheck.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.plaquetaBindingSource, "medido", true));
            this.medidoCheck.Location = new System.Drawing.Point(125, 136);
            this.medidoCheck.Name = "medidoCheck";
            this.medidoCheck.Size = new System.Drawing.Size(100, 20);
            this.medidoCheck.TabIndex = 47;
            this.medidoCheck.Text = "Medido";
            // 
            // tipo_alimentacaoComboBox
            // 
            this.tipo_alimentacaoComboBox.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.plaquetaBindingSource, "tipo_alimentacao", true));
            this.tipo_alimentacaoComboBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.tipo_alimentacaoComboBox.Location = new System.Drawing.Point(98, 108);
            this.tipo_alimentacaoComboBox.Name = "tipo_alimentacaoComboBox";
            this.tipo_alimentacaoComboBox.Size = new System.Drawing.Size(135, 20);
            this.tipo_alimentacaoComboBox.TabIndex = 39;
            // 
            // cod_caboComboBox
            // 
            this.cod_caboComboBox.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.plaquetaBindingSource, "cod_cabo", true));
            this.cod_caboComboBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.cod_caboComboBox.Location = new System.Drawing.Point(98, 82);
            this.cod_caboComboBox.Name = "cod_caboComboBox";
            this.cod_caboComboBox.Size = new System.Drawing.Size(135, 20);
            this.cod_caboComboBox.TabIndex = 33;
            // 
            // cod_proprietarioComboBox
            // 
            this.cod_proprietarioComboBox.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.plaquetaBindingSource, "cod_proprietario", true));
            this.cod_proprietarioComboBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.cod_proprietarioComboBox.Location = new System.Drawing.Point(98, 54);
            this.cod_proprietarioComboBox.Name = "cod_proprietarioComboBox";
            this.cod_proprietarioComboBox.Size = new System.Drawing.Size(135, 20);
            this.cod_proprietarioComboBox.TabIndex = 32;
            // 
            // cod_posteComboBox
            // 
            this.cod_posteComboBox.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.plaquetaBindingSource, "cod_poste", true));
            this.cod_posteComboBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.cod_posteComboBox.Location = new System.Drawing.Point(7, 25);
            this.cod_posteComboBox.Name = "cod_posteComboBox";
            this.cod_posteComboBox.Size = new System.Drawing.Size(226, 20);
            this.cod_posteComboBox.TabIndex = 31;
            // 
            // tabPage4
            // 
            this.tabPage4.Controls.Add(this.txtStatus);
            this.tabPage4.Controls.Add(this.yTextBox);
            this.tabPage4.Controls.Add(this.xTextBox);
            this.tabPage4.Controls.Add(label2);
            this.tabPage4.Controls.Add(label1);
            this.tabPage4.Controls.Add(this.txtAcc);
            this.tabPage4.Controls.Add(this.txtSatelites);
            this.tabPage4.Controls.Add(observacaoLabel);
            this.tabPage4.Controls.Add(this.observacaoTextBox);
            this.tabPage4.Controls.Add(yLabel);
            this.tabPage4.Controls.Add(xLabel);
            this.tabPage4.Location = new System.Drawing.Point(0, 0);
            this.tabPage4.Name = "tabPage4";
            this.tabPage4.Size = new System.Drawing.Size(240, 271);
            this.tabPage4.Text = "tabPage4";
            // 
            // txtStatus
            // 
            this.txtStatus.Font = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Bold);
            this.txtStatus.Location = new System.Drawing.Point(3, 126);
            this.txtStatus.Name = "txtStatus";
            this.txtStatus.Size = new System.Drawing.Size(235, 18);
            this.txtStatus.Text = "Status";
            // 
            // yTextBox
            // 
            this.yTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.plaquetaBindingSource, "y", true));
            this.yTextBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.yTextBox.Location = new System.Drawing.Point(93, 39);
            this.yTextBox.Name = "yTextBox";
            this.yTextBox.ReadOnly = true;
            this.yTextBox.Size = new System.Drawing.Size(140, 19);
            this.yTextBox.TabIndex = 3;
            // 
            // xTextBox
            // 
            this.xTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.plaquetaBindingSource, "x", true));
            this.xTextBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.xTextBox.Location = new System.Drawing.Point(93, 12);
            this.xTextBox.Name = "xTextBox";
            this.xTextBox.ReadOnly = true;
            this.xTextBox.Size = new System.Drawing.Size(140, 19);
            this.xTextBox.TabIndex = 1;
            // 
            // txtAcc
            // 
            this.txtAcc.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.txtAcc.Location = new System.Drawing.Point(93, 64);
            this.txtAcc.Name = "txtAcc";
            this.txtAcc.ReadOnly = true;
            this.txtAcc.Size = new System.Drawing.Size(84, 19);
            this.txtAcc.TabIndex = 46;
            // 
            // txtSatelites
            // 
            this.txtSatelites.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.txtSatelites.Location = new System.Drawing.Point(93, 91);
            this.txtSatelites.Name = "txtSatelites";
            this.txtSatelites.ReadOnly = true;
            this.txtSatelites.Size = new System.Drawing.Size(84, 19);
            this.txtSatelites.TabIndex = 45;
            // 
            // observacaoTextBox
            // 
            this.observacaoTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.plaquetaBindingSource, "observacao", true));
            this.observacaoTextBox.Location = new System.Drawing.Point(7, 176);
            this.observacaoTextBox.Multiline = true;
            this.observacaoTextBox.Name = "observacaoTextBox";
            this.observacaoTextBox.Size = new System.Drawing.Size(226, 70);
            this.observacaoTextBox.TabIndex = 5;
            // 
            // totalLabel
            // 
            this.totalLabel.Location = new System.Drawing.Point(3, 251);
            this.totalLabel.Name = "totalLabel";
            this.totalLabel.Size = new System.Drawing.Size(100, 20);
            this.totalLabel.Text = "totalLabel";
            // 
            // Plaqueta
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(240, 294);
            this.ControlBox = false;
            this.Controls.Add(this.tabControl1);
            this.Location = new System.Drawing.Point(0, 0);
            this.Menu = this.mainMenu1;
            this.MinimizeBox = false;
            this.Name = "Plaqueta";
            this.Text = "Plaqueta";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.Plaqueta_Load);
            ((System.ComponentModel.ISupportInitialize)(this.citeluzDataSet)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.plaquetaBindingSource)).EndInit();
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.tabPage2.ResumeLayout(false);
            this.tabPage3.ResumeLayout(false);
            this.tabPage4.ResumeLayout(false);
            this.ResumeLayout(false);

        }
예제 #8
0
파일: Form1.cs 프로젝트: uwitec/carrey-rms
 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);
 }
 /// <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.DataGridTextBoxColumn optimisticLockFieldDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.DataGridTextBoxColumn commandeDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.DataGridTextBoxColumn codeDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.DataGridTextBoxColumn dateInscriptionDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.DataGridTextBoxColumn preNomDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.DataGridTextBoxColumn nomDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.DataGridTextBoxColumn oidDataGridColumnStyleDataGridTextBoxColumn;
     this.mainMenu1            = new System.Windows.Forms.MainMenu();
     this.entretienlDataSet    = new Entretien.Client.entretienlDataSet();
     this.clientBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.clientTableAdapter   = new Entretien.Client.entretienlDataSetTableAdapters.ClientTableAdapter();
     this.clientTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
     this.clientDataGrid          = new System.Windows.Forms.DataGrid();
     this.newMenuItemMenuItem     = new System.Windows.Forms.MenuItem();
     this.clientBindingSource     = new System.Windows.Forms.BindingSource(this.components);
     this.dbeDataSetBindingSource = new System.Windows.Forms.BindingSource(this.components);
     optimisticLockFieldDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
     commandeDataGridColumnStyleDataGridTextBoxColumn            = new System.Windows.Forms.DataGridTextBoxColumn();
     codeDataGridColumnStyleDataGridTextBoxColumn            = new System.Windows.Forms.DataGridTextBoxColumn();
     dateInscriptionDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
     preNomDataGridColumnStyleDataGridTextBoxColumn          = new System.Windows.Forms.DataGridTextBoxColumn();
     nomDataGridColumnStyleDataGridTextBoxColumn             = new System.Windows.Forms.DataGridTextBoxColumn();
     oidDataGridColumnStyleDataGridTextBoxColumn             = new System.Windows.Forms.DataGridTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.entretienlDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clientBindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clientBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dbeDataSetBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.Add(this.newMenuItemMenuItem);
     //
     // entretienlDataSet
     //
     this.entretienlDataSet.DataSetName             = "entretienlDataSet";
     this.entretienlDataSet.Prefix                  = "";
     this.entretienlDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // clientBindingSource1
     //
     this.clientBindingSource1.DataMember = "Client";
     this.clientBindingSource1.DataSource = this.entretienlDataSet;
     //
     // clientTableAdapter
     //
     this.clientTableAdapter.ClearBeforeFill = true;
     //
     // clientTableStyleDataGridTableStyle
     //
     this.clientTableStyleDataGridTableStyle.GridColumnStyles.Add(oidDataGridColumnStyleDataGridTextBoxColumn);
     this.clientTableStyleDataGridTableStyle.GridColumnStyles.Add(nomDataGridColumnStyleDataGridTextBoxColumn);
     this.clientTableStyleDataGridTableStyle.GridColumnStyles.Add(preNomDataGridColumnStyleDataGridTextBoxColumn);
     this.clientTableStyleDataGridTableStyle.GridColumnStyles.Add(dateInscriptionDataGridColumnStyleDataGridTextBoxColumn);
     this.clientTableStyleDataGridTableStyle.GridColumnStyles.Add(codeDataGridColumnStyleDataGridTextBoxColumn);
     this.clientTableStyleDataGridTableStyle.GridColumnStyles.Add(commandeDataGridColumnStyleDataGridTextBoxColumn);
     this.clientTableStyleDataGridTableStyle.GridColumnStyles.Add(optimisticLockFieldDataGridColumnStyleDataGridTextBoxColumn);
     this.clientTableStyleDataGridTableStyle.MappingName = "Client";
     //
     // optimisticLockFieldDataGridColumnStyleDataGridTextBoxColumn
     //
     optimisticLockFieldDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     optimisticLockFieldDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     optimisticLockFieldDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "OptimisticLockField";
     optimisticLockFieldDataGridColumnStyleDataGridTextBoxColumn.MappingName = "OptimisticLockField";
     //
     // commandeDataGridColumnStyleDataGridTextBoxColumn
     //
     commandeDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     commandeDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     commandeDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "Commande";
     commandeDataGridColumnStyleDataGridTextBoxColumn.MappingName = "Commande";
     //
     // codeDataGridColumnStyleDataGridTextBoxColumn
     //
     codeDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     codeDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     codeDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "Code";
     codeDataGridColumnStyleDataGridTextBoxColumn.MappingName = "Code";
     //
     // dateInscriptionDataGridColumnStyleDataGridTextBoxColumn
     //
     dateInscriptionDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     dateInscriptionDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     dateInscriptionDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "DateInscription";
     dateInscriptionDataGridColumnStyleDataGridTextBoxColumn.MappingName = "DateInscription";
     //
     // preNomDataGridColumnStyleDataGridTextBoxColumn
     //
     preNomDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     preNomDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     preNomDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "PreNom";
     preNomDataGridColumnStyleDataGridTextBoxColumn.MappingName = "PreNom";
     //
     // nomDataGridColumnStyleDataGridTextBoxColumn
     //
     nomDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     nomDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     nomDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "Nom";
     nomDataGridColumnStyleDataGridTextBoxColumn.MappingName = "Nom";
     //
     // oidDataGridColumnStyleDataGridTextBoxColumn
     //
     oidDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     oidDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     oidDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "Oid";
     oidDataGridColumnStyleDataGridTextBoxColumn.MappingName = "Oid";
     //
     // clientDataGrid
     //
     this.clientDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.clientDataGrid.DataSource      = this.clientBindingSource1;
     this.clientDataGrid.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.clientDataGrid.Location        = new System.Drawing.Point(0, 0);
     this.clientDataGrid.Name            = "clientDataGrid";
     this.clientDataGrid.Size            = new System.Drawing.Size(240, 268);
     this.clientDataGrid.TabIndex        = 4;
     this.clientDataGrid.TableStyles.Add(this.clientTableStyleDataGridTableStyle);
     //this.clientDataGrid.CurrentCellChanged += new System.EventHandler(this.clientDataGrid_CurrentCellChanged);
     this.clientDataGrid.Click += new System.EventHandler(this.clientDataGrid_Click);
     //
     // newMenuItemMenuItem
     //
     this.newMenuItemMenuItem.Text   = "New";
     this.newMenuItemMenuItem.Click += new System.EventHandler(this.newMenuItemMenuItem_Click);
     //
     // clientBindingSource
     //
     this.clientBindingSource.DataMember = "Client";
     //
     // ListeClient
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.AutoScroll          = true;
     this.ClientSize          = new System.Drawing.Size(240, 268);
     this.Controls.Add(this.clientDataGrid);
     this.Menu  = this.mainMenu1;
     this.Name  = "ListeClient";
     this.Text  = "DataGrid";
     this.Load += new System.EventHandler(this.ListeClient_Load);
     ((System.ComponentModel.ISupportInitialize)(this.entretienlDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clientBindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clientBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dbeDataSetBindingSource)).EndInit();
     this.ResumeLayout(false);
 }
예제 #10
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);
 }
예제 #11
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);
 }
예제 #12
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.Label descricaoLabel;
            System.Windows.Forms.Label latLabel;
            System.Windows.Forms.Label lonLabel;
            System.Windows.Forms.DataGridTextBoxColumn descricaoDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn projeto_idDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn tipo_faixa_idDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn latDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn lonDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.Label tipo_faixa_idLabel;
            System.Windows.Forms.Label projeto_idLabel;
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.menuItem1 = new System.Windows.Forms.MenuItem();
            this.menuItem3 = new System.Windows.Forms.MenuItem();
            this.menuItem4 = new System.Windows.Forms.MenuItem();
            this.menuItem5 = new System.Windows.Forms.MenuItem();
            this.menuItem6 = new System.Windows.Forms.MenuItem();
            this.menuItem2 = new System.Windows.Forms.MenuItem();
            this.descricaoTextBox = new System.Windows.Forms.TextBox();
            this.faixaservidaoBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.lptDataSet = new Colibri.db.lptDataSet();
            this.latTextBox = new System.Windows.Forms.TextBox();
            this.lonTextBox = new System.Windows.Forms.TextBox();
            this.faixa_servidaoDataGrid = new System.Windows.Forms.DataGrid();
            this.faixa_servidaoTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
            this.tipofaixaBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.comboBox1 = new System.Windows.Forms.ComboBox();
            this.projeto_idTextBox = new System.Windows.Forms.TextBox();
            this.faixa_servidaoTableAdapter = new Colibri.db.lptDataSetTableAdapters.faixa_servidaoTableAdapter();
            this.tipo_faixaTableAdapter = new Colibri.db.lptDataSetTableAdapters.tipo_faixaTableAdapter();
            descricaoLabel = new System.Windows.Forms.Label();
            latLabel = new System.Windows.Forms.Label();
            lonLabel = new System.Windows.Forms.Label();
            descricaoDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            projeto_idDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            tipo_faixa_idDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            latDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            lonDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            tipo_faixa_idLabel = new System.Windows.Forms.Label();
            projeto_idLabel = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.faixaservidaoBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lptDataSet)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tipofaixaBindingSource)).BeginInit();
            this.SuspendLayout();
            // 
            // descricaoLabel
            // 
            descricaoLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            descricaoLabel.Location = new System.Drawing.Point(3, 2);
            descricaoLabel.Name = "descricaoLabel";
            descricaoLabel.Size = new System.Drawing.Size(67, 14);
            descricaoLabel.Text = "descricao:";
            // 
            // latLabel
            // 
            latLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            latLabel.Location = new System.Drawing.Point(3, 46);
            latLabel.Name = "latLabel";
            latLabel.Size = new System.Drawing.Size(27, 14);
            latLabel.Text = "lat:";
            // 
            // lonLabel
            // 
            lonLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            lonLabel.Location = new System.Drawing.Point(109, 46);
            lonLabel.Name = "lonLabel";
            lonLabel.Size = new System.Drawing.Size(30, 14);
            lonLabel.Text = "lon:";
            // 
            // descricaoDataGridColumnStyleDataGridTextBoxColumn
            // 
            descricaoDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            descricaoDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            descricaoDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "descricao";
            descricaoDataGridColumnStyleDataGridTextBoxColumn.MappingName = "descricao";
            // 
            // projeto_idDataGridColumnStyleDataGridTextBoxColumn
            // 
            projeto_idDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            projeto_idDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            projeto_idDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "projeto_id";
            projeto_idDataGridColumnStyleDataGridTextBoxColumn.MappingName = "projeto_id";
            // 
            // tipo_faixa_idDataGridColumnStyleDataGridTextBoxColumn
            // 
            tipo_faixa_idDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            tipo_faixa_idDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            tipo_faixa_idDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "tipo_faixa_id";
            tipo_faixa_idDataGridColumnStyleDataGridTextBoxColumn.MappingName = "tipo_faixa_id";
            // 
            // latDataGridColumnStyleDataGridTextBoxColumn
            // 
            latDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            latDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            latDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "lat";
            latDataGridColumnStyleDataGridTextBoxColumn.MappingName = "lat";
            // 
            // lonDataGridColumnStyleDataGridTextBoxColumn
            // 
            lonDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            lonDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            lonDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "lon";
            lonDataGridColumnStyleDataGridTextBoxColumn.MappingName = "lon";
            // 
            // tipo_faixa_idLabel
            // 
            tipo_faixa_idLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            tipo_faixa_idLabel.Location = new System.Drawing.Point(3, 88);
            tipo_faixa_idLabel.Name = "tipo_faixa_idLabel";
            tipo_faixa_idLabel.Size = new System.Drawing.Size(84, 14);
            tipo_faixa_idLabel.Text = "tipo faixa id:";
            // 
            // projeto_idLabel
            // 
            projeto_idLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            projeto_idLabel.Location = new System.Drawing.Point(109, 2);
            projeto_idLabel.Name = "projeto_idLabel";
            projeto_idLabel.Size = new System.Drawing.Size(72, 14);
            projeto_idLabel.Text = "projeto id:";
            // 
            // mainMenu1
            // 
            this.mainMenu1.MenuItems.Add(this.menuItem1);
            // 
            // menuItem1
            // 
            this.menuItem1.MenuItems.Add(this.menuItem3);
            this.menuItem1.MenuItems.Add(this.menuItem4);
            this.menuItem1.MenuItems.Add(this.menuItem5);
            this.menuItem1.MenuItems.Add(this.menuItem6);
            this.menuItem1.MenuItems.Add(this.menuItem2);
            this.menuItem1.Text = "Opções";
            // 
            // menuItem3
            // 
            this.menuItem3.Text = "Novo";
            this.menuItem3.Click += new System.EventHandler(this.menuItem3_Click);
            // 
            // menuItem4
            // 
            this.menuItem4.Text = "Salvar";
            this.menuItem4.Click += new System.EventHandler(this.menuItem4_Click);
            // 
            // menuItem5
            // 
            this.menuItem5.Text = "Excluir";
            // 
            // menuItem6
            // 
            this.menuItem6.Text = "-";
            // 
            // menuItem2
            // 
            this.menuItem2.Text = "Voltar para tela anterior";
            this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
            // 
            // descricaoTextBox
            // 
            this.descricaoTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.faixaservidaoBindingSource, "descricao", true));
            this.descricaoTextBox.Location = new System.Drawing.Point(3, 19);
            this.descricaoTextBox.Name = "descricaoTextBox";
            this.descricaoTextBox.Size = new System.Drawing.Size(100, 21);
            this.descricaoTextBox.TabIndex = 1;
            // 
            // faixaservidaoBindingSource
            // 
            this.faixaservidaoBindingSource.DataMember = "faixa_servidao";
            this.faixaservidaoBindingSource.DataSource = this.lptDataSet;
            // 
            // lptDataSet
            // 
            this.lptDataSet.DataSetName = "lptDataSet";
            this.lptDataSet.Prefix = "";
            this.lptDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // latTextBox
            // 
            this.latTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.faixaservidaoBindingSource, "lat", true));
            this.latTextBox.Location = new System.Drawing.Point(3, 63);
            this.latTextBox.Name = "latTextBox";
            this.latTextBox.ReadOnly = true;
            this.latTextBox.Size = new System.Drawing.Size(100, 21);
            this.latTextBox.TabIndex = 3;
            // 
            // lonTextBox
            // 
            this.lonTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.faixaservidaoBindingSource, "lon", true));
            this.lonTextBox.Location = new System.Drawing.Point(109, 63);
            this.lonTextBox.Name = "lonTextBox";
            this.lonTextBox.ReadOnly = true;
            this.lonTextBox.Size = new System.Drawing.Size(100, 21);
            this.lonTextBox.TabIndex = 5;
            // 
            // faixa_servidaoDataGrid
            // 
            this.faixa_servidaoDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.faixa_servidaoDataGrid.DataSource = this.faixaservidaoBindingSource;
            this.faixa_servidaoDataGrid.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.faixa_servidaoDataGrid.Location = new System.Drawing.Point(0, 132);
            this.faixa_servidaoDataGrid.Name = "faixa_servidaoDataGrid";
            this.faixa_servidaoDataGrid.RowHeadersVisible = false;
            this.faixa_servidaoDataGrid.Size = new System.Drawing.Size(240, 162);
            this.faixa_servidaoDataGrid.TabIndex = 6;
            this.faixa_servidaoDataGrid.TableStyles.Add(this.faixa_servidaoTableStyleDataGridTableStyle);
            // 
            // faixa_servidaoTableStyleDataGridTableStyle
            // 
            this.faixa_servidaoTableStyleDataGridTableStyle.GridColumnStyles.Add(descricaoDataGridColumnStyleDataGridTextBoxColumn);
            this.faixa_servidaoTableStyleDataGridTableStyle.GridColumnStyles.Add(projeto_idDataGridColumnStyleDataGridTextBoxColumn);
            this.faixa_servidaoTableStyleDataGridTableStyle.GridColumnStyles.Add(tipo_faixa_idDataGridColumnStyleDataGridTextBoxColumn);
            this.faixa_servidaoTableStyleDataGridTableStyle.GridColumnStyles.Add(latDataGridColumnStyleDataGridTextBoxColumn);
            this.faixa_servidaoTableStyleDataGridTableStyle.GridColumnStyles.Add(lonDataGridColumnStyleDataGridTextBoxColumn);
            this.faixa_servidaoTableStyleDataGridTableStyle.MappingName = "faixa_servidao";
            // 
            // tipofaixaBindingSource
            // 
            this.tipofaixaBindingSource.DataMember = "tipo_faixa";
            this.tipofaixaBindingSource.DataSource = this.lptDataSet;
            // 
            // comboBox1
            // 
            this.comboBox1.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.faixaservidaoBindingSource, "tipo_faixa_id", true));
            this.comboBox1.DataSource = this.tipofaixaBindingSource;
            this.comboBox1.DisplayMember = "descricao";
            this.comboBox1.Location = new System.Drawing.Point(3, 104);
            this.comboBox1.Name = "comboBox1";
            this.comboBox1.Size = new System.Drawing.Size(100, 22);
            this.comboBox1.TabIndex = 7;
            this.comboBox1.ValueMember = "id";
            // 
            // projeto_idTextBox
            // 
            this.projeto_idTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.faixaservidaoBindingSource, "projeto_id", true));
            this.projeto_idTextBox.Location = new System.Drawing.Point(109, 19);
            this.projeto_idTextBox.Name = "projeto_idTextBox";
            this.projeto_idTextBox.ReadOnly = true;
            this.projeto_idTextBox.Size = new System.Drawing.Size(100, 21);
            this.projeto_idTextBox.TabIndex = 10;
            // 
            // faixa_servidaoTableAdapter
            // 
            this.faixa_servidaoTableAdapter.ClearBeforeFill = true;
            // 
            // tipo_faixaTableAdapter
            // 
            this.tipo_faixaTableAdapter.ClearBeforeFill = true;
            // 
            // FaixaServidao
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(240, 294);
            this.ControlBox = false;
            this.Controls.Add(projeto_idLabel);
            this.Controls.Add(this.projeto_idTextBox);
            this.Controls.Add(this.comboBox1);
            this.Controls.Add(tipo_faixa_idLabel);
            this.Controls.Add(this.faixa_servidaoDataGrid);
            this.Controls.Add(lonLabel);
            this.Controls.Add(this.lonTextBox);
            this.Controls.Add(latLabel);
            this.Controls.Add(this.latTextBox);
            this.Controls.Add(descricaoLabel);
            this.Controls.Add(this.descricaoTextBox);
            this.Location = new System.Drawing.Point(0, 0);
            this.Menu = this.mainMenu1;
            this.MinimizeBox = false;
            this.Name = "FaixaServidao";
            this.Text = "FaixaServidao";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.FaixaServidao_Load);
            ((System.ComponentModel.ISupportInitialize)(this.faixaservidaoBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lptDataSet)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tipofaixaBindingSource)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.DataGridTextBoxColumn iDDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn adDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn soyadDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn adresDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn telefonDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.Label iDLabel;
            System.Windows.Forms.Label adLabel;
            System.Windows.Forms.Label soyadLabel;
            System.Windows.Forms.Label adresLabel;
            System.Windows.Forms.Label telefonLabel;
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.menuItem1 = new System.Windows.Forms.MenuItem();
            this.menuItem2 = new System.Windows.Forms.MenuItem();
            this.adresDefteriDataSet = new DersDemo_Mobile_Sql.AdresDefteriDataSet();
            this.adresDefteriBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.adresDefteriTableAdapter = new DersDemo_Mobile_Sql.AdresDefteriDataSetTableAdapters.AdresDefteriTableAdapter();
            this.adresDefteriDataGrid = new System.Windows.Forms.DataGrid();
            this.adresDefteriTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
            this.iDTextBox = new System.Windows.Forms.TextBox();
            this.adTextBox = new System.Windows.Forms.TextBox();
            this.soyadTextBox = new System.Windows.Forms.TextBox();
            this.adresTextBox = new System.Windows.Forms.TextBox();
            this.telefonTextBox = new System.Windows.Forms.TextBox();
            this.button1 = new System.Windows.Forms.Button();
            iDDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            adDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            soyadDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            adresDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            telefonDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            iDLabel = new System.Windows.Forms.Label();
            adLabel = new System.Windows.Forms.Label();
            soyadLabel = new System.Windows.Forms.Label();
            adresLabel = new System.Windows.Forms.Label();
            telefonLabel = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.adresDefteriDataSet)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.adresDefteriBindingSource)).BeginInit();
            this.SuspendLayout();
            // 
            // iDDataGridColumnStyleDataGridTextBoxColumn
            // 
            iDDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            iDDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            iDDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "ID";
            iDDataGridColumnStyleDataGridTextBoxColumn.MappingName = "ID";
            iDDataGridColumnStyleDataGridTextBoxColumn.Width = 0;
            // 
            // adDataGridColumnStyleDataGridTextBoxColumn
            // 
            adDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            adDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            adDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "Ad";
            adDataGridColumnStyleDataGridTextBoxColumn.MappingName = "Ad";
            // 
            // soyadDataGridColumnStyleDataGridTextBoxColumn
            // 
            soyadDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            soyadDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            soyadDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "Soyad";
            soyadDataGridColumnStyleDataGridTextBoxColumn.MappingName = "Soyad";
            // 
            // adresDataGridColumnStyleDataGridTextBoxColumn
            // 
            adresDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            adresDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            adresDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "Adres";
            adresDataGridColumnStyleDataGridTextBoxColumn.MappingName = "Adres";
            // 
            // telefonDataGridColumnStyleDataGridTextBoxColumn
            // 
            telefonDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            telefonDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            telefonDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "Telefon";
            telefonDataGridColumnStyleDataGridTextBoxColumn.MappingName = "Telefon";
            // 
            // mainMenu1
            // 
            this.mainMenu1.MenuItems.Add(this.menuItem1);
            // 
            // menuItem1
            // 
            this.menuItem1.MenuItems.Add(this.menuItem2);
            this.menuItem1.Text = "Dosya";
            // 
            // menuItem2
            // 
            this.menuItem2.Text = "Çıkış";
            this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
            // 
            // adresDefteriDataSet
            // 
            this.adresDefteriDataSet.DataSetName = "AdresDefteriDataSet";
            this.adresDefteriDataSet.Prefix = "";
            this.adresDefteriDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // adresDefteriBindingSource
            // 
            this.adresDefteriBindingSource.DataMember = "AdresDefteri";
            this.adresDefteriBindingSource.DataSource = this.adresDefteriDataSet;
            // 
            // adresDefteriTableAdapter
            // 
            this.adresDefteriTableAdapter.ClearBeforeFill = true;
            // 
            // adresDefteriDataGrid
            // 
            this.adresDefteriDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.adresDefteriDataGrid.DataSource = this.adresDefteriBindingSource;
            this.adresDefteriDataGrid.Location = new System.Drawing.Point(3, 3);
            this.adresDefteriDataGrid.Name = "adresDefteriDataGrid";
            this.adresDefteriDataGrid.Size = new System.Drawing.Size(222, 169);
            this.adresDefteriDataGrid.TabIndex = 0;
            this.adresDefteriDataGrid.TableStyles.Add(this.adresDefteriTableStyleDataGridTableStyle);
            // 
            // adresDefteriTableStyleDataGridTableStyle
            // 
            this.adresDefteriTableStyleDataGridTableStyle.GridColumnStyles.Add(iDDataGridColumnStyleDataGridTextBoxColumn);
            this.adresDefteriTableStyleDataGridTableStyle.GridColumnStyles.Add(adDataGridColumnStyleDataGridTextBoxColumn);
            this.adresDefteriTableStyleDataGridTableStyle.GridColumnStyles.Add(soyadDataGridColumnStyleDataGridTextBoxColumn);
            this.adresDefteriTableStyleDataGridTableStyle.GridColumnStyles.Add(adresDataGridColumnStyleDataGridTextBoxColumn);
            this.adresDefteriTableStyleDataGridTableStyle.GridColumnStyles.Add(telefonDataGridColumnStyleDataGridTextBoxColumn);
            this.adresDefteriTableStyleDataGridTableStyle.MappingName = "AdresDefteri";
            // 
            // iDLabel
            // 
            iDLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            iDLabel.Location = new System.Drawing.Point(6, 190);
            iDLabel.Name = "iDLabel";
            iDLabel.Size = new System.Drawing.Size(32, 14);
            iDLabel.Text = "ID:";
            // 
            // iDTextBox
            // 
            this.iDTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.adresDefteriBindingSource, "ID", true));
            this.iDTextBox.Location = new System.Drawing.Point(69, 187);
            this.iDTextBox.Name = "iDTextBox";
            this.iDTextBox.Size = new System.Drawing.Size(130, 21);
            this.iDTextBox.TabIndex = 2;
            // 
            // adLabel
            // 
            adLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            adLabel.Location = new System.Drawing.Point(6, 218);
            adLabel.Name = "adLabel";
            adLabel.Size = new System.Drawing.Size(35, 14);
            adLabel.Text = "Ad:";
            // 
            // adTextBox
            // 
            this.adTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.adresDefteriBindingSource, "Ad", true));
            this.adTextBox.Location = new System.Drawing.Point(69, 215);
            this.adTextBox.Name = "adTextBox";
            this.adTextBox.Size = new System.Drawing.Size(130, 21);
            this.adTextBox.TabIndex = 4;
            // 
            // soyadLabel
            // 
            soyadLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            soyadLabel.Location = new System.Drawing.Point(6, 246);
            soyadLabel.Name = "soyadLabel";
            soyadLabel.Size = new System.Drawing.Size(56, 14);
            soyadLabel.Text = "Soyad:";
            // 
            // soyadTextBox
            // 
            this.soyadTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.adresDefteriBindingSource, "Soyad", true));
            this.soyadTextBox.Location = new System.Drawing.Point(69, 243);
            this.soyadTextBox.Name = "soyadTextBox";
            this.soyadTextBox.Size = new System.Drawing.Size(130, 21);
            this.soyadTextBox.TabIndex = 6;
            // 
            // adresLabel
            // 
            adresLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            adresLabel.Location = new System.Drawing.Point(6, 274);
            adresLabel.Name = "adresLabel";
            adresLabel.Size = new System.Drawing.Size(53, 14);
            adresLabel.Text = "Adres:";
            // 
            // adresTextBox
            // 
            this.adresTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.adresDefteriBindingSource, "Adres", true));
            this.adresTextBox.Location = new System.Drawing.Point(69, 271);
            this.adresTextBox.Multiline = true;
            this.adresTextBox.Name = "adresTextBox";
            this.adresTextBox.Size = new System.Drawing.Size(130, 38);
            this.adresTextBox.TabIndex = 8;
            // 
            // telefonLabel
            // 
            telefonLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            telefonLabel.Location = new System.Drawing.Point(6, 318);
            telefonLabel.Name = "telefonLabel";
            telefonLabel.Size = new System.Drawing.Size(63, 14);
            telefonLabel.Text = "Telefon:";
            // 
            // telefonTextBox
            // 
            this.telefonTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.adresDefteriBindingSource, "Telefon", true));
            this.telefonTextBox.Location = new System.Drawing.Point(69, 315);
            this.telefonTextBox.Name = "telefonTextBox";
            this.telefonTextBox.Size = new System.Drawing.Size(130, 21);
            this.telefonTextBox.TabIndex = 10;
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(77, 342);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(72, 20);
            this.button1.TabIndex = 11;
            this.button1.Text = "Kaydet";
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(240, 268);
            this.Controls.Add(this.button1);
            this.Controls.Add(iDLabel);
            this.Controls.Add(this.iDTextBox);
            this.Controls.Add(adLabel);
            this.Controls.Add(this.adTextBox);
            this.Controls.Add(soyadLabel);
            this.Controls.Add(this.soyadTextBox);
            this.Controls.Add(adresLabel);
            this.Controls.Add(this.adresTextBox);
            this.Controls.Add(telefonLabel);
            this.Controls.Add(this.telefonTextBox);
            this.Controls.Add(this.adresDefteriDataGrid);
            this.Menu = this.mainMenu1;
            this.Name = "Form1";
            this.Text = "Adres Defteri";
            this.Load += new System.EventHandler(this.Form1_Load);
            ((System.ComponentModel.ISupportInitialize)(this.adresDefteriDataSet)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.adresDefteriBindingSource)).EndInit();
            this.ResumeLayout(false);

        }
예제 #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.components = new System.ComponentModel.Container();
     System.Windows.Forms.Label cod_bracoLabel;
     System.Windows.Forms.Label cod_reatorLabel;
     System.Windows.Forms.Label cod_lampadaLabel;
     System.Windows.Forms.Label cod_luminariaLabel;
     System.Windows.Forms.Label fasesLabel;
     System.Windows.Forms.Label plaqueta_fkLabel;
     System.Windows.Forms.Label comandoLabel;
     System.Windows.Forms.Label observacaoLabel;
     System.Windows.Forms.Label label1;
     System.Windows.Forms.DataGridTextBoxColumn fasesDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.DataGridTextBoxColumn plaqueta_fkDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.DataGridTextBoxColumn comandoDataGridColumnStyleDataGridTextBoxColumn;
     this.mainMenu1             = new System.Windows.Forms.MainMenu();
     this.menuItem1             = new System.Windows.Forms.MenuItem();
     this.menuItem4             = new System.Windows.Forms.MenuItem();
     this.menuItem5             = new System.Windows.Forms.MenuItem();
     this.menuItem3             = new System.Windows.Forms.MenuItem();
     this.menuItem2             = new System.Windows.Forms.MenuItem();
     this.tabControl1           = new System.Windows.Forms.TabControl();
     this.tabPage1              = new System.Windows.Forms.TabPage();
     this.materialBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.materialDataGrid      = new System.Windows.Forms.DataGrid();
     this.citeluzDataSet        = new Cadx.db.citeluzDataSet();
     this.materialTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
     this.tabPage2              = new System.Windows.Forms.TabPage();
     this.totalLabel            = new System.Windows.Forms.Label();
     this.multiplicadorUpDown   = new System.Windows.Forms.NumericUpDown();
     this.comandoComboBox       = new System.Windows.Forms.ComboBox();
     this.plaqueta_fkTextBox    = new Cadx.CipTextBox();
     this.cod_bracoComboBox     = new System.Windows.Forms.ComboBox();
     this.cod_reatorComboBox    = new System.Windows.Forms.ComboBox();
     this.cod_lampadaComboBox   = new System.Windows.Forms.ComboBox();
     this.cod_luminariaComboBox = new System.Windows.Forms.ComboBox();
     this.fasesComboBox         = new System.Windows.Forms.ComboBox();
     this.tabPage3              = new System.Windows.Forms.TabPage();
     this.observacaoTextBox     = new Cadx.CipTextBox();
     this.materialTableAdapter  = new Cadx.db.citeluzDataSetTableAdapters.materialTableAdapter();
     cod_bracoLabel             = new System.Windows.Forms.Label();
     cod_reatorLabel            = new System.Windows.Forms.Label();
     cod_lampadaLabel           = new System.Windows.Forms.Label();
     cod_luminariaLabel         = new System.Windows.Forms.Label();
     fasesLabel       = new System.Windows.Forms.Label();
     plaqueta_fkLabel = new System.Windows.Forms.Label();
     comandoLabel     = new System.Windows.Forms.Label();
     observacaoLabel  = new System.Windows.Forms.Label();
     label1           = new System.Windows.Forms.Label();
     fasesDataGridColumnStyleDataGridTextBoxColumn       = new System.Windows.Forms.DataGridTextBoxColumn();
     plaqueta_fkDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
     comandoDataGridColumnStyleDataGridTextBoxColumn     = new System.Windows.Forms.DataGridTextBoxColumn();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.materialBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.citeluzDataSet)).BeginInit();
     this.tabPage2.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.SuspendLayout();
     //
     // cod_bracoLabel
     //
     cod_bracoLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     cod_bracoLabel.Location = new System.Drawing.Point(31, 65);
     cod_bracoLabel.Name     = "cod_bracoLabel";
     cod_bracoLabel.Size     = new System.Drawing.Size(53, 14);
     cod_bracoLabel.Text     = "braco:";
     //
     // cod_reatorLabel
     //
     cod_reatorLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     cod_reatorLabel.Location = new System.Drawing.Point(31, 177);
     cod_reatorLabel.Name     = "cod_reatorLabel";
     cod_reatorLabel.Size     = new System.Drawing.Size(53, 14);
     cod_reatorLabel.Text     = "reator:";
     //
     // cod_lampadaLabel
     //
     cod_lampadaLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     cod_lampadaLabel.Location = new System.Drawing.Point(18, 149);
     cod_lampadaLabel.Name     = "cod_lampadaLabel";
     cod_lampadaLabel.Size     = new System.Drawing.Size(66, 14);
     cod_lampadaLabel.Text     = "lampada:";
     //
     // cod_luminariaLabel
     //
     cod_luminariaLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     cod_luminariaLabel.Location = new System.Drawing.Point(13, 121);
     cod_luminariaLabel.Name     = "cod_luminariaLabel";
     cod_luminariaLabel.Size     = new System.Drawing.Size(71, 14);
     cod_luminariaLabel.Text     = "luminaria:";
     //
     // fasesLabel
     //
     fasesLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     fasesLabel.Location = new System.Drawing.Point(42, 93);
     fasesLabel.Name     = "fasesLabel";
     fasesLabel.Size     = new System.Drawing.Size(42, 14);
     fasesLabel.Text     = "fases:";
     //
     // plaqueta_fkLabel
     //
     plaqueta_fkLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     plaqueta_fkLabel.Location = new System.Drawing.Point(13, 40);
     plaqueta_fkLabel.Name     = "plaqueta_fkLabel";
     plaqueta_fkLabel.Size     = new System.Drawing.Size(70, 17);
     plaqueta_fkLabel.Text     = "plaqueta:";
     //
     // comandoLabel
     //
     comandoLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     comandoLabel.Location = new System.Drawing.Point(16, 203);
     comandoLabel.Name     = "comandoLabel";
     comandoLabel.Size     = new System.Drawing.Size(67, 14);
     comandoLabel.Text     = "comando:";
     //
     // observacaoLabel
     //
     observacaoLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     observacaoLabel.Location = new System.Drawing.Point(3, 4);
     observacaoLabel.Name     = "observacaoLabel";
     observacaoLabel.Size     = new System.Drawing.Size(80, 14);
     observacaoLabel.Text     = "observacao:";
     //
     // label1
     //
     label1.Font      = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     label1.Location  = new System.Drawing.Point(2, 10);
     label1.Name      = "label1";
     label1.Size      = new System.Drawing.Size(81, 19);
     label1.Text      = "multiplicar:";
     label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // fasesDataGridColumnStyleDataGridTextBoxColumn
     //
     fasesDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     fasesDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     fasesDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "fases";
     fasesDataGridColumnStyleDataGridTextBoxColumn.MappingName = "fases";
     fasesDataGridColumnStyleDataGridTextBoxColumn.Width       = 45;
     //
     // plaqueta_fkDataGridColumnStyleDataGridTextBoxColumn
     //
     plaqueta_fkDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     plaqueta_fkDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     plaqueta_fkDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "plaqueta";
     plaqueta_fkDataGridColumnStyleDataGridTextBoxColumn.MappingName = "plaqueta_fk";
     plaqueta_fkDataGridColumnStyleDataGridTextBoxColumn.Width       = 80;
     //
     // comandoDataGridColumnStyleDataGridTextBoxColumn
     //
     comandoDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     comandoDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     comandoDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "comando";
     comandoDataGridColumnStyleDataGridTextBoxColumn.MappingName = "comando";
     comandoDataGridColumnStyleDataGridTextBoxColumn.Width       = 60;
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.Add(this.menuItem1);
     //
     // menuItem1
     //
     this.menuItem1.MenuItems.Add(this.menuItem4);
     this.menuItem1.MenuItems.Add(this.menuItem5);
     this.menuItem1.MenuItems.Add(this.menuItem3);
     this.menuItem1.MenuItems.Add(this.menuItem2);
     this.menuItem1.Text = "Opções";
     //
     // menuItem4
     //
     this.menuItem4.Text   = "Novo";
     this.menuItem4.Click += new System.EventHandler(this.menuItem4_Click);
     //
     // menuItem5
     //
     this.menuItem5.Text   = "Salvar";
     this.menuItem5.Click += new System.EventHandler(this.menuItem5_Click);
     //
     // menuItem3
     //
     this.menuItem3.Text = "-";
     //
     // menuItem2
     //
     this.menuItem2.Text   = "Sair";
     this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location      = new System.Drawing.Point(0, 0);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(240, 294);
     this.tabControl1.TabIndex      = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.materialDataGrid);
     this.tabPage1.Location = new System.Drawing.Point(0, 0);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(240, 271);
     this.tabPage1.Text     = "tabPage1";
     //
     // materialBindingSource
     //
     this.materialBindingSource.DataMember = "material";
     this.materialBindingSource.DataSource = this.citeluzDataSet;
     //
     // materialDataGrid
     //
     this.materialDataGrid.BackgroundColor   = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.materialDataGrid.DataSource        = this.materialBindingSource;
     this.materialDataGrid.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.materialDataGrid.Location          = new System.Drawing.Point(0, 0);
     this.materialDataGrid.Name              = "materialDataGrid";
     this.materialDataGrid.RowHeadersVisible = false;
     this.materialDataGrid.Size              = new System.Drawing.Size(240, 271);
     this.materialDataGrid.TabIndex          = 1;
     this.materialDataGrid.TableStyles.Add(this.materialTableStyleDataGridTableStyle);
     //
     // citeluzDataSet
     //
     this.citeluzDataSet.DataSetName             = "citeluzDataSet";
     this.citeluzDataSet.Prefix                  = "";
     this.citeluzDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // materialTableStyleDataGridTableStyle
     //
     this.materialTableStyleDataGridTableStyle.GridColumnStyles.Add(plaqueta_fkDataGridColumnStyleDataGridTextBoxColumn);
     this.materialTableStyleDataGridTableStyle.GridColumnStyles.Add(fasesDataGridColumnStyleDataGridTextBoxColumn);
     this.materialTableStyleDataGridTableStyle.GridColumnStyles.Add(comandoDataGridColumnStyleDataGridTextBoxColumn);
     this.materialTableStyleDataGridTableStyle.MappingName = "material";
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.totalLabel);
     this.tabPage2.Controls.Add(this.multiplicadorUpDown);
     this.tabPage2.Controls.Add(label1);
     this.tabPage2.Controls.Add(comandoLabel);
     this.tabPage2.Controls.Add(this.comandoComboBox);
     this.tabPage2.Controls.Add(plaqueta_fkLabel);
     this.tabPage2.Controls.Add(this.plaqueta_fkTextBox);
     this.tabPage2.Controls.Add(this.cod_bracoComboBox);
     this.tabPage2.Controls.Add(this.cod_reatorComboBox);
     this.tabPage2.Controls.Add(this.cod_lampadaComboBox);
     this.tabPage2.Controls.Add(this.cod_luminariaComboBox);
     this.tabPage2.Controls.Add(this.fasesComboBox);
     this.tabPage2.Controls.Add(cod_bracoLabel);
     this.tabPage2.Controls.Add(cod_reatorLabel);
     this.tabPage2.Controls.Add(cod_lampadaLabel);
     this.tabPage2.Controls.Add(cod_luminariaLabel);
     this.tabPage2.Controls.Add(fasesLabel);
     this.tabPage2.Location = new System.Drawing.Point(0, 0);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(240, 271);
     this.tabPage2.Text     = "tabPage2";
     //
     // totalLabel
     //
     this.totalLabel.Location = new System.Drawing.Point(3, 251);
     this.totalLabel.Name     = "totalLabel";
     this.totalLabel.Size     = new System.Drawing.Size(100, 20);
     this.totalLabel.Text     = "totalLabel";
     //
     // multiplicadorUpDown
     //
     this.multiplicadorUpDown.Font     = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.multiplicadorUpDown.Location = new System.Drawing.Point(90, 7);
     this.multiplicadorUpDown.Name     = "multiplicadorUpDown";
     this.multiplicadorUpDown.Size     = new System.Drawing.Size(67, 20);
     this.multiplicadorUpDown.TabIndex = 53;
     this.multiplicadorUpDown.Value    = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     //
     // comandoComboBox
     //
     this.comandoComboBox.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.materialBindingSource, "comando", true));
     this.comandoComboBox.Font     = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.comandoComboBox.Location = new System.Drawing.Point(90, 203);
     this.comandoComboBox.Name     = "comandoComboBox";
     this.comandoComboBox.Size     = new System.Drawing.Size(134, 20);
     this.comandoComboBox.TabIndex = 51;
     //
     // plaqueta_fkTextBox
     //
     this.plaqueta_fkTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.materialBindingSource, "plaqueta_fk", true));
     this.plaqueta_fkTextBox.Font     = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.plaqueta_fkTextBox.Location = new System.Drawing.Point(90, 40);
     this.plaqueta_fkTextBox.Name     = "plaqueta_fkTextBox";
     this.plaqueta_fkTextBox.ReadOnly = true;
     this.plaqueta_fkTextBox.Size     = new System.Drawing.Size(99, 19);
     this.plaqueta_fkTextBox.TabIndex = 50;
     //
     // cod_bracoComboBox
     //
     this.cod_bracoComboBox.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.materialBindingSource, "cod_braco", true));
     this.cod_bracoComboBox.Font     = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.cod_bracoComboBox.Location = new System.Drawing.Point(90, 65);
     this.cod_bracoComboBox.Name     = "cod_bracoComboBox";
     this.cod_bracoComboBox.Size     = new System.Drawing.Size(134, 20);
     this.cod_bracoComboBox.TabIndex = 44;
     //
     // cod_reatorComboBox
     //
     this.cod_reatorComboBox.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.materialBindingSource, "cod_reator", true));
     this.cod_reatorComboBox.Font     = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.cod_reatorComboBox.Location = new System.Drawing.Point(90, 177);
     this.cod_reatorComboBox.Name     = "cod_reatorComboBox";
     this.cod_reatorComboBox.Size     = new System.Drawing.Size(134, 20);
     this.cod_reatorComboBox.TabIndex = 43;
     //
     // cod_lampadaComboBox
     //
     this.cod_lampadaComboBox.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.materialBindingSource, "cod_lampada", true));
     this.cod_lampadaComboBox.Font     = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.cod_lampadaComboBox.Location = new System.Drawing.Point(90, 149);
     this.cod_lampadaComboBox.Name     = "cod_lampadaComboBox";
     this.cod_lampadaComboBox.Size     = new System.Drawing.Size(134, 20);
     this.cod_lampadaComboBox.TabIndex = 42;
     //
     // cod_luminariaComboBox
     //
     this.cod_luminariaComboBox.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.materialBindingSource, "cod_luminaria", true));
     this.cod_luminariaComboBox.Font     = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.cod_luminariaComboBox.Location = new System.Drawing.Point(90, 121);
     this.cod_luminariaComboBox.Name     = "cod_luminariaComboBox";
     this.cod_luminariaComboBox.Size     = new System.Drawing.Size(134, 20);
     this.cod_luminariaComboBox.TabIndex = 41;
     //
     // fasesComboBox
     //
     this.fasesComboBox.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.materialBindingSource, "fases", true));
     this.fasesComboBox.Font     = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.fasesComboBox.Location = new System.Drawing.Point(90, 93);
     this.fasesComboBox.Name     = "fasesComboBox";
     this.fasesComboBox.Size     = new System.Drawing.Size(134, 20);
     this.fasesComboBox.TabIndex = 40;
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(observacaoLabel);
     this.tabPage3.Controls.Add(this.observacaoTextBox);
     this.tabPage3.Location = new System.Drawing.Point(0, 0);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Size     = new System.Drawing.Size(240, 271);
     this.tabPage3.Text     = "tabPage3";
     //
     // observacaoTextBox
     //
     this.observacaoTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.materialBindingSource, "observacao", true));
     this.observacaoTextBox.Location  = new System.Drawing.Point(3, 21);
     this.observacaoTextBox.Multiline = true;
     this.observacaoTextBox.Name      = "observacaoTextBox";
     this.observacaoTextBox.Size      = new System.Drawing.Size(234, 54);
     this.observacaoTextBox.TabIndex  = 55;
     //
     // materialTableAdapter
     //
     this.materialTableAdapter.ClearBeforeFill = true;
     //
     // Material
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.AutoScroll          = true;
     this.ClientSize          = new System.Drawing.Size(240, 294);
     this.ControlBox          = false;
     this.Controls.Add(this.tabControl1);
     this.Location    = new System.Drawing.Point(0, 0);
     this.Menu        = this.mainMenu1;
     this.MinimizeBox = false;
     this.Name        = "Material";
     this.Text        = "Material";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.Material_Load);
     this.Closing    += new System.ComponentModel.CancelEventHandler(this.Material_Closing);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.materialBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.citeluzDataSet)).EndInit();
     this.tabPage2.ResumeLayout(false);
     this.tabPage3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #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.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);
 }
        /// <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.DataGridTextBoxColumn nomeDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.Label nomeLabel;
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.menuItem1 = new System.Windows.Forms.MenuItem();
            this.menuItem3 = new System.Windows.Forms.MenuItem();
            this.menuItem4 = new System.Windows.Forms.MenuItem();
            this.menuItem2 = new System.Windows.Forms.MenuItem();
            this.cipdatabaseDataSet = new Colibri.cipdatabaseDataSet();
            this.cidadeBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.cidadeTableAdapter = new Colibri.cipdatabaseDataSetTableAdapters.CidadeTableAdapter();
            this.cidadeDataGrid = new System.Windows.Forms.DataGrid();
            this.cidadeTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
            this.nomeTextBox = new System.Windows.Forms.TextBox();
            this.notification1 = new Microsoft.WindowsCE.Forms.Notification();
            nomeDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            nomeLabel = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.cipdatabaseDataSet)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cidadeBindingSource)).BeginInit();
            this.SuspendLayout();
            // 
            // nomeDataGridColumnStyleDataGridTextBoxColumn
            // 
            nomeDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            nomeDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            nomeDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "nome";
            nomeDataGridColumnStyleDataGridTextBoxColumn.MappingName = "nome";
            nomeDataGridColumnStyleDataGridTextBoxColumn.Width = 200;
            // 
            // nomeLabel
            // 
            nomeLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            nomeLabel.Location = new System.Drawing.Point(3, 165);
            nomeLabel.Name = "nomeLabel";
            nomeLabel.Size = new System.Drawing.Size(45, 14);
            nomeLabel.Text = "nome:";
            // 
            // mainMenu1
            // 
            this.mainMenu1.MenuItems.Add(this.menuItem1);
            // 
            // menuItem1
            // 
            this.menuItem1.MenuItems.Add(this.menuItem3);
            this.menuItem1.MenuItems.Add(this.menuItem4);
            this.menuItem1.MenuItems.Add(this.menuItem2);
            this.menuItem1.Text = "Opções";
            // 
            // menuItem3
            // 
            this.menuItem3.Text = "Salvar";
            this.menuItem3.Click += new System.EventHandler(this.menuItem3_Click);
            // 
            // menuItem4
            // 
            this.menuItem4.Text = "-";
            // 
            // menuItem2
            // 
            this.menuItem2.Text = "Sair";
            this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
            // 
            // cipdatabaseDataSet
            // 
            this.cipdatabaseDataSet.DataSetName = "cipdatabaseDataSet";
            this.cipdatabaseDataSet.Prefix = "";
            this.cipdatabaseDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // cidadeBindingSource
            // 
            this.cidadeBindingSource.DataMember = "Cidade";
            this.cidadeBindingSource.DataSource = this.cipdatabaseDataSet;
            // 
            // cidadeTableAdapter
            // 
            this.cidadeTableAdapter.ClearBeforeFill = true;
            // 
            // cidadeDataGrid
            // 
            this.cidadeDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.cidadeDataGrid.DataSource = this.cidadeBindingSource;
            this.cidadeDataGrid.Dock = System.Windows.Forms.DockStyle.Top;
            this.cidadeDataGrid.Location = new System.Drawing.Point(0, 0);
            this.cidadeDataGrid.Name = "cidadeDataGrid";
            this.cidadeDataGrid.RowHeadersVisible = false;
            this.cidadeDataGrid.Size = new System.Drawing.Size(240, 156);
            this.cidadeDataGrid.TabIndex = 1;
            this.cidadeDataGrid.TableStyles.Add(this.cidadeTableStyleDataGridTableStyle);
            // 
            // cidadeTableStyleDataGridTableStyle
            // 
            this.cidadeTableStyleDataGridTableStyle.GridColumnStyles.Add(nomeDataGridColumnStyleDataGridTextBoxColumn);
            this.cidadeTableStyleDataGridTableStyle.MappingName = "Cidade";
            // 
            // nomeTextBox
            // 
            this.nomeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.cidadeBindingSource, "nome", true));
            this.nomeTextBox.Location = new System.Drawing.Point(3, 182);
            this.nomeTextBox.Name = "nomeTextBox";
            this.nomeTextBox.Size = new System.Drawing.Size(234, 21);
            this.nomeTextBox.TabIndex = 2;
            // 
            // notification1
            // 
            this.notification1.Text = "notification1";
            // 
            // EditarMunicipio
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(240, 294);
            this.ControlBox = false;
            this.Controls.Add(nomeLabel);
            this.Controls.Add(this.nomeTextBox);
            this.Controls.Add(this.cidadeDataGrid);
            this.Location = new System.Drawing.Point(0, 0);
            this.Menu = this.mainMenu1;
            this.MinimizeBox = false;
            this.Name = "EditarMunicipio";
            this.Text = "EditarMunicipio";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.EditarMunicipio_Load);
            ((System.ComponentModel.ISupportInitialize)(this.cipdatabaseDataSet)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cidadeBindingSource)).EndInit();
            this.ResumeLayout(false);

        }
예제 #17
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.Label bairroLabel;
     System.Windows.Forms.Label ruaLabel;
     System.Windows.Forms.Label barramentoLabel;
     System.Windows.Forms.Label latLabel;
     System.Windows.Forms.Label lonLabel;
     System.Windows.Forms.Label obsLabel;
     System.Windows.Forms.Label sequenciaLabel;
     System.Windows.Forms.Label gps_timeLabel;
     System.Windows.Forms.Label medidorLabel;
     System.Windows.Forms.Label trafo_idLabel;
     System.Windows.Forms.Label posicao_trafoLabel;
     System.Windows.Forms.Label condicao_risco_idLabel;
     System.Windows.Forms.DataGridTextBoxColumn bairroDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.DataGridTextBoxColumn logradouroDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.DataGridTextBoxColumn sequenciaDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.DataGridTextBoxColumn barramentoDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.Label poste_vizinho_idLabel;
     this.mainMenu1          = new System.Windows.Forms.MainMenu();
     this.menuItem1          = new System.Windows.Forms.MenuItem();
     this.menuItem4          = new System.Windows.Forms.MenuItem();
     this.menuItemSalvar     = new System.Windows.Forms.MenuItem();
     this.menuItem12         = new System.Windows.Forms.MenuItem();
     this.menuItem11         = new System.Windows.Forms.MenuItem();
     this.menuItemComponente = new System.Windows.Forms.MenuItem();
     this.menuItem5          = new System.Windows.Forms.MenuItem();
     this.menuItem9          = new System.Windows.Forms.MenuItem();
     this.menuItem3          = new System.Windows.Forms.MenuItem();
     this.menuItem2          = new System.Windows.Forms.MenuItem();
     this.tabControl1        = new System.Windows.Forms.TabControl();
     this.tabPage1           = new System.Windows.Forms.TabPage();
     this.labelPosteID       = new System.Windows.Forms.Label();
     this.posteBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.eletrocadDataSet   = new CipX.db.eletrocadDataSet();
     this.posteDataGrid      = new System.Windows.Forms.DataGrid();
     this.posteTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
     this.tabPage2                   = new System.Windows.Forms.TabPage();
     this.medidorTextBox             = new System.Windows.Forms.TextBox();
     this.checkBox1                  = new System.Windows.Forms.CheckBox();
     this.sequenciaTextBox           = new System.Windows.Forms.TextBox();
     this.lonTextBox                 = new System.Windows.Forms.TextBox();
     this.latTextBox                 = new System.Windows.Forms.TextBox();
     this.barramentoTextBox          = new System.Windows.Forms.TextBox();
     this.ruaTextBox                 = new System.Windows.Forms.TextBox();
     this.bairroTextBox              = new System.Windows.Forms.TextBox();
     this.tabPage3                   = new System.Windows.Forms.TabPage();
     this.posteVizinhoBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.comboBox6                  = new System.Windows.Forms.ComboBox();
     this.condicaoriscoBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.comboBoxCondicao           = new System.Windows.Forms.ComboBox();
     this.comboBox1                  = new System.Windows.Forms.ComboBox();
     this.trafo_idTextBox            = new System.Windows.Forms.TextBox();
     this.gps_timeTextBox            = new System.Windows.Forms.TextBox();
     this.obsTextBox                 = new System.Windows.Forms.TextBox();
     this.tabPage4                   = new System.Windows.Forms.TabPage();
     this.listPendencias             = new System.Windows.Forms.TextBox();
     this.button1 = new System.Windows.Forms.Button();
     this.condicao_riscoTableAdapter           = new CipX.db.eletrocadDataSetTableAdapters.condicao_riscoTableAdapter();
     this.posteTableAdapter                    = new CipX.db.eletrocadDataSetTableAdapters.posteTableAdapter();
     this.postehasusomutuoBindingSource        = new System.Windows.Forms.BindingSource(this.components);
     this.poste_has_uso_mutuoTableAdapter      = new CipX.db.eletrocadDataSetTableAdapters.poste_has_uso_mutuoTableAdapter();
     this.postehastipoluminariaBindingSource   = new System.Windows.Forms.BindingSource(this.components);
     this.poste_has_tipo_luminariaTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.poste_has_tipo_luminariaTableAdapter();
     bairroLabel            = new System.Windows.Forms.Label();
     ruaLabel               = new System.Windows.Forms.Label();
     barramentoLabel        = new System.Windows.Forms.Label();
     latLabel               = new System.Windows.Forms.Label();
     lonLabel               = new System.Windows.Forms.Label();
     obsLabel               = new System.Windows.Forms.Label();
     sequenciaLabel         = new System.Windows.Forms.Label();
     gps_timeLabel          = new System.Windows.Forms.Label();
     medidorLabel           = new System.Windows.Forms.Label();
     trafo_idLabel          = new System.Windows.Forms.Label();
     posicao_trafoLabel     = new System.Windows.Forms.Label();
     condicao_risco_idLabel = new System.Windows.Forms.Label();
     bairroDataGridColumnStyleDataGridTextBoxColumn     = new System.Windows.Forms.DataGridTextBoxColumn();
     logradouroDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
     sequenciaDataGridColumnStyleDataGridTextBoxColumn  = new System.Windows.Forms.DataGridTextBoxColumn();
     barramentoDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
     poste_vizinho_idLabel = new System.Windows.Forms.Label();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.posteBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.eletrocadDataSet)).BeginInit();
     this.tabPage2.SuspendLayout();
     this.tabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.posteVizinhoBindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.condicaoriscoBindingSource)).BeginInit();
     this.tabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.postehasusomutuoBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.postehastipoluminariaBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // bairroLabel
     //
     bairroLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     bairroLabel.Location = new System.Drawing.Point(32, 10);
     bairroLabel.Name     = "bairroLabel";
     bairroLabel.Size     = new System.Drawing.Size(99, 14);
     bairroLabel.Text     = "bairro:";
     //
     // ruaLabel
     //
     ruaLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     ruaLabel.Location = new System.Drawing.Point(3, 37);
     ruaLabel.Name     = "ruaLabel";
     ruaLabel.Size     = new System.Drawing.Size(83, 14);
     ruaLabel.Text     = "logradouro:";
     //
     // barramentoLabel
     //
     barramentoLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     barramentoLabel.Location = new System.Drawing.Point(43, 91);
     barramentoLabel.Name     = "barramentoLabel";
     barramentoLabel.Size     = new System.Drawing.Size(83, 14);
     barramentoLabel.Text     = "barramento:";
     //
     // latLabel
     //
     latLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     latLabel.Location = new System.Drawing.Point(98, 199);
     latLabel.Name     = "latLabel";
     latLabel.Size     = new System.Drawing.Size(27, 14);
     latLabel.Text     = "lat:";
     //
     // lonLabel
     //
     lonLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     lonLabel.Location = new System.Drawing.Point(95, 223);
     lonLabel.Name     = "lonLabel";
     lonLabel.Size     = new System.Drawing.Size(30, 14);
     lonLabel.Text     = "lon:";
     //
     // obsLabel
     //
     obsLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     obsLabel.Location = new System.Drawing.Point(6, 10);
     obsLabel.Name     = "obsLabel";
     obsLabel.Size     = new System.Drawing.Size(33, 14);
     obsLabel.Text     = "obs:";
     //
     // sequenciaLabel
     //
     sequenciaLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     sequenciaLabel.Location = new System.Drawing.Point(55, 64);
     sequenciaLabel.Name     = "sequenciaLabel";
     sequenciaLabel.Size     = new System.Drawing.Size(71, 14);
     sequenciaLabel.Text     = "sequencia:";
     //
     // gps_timeLabel
     //
     gps_timeLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     gps_timeLabel.Location = new System.Drawing.Point(61, 223);
     gps_timeLabel.Name     = "gps_timeLabel";
     gps_timeLabel.Size     = new System.Drawing.Size(64, 14);
     gps_timeLabel.Text     = "gps time:";
     gps_timeLabel.Visible  = false;
     //
     // medidorLabel
     //
     medidorLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     medidorLabel.Location = new System.Drawing.Point(64, 145);
     medidorLabel.Name     = "medidorLabel";
     medidorLabel.Size     = new System.Drawing.Size(61, 14);
     medidorLabel.Text     = "medidor:";
     //
     // trafo_idLabel
     //
     trafo_idLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     trafo_idLabel.Location = new System.Drawing.Point(68, 196);
     trafo_idLabel.Name     = "trafo_idLabel";
     trafo_idLabel.Size     = new System.Drawing.Size(57, 14);
     trafo_idLabel.Text     = "trafo id:";
     trafo_idLabel.Visible  = false;
     //
     // posicao_trafoLabel
     //
     posicao_trafoLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     posicao_trafoLabel.Location = new System.Drawing.Point(38, 83);
     posicao_trafoLabel.Name     = "posicao_trafoLabel";
     posicao_trafoLabel.Size     = new System.Drawing.Size(92, 14);
     posicao_trafoLabel.Text     = "posicao trafo:";
     //
     // condicao_risco_idLabel
     //
     condicao_risco_idLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     condicao_risco_idLabel.Location = new System.Drawing.Point(13, 114);
     condicao_risco_idLabel.Name     = "condicao_risco_idLabel";
     condicao_risco_idLabel.Size     = new System.Drawing.Size(112, 14);
     condicao_risco_idLabel.Text     = "condicao risco id:";
     //
     // bairroDataGridColumnStyleDataGridTextBoxColumn
     //
     bairroDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     bairroDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     bairroDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "bairro";
     bairroDataGridColumnStyleDataGridTextBoxColumn.MappingName = "bairro";
     bairroDataGridColumnStyleDataGridTextBoxColumn.NullText    = "";
     bairroDataGridColumnStyleDataGridTextBoxColumn.Width       = 80;
     //
     // logradouroDataGridColumnStyleDataGridTextBoxColumn
     //
     logradouroDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     logradouroDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     logradouroDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "logradouro";
     logradouroDataGridColumnStyleDataGridTextBoxColumn.MappingName = "logradouro";
     logradouroDataGridColumnStyleDataGridTextBoxColumn.NullText    = "";
     logradouroDataGridColumnStyleDataGridTextBoxColumn.Width       = 80;
     //
     // sequenciaDataGridColumnStyleDataGridTextBoxColumn
     //
     sequenciaDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     sequenciaDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     sequenciaDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "sequencia";
     sequenciaDataGridColumnStyleDataGridTextBoxColumn.MappingName = "sequencia";
     sequenciaDataGridColumnStyleDataGridTextBoxColumn.Width       = 70;
     //
     // barramentoDataGridColumnStyleDataGridTextBoxColumn
     //
     barramentoDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     barramentoDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     barramentoDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "barramento";
     barramentoDataGridColumnStyleDataGridTextBoxColumn.MappingName = "barramento";
     barramentoDataGridColumnStyleDataGridTextBoxColumn.NullText    = "";
     barramentoDataGridColumnStyleDataGridTextBoxColumn.Width       = 80;
     //
     // poste_vizinho_idLabel
     //
     poste_vizinho_idLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     poste_vizinho_idLabel.Location = new System.Drawing.Point(34, 143);
     poste_vizinho_idLabel.Name     = "poste_vizinho_idLabel";
     poste_vizinho_idLabel.Size     = new System.Drawing.Size(93, 14);
     poste_vizinho_idLabel.Text     = "poste vizinho:";
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.Add(this.menuItem1);
     //
     // menuItem1
     //
     this.menuItem1.MenuItems.Add(this.menuItem4);
     this.menuItem1.MenuItems.Add(this.menuItemSalvar);
     this.menuItem1.MenuItems.Add(this.menuItem12);
     this.menuItem1.MenuItems.Add(this.menuItem11);
     this.menuItem1.MenuItems.Add(this.menuItemComponente);
     this.menuItem1.MenuItems.Add(this.menuItem3);
     this.menuItem1.MenuItems.Add(this.menuItem2);
     this.menuItem1.Text   = "Opções";
     this.menuItem1.Popup += new System.EventHandler(this.menuItem1_Click);
     this.menuItem1.Click += new System.EventHandler(this.menuItem1_Click);
     //
     // menuItem4
     //
     this.menuItem4.Text   = "Novo";
     this.menuItem4.Click += new System.EventHandler(this.novo);
     //
     // menuItemSalvar
     //
     this.menuItemSalvar.Text   = "Salvar";
     this.menuItemSalvar.Click += new System.EventHandler(this.salvar);
     //
     // menuItem12
     //
     this.menuItem12.Text   = "Croqui";
     this.menuItem12.Click += new System.EventHandler(this.croqui);
     //
     // menuItem11
     //
     this.menuItem11.Text = "-";
     //
     // menuItemComponente
     //
     this.menuItemComponente.MenuItems.Add(this.menuItem5);
     this.menuItemComponente.MenuItems.Add(this.menuItem9);
     this.menuItemComponente.Text = "Componentes";
     //
     // menuItem5
     //
     this.menuItem5.Text   = "Luminárias";
     this.menuItem5.Click += new System.EventHandler(this.menuItem5_Click);
     //
     // menuItem9
     //
     this.menuItem9.Text   = "Uso Mútuo";
     this.menuItem9.Click += new System.EventHandler(this.cadastrarUsoMutuo);
     //
     // menuItem3
     //
     this.menuItem3.Text = "-";
     //
     // menuItem2
     //
     this.menuItem2.Text   = "Sair";
     this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Controls.Add(this.tabPage4);
     this.tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location      = new System.Drawing.Point(0, 0);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(240, 294);
     this.tabControl1.TabIndex      = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.labelPosteID);
     this.tabPage1.Controls.Add(this.posteDataGrid);
     this.tabPage1.Location = new System.Drawing.Point(0, 0);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(240, 271);
     this.tabPage1.Text     = "Tabela";
     //
     // labelPosteID
     //
     this.labelPosteID.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.labelPosteID.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.posteBindingSource, "id", true));
     this.labelPosteID.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.labelPosteID.Font      = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.labelPosteID.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.labelPosteID.Location  = new System.Drawing.Point(0, 251);
     this.labelPosteID.Name      = "labelPosteID";
     this.labelPosteID.Size      = new System.Drawing.Size(240, 20);
     this.labelPosteID.Text      = "0";
     this.labelPosteID.Visible   = false;
     //
     // posteBindingSource
     //
     this.posteBindingSource.DataMember = "poste";
     this.posteBindingSource.DataSource = this.eletrocadDataSet;
     //
     // eletrocadDataSet
     //
     this.eletrocadDataSet.DataSetName             = "eletrocadDataSet";
     this.eletrocadDataSet.Prefix                  = "";
     this.eletrocadDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // posteDataGrid
     //
     this.posteDataGrid.BackgroundColor   = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.posteDataGrid.DataSource        = this.posteBindingSource;
     this.posteDataGrid.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.posteDataGrid.Location          = new System.Drawing.Point(0, 0);
     this.posteDataGrid.Name              = "posteDataGrid";
     this.posteDataGrid.RowHeadersVisible = false;
     this.posteDataGrid.Size              = new System.Drawing.Size(240, 271);
     this.posteDataGrid.TabIndex          = 0;
     this.posteDataGrid.TableStyles.Add(this.posteTableStyleDataGridTableStyle);
     //
     // posteTableStyleDataGridTableStyle
     //
     this.posteTableStyleDataGridTableStyle.GridColumnStyles.Add(sequenciaDataGridColumnStyleDataGridTextBoxColumn);
     this.posteTableStyleDataGridTableStyle.GridColumnStyles.Add(barramentoDataGridColumnStyleDataGridTextBoxColumn);
     this.posteTableStyleDataGridTableStyle.GridColumnStyles.Add(bairroDataGridColumnStyleDataGridTextBoxColumn);
     this.posteTableStyleDataGridTableStyle.GridColumnStyles.Add(logradouroDataGridColumnStyleDataGridTextBoxColumn);
     this.posteTableStyleDataGridTableStyle.MappingName = "poste";
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(medidorLabel);
     this.tabPage2.Controls.Add(this.medidorTextBox);
     this.tabPage2.Controls.Add(this.checkBox1);
     this.tabPage2.Controls.Add(sequenciaLabel);
     this.tabPage2.Controls.Add(this.sequenciaTextBox);
     this.tabPage2.Controls.Add(lonLabel);
     this.tabPage2.Controls.Add(this.lonTextBox);
     this.tabPage2.Controls.Add(latLabel);
     this.tabPage2.Controls.Add(this.latTextBox);
     this.tabPage2.Controls.Add(barramentoLabel);
     this.tabPage2.Controls.Add(this.barramentoTextBox);
     this.tabPage2.Controls.Add(this.ruaTextBox);
     this.tabPage2.Controls.Add(this.bairroTextBox);
     this.tabPage2.Controls.Add(ruaLabel);
     this.tabPage2.Controls.Add(bairroLabel);
     this.tabPage2.Location = new System.Drawing.Point(0, 0);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(232, 245);
     this.tabPage2.Text     = "Form. I";
     //
     // medidorTextBox
     //
     this.medidorTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.posteBindingSource, "medidor", true));
     this.medidorTextBox.Enabled  = false;
     this.medidorTextBox.Location = new System.Drawing.Point(132, 142);
     this.medidorTextBox.Name     = "medidorTextBox";
     this.medidorTextBox.Size     = new System.Drawing.Size(100, 21);
     this.medidorTextBox.TabIndex = 40;
     //
     // checkBox1
     //
     this.checkBox1.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.posteBindingSource, "medido", true));
     this.checkBox1.Location           = new System.Drawing.Point(132, 116);
     this.checkBox1.Name               = "checkBox1";
     this.checkBox1.Size               = new System.Drawing.Size(100, 20);
     this.checkBox1.TabIndex           = 39;
     this.checkBox1.Text               = "Medido";
     this.checkBox1.CheckStateChanged += new System.EventHandler(this.checkBox1_CheckStateChanged);
     //
     // sequenciaTextBox
     //
     this.sequenciaTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.posteBindingSource, "sequencia", true));
     this.sequenciaTextBox.Location  = new System.Drawing.Point(133, 61);
     this.sequenciaTextBox.Name      = "sequenciaTextBox";
     this.sequenciaTextBox.Size      = new System.Drawing.Size(64, 21);
     this.sequenciaTextBox.TabIndex  = 29;
     this.sequenciaTextBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.sequenciaTextBox_KeyPress);
     //
     // lonTextBox
     //
     this.lonTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.posteBindingSource, "lon", true));
     this.lonTextBox.Location = new System.Drawing.Point(132, 220);
     this.lonTextBox.Name     = "lonTextBox";
     this.lonTextBox.ReadOnly = true;
     this.lonTextBox.Size     = new System.Drawing.Size(100, 21);
     this.lonTextBox.TabIndex = 19;
     //
     // latTextBox
     //
     this.latTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.posteBindingSource, "lat", true));
     this.latTextBox.Location = new System.Drawing.Point(132, 196);
     this.latTextBox.Name     = "latTextBox";
     this.latTextBox.ReadOnly = true;
     this.latTextBox.Size     = new System.Drawing.Size(100, 21);
     this.latTextBox.TabIndex = 17;
     //
     // barramentoTextBox
     //
     this.barramentoTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.posteBindingSource, "barramento", true));
     this.barramentoTextBox.Location = new System.Drawing.Point(133, 88);
     this.barramentoTextBox.Name     = "barramentoTextBox";
     this.barramentoTextBox.Size     = new System.Drawing.Size(100, 21);
     this.barramentoTextBox.TabIndex = 9;
     //
     // ruaTextBox
     //
     this.ruaTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.posteBindingSource, "logradouro", true));
     this.ruaTextBox.Location = new System.Drawing.Point(81, 34);
     this.ruaTextBox.Name     = "ruaTextBox";
     this.ruaTextBox.Size     = new System.Drawing.Size(152, 21);
     this.ruaTextBox.TabIndex = 3;
     //
     // bairroTextBox
     //
     this.bairroTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.posteBindingSource, "bairro", true));
     this.bairroTextBox.Location = new System.Drawing.Point(81, 7);
     this.bairroTextBox.Name     = "bairroTextBox";
     this.bairroTextBox.Size     = new System.Drawing.Size(152, 21);
     this.bairroTextBox.TabIndex = 1;
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.comboBox6);
     this.tabPage3.Controls.Add(poste_vizinho_idLabel);
     this.tabPage3.Controls.Add(this.comboBoxCondicao);
     this.tabPage3.Controls.Add(condicao_risco_idLabel);
     this.tabPage3.Controls.Add(this.comboBox1);
     this.tabPage3.Controls.Add(posicao_trafoLabel);
     this.tabPage3.Controls.Add(trafo_idLabel);
     this.tabPage3.Controls.Add(this.trafo_idTextBox);
     this.tabPage3.Controls.Add(gps_timeLabel);
     this.tabPage3.Controls.Add(this.gps_timeTextBox);
     this.tabPage3.Controls.Add(obsLabel);
     this.tabPage3.Controls.Add(this.obsTextBox);
     this.tabPage3.Location = new System.Drawing.Point(0, 0);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Size     = new System.Drawing.Size(232, 245);
     this.tabPage3.Text     = "Form. II";
     //
     // posteVizinhoBindingSource1
     //
     this.posteVizinhoBindingSource1.DataMember = "poste";
     this.posteVizinhoBindingSource1.DataSource = this.eletrocadDataSet;
     //
     // comboBox6
     //
     this.comboBox6.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.posteBindingSource, "poste_vizinho_id", true));
     this.comboBox6.DataSource    = this.posteVizinhoBindingSource1;
     this.comboBox6.DisplayMember = "sequencia";
     this.comboBox6.Location      = new System.Drawing.Point(133, 139);
     this.comboBox6.Name          = "comboBox6";
     this.comboBox6.Size          = new System.Drawing.Size(99, 22);
     this.comboBox6.TabIndex      = 60;
     this.comboBox6.ValueMember   = "id";
     //
     // condicaoriscoBindingSource
     //
     this.condicaoriscoBindingSource.DataMember = "condicao_risco";
     this.condicaoriscoBindingSource.DataSource = this.eletrocadDataSet;
     //
     // comboBoxCondicao
     //
     this.comboBoxCondicao.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.posteBindingSource, "condicao_risco_id", true));
     this.comboBoxCondicao.DataSource    = this.condicaoriscoBindingSource;
     this.comboBoxCondicao.DisplayMember = "descricao";
     this.comboBoxCondicao.Location      = new System.Drawing.Point(133, 111);
     this.comboBoxCondicao.Name          = "comboBoxCondicao";
     this.comboBoxCondicao.Size          = new System.Drawing.Size(100, 22);
     this.comboBoxCondicao.TabIndex      = 22;
     this.comboBoxCondicao.ValueMember   = "id";
     //
     // comboBox1
     //
     this.comboBox1.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.posteBindingSource, "posicao_trafo", true));
     this.comboBox1.Items.Add("");
     this.comboBox1.Items.Add("Favor");
     this.comboBox1.Items.Add("Contra");
     this.comboBox1.Location = new System.Drawing.Point(133, 83);
     this.comboBox1.Name     = "comboBox1";
     this.comboBox1.Size     = new System.Drawing.Size(100, 22);
     this.comboBox1.TabIndex = 18;
     //
     // trafo_idTextBox
     //
     this.trafo_idTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.posteBindingSource, "trafo_id", true));
     this.trafo_idTextBox.Location = new System.Drawing.Point(132, 193);
     this.trafo_idTextBox.Name     = "trafo_idTextBox";
     this.trafo_idTextBox.ReadOnly = true;
     this.trafo_idTextBox.Size     = new System.Drawing.Size(100, 21);
     this.trafo_idTextBox.TabIndex = 17;
     this.trafo_idTextBox.Visible  = false;
     //
     // gps_timeTextBox
     //
     this.gps_timeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.posteBindingSource, "gps_time", true));
     this.gps_timeTextBox.Location = new System.Drawing.Point(132, 220);
     this.gps_timeTextBox.Name     = "gps_timeTextBox";
     this.gps_timeTextBox.ReadOnly = true;
     this.gps_timeTextBox.Size     = new System.Drawing.Size(100, 21);
     this.gps_timeTextBox.TabIndex = 7;
     this.gps_timeTextBox.Visible  = false;
     //
     // obsTextBox
     //
     this.obsTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.posteBindingSource, "obs", true));
     this.obsTextBox.Location   = new System.Drawing.Point(46, 7);
     this.obsTextBox.Multiline  = true;
     this.obsTextBox.Name       = "obsTextBox";
     this.obsTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.obsTextBox.Size       = new System.Drawing.Size(187, 62);
     this.obsTextBox.TabIndex   = 1;
     //
     // tabPage4
     //
     this.tabPage4.Controls.Add(this.listPendencias);
     this.tabPage4.Controls.Add(this.button1);
     this.tabPage4.Location = new System.Drawing.Point(0, 0);
     this.tabPage4.Name     = "tabPage4";
     this.tabPage4.Size     = new System.Drawing.Size(232, 245);
     this.tabPage4.Text     = "Pendências";
     //
     // listPendencias
     //
     this.listPendencias.BackColor  = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.listPendencias.Dock       = System.Windows.Forms.DockStyle.Top;
     this.listPendencias.Font       = new System.Drawing.Font("Courier New", 8F, System.Drawing.FontStyle.Regular);
     this.listPendencias.ForeColor  = System.Drawing.Color.Red;
     this.listPendencias.Location   = new System.Drawing.Point(0, 0);
     this.listPendencias.Multiline  = true;
     this.listPendencias.Name       = "listPendencias";
     this.listPendencias.ReadOnly   = true;
     this.listPendencias.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.listPendencias.Size       = new System.Drawing.Size(232, 219);
     this.listPendencias.TabIndex   = 2;
     this.listPendencias.WordWrap   = false;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(3, 225);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(84, 20);
     this.button1.TabIndex = 1;
     this.button1.Text     = "Gerar";
     this.button1.Click   += new System.EventHandler(this.verificarPendenciaButton);
     //
     // condicao_riscoTableAdapter
     //
     this.condicao_riscoTableAdapter.ClearBeforeFill = true;
     //
     // posteTableAdapter
     //
     this.posteTableAdapter.ClearBeforeFill = true;
     //
     // postehasusomutuoBindingSource
     //
     this.postehasusomutuoBindingSource.DataMember = "poste_has_uso_mutuo";
     this.postehasusomutuoBindingSource.DataSource = this.eletrocadDataSet;
     //
     // poste_has_uso_mutuoTableAdapter
     //
     this.poste_has_uso_mutuoTableAdapter.ClearBeforeFill = true;
     //
     // postehastipoluminariaBindingSource
     //
     this.postehastipoluminariaBindingSource.DataMember = "poste_has_tipo_luminaria";
     this.postehastipoluminariaBindingSource.DataSource = this.eletrocadDataSet;
     //
     // poste_has_tipo_luminariaTableAdapter
     //
     this.poste_has_tipo_luminariaTableAdapter.ClearBeforeFill = true;
     //
     // CadastrarPostes
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.AutoScroll          = true;
     this.ClientSize          = new System.Drawing.Size(240, 294);
     this.ControlBox          = false;
     this.Controls.Add(this.tabControl1);
     this.Location    = new System.Drawing.Point(0, 0);
     this.Menu        = this.mainMenu1;
     this.MinimizeBox = false;
     this.Name        = "CadastrarPostes";
     this.Text        = "CadastrarPostes";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.CadastrarPostes_Load);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.posteBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.eletrocadDataSet)).EndInit();
     this.tabPage2.ResumeLayout(false);
     this.tabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.posteVizinhoBindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.condicaoriscoBindingSource)).EndInit();
     this.tabPage4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.postehasusomutuoBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.postehastipoluminariaBindingSource)).EndInit();
     this.ResumeLayout(false);
 }
예제 #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.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);
 }
예제 #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.components = new System.ComponentModel.Container();
            System.Windows.Forms.DataGridTextBoxColumn cod_trafoDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn potenciaDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn cod_proprietarioDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn observacaoDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ExportaDados));
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.menuItem1 = new System.Windows.Forms.MenuItem();
            this.menuItem2 = new System.Windows.Forms.MenuItem();
            this.trafoBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.citeluzDataSet = new Cadx.db.citeluzDataSet();
            this.trafoDataGrid = new System.Windows.Forms.DataGrid();
            this.trafoTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
            this.checkTodos = new System.Windows.Forms.CheckBox();
            this.plaquetaBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.plaquetaTableAdapter = new Cadx.db.citeluzDataSetTableAdapters.plaquetaTableAdapter();
            this.trafoTableAdapter = new Cadx.db.citeluzDataSetTableAdapters.trafoTableAdapter();
            this.materialBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.materialTableAdapter = new Cadx.db.citeluzDataSetTableAdapters.materialTableAdapter();
            this.listBox1 = new System.Windows.Forms.ListBox();
            this.picConnOK = new System.Windows.Forms.PictureBox();
            this.picConnOff = new System.Windows.Forms.PictureBox();
            this.picConnWait = new System.Windows.Forms.PictureBox();
            this.label2 = new System.Windows.Forms.Label();
            this.btEnvia = new Cadx.ButtonImage(this.components);
            this.txtNomeLote = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            cod_trafoDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            potenciaDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            cod_proprietarioDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            observacaoDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            ((System.ComponentModel.ISupportInitialize)(this.trafoBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.citeluzDataSet)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.plaquetaBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.materialBindingSource)).BeginInit();
            this.SuspendLayout();
            // 
            // cod_trafoDataGridColumnStyleDataGridTextBoxColumn
            // 
            cod_trafoDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            cod_trafoDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            cod_trafoDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "cod_trafo";
            cod_trafoDataGridColumnStyleDataGridTextBoxColumn.MappingName = "cod_trafo";
            // 
            // potenciaDataGridColumnStyleDataGridTextBoxColumn
            // 
            potenciaDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            potenciaDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            potenciaDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "potencia";
            potenciaDataGridColumnStyleDataGridTextBoxColumn.MappingName = "potencia";
            // 
            // cod_proprietarioDataGridColumnStyleDataGridTextBoxColumn
            // 
            cod_proprietarioDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            cod_proprietarioDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            cod_proprietarioDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "cod_proprietario";
            cod_proprietarioDataGridColumnStyleDataGridTextBoxColumn.MappingName = "cod_proprietario";
            // 
            // observacaoDataGridColumnStyleDataGridTextBoxColumn
            // 
            observacaoDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            observacaoDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            observacaoDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "observacao";
            observacaoDataGridColumnStyleDataGridTextBoxColumn.MappingName = "observacao";
            // 
            // plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn
            // 
            plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "plaqueta_trafo";
            plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn.MappingName = "plaqueta_trafo";
            // 
            // mainMenu1
            // 
            this.mainMenu1.MenuItems.Add(this.menuItem1);
            // 
            // menuItem1
            // 
            this.menuItem1.MenuItems.Add(this.menuItem2);
            this.menuItem1.Text = "Opções";
            // 
            // menuItem2
            // 
            this.menuItem2.Text = "Sair";
            this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
            // 
            // trafoBindingSource
            // 
            this.trafoBindingSource.DataMember = "trafo";
            this.trafoBindingSource.DataSource = this.citeluzDataSet;
            // 
            // citeluzDataSet
            // 
            this.citeluzDataSet.DataSetName = "citeluzDataSet";
            this.citeluzDataSet.Prefix = "";
            this.citeluzDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // trafoDataGrid
            // 
            this.trafoDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.trafoDataGrid.DataSource = this.trafoBindingSource;
            this.trafoDataGrid.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.trafoDataGrid.Location = new System.Drawing.Point(0, 168);
            this.trafoDataGrid.Name = "trafoDataGrid";
            this.trafoDataGrid.Size = new System.Drawing.Size(240, 126);
            this.trafoDataGrid.TabIndex = 11;
            this.trafoDataGrid.TableStyles.Add(this.trafoTableStyleDataGridTableStyle);
            // 
            // trafoTableStyleDataGridTableStyle
            // 
            this.trafoTableStyleDataGridTableStyle.GridColumnStyles.Add(cod_trafoDataGridColumnStyleDataGridTextBoxColumn);
            this.trafoTableStyleDataGridTableStyle.GridColumnStyles.Add(potenciaDataGridColumnStyleDataGridTextBoxColumn);
            this.trafoTableStyleDataGridTableStyle.GridColumnStyles.Add(cod_proprietarioDataGridColumnStyleDataGridTextBoxColumn);
            this.trafoTableStyleDataGridTableStyle.GridColumnStyles.Add(observacaoDataGridColumnStyleDataGridTextBoxColumn);
            this.trafoTableStyleDataGridTableStyle.GridColumnStyles.Add(plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn);
            this.trafoTableStyleDataGridTableStyle.MappingName = "trafo";
            // 
            // checkTodos
            // 
            this.checkTodos.Checked = true;
            this.checkTodos.CheckState = System.Windows.Forms.CheckState.Checked;
            this.checkTodos.Location = new System.Drawing.Point(3, 83);
            this.checkTodos.Name = "checkTodos";
            this.checkTodos.Size = new System.Drawing.Size(100, 20);
            this.checkTodos.TabIndex = 81;
            this.checkTodos.Text = "Enviar tudo";
            // 
            // plaquetaBindingSource
            // 
            this.plaquetaBindingSource.DataMember = "plaqueta";
            this.plaquetaBindingSource.DataSource = this.citeluzDataSet;
            // 
            // plaquetaTableAdapter
            // 
            this.plaquetaTableAdapter.ClearBeforeFill = true;
            // 
            // trafoTableAdapter
            // 
            this.trafoTableAdapter.ClearBeforeFill = true;
            // 
            // materialBindingSource
            // 
            this.materialBindingSource.DataMember = "material";
            this.materialBindingSource.DataSource = this.citeluzDataSet;
            // 
            // materialTableAdapter
            // 
            this.materialTableAdapter.ClearBeforeFill = true;
            // 
            // listBox1
            // 
            this.listBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.listBox1.Font = new System.Drawing.Font("Courier New", 7F, System.Drawing.FontStyle.Regular);
            this.listBox1.ForeColor = System.Drawing.Color.Lime;
            this.listBox1.Location = new System.Drawing.Point(3, 105);
            this.listBox1.Name = "listBox1";
            this.listBox1.Size = new System.Drawing.Size(234, 57);
            this.listBox1.TabIndex = 82;
            // 
            // picConnOK
            // 
            this.picConnOK.Image = ((System.Drawing.Image)(resources.GetObject("picConnOK.Image")));
            this.picConnOK.Location = new System.Drawing.Point(200, 84);
            this.picConnOK.Name = "picConnOK";
            this.picConnOK.Size = new System.Drawing.Size(16, 16);
            this.picConnOK.Visible = false;
            // 
            // picConnOff
            // 
            this.picConnOff.Image = ((System.Drawing.Image)(resources.GetObject("picConnOff.Image")));
            this.picConnOff.Location = new System.Drawing.Point(200, 84);
            this.picConnOff.Name = "picConnOff";
            this.picConnOff.Size = new System.Drawing.Size(16, 16);
            // 
            // picConnWait
            // 
            this.picConnWait.Image = ((System.Drawing.Image)(resources.GetObject("picConnWait.Image")));
            this.picConnWait.Location = new System.Drawing.Point(200, 84);
            this.picConnWait.Name = "picConnWait";
            this.picConnWait.Size = new System.Drawing.Size(16, 16);
            this.picConnWait.Visible = false;
            // 
            // label2
            // 
            this.label2.Location = new System.Drawing.Point(138, 84);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(96, 20);
            this.label2.Text = "Conexão:";
            // 
            // btEnvia
            // 
            this.btEnvia.Font = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular);
            this.btEnvia.Image = ((System.Drawing.Image)(resources.GetObject("btEnvia.Image")));
            this.btEnvia.Location = new System.Drawing.Point(3, 3);
            this.btEnvia.Name = "btEnvia";
            this.btEnvia.Size = new System.Drawing.Size(234, 43);
            this.btEnvia.TabIndex = 11;
            this.btEnvia.Text = "Enviar";
            this.btEnvia.Click += new System.EventHandler(this.enviarButton_Click);
            // 
            // txtNomeLote
            // 
            this.txtNomeLote.Location = new System.Drawing.Point(98, 52);
            this.txtNomeLote.Name = "txtNomeLote";
            this.txtNomeLote.Size = new System.Drawing.Size(139, 21);
            this.txtNomeLote.TabIndex = 88;
            // 
            // label1
            // 
            this.label1.Location = new System.Drawing.Point(3, 53);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(100, 20);
            this.label1.Text = "Nome do Lote:";
            // 
            // ExportaDados
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(240, 294);
            this.ControlBox = false;
            this.Controls.Add(this.txtNomeLote);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.picConnOK);
            this.Controls.Add(this.picConnOff);
            this.Controls.Add(this.picConnWait);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.listBox1);
            this.Controls.Add(this.checkTodos);
            this.Controls.Add(this.trafoDataGrid);
            this.Controls.Add(this.btEnvia);
            this.Location = new System.Drawing.Point(0, 0);
            this.Menu = this.mainMenu1;
            this.MinimizeBox = false;
            this.Name = "ExportaDados";
            this.Text = "ExportaDados";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.ExportaDados_Load);
            this.Closing += new System.ComponentModel.CancelEventHandler(this.ExportaDados_Closing);
            ((System.ComponentModel.ISupportInitialize)(this.trafoBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.citeluzDataSet)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.plaquetaBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.materialBindingSource)).EndInit();
            this.ResumeLayout(false);

        }
예제 #20
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.Label tipo_luminaria_idLabel;
     System.Windows.Forms.Label poste_idLabel;
     System.Windows.Forms.Label lampada_idLabel;
     System.Windows.Forms.Label braco_idLabel;
     System.Windows.Forms.Label ativacao_idLabel;
     System.Windows.Forms.Label fase_idLabel;
     System.Windows.Forms.Label quantidadeLabel;
     System.Windows.Forms.Label chave_comandoLabel;
     System.Windows.Forms.Label latLabel;
     System.Windows.Forms.Label lonLabel;
     System.Windows.Forms.Label gps_timeLabel;
     System.Windows.Forms.DataGridTextBoxColumn quantidadeDataGridColumnStyleDataGridTextBoxColumn1;
     System.Windows.Forms.DataGridTextBoxColumn lampadaDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.DataGridTextBoxColumn luminariaDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.Label reator_idLabel;
     this.mainMenu1               = new System.Windows.Forms.MainMenu();
     this.menuItem1               = new System.Windows.Forms.MenuItem();
     this.menuItem4               = new System.Windows.Forms.MenuItem();
     this.menuItem5               = new System.Windows.Forms.MenuItem();
     this.menuItem6               = new System.Windows.Forms.MenuItem();
     this.menuItem7               = new System.Windows.Forms.MenuItem();
     this.menuItem3               = new System.Windows.Forms.MenuItem();
     this.menuItem2               = new System.Windows.Forms.MenuItem();
     this.label1                  = new System.Windows.Forms.Label();
     this.tabControl1             = new System.Windows.Forms.TabControl();
     this.tabPage1                = new System.Windows.Forms.TabPage();
     this.luminariasBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.luminariasDataGrid      = new System.Windows.Forms.DataGrid();
     this.eletrocadDataSet        = new CipX.db.eletrocadDataSet();
     this.luminariasTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.chavecomandoBindingSource          = new System.Windows.Forms.BindingSource(this.components);
     this.cbChaveComando                     = new System.Windows.Forms.ComboBox();
     this.postehastipoluminariaBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.quantidadeTextBox                  = new System.Windows.Forms.TextBox();
     this.faseBindingSource                  = new System.Windows.Forms.BindingSource(this.components);
     this.cbFaseId = new System.Windows.Forms.ComboBox();
     this.ativacaoBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.cbAtivacao            = new System.Windows.Forms.ComboBox();
     this.bracoBindingSource    = new System.Windows.Forms.BindingSource(this.components);
     this.cbBraco = new System.Windows.Forms.ComboBox();
     this.lampadaBindingSource       = new System.Windows.Forms.BindingSource(this.components);
     this.cbLampada                  = new System.Windows.Forms.ComboBox();
     this.tipoluminariaBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.cbTipoLum                  = new System.Windows.Forms.ComboBox();
     this.poste_idTextBox            = new System.Windows.Forms.TextBox();
     this.tabPage4            = new System.Windows.Forms.TabPage();
     this.chkRepetir          = new System.Windows.Forms.CheckBox();
     this.reatorBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.cbReator            = new System.Windows.Forms.ComboBox();
     this.checkBox1           = new System.Windows.Forms.CheckBox();
     this.gps_timeTextBox     = new System.Windows.Forms.TextBox();
     this.lonTextBox          = new System.Windows.Forms.TextBox();
     this.latTextBox          = new System.Windows.Forms.TextBox();
     this.tabPage3            = new System.Windows.Forms.TabPage();
     this.foto_pathTextBox    = new System.Windows.Forms.TextBox();
     this.button2             = new System.Windows.Forms.Button();
     this.button1             = new System.Windows.Forms.Button();
     this.pictureBox1         = new System.Windows.Forms.PictureBox();
     this.poste_has_tipo_luminariaTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.poste_has_tipo_luminariaTableAdapter();
     this.tipo_luminariaTableAdapter           = new CipX.db.eletrocadDataSetTableAdapters.tipo_luminariaTableAdapter();
     this.lampadaTableAdapter       = new CipX.db.eletrocadDataSetTableAdapters.lampadaTableAdapter();
     this.reatorTableAdapter        = new CipX.db.eletrocadDataSetTableAdapters.reatorTableAdapter();
     this.bracoTableAdapter         = new CipX.db.eletrocadDataSetTableAdapters.bracoTableAdapter();
     this.ativacaoTableAdapter      = new CipX.db.eletrocadDataSetTableAdapters.ativacaoTableAdapter();
     this.faseTableAdapter          = new CipX.db.eletrocadDataSetTableAdapters.faseTableAdapter();
     this.chave_comandoTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.chave_comandoTableAdapter();
     this.luminariasTableAdapter    = new CipX.db.eletrocadDataSetTableAdapters.luminariasTableAdapter();
     this.chkDerivacao      = new System.Windows.Forms.CheckBox();
     tipo_luminaria_idLabel = new System.Windows.Forms.Label();
     poste_idLabel          = new System.Windows.Forms.Label();
     lampada_idLabel        = new System.Windows.Forms.Label();
     braco_idLabel          = new System.Windows.Forms.Label();
     ativacao_idLabel       = new System.Windows.Forms.Label();
     fase_idLabel           = new System.Windows.Forms.Label();
     quantidadeLabel        = new System.Windows.Forms.Label();
     chave_comandoLabel     = new System.Windows.Forms.Label();
     latLabel      = new System.Windows.Forms.Label();
     lonLabel      = new System.Windows.Forms.Label();
     gps_timeLabel = new System.Windows.Forms.Label();
     quantidadeDataGridColumnStyleDataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
     lampadaDataGridColumnStyleDataGridTextBoxColumn     = new System.Windows.Forms.DataGridTextBoxColumn();
     luminariaDataGridColumnStyleDataGridTextBoxColumn   = new System.Windows.Forms.DataGridTextBoxColumn();
     reator_idLabel = new System.Windows.Forms.Label();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luminariasBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.eletrocadDataSet)).BeginInit();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chavecomandoBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.postehastipoluminariaBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.faseBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ativacaoBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bracoBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lampadaBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipoluminariaBindingSource)).BeginInit();
     this.tabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.reatorBindingSource)).BeginInit();
     this.tabPage3.SuspendLayout();
     this.SuspendLayout();
     //
     // tipo_luminaria_idLabel
     //
     tipo_luminaria_idLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     tipo_luminaria_idLabel.Location = new System.Drawing.Point(4, 11);
     tipo_luminaria_idLabel.Name     = "tipo_luminaria_idLabel";
     tipo_luminaria_idLabel.Size     = new System.Drawing.Size(110, 14);
     tipo_luminaria_idLabel.Text     = "tipo luminaria id:";
     //
     // poste_idLabel
     //
     poste_idLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     poste_idLabel.Location = new System.Drawing.Point(52, 230);
     poste_idLabel.Name     = "poste_idLabel";
     poste_idLabel.Size     = new System.Drawing.Size(61, 14);
     poste_idLabel.Text     = "poste id:";
     poste_idLabel.Visible  = false;
     //
     // lampada_idLabel
     //
     lampada_idLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     lampada_idLabel.Location = new System.Drawing.Point(36, 38);
     lampada_idLabel.Name     = "lampada_idLabel";
     lampada_idLabel.Size     = new System.Drawing.Size(77, 14);
     lampada_idLabel.Text     = "lampada id:";
     //
     // braco_idLabel
     //
     braco_idLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     braco_idLabel.Location = new System.Drawing.Point(53, 62);
     braco_idLabel.Name     = "braco_idLabel";
     braco_idLabel.Size     = new System.Drawing.Size(60, 14);
     braco_idLabel.Text     = "braco id:";
     //
     // ativacao_idLabel
     //
     ativacao_idLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     ativacao_idLabel.Location = new System.Drawing.Point(36, 93);
     ativacao_idLabel.Name     = "ativacao_idLabel";
     ativacao_idLabel.Size     = new System.Drawing.Size(77, 14);
     ativacao_idLabel.Text     = "ativacao id:";
     //
     // fase_idLabel
     //
     fase_idLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     fase_idLabel.Location = new System.Drawing.Point(62, 120);
     fase_idLabel.Name     = "fase_idLabel";
     fase_idLabel.Size     = new System.Drawing.Size(51, 14);
     fase_idLabel.Text     = "fase id:";
     //
     // quantidadeLabel
     //
     quantidadeLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     quantidadeLabel.Location = new System.Drawing.Point(32, 177);
     quantidadeLabel.Name     = "quantidadeLabel";
     quantidadeLabel.Size     = new System.Drawing.Size(81, 14);
     quantidadeLabel.Text     = "quantidade:";
     //
     // chave_comandoLabel
     //
     chave_comandoLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     chave_comandoLabel.Location = new System.Drawing.Point(7, 148);
     chave_comandoLabel.Name     = "chave_comandoLabel";
     chave_comandoLabel.Size     = new System.Drawing.Size(106, 14);
     chave_comandoLabel.Text     = "chave comando:";
     //
     // latLabel
     //
     latLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     latLabel.Location = new System.Drawing.Point(50, 61);
     latLabel.Name     = "latLabel";
     latLabel.Size     = new System.Drawing.Size(27, 14);
     latLabel.Text     = "lat:";
     //
     // lonLabel
     //
     lonLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     lonLabel.Location = new System.Drawing.Point(47, 88);
     lonLabel.Name     = "lonLabel";
     lonLabel.Size     = new System.Drawing.Size(30, 14);
     lonLabel.Text     = "lon:";
     //
     // gps_timeLabel
     //
     gps_timeLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     gps_timeLabel.Location = new System.Drawing.Point(13, 115);
     gps_timeLabel.Name     = "gps_timeLabel";
     gps_timeLabel.Size     = new System.Drawing.Size(64, 14);
     gps_timeLabel.Text     = "gps time:";
     //
     // quantidadeDataGridColumnStyleDataGridTextBoxColumn1
     //
     quantidadeDataGridColumnStyleDataGridTextBoxColumn1.Format      = "";
     quantidadeDataGridColumnStyleDataGridTextBoxColumn1.FormatInfo  = null;
     quantidadeDataGridColumnStyleDataGridTextBoxColumn1.HeaderText  = "quantidade";
     quantidadeDataGridColumnStyleDataGridTextBoxColumn1.MappingName = "quantidade";
     quantidadeDataGridColumnStyleDataGridTextBoxColumn1.NullText    = "";
     quantidadeDataGridColumnStyleDataGridTextBoxColumn1.Width       = 80;
     //
     // lampadaDataGridColumnStyleDataGridTextBoxColumn
     //
     lampadaDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     lampadaDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     lampadaDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "lâmpada";
     lampadaDataGridColumnStyleDataGridTextBoxColumn.MappingName = "lampada";
     lampadaDataGridColumnStyleDataGridTextBoxColumn.Width       = 120;
     //
     // luminariaDataGridColumnStyleDataGridTextBoxColumn
     //
     luminariaDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     luminariaDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     luminariaDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "luminária";
     luminariaDataGridColumnStyleDataGridTextBoxColumn.MappingName = "luminaria";
     luminariaDataGridColumnStyleDataGridTextBoxColumn.Width       = 80;
     //
     // reator_idLabel
     //
     reator_idLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     reator_idLabel.Location = new System.Drawing.Point(18, 10);
     reator_idLabel.Name     = "reator_idLabel";
     reator_idLabel.Size     = new System.Drawing.Size(64, 14);
     reator_idLabel.Text     = "reator id:";
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.Add(this.menuItem1);
     //
     // menuItem1
     //
     this.menuItem1.MenuItems.Add(this.menuItem4);
     this.menuItem1.MenuItems.Add(this.menuItem5);
     this.menuItem1.MenuItems.Add(this.menuItem6);
     this.menuItem1.MenuItems.Add(this.menuItem3);
     this.menuItem1.MenuItems.Add(this.menuItem2);
     this.menuItem1.Text = "Opções";
     //
     // menuItem4
     //
     this.menuItem4.Text   = "Novo";
     this.menuItem4.Click += new System.EventHandler(this.novo);
     //
     // menuItem5
     //
     this.menuItem5.Text   = "Salvar";
     this.menuItem5.Click += new System.EventHandler(this.salvar);
     //
     // menuItem6
     //
     this.menuItem6.MenuItems.Add(this.menuItem7);
     this.menuItem6.Text = "Mais";
     //
     // menuItem7
     //
     this.menuItem7.Text   = "Excluir";
     this.menuItem7.Click += new System.EventHandler(this.excluir);
     //
     // menuItem3
     //
     this.menuItem3.Text = "-";
     //
     // menuItem2
     //
     this.menuItem2.Text   = "Sair";
     this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.label1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.label1.Font      = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.label1.Location  = new System.Drawing.Point(0, 274);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(240, 20);
     this.label1.Text      = "label1";
     this.label1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     this.label1.Visible   = false;
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage4);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location      = new System.Drawing.Point(0, 0);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(240, 274);
     this.tabControl1.TabIndex      = 8;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.luminariasDataGrid);
     this.tabPage1.Location = new System.Drawing.Point(0, 0);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(240, 251);
     this.tabPage1.Text     = "Tabela";
     //
     // luminariasBindingSource
     //
     this.luminariasBindingSource.DataMember = "luminarias";
     this.luminariasBindingSource.DataSource = this.eletrocadDataSet;
     //
     // luminariasDataGrid
     //
     this.luminariasDataGrid.BackgroundColor   = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.luminariasDataGrid.DataSource        = this.luminariasBindingSource;
     this.luminariasDataGrid.Dock              = System.Windows.Forms.DockStyle.Top;
     this.luminariasDataGrid.Location          = new System.Drawing.Point(0, 0);
     this.luminariasDataGrid.Name              = "luminariasDataGrid";
     this.luminariasDataGrid.RowHeadersVisible = false;
     this.luminariasDataGrid.Size              = new System.Drawing.Size(240, 248);
     this.luminariasDataGrid.TabIndex          = 2;
     this.luminariasDataGrid.TableStyles.Add(this.luminariasTableStyleDataGridTableStyle);
     //
     // eletrocadDataSet
     //
     this.eletrocadDataSet.DataSetName             = "eletrocadDataSet";
     this.eletrocadDataSet.Prefix                  = "";
     this.eletrocadDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // luminariasTableStyleDataGridTableStyle
     //
     this.luminariasTableStyleDataGridTableStyle.GridColumnStyles.Add(luminariaDataGridColumnStyleDataGridTextBoxColumn);
     this.luminariasTableStyleDataGridTableStyle.GridColumnStyles.Add(lampadaDataGridColumnStyleDataGridTextBoxColumn);
     this.luminariasTableStyleDataGridTableStyle.GridColumnStyles.Add(quantidadeDataGridColumnStyleDataGridTextBoxColumn1);
     this.luminariasTableStyleDataGridTableStyle.MappingName = "luminarias";
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.cbChaveComando);
     this.tabPage2.Controls.Add(chave_comandoLabel);
     this.tabPage2.Controls.Add(quantidadeLabel);
     this.tabPage2.Controls.Add(this.quantidadeTextBox);
     this.tabPage2.Controls.Add(this.cbFaseId);
     this.tabPage2.Controls.Add(this.cbAtivacao);
     this.tabPage2.Controls.Add(fase_idLabel);
     this.tabPage2.Controls.Add(ativacao_idLabel);
     this.tabPage2.Controls.Add(this.cbBraco);
     this.tabPage2.Controls.Add(braco_idLabel);
     this.tabPage2.Controls.Add(this.cbLampada);
     this.tabPage2.Controls.Add(lampada_idLabel);
     this.tabPage2.Controls.Add(this.cbTipoLum);
     this.tabPage2.Controls.Add(tipo_luminaria_idLabel);
     this.tabPage2.Controls.Add(poste_idLabel);
     this.tabPage2.Controls.Add(this.poste_idTextBox);
     this.tabPage2.Location = new System.Drawing.Point(0, 0);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(232, 248);
     this.tabPage2.Text     = "Formulário I";
     //
     // chavecomandoBindingSource
     //
     this.chavecomandoBindingSource.DataMember = "chave_comando";
     this.chavecomandoBindingSource.DataSource = this.eletrocadDataSet;
     //
     // cbChaveComando
     //
     this.cbChaveComando.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.postehastipoluminariaBindingSource, "chave_comando", true));
     this.cbChaveComando.DataSource    = this.chavecomandoBindingSource;
     this.cbChaveComando.DisplayMember = "descricao";
     this.cbChaveComando.Location      = new System.Drawing.Point(114, 146);
     this.cbChaveComando.Name          = "cbChaveComando";
     this.cbChaveComando.Size          = new System.Drawing.Size(119, 22);
     this.cbChaveComando.TabIndex      = 32;
     this.cbChaveComando.ValueMember   = "id";
     //
     // postehastipoluminariaBindingSource
     //
     this.postehastipoluminariaBindingSource.DataMember = "poste_has_tipo_luminaria";
     this.postehastipoluminariaBindingSource.DataSource = this.eletrocadDataSet;
     //
     // quantidadeTextBox
     //
     this.quantidadeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.postehastipoluminariaBindingSource, "quantidade", true));
     this.quantidadeTextBox.Location  = new System.Drawing.Point(114, 174);
     this.quantidadeTextBox.Name      = "quantidadeTextBox";
     this.quantidadeTextBox.Size      = new System.Drawing.Size(119, 21);
     this.quantidadeTextBox.TabIndex  = 31;
     this.quantidadeTextBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.quantidadeTextBox_KeyPress);
     //
     // faseBindingSource
     //
     this.faseBindingSource.DataMember = "fase";
     this.faseBindingSource.DataSource = this.eletrocadDataSet;
     //
     // cbFaseId
     //
     this.cbFaseId.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.postehastipoluminariaBindingSource, "fase_id", true));
     this.cbFaseId.DataSource    = this.faseBindingSource;
     this.cbFaseId.DisplayMember = "descricao";
     this.cbFaseId.Location      = new System.Drawing.Point(114, 118);
     this.cbFaseId.Name          = "cbFaseId";
     this.cbFaseId.Size          = new System.Drawing.Size(119, 22);
     this.cbFaseId.TabIndex      = 22;
     this.cbFaseId.ValueMember   = "id";
     //
     // ativacaoBindingSource
     //
     this.ativacaoBindingSource.DataMember = "ativacao";
     this.ativacaoBindingSource.DataSource = this.eletrocadDataSet;
     //
     // cbAtivacao
     //
     this.cbAtivacao.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.postehastipoluminariaBindingSource, "ativacao_id", true));
     this.cbAtivacao.DataSource    = this.ativacaoBindingSource;
     this.cbAtivacao.DisplayMember = "descricao";
     this.cbAtivacao.Location      = new System.Drawing.Point(114, 90);
     this.cbAtivacao.Name          = "cbAtivacao";
     this.cbAtivacao.Size          = new System.Drawing.Size(119, 22);
     this.cbAtivacao.TabIndex      = 21;
     this.cbAtivacao.ValueMember   = "id";
     //
     // bracoBindingSource
     //
     this.bracoBindingSource.DataMember = "braco";
     this.bracoBindingSource.DataSource = this.eletrocadDataSet;
     //
     // cbBraco
     //
     this.cbBraco.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.postehastipoluminariaBindingSource, "braco_id", true));
     this.cbBraco.DataSource    = this.bracoBindingSource;
     this.cbBraco.DisplayMember = "descricao";
     this.cbBraco.Location      = new System.Drawing.Point(114, 62);
     this.cbBraco.Name          = "cbBraco";
     this.cbBraco.Size          = new System.Drawing.Size(119, 22);
     this.cbBraco.TabIndex      = 13;
     this.cbBraco.ValueMember   = "id";
     //
     // lampadaBindingSource
     //
     this.lampadaBindingSource.DataMember = "lampada";
     this.lampadaBindingSource.DataSource = this.eletrocadDataSet;
     //
     // cbLampada
     //
     this.cbLampada.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.postehastipoluminariaBindingSource, "lampada_id", true));
     this.cbLampada.DataSource    = this.lampadaBindingSource;
     this.cbLampada.DisplayMember = "descricao";
     this.cbLampada.Location      = new System.Drawing.Point(114, 35);
     this.cbLampada.Name          = "cbLampada";
     this.cbLampada.Size          = new System.Drawing.Size(119, 22);
     this.cbLampada.TabIndex      = 11;
     this.cbLampada.ValueMember   = "id";
     //
     // tipoluminariaBindingSource
     //
     this.tipoluminariaBindingSource.DataMember = "tipo_luminaria";
     this.tipoluminariaBindingSource.DataSource = this.eletrocadDataSet;
     //
     // cbTipoLum
     //
     this.cbTipoLum.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.postehastipoluminariaBindingSource, "tipo_luminaria_id", true));
     this.cbTipoLum.DataSource            = this.tipoluminariaBindingSource;
     this.cbTipoLum.DisplayMember         = "descricao";
     this.cbTipoLum.Location              = new System.Drawing.Point(114, 7);
     this.cbTipoLum.Name                  = "cbTipoLum";
     this.cbTipoLum.Size                  = new System.Drawing.Size(119, 22);
     this.cbTipoLum.TabIndex              = 8;
     this.cbTipoLum.ValueMember           = "id";
     this.cbTipoLum.SelectedIndexChanged += new System.EventHandler(this.cbTipoLum_SelectedIndexChanged);
     this.cbTipoLum.SelectedValueChanged += new System.EventHandler(this.cbTipoLum_SelectedValueChanged);
     //
     // poste_idTextBox
     //
     this.poste_idTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.postehastipoluminariaBindingSource, "poste_id", true));
     this.poste_idTextBox.Location = new System.Drawing.Point(114, 227);
     this.poste_idTextBox.Name     = "poste_idTextBox";
     this.poste_idTextBox.ReadOnly = true;
     this.poste_idTextBox.Size     = new System.Drawing.Size(119, 21);
     this.poste_idTextBox.TabIndex = 7;
     this.poste_idTextBox.Visible  = false;
     //
     // tabPage4
     //
     this.tabPage4.Controls.Add(this.chkDerivacao);
     this.tabPage4.Controls.Add(this.chkRepetir);
     this.tabPage4.Controls.Add(this.cbReator);
     this.tabPage4.Controls.Add(reator_idLabel);
     this.tabPage4.Controls.Add(this.checkBox1);
     this.tabPage4.Controls.Add(gps_timeLabel);
     this.tabPage4.Controls.Add(this.gps_timeTextBox);
     this.tabPage4.Controls.Add(lonLabel);
     this.tabPage4.Controls.Add(this.lonTextBox);
     this.tabPage4.Controls.Add(latLabel);
     this.tabPage4.Controls.Add(this.latTextBox);
     this.tabPage4.Location = new System.Drawing.Point(0, 0);
     this.tabPage4.Name     = "tabPage4";
     this.tabPage4.Size     = new System.Drawing.Size(240, 251);
     this.tabPage4.Text     = "Formulário II";
     //
     // chkRepetir
     //
     this.chkRepetir.Location           = new System.Drawing.Point(9, 142);
     this.chkRepetir.Name               = "chkRepetir";
     this.chkRepetir.Size               = new System.Drawing.Size(224, 20);
     this.chkRepetir.TabIndex           = 47;
     this.chkRepetir.Text               = "Repetir Coordenada do poste";
     this.chkRepetir.CheckStateChanged += new System.EventHandler(this.chkDerivacao_CheckStateChanged);
     //
     // reatorBindingSource
     //
     this.reatorBindingSource.DataMember = "reator";
     this.reatorBindingSource.DataSource = this.eletrocadDataSet;
     //
     // cbReator
     //
     this.cbReator.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.postehastipoluminariaBindingSource, "reator_id", true));
     this.cbReator.DataSource    = this.reatorBindingSource;
     this.cbReator.DisplayMember = "descricao";
     this.cbReator.Location      = new System.Drawing.Point(83, 7);
     this.cbReator.Name          = "cbReator";
     this.cbReator.Size          = new System.Drawing.Size(119, 22);
     this.cbReator.TabIndex      = 45;
     this.cbReator.ValueMember   = "id";
     //
     // checkBox1
     //
     this.checkBox1.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.postehastipoluminariaBindingSource, "aceso", true));
     this.checkBox1.Location = new System.Drawing.Point(83, 35);
     this.checkBox1.Name     = "checkBox1";
     this.checkBox1.Size     = new System.Drawing.Size(100, 20);
     this.checkBox1.TabIndex = 8;
     this.checkBox1.Text     = "Aceso 24 H";
     //
     // gps_timeTextBox
     //
     this.gps_timeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.postehastipoluminariaBindingSource, "gps_time", true));
     this.gps_timeTextBox.Location = new System.Drawing.Point(83, 115);
     this.gps_timeTextBox.Name     = "gps_timeTextBox";
     this.gps_timeTextBox.ReadOnly = true;
     this.gps_timeTextBox.Size     = new System.Drawing.Size(150, 21);
     this.gps_timeTextBox.TabIndex = 5;
     //
     // lonTextBox
     //
     this.lonTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.postehastipoluminariaBindingSource, "lon", true));
     this.lonTextBox.Location = new System.Drawing.Point(83, 88);
     this.lonTextBox.Name     = "lonTextBox";
     this.lonTextBox.ReadOnly = true;
     this.lonTextBox.Size     = new System.Drawing.Size(150, 21);
     this.lonTextBox.TabIndex = 3;
     //
     // latTextBox
     //
     this.latTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.postehastipoluminariaBindingSource, "lat", true));
     this.latTextBox.Location = new System.Drawing.Point(83, 61);
     this.latTextBox.Name     = "latTextBox";
     this.latTextBox.ReadOnly = true;
     this.latTextBox.Size     = new System.Drawing.Size(150, 21);
     this.latTextBox.TabIndex = 1;
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.foto_pathTextBox);
     this.tabPage3.Controls.Add(this.button2);
     this.tabPage3.Controls.Add(this.button1);
     this.tabPage3.Controls.Add(this.pictureBox1);
     this.tabPage3.Location  = new System.Drawing.Point(0, 0);
     this.tabPage3.Name      = "tabPage3";
     this.tabPage3.Size      = new System.Drawing.Size(232, 248);
     this.tabPage3.Text      = "Foto";
     this.tabPage3.GotFocus += new System.EventHandler(this.tabPage3_GotFocus);
     //
     // foto_pathTextBox
     //
     this.foto_pathTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.foto_pathTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.postehastipoluminariaBindingSource, "foto_path", true));
     this.foto_pathTextBox.Font     = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.foto_pathTextBox.Location = new System.Drawing.Point(3, 186);
     this.foto_pathTextBox.Name     = "foto_pathTextBox";
     this.foto_pathTextBox.ReadOnly = true;
     this.foto_pathTextBox.Size     = new System.Drawing.Size(230, 19);
     this.foto_pathTextBox.TabIndex = 7;
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(115, 213);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(86, 33);
     this.button2.TabIndex = 4;
     this.button2.Text     = "Mostar Foto";
     this.button2.Click   += new System.EventHandler(this.button2_Click);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(3, 213);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(86, 33);
     this.button1.TabIndex = 2;
     this.button1.Text     = "Fotografar";
     this.button1.Click   += new System.EventHandler(this.button1_Click);
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.pictureBox1.DataBindings.Add(new System.Windows.Forms.Binding("Image", this.postehastipoluminariaBindingSource, "foto_path", true));
     this.pictureBox1.Location = new System.Drawing.Point(3, 3);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(230, 200);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     //
     // poste_has_tipo_luminariaTableAdapter
     //
     this.poste_has_tipo_luminariaTableAdapter.ClearBeforeFill = true;
     //
     // tipo_luminariaTableAdapter
     //
     this.tipo_luminariaTableAdapter.ClearBeforeFill = true;
     //
     // lampadaTableAdapter
     //
     this.lampadaTableAdapter.ClearBeforeFill = true;
     //
     // reatorTableAdapter
     //
     this.reatorTableAdapter.ClearBeforeFill = true;
     //
     // bracoTableAdapter
     //
     this.bracoTableAdapter.ClearBeforeFill = true;
     //
     // ativacaoTableAdapter
     //
     this.ativacaoTableAdapter.ClearBeforeFill = true;
     //
     // faseTableAdapter
     //
     this.faseTableAdapter.ClearBeforeFill = true;
     //
     // chave_comandoTableAdapter
     //
     this.chave_comandoTableAdapter.ClearBeforeFill = true;
     //
     // luminariasTableAdapter
     //
     this.luminariasTableAdapter.ClearBeforeFill = true;
     //
     // chkDerivacao
     //
     this.chkDerivacao.Location           = new System.Drawing.Point(9, 168);
     this.chkDerivacao.Name               = "chkDerivacao";
     this.chkDerivacao.Size               = new System.Drawing.Size(224, 20);
     this.chkDerivacao.TabIndex           = 52;
     this.chkDerivacao.Text               = "Derivação (Outra Coordenada)";
     this.chkDerivacao.CheckStateChanged += new System.EventHandler(this.chkDerivacao_CheckStateChanged);
     //
     // CadastrarLuminaria
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.AutoScroll          = true;
     this.ClientSize          = new System.Drawing.Size(240, 294);
     this.ControlBox          = false;
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.label1);
     this.Location    = new System.Drawing.Point(0, 0);
     this.Menu        = this.mainMenu1;
     this.MinimizeBox = false;
     this.Name        = "CadastrarLuminaria";
     this.Text        = "CadastrarLuminaria";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.CadastrarLuminaria_Load);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.luminariasBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.eletrocadDataSet)).EndInit();
     this.tabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chavecomandoBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.postehastipoluminariaBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.faseBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ativacaoBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bracoBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lampadaBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipoluminariaBindingSource)).EndInit();
     this.tabPage4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.reatorBindingSource)).EndInit();
     this.tabPage3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #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);
 }
예제 #22
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);
 }
예제 #23
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.DataGridTextBoxColumn     cod_trafoDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.DataGridTextBoxColumn     potenciaDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.DataGridTextBoxColumn     cod_proprietarioDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.DataGridTextBoxColumn     observacaoDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.DataGridTextBoxColumn     plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ExportaDados));
     this.mainMenu1          = new System.Windows.Forms.MainMenu();
     this.menuItem1          = new System.Windows.Forms.MenuItem();
     this.menuItem2          = new System.Windows.Forms.MenuItem();
     this.trafoBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.citeluzDataSet     = new Cadx.db.citeluzDataSet();
     this.trafoDataGrid      = new System.Windows.Forms.DataGrid();
     this.trafoTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
     this.checkTodos            = new System.Windows.Forms.CheckBox();
     this.plaquetaBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.plaquetaTableAdapter  = new Cadx.db.citeluzDataSetTableAdapters.plaquetaTableAdapter();
     this.trafoTableAdapter     = new Cadx.db.citeluzDataSetTableAdapters.trafoTableAdapter();
     this.materialBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.materialTableAdapter  = new Cadx.db.citeluzDataSetTableAdapters.materialTableAdapter();
     this.listBox1    = new System.Windows.Forms.ListBox();
     this.picConnOK   = new System.Windows.Forms.PictureBox();
     this.picConnOff  = new System.Windows.Forms.PictureBox();
     this.picConnWait = new System.Windows.Forms.PictureBox();
     this.label2      = new System.Windows.Forms.Label();
     this.btEnvia     = new Cadx.ButtonImage(this.components);
     this.txtNomeLote = new System.Windows.Forms.TextBox();
     this.label1      = new System.Windows.Forms.Label();
     cod_trafoDataGridColumnStyleDataGridTextBoxColumn        = new System.Windows.Forms.DataGridTextBoxColumn();
     potenciaDataGridColumnStyleDataGridTextBoxColumn         = new System.Windows.Forms.DataGridTextBoxColumn();
     cod_proprietarioDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
     observacaoDataGridColumnStyleDataGridTextBoxColumn       = new System.Windows.Forms.DataGridTextBoxColumn();
     plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn   = new System.Windows.Forms.DataGridTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.trafoBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.citeluzDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.plaquetaBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.materialBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // cod_trafoDataGridColumnStyleDataGridTextBoxColumn
     //
     cod_trafoDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     cod_trafoDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     cod_trafoDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "cod_trafo";
     cod_trafoDataGridColumnStyleDataGridTextBoxColumn.MappingName = "cod_trafo";
     //
     // potenciaDataGridColumnStyleDataGridTextBoxColumn
     //
     potenciaDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     potenciaDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     potenciaDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "potencia";
     potenciaDataGridColumnStyleDataGridTextBoxColumn.MappingName = "potencia";
     //
     // cod_proprietarioDataGridColumnStyleDataGridTextBoxColumn
     //
     cod_proprietarioDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     cod_proprietarioDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     cod_proprietarioDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "cod_proprietario";
     cod_proprietarioDataGridColumnStyleDataGridTextBoxColumn.MappingName = "cod_proprietario";
     //
     // observacaoDataGridColumnStyleDataGridTextBoxColumn
     //
     observacaoDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     observacaoDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     observacaoDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "observacao";
     observacaoDataGridColumnStyleDataGridTextBoxColumn.MappingName = "observacao";
     //
     // plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn
     //
     plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "plaqueta_trafo";
     plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn.MappingName = "plaqueta_trafo";
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.Add(this.menuItem1);
     //
     // menuItem1
     //
     this.menuItem1.MenuItems.Add(this.menuItem2);
     this.menuItem1.Text = "Opções";
     //
     // menuItem2
     //
     this.menuItem2.Text   = "Sair";
     this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
     //
     // trafoBindingSource
     //
     this.trafoBindingSource.DataMember = "trafo";
     this.trafoBindingSource.DataSource = this.citeluzDataSet;
     //
     // citeluzDataSet
     //
     this.citeluzDataSet.DataSetName             = "citeluzDataSet";
     this.citeluzDataSet.Prefix                  = "";
     this.citeluzDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // trafoDataGrid
     //
     this.trafoDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.trafoDataGrid.DataSource      = this.trafoBindingSource;
     this.trafoDataGrid.Dock            = System.Windows.Forms.DockStyle.Bottom;
     this.trafoDataGrid.Location        = new System.Drawing.Point(0, 168);
     this.trafoDataGrid.Name            = "trafoDataGrid";
     this.trafoDataGrid.Size            = new System.Drawing.Size(240, 126);
     this.trafoDataGrid.TabIndex        = 11;
     this.trafoDataGrid.TableStyles.Add(this.trafoTableStyleDataGridTableStyle);
     //
     // trafoTableStyleDataGridTableStyle
     //
     this.trafoTableStyleDataGridTableStyle.GridColumnStyles.Add(cod_trafoDataGridColumnStyleDataGridTextBoxColumn);
     this.trafoTableStyleDataGridTableStyle.GridColumnStyles.Add(potenciaDataGridColumnStyleDataGridTextBoxColumn);
     this.trafoTableStyleDataGridTableStyle.GridColumnStyles.Add(cod_proprietarioDataGridColumnStyleDataGridTextBoxColumn);
     this.trafoTableStyleDataGridTableStyle.GridColumnStyles.Add(observacaoDataGridColumnStyleDataGridTextBoxColumn);
     this.trafoTableStyleDataGridTableStyle.GridColumnStyles.Add(plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn);
     this.trafoTableStyleDataGridTableStyle.MappingName = "trafo";
     //
     // checkTodos
     //
     this.checkTodos.Checked    = true;
     this.checkTodos.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkTodos.Location   = new System.Drawing.Point(3, 83);
     this.checkTodos.Name       = "checkTodos";
     this.checkTodos.Size       = new System.Drawing.Size(100, 20);
     this.checkTodos.TabIndex   = 81;
     this.checkTodos.Text       = "Enviar tudo";
     //
     // plaquetaBindingSource
     //
     this.plaquetaBindingSource.DataMember = "plaqueta";
     this.plaquetaBindingSource.DataSource = this.citeluzDataSet;
     //
     // plaquetaTableAdapter
     //
     this.plaquetaTableAdapter.ClearBeforeFill = true;
     //
     // trafoTableAdapter
     //
     this.trafoTableAdapter.ClearBeforeFill = true;
     //
     // materialBindingSource
     //
     this.materialBindingSource.DataMember = "material";
     this.materialBindingSource.DataSource = this.citeluzDataSet;
     //
     // materialTableAdapter
     //
     this.materialTableAdapter.ClearBeforeFill = true;
     //
     // listBox1
     //
     this.listBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.listBox1.Font      = new System.Drawing.Font("Courier New", 7F, System.Drawing.FontStyle.Regular);
     this.listBox1.ForeColor = System.Drawing.Color.Lime;
     this.listBox1.Location  = new System.Drawing.Point(3, 105);
     this.listBox1.Name      = "listBox1";
     this.listBox1.Size      = new System.Drawing.Size(234, 57);
     this.listBox1.TabIndex  = 82;
     //
     // picConnOK
     //
     this.picConnOK.Image    = ((System.Drawing.Image)(resources.GetObject("picConnOK.Image")));
     this.picConnOK.Location = new System.Drawing.Point(200, 84);
     this.picConnOK.Name     = "picConnOK";
     this.picConnOK.Size     = new System.Drawing.Size(16, 16);
     this.picConnOK.Visible  = false;
     //
     // picConnOff
     //
     this.picConnOff.Image    = ((System.Drawing.Image)(resources.GetObject("picConnOff.Image")));
     this.picConnOff.Location = new System.Drawing.Point(200, 84);
     this.picConnOff.Name     = "picConnOff";
     this.picConnOff.Size     = new System.Drawing.Size(16, 16);
     //
     // picConnWait
     //
     this.picConnWait.Image    = ((System.Drawing.Image)(resources.GetObject("picConnWait.Image")));
     this.picConnWait.Location = new System.Drawing.Point(200, 84);
     this.picConnWait.Name     = "picConnWait";
     this.picConnWait.Size     = new System.Drawing.Size(16, 16);
     this.picConnWait.Visible  = false;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(138, 84);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(96, 20);
     this.label2.Text     = "Conexão:";
     //
     // btEnvia
     //
     this.btEnvia.Font     = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular);
     this.btEnvia.Image    = ((System.Drawing.Image)(resources.GetObject("btEnvia.Image")));
     this.btEnvia.Location = new System.Drawing.Point(3, 3);
     this.btEnvia.Name     = "btEnvia";
     this.btEnvia.Size     = new System.Drawing.Size(234, 43);
     this.btEnvia.TabIndex = 11;
     this.btEnvia.Text     = "Enviar";
     this.btEnvia.Click   += new System.EventHandler(this.enviarButton_Click);
     //
     // txtNomeLote
     //
     this.txtNomeLote.Location = new System.Drawing.Point(98, 52);
     this.txtNomeLote.Name     = "txtNomeLote";
     this.txtNomeLote.Size     = new System.Drawing.Size(139, 21);
     this.txtNomeLote.TabIndex = 88;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(3, 53);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(100, 20);
     this.label1.Text     = "Nome do Lote:";
     //
     // ExportaDados
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.AutoScroll          = true;
     this.ClientSize          = new System.Drawing.Size(240, 294);
     this.ControlBox          = false;
     this.Controls.Add(this.txtNomeLote);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.picConnOK);
     this.Controls.Add(this.picConnOff);
     this.Controls.Add(this.picConnWait);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.listBox1);
     this.Controls.Add(this.checkTodos);
     this.Controls.Add(this.trafoDataGrid);
     this.Controls.Add(this.btEnvia);
     this.Location    = new System.Drawing.Point(0, 0);
     this.Menu        = this.mainMenu1;
     this.MinimizeBox = false;
     this.Name        = "ExportaDados";
     this.Text        = "ExportaDados";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.ExportaDados_Load);
     this.Closing    += new System.ComponentModel.CancelEventHandler(this.ExportaDados_Closing);
     ((System.ComponentModel.ISupportInitialize)(this.trafoBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.citeluzDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.plaquetaBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.materialBindingSource)).EndInit();
     this.ResumeLayout(false);
 }
예제 #24
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.DataGridTextBoxColumn lampada_idDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.Label lampada_idLabel;
     System.Windows.Forms.Label poste_idLabel;
     this.mainMenu1                     = new System.Windows.Forms.MainMenu();
     this.menuItem1                     = new System.Windows.Forms.MenuItem();
     this.menuItem3                     = new System.Windows.Forms.MenuItem();
     this.menuItem5                     = new System.Windows.Forms.MenuItem();
     this.menuItem4                     = new System.Windows.Forms.MenuItem();
     this.menuItem2                     = new System.Windows.Forms.MenuItem();
     this.eletrocadDataSet              = new CipX.db.eletrocadDataSet();
     this.postehaslampadaBindingSource  = new System.Windows.Forms.BindingSource(this.components);
     this.poste_has_lampadaTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.poste_has_lampadaTableAdapter();
     this.poste_has_lampadaDataGrid     = new System.Windows.Forms.DataGrid();
     this.poste_has_lampadaTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
     this.tipolampadaBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.tipo_lampadaTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.tipo_lampadaTableAdapter();
     this.lampadaBindingSource     = new System.Windows.Forms.BindingSource(this.components);
     this.lampadaCb           = new System.Windows.Forms.ComboBox();
     this.poste_idTextBox     = new System.Windows.Forms.TextBox();
     this.lampadaTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.lampadaTableAdapter();
     this.label1 = new System.Windows.Forms.Label();
     lampada_idDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
     lampada_idLabel = new System.Windows.Forms.Label();
     poste_idLabel   = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.eletrocadDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.postehaslampadaBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipolampadaBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lampadaBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // lampada_idDataGridColumnStyleDataGridTextBoxColumn
     //
     lampada_idDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     lampada_idDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     lampada_idDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "Lampadas";
     lampada_idDataGridColumnStyleDataGridTextBoxColumn.MappingName = "descricao";
     lampada_idDataGridColumnStyleDataGridTextBoxColumn.Width       = 80;
     //
     // lampada_idLabel
     //
     lampada_idLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     lampada_idLabel.Location = new System.Drawing.Point(18, 15);
     lampada_idLabel.Name     = "lampada_idLabel";
     lampada_idLabel.Size     = new System.Drawing.Size(77, 14);
     lampada_idLabel.Text     = "lampada id:";
     //
     // poste_idLabel
     //
     poste_idLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     poste_idLabel.Location = new System.Drawing.Point(33, 46);
     poste_idLabel.Name     = "poste_idLabel";
     poste_idLabel.Size     = new System.Drawing.Size(61, 14);
     poste_idLabel.Text     = "poste id:";
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.Add(this.menuItem1);
     //
     // menuItem1
     //
     this.menuItem1.MenuItems.Add(this.menuItem3);
     this.menuItem1.MenuItems.Add(this.menuItem5);
     this.menuItem1.MenuItems.Add(this.menuItem4);
     this.menuItem1.MenuItems.Add(this.menuItem2);
     this.menuItem1.Text = "Opções";
     //
     // menuItem3
     //
     this.menuItem3.Text   = "Novo";
     this.menuItem3.Click += new System.EventHandler(this.novo);
     //
     // menuItem5
     //
     this.menuItem5.Text   = "Salvar";
     this.menuItem5.Click += new System.EventHandler(this.salvar);
     //
     // menuItem4
     //
     this.menuItem4.Text = "-";
     //
     // menuItem2
     //
     this.menuItem2.Text   = "Sair";
     this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
     //
     // eletrocadDataSet
     //
     this.eletrocadDataSet.DataSetName             = "eletrocadDataSet";
     this.eletrocadDataSet.Prefix                  = "";
     this.eletrocadDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // postehaslampadaBindingSource
     //
     this.postehaslampadaBindingSource.DataMember = "poste_has_lampada";
     this.postehaslampadaBindingSource.DataSource = this.eletrocadDataSet;
     //
     // poste_has_lampadaTableAdapter
     //
     this.poste_has_lampadaTableAdapter.ClearBeforeFill = true;
     //
     // poste_has_lampadaDataGrid
     //
     this.poste_has_lampadaDataGrid.BackgroundColor   = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.poste_has_lampadaDataGrid.DataSource        = this.postehaslampadaBindingSource;
     this.poste_has_lampadaDataGrid.Dock              = System.Windows.Forms.DockStyle.Bottom;
     this.poste_has_lampadaDataGrid.Location          = new System.Drawing.Point(0, 92);
     this.poste_has_lampadaDataGrid.Name              = "poste_has_lampadaDataGrid";
     this.poste_has_lampadaDataGrid.RowHeadersVisible = false;
     this.poste_has_lampadaDataGrid.Size              = new System.Drawing.Size(240, 182);
     this.poste_has_lampadaDataGrid.TabIndex          = 1;
     this.poste_has_lampadaDataGrid.TableStyles.Add(this.poste_has_lampadaTableStyleDataGridTableStyle);
     //
     // poste_has_lampadaTableStyleDataGridTableStyle
     //
     this.poste_has_lampadaTableStyleDataGridTableStyle.GridColumnStyles.Add(lampada_idDataGridColumnStyleDataGridTextBoxColumn);
     this.poste_has_lampadaTableStyleDataGridTableStyle.MappingName = "poste_has_lampada";
     //
     // tipolampadaBindingSource
     //
     this.tipolampadaBindingSource.DataMember = "tipo_lampada";
     this.tipolampadaBindingSource.DataSource = this.eletrocadDataSet;
     //
     // tipo_lampadaTableAdapter
     //
     this.tipo_lampadaTableAdapter.ClearBeforeFill = true;
     //
     // lampadaBindingSource
     //
     this.lampadaBindingSource.DataMember = "lampada";
     this.lampadaBindingSource.DataSource = this.eletrocadDataSet;
     //
     // lampadaCb
     //
     this.lampadaCb.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.postehaslampadaBindingSource, "lampada_id", true));
     this.lampadaCb.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.postehaslampadaBindingSource, "descricao", true));
     this.lampadaCb.DataSource    = this.lampadaBindingSource;
     this.lampadaCb.DisplayMember = "descricao";
     this.lampadaCb.Location      = new System.Drawing.Point(101, 15);
     this.lampadaCb.Name          = "lampadaCb";
     this.lampadaCb.Size          = new System.Drawing.Size(100, 22);
     this.lampadaCb.TabIndex      = 3;
     this.lampadaCb.ValueMember   = "id";
     //
     // poste_idTextBox
     //
     this.poste_idTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.postehaslampadaBindingSource, "poste_id", true));
     this.poste_idTextBox.Enabled  = false;
     this.poste_idTextBox.Location = new System.Drawing.Point(101, 43);
     this.poste_idTextBox.Name     = "poste_idTextBox";
     this.poste_idTextBox.ReadOnly = true;
     this.poste_idTextBox.Size     = new System.Drawing.Size(100, 21);
     this.poste_idTextBox.TabIndex = 4;
     //
     // lampadaTableAdapter
     //
     this.lampadaTableAdapter.ClearBeforeFill = true;
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.label1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.label1.Font      = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.label1.Location  = new System.Drawing.Point(0, 274);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(240, 20);
     this.label1.Text      = "label1";
     this.label1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     this.label1.Visible   = false;
     //
     // CadastrarLampadas
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.AutoScroll          = true;
     this.ClientSize          = new System.Drawing.Size(240, 294);
     this.ControlBox          = false;
     this.Controls.Add(poste_idLabel);
     this.Controls.Add(this.poste_idTextBox);
     this.Controls.Add(this.lampadaCb);
     this.Controls.Add(lampada_idLabel);
     this.Controls.Add(this.poste_has_lampadaDataGrid);
     this.Controls.Add(this.label1);
     this.Location    = new System.Drawing.Point(0, 0);
     this.Menu        = this.mainMenu1;
     this.MinimizeBox = false;
     this.Name        = "CadastrarLampadas";
     this.Text        = "CadastrarLampadas";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.CadastrarLampadas_Load);
     ((System.ComponentModel.ISupportInitialize)(this.eletrocadDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.postehaslampadaBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipolampadaBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lampadaBindingSource)).EndInit();
     this.ResumeLayout(false);
 }
예제 #25
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.DataGridTextBoxColumn chaveDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn ciaDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn programacao_ip_idDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.Label chaveLabel;
            System.Windows.Forms.Label ciaLabel;
            System.Windows.Forms.Label alimentadorLabel;
            System.Windows.Forms.Label gps_timeLabel;
            System.Windows.Forms.Label usuario_idLabel;
            System.Windows.Forms.Label programacao_ip_idLabel;
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.menuItem1 = new System.Windows.Forms.MenuItem();
            this.menuItemNovo = new System.Windows.Forms.MenuItem();
            this.menuItemSalvar = new System.Windows.Forms.MenuItem();
            this.menuItem7 = new System.Windows.Forms.MenuItem();
            this.menuItemPostes = new System.Windows.Forms.MenuItem();
            this.menuItem3 = new System.Windows.Forms.MenuItem();
            this.menuItem2 = new System.Windows.Forms.MenuItem();
            this.trafoBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.eletrocadDataSet = new CipX.db.eletrocadDataSet();
            this.trafoDataGrid = new System.Windows.Forms.DataGrid();
            this.trafoTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.programacao_ip_idTextBox = new System.Windows.Forms.TextBox();
            this.usuario_idTextBox = new System.Windows.Forms.TextBox();
            this.gps_timeTextBox = new System.Windows.Forms.TextBox();
            this.alimentadorTextBox = new System.Windows.Forms.TextBox();
            this.ciaTextBox = new System.Windows.Forms.TextBox();
            this.chaveTextBox = new System.Windows.Forms.TextBox();
            this.lblTtrafoId = new System.Windows.Forms.Label();
            this.trafoTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.trafoTableAdapter();
            chaveDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            ciaDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            programacao_ip_idDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            chaveLabel = new System.Windows.Forms.Label();
            ciaLabel = new System.Windows.Forms.Label();
            alimentadorLabel = new System.Windows.Forms.Label();
            gps_timeLabel = new System.Windows.Forms.Label();
            usuario_idLabel = new System.Windows.Forms.Label();
            programacao_ip_idLabel = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.trafoBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.eletrocadDataSet)).BeginInit();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.tabPage2.SuspendLayout();
            this.SuspendLayout();
            // 
            // chaveDataGridColumnStyleDataGridTextBoxColumn
            // 
            chaveDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            chaveDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            chaveDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "chave";
            chaveDataGridColumnStyleDataGridTextBoxColumn.MappingName = "chave";
            chaveDataGridColumnStyleDataGridTextBoxColumn.NullText = "";
            chaveDataGridColumnStyleDataGridTextBoxColumn.Width = 80;
            // 
            // ciaDataGridColumnStyleDataGridTextBoxColumn
            // 
            ciaDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            ciaDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            ciaDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "cia";
            ciaDataGridColumnStyleDataGridTextBoxColumn.MappingName = "cia";
            ciaDataGridColumnStyleDataGridTextBoxColumn.NullText = "";
            ciaDataGridColumnStyleDataGridTextBoxColumn.Width = 80;
            // 
            // programacao_ip_idDataGridColumnStyleDataGridTextBoxColumn
            // 
            programacao_ip_idDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            programacao_ip_idDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            programacao_ip_idDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "programacao_ip_id";
            programacao_ip_idDataGridColumnStyleDataGridTextBoxColumn.MappingName = "programacao_ip_id";
            programacao_ip_idDataGridColumnStyleDataGridTextBoxColumn.NullText = "";
            programacao_ip_idDataGridColumnStyleDataGridTextBoxColumn.Width = 80;
            // 
            // chaveLabel
            // 
            chaveLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            chaveLabel.Location = new System.Drawing.Point(52, 30);
            chaveLabel.Name = "chaveLabel";
            chaveLabel.Size = new System.Drawing.Size(46, 14);
            chaveLabel.Text = "chave:";
            // 
            // ciaLabel
            // 
            ciaLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            ciaLabel.Location = new System.Drawing.Point(71, 57);
            ciaLabel.Name = "ciaLabel";
            ciaLabel.Size = new System.Drawing.Size(27, 14);
            ciaLabel.Text = "cia:";
            // 
            // alimentadorLabel
            // 
            alimentadorLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            alimentadorLabel.Location = new System.Drawing.Point(14, 84);
            alimentadorLabel.Name = "alimentadorLabel";
            alimentadorLabel.Size = new System.Drawing.Size(84, 14);
            alimentadorLabel.Text = "alimentador:";
            // 
            // gps_timeLabel
            // 
            gps_timeLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            gps_timeLabel.Location = new System.Drawing.Point(34, 111);
            gps_timeLabel.Name = "gps_timeLabel";
            gps_timeLabel.Size = new System.Drawing.Size(64, 14);
            gps_timeLabel.Text = "gps time:";
            // 
            // usuario_idLabel
            // 
            usuario_idLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            usuario_idLabel.Location = new System.Drawing.Point(27, 185);
            usuario_idLabel.Name = "usuario_idLabel";
            usuario_idLabel.Size = new System.Drawing.Size(71, 14);
            usuario_idLabel.Text = "usuario id:";
            usuario_idLabel.Visible = false;
            // 
            // programacao_ip_idLabel
            // 
            programacao_ip_idLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            programacao_ip_idLabel.Location = new System.Drawing.Point(7, 212);
            programacao_ip_idLabel.Name = "programacao_ip_idLabel";
            programacao_ip_idLabel.Size = new System.Drawing.Size(91, 14);
            programacao_ip_idLabel.Text = "programação:";
            programacao_ip_idLabel.Visible = false;
            // 
            // mainMenu1
            // 
            this.mainMenu1.MenuItems.Add(this.menuItem1);
            // 
            // menuItem1
            // 
            this.menuItem1.MenuItems.Add(this.menuItemNovo);
            this.menuItem1.MenuItems.Add(this.menuItemSalvar);
            this.menuItem1.MenuItems.Add(this.menuItem7);
            this.menuItem1.MenuItems.Add(this.menuItemPostes);
            this.menuItem1.MenuItems.Add(this.menuItem3);
            this.menuItem1.MenuItems.Add(this.menuItem2);
            this.menuItem1.Text = "Opções";
            this.menuItem1.Popup += new System.EventHandler(this.menuItem1_Click);
            this.menuItem1.Click += new System.EventHandler(this.menuItem1_Click);
            // 
            // menuItemNovo
            // 
            this.menuItemNovo.Text = "Novo";
            this.menuItemNovo.Click += new System.EventHandler(this.novo);
            // 
            // menuItemSalvar
            // 
            this.menuItemSalvar.Text = "Salvar";
            this.menuItemSalvar.Click += new System.EventHandler(this.salvar);
            // 
            // menuItem7
            // 
            this.menuItem7.Text = "-";
            // 
            // menuItemPostes
            // 
            this.menuItemPostes.Text = "Postes";
            this.menuItemPostes.Click += new System.EventHandler(this.menuItem6_Click);
            // 
            // menuItem3
            // 
            this.menuItem3.Text = "-";
            // 
            // menuItem2
            // 
            this.menuItem2.Text = "Sair";
            this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
            // 
            // trafoBindingSource
            // 
            this.trafoBindingSource.DataMember = "trafo";
            this.trafoBindingSource.DataSource = this.eletrocadDataSet;
            // 
            // eletrocadDataSet
            // 
            this.eletrocadDataSet.DataSetName = "eletrocadDataSet";
            this.eletrocadDataSet.Prefix = "";
            this.eletrocadDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // trafoDataGrid
            // 
            this.trafoDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.trafoDataGrid.DataSource = this.trafoBindingSource;
            this.trafoDataGrid.Dock = System.Windows.Forms.DockStyle.Fill;
            this.trafoDataGrid.Location = new System.Drawing.Point(0, 0);
            this.trafoDataGrid.Name = "trafoDataGrid";
            this.trafoDataGrid.RowHeadersVisible = false;
            this.trafoDataGrid.Size = new System.Drawing.Size(253, 251);
            this.trafoDataGrid.TabIndex = 1;
            this.trafoDataGrid.TableStyles.Add(this.trafoTableStyleDataGridTableStyle);
            // 
            // trafoTableStyleDataGridTableStyle
            // 
            this.trafoTableStyleDataGridTableStyle.GridColumnStyles.Add(chaveDataGridColumnStyleDataGridTextBoxColumn);
            this.trafoTableStyleDataGridTableStyle.GridColumnStyles.Add(ciaDataGridColumnStyleDataGridTextBoxColumn);
            this.trafoTableStyleDataGridTableStyle.GridColumnStyles.Add(programacao_ip_idDataGridColumnStyleDataGridTextBoxColumn);
            this.trafoTableStyleDataGridTableStyle.MappingName = "trafo";
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.Location = new System.Drawing.Point(0, 0);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(253, 274);
            this.tabControl1.TabIndex = 2;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.trafoDataGrid);
            this.tabPage1.Location = new System.Drawing.Point(0, 0);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Size = new System.Drawing.Size(253, 251);
            this.tabPage1.Text = "Tabela";
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(programacao_ip_idLabel);
            this.tabPage2.Controls.Add(this.programacao_ip_idTextBox);
            this.tabPage2.Controls.Add(usuario_idLabel);
            this.tabPage2.Controls.Add(this.usuario_idTextBox);
            this.tabPage2.Controls.Add(gps_timeLabel);
            this.tabPage2.Controls.Add(this.gps_timeTextBox);
            this.tabPage2.Controls.Add(alimentadorLabel);
            this.tabPage2.Controls.Add(this.alimentadorTextBox);
            this.tabPage2.Controls.Add(ciaLabel);
            this.tabPage2.Controls.Add(this.ciaTextBox);
            this.tabPage2.Controls.Add(chaveLabel);
            this.tabPage2.Controls.Add(this.chaveTextBox);
            this.tabPage2.Location = new System.Drawing.Point(0, 0);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Size = new System.Drawing.Size(253, 251);
            this.tabPage2.Text = "Formulário";
            // 
            // programacao_ip_idTextBox
            // 
            this.programacao_ip_idTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.trafoBindingSource, "programacao_ip_id", true));
            this.programacao_ip_idTextBox.Location = new System.Drawing.Point(105, 209);
            this.programacao_ip_idTextBox.Name = "programacao_ip_idTextBox";
            this.programacao_ip_idTextBox.ReadOnly = true;
            this.programacao_ip_idTextBox.Size = new System.Drawing.Size(100, 21);
            this.programacao_ip_idTextBox.TabIndex = 17;
            this.programacao_ip_idTextBox.Visible = false;
            // 
            // usuario_idTextBox
            // 
            this.usuario_idTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.trafoBindingSource, "usuario_id", true));
            this.usuario_idTextBox.Location = new System.Drawing.Point(105, 182);
            this.usuario_idTextBox.Name = "usuario_idTextBox";
            this.usuario_idTextBox.ReadOnly = true;
            this.usuario_idTextBox.Size = new System.Drawing.Size(100, 21);
            this.usuario_idTextBox.TabIndex = 16;
            this.usuario_idTextBox.Text = "USER";
            this.usuario_idTextBox.Visible = false;
            // 
            // gps_timeTextBox
            // 
            this.gps_timeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.trafoBindingSource, "gps_time", true));
            this.gps_timeTextBox.Location = new System.Drawing.Point(105, 108);
            this.gps_timeTextBox.Name = "gps_timeTextBox";
            this.gps_timeTextBox.ReadOnly = true;
            this.gps_timeTextBox.Size = new System.Drawing.Size(100, 21);
            this.gps_timeTextBox.TabIndex = 12;
            // 
            // alimentadorTextBox
            // 
            this.alimentadorTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.trafoBindingSource, "alimentador", true));
            this.alimentadorTextBox.Location = new System.Drawing.Point(105, 81);
            this.alimentadorTextBox.Name = "alimentadorTextBox";
            this.alimentadorTextBox.Size = new System.Drawing.Size(100, 21);
            this.alimentadorTextBox.TabIndex = 5;
            // 
            // ciaTextBox
            // 
            this.ciaTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.trafoBindingSource, "cia", true));
            this.ciaTextBox.Location = new System.Drawing.Point(105, 54);
            this.ciaTextBox.Name = "ciaTextBox";
            this.ciaTextBox.Size = new System.Drawing.Size(100, 21);
            this.ciaTextBox.TabIndex = 3;
            // 
            // chaveTextBox
            // 
            this.chaveTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.trafoBindingSource, "chave", true));
            this.chaveTextBox.Location = new System.Drawing.Point(105, 27);
            this.chaveTextBox.Name = "chaveTextBox";
            this.chaveTextBox.Size = new System.Drawing.Size(100, 21);
            this.chaveTextBox.TabIndex = 1;
            // 
            // lblTtrafoId
            // 
            this.lblTtrafoId.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.lblTtrafoId.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.trafoBindingSource, "id", true));
            this.lblTtrafoId.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.lblTtrafoId.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.lblTtrafoId.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
            this.lblTtrafoId.Location = new System.Drawing.Point(0, 274);
            this.lblTtrafoId.Name = "lblTtrafoId";
            this.lblTtrafoId.Size = new System.Drawing.Size(253, 20);
            this.lblTtrafoId.Text = "0";
            this.lblTtrafoId.Visible = false;
            // 
            // trafoTableAdapter
            // 
            this.trafoTableAdapter.ClearBeforeFill = true;
            // 
            // CadastrarTrafo
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(253, 294);
            this.ControlBox = false;
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.lblTtrafoId);
            this.Location = new System.Drawing.Point(0, 0);
            this.Menu = this.mainMenu1;
            this.MinimizeBox = false;
            this.Name = "CadastrarTrafo";
            this.Text = "CadastrarTrafo";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.CadastrarTrafo_Load);
            this.Closing += new System.ComponentModel.CancelEventHandler(this.CadastrarTrafo_Closing);
            ((System.ComponentModel.ISupportInitialize)(this.trafoBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.eletrocadDataSet)).EndInit();
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.tabPage2.ResumeLayout(false);
            this.ResumeLayout(false);

        }
예제 #26
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridTextBoxColumn dataGridTextBoxColumn1;
     System.Windows.Forms.DataGridTextBoxColumn dataGridTextBoxColumn2;
     System.Windows.Forms.DataGridTextBoxColumn dataGridTextBoxColumn3;
     this.mainMenu1           = new System.Windows.Forms.MainMenu();
     this.menuItem1           = new System.Windows.Forms.MenuItem();
     this.menuItem2           = new System.Windows.Forms.MenuItem();
     this.menuItem3           = new System.Windows.Forms.MenuItem();
     this.menuItem4           = new System.Windows.Forms.MenuItem();
     this.menuItem5           = new System.Windows.Forms.MenuItem();
     this.bindingSource1      = new System.Windows.Forms.BindingSource(this.components);
     this.terminalDataSet1    = new LainsaSciTerminal.terminalDataSet1();
     this.dataGrid1           = new System.Windows.Forms.DataGrid();
     this.dataGridTableStyle1 = new System.Windows.Forms.DataGridTableStyle();
     dataGridTextBoxColumn1   = new System.Windows.Forms.DataGridTextBoxColumn();
     dataGridTextBoxColumn2   = new System.Windows.Forms.DataGridTextBoxColumn();
     dataGridTextBoxColumn3   = new System.Windows.Forms.DataGridTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.terminalDataSet1)).BeginInit();
     this.SuspendLayout();
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.Add(this.menuItem1);
     this.mainMenu1.MenuItems.Add(this.menuItem2);
     //
     // menuItem1
     //
     this.menuItem1.Text   = "Inicio";
     this.menuItem1.Click += new System.EventHandler(this.menuItem1_Click);
     //
     // menuItem2
     //
     this.menuItem2.MenuItems.Add(this.menuItem3);
     this.menuItem2.MenuItems.Add(this.menuItem4);
     this.menuItem2.MenuItems.Add(this.menuItem5);
     this.menuItem2.Text = "Menu";
     //
     // menuItem3
     //
     this.menuItem3.Text = "Revisión";
     //
     // menuItem4
     //
     this.menuItem4.Text = "Cambios";
     //
     // menuItem5
     //
     this.menuItem5.Text   = "Programas";
     this.menuItem5.Click += new System.EventHandler(this.menuItem5_Click);
     //
     // bindingSource1
     //
     this.bindingSource1.DataMember = "Programa";
     this.bindingSource1.DataSource = this.terminalDataSet1;
     //
     // terminalDataSet1
     //
     this.terminalDataSet1.DataSetName             = "terminalDataSet1";
     this.terminalDataSet1.Prefix                  = "";
     this.terminalDataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // dataGrid1
     //
     this.dataGrid1.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.dataGrid1.DataBindings.Add(new System.Windows.Forms.Binding("DataSource", this.bindingSource1, "estado", true));
     this.dataGrid1.DataSource = this.bindingSource1;
     this.dataGrid1.Location   = new System.Drawing.Point(0, 0);
     this.dataGrid1.Name       = "dataGrid1";
     this.dataGrid1.Size       = new System.Drawing.Size(240, 265);
     this.dataGrid1.TabIndex   = 0;
     this.dataGrid1.TableStyles.Add(this.dataGridTableStyle1);
     //
     // dataGridTableStyle1
     //
     this.dataGridTableStyle1.GridColumnStyles.Add(dataGridTextBoxColumn1);
     this.dataGridTableStyle1.GridColumnStyles.Add(dataGridTextBoxColumn2);
     this.dataGridTableStyle1.GridColumnStyles.Add(dataGridTextBoxColumn3);
     //
     // dataGridTextBoxColumn1
     //
     dataGridTextBoxColumn1.Format      = "";
     dataGridTextBoxColumn1.FormatInfo  = null;
     dataGridTextBoxColumn1.HeaderText  = "ID";
     dataGridTextBoxColumn1.MappingName = "programa_id";
     //
     // dataGridTextBoxColumn2
     //
     dataGridTextBoxColumn2.Format      = "";
     dataGridTextBoxColumn2.FormatInfo  = null;
     dataGridTextBoxColumn2.HeaderText  = "Fecha";
     dataGridTextBoxColumn2.MappingName = "fecha_programada";
     //
     // dataGridTextBoxColumn3
     //
     dataGridTextBoxColumn3.Format      = "";
     dataGridTextBoxColumn3.FormatInfo  = null;
     dataGridTextBoxColumn3.HeaderText  = "Estado";
     dataGridTextBoxColumn3.MappingName = "estado";
     //
     // ProgramasForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.AutoScroll          = true;
     this.ClientSize          = new System.Drawing.Size(240, 268);
     this.Controls.Add(this.dataGrid1);
     this.Menu = this.mainMenu1;
     this.Name = "ProgramasForm";
     this.Text = "Programas";
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.terminalDataSet1)).EndInit();
     this.ResumeLayout(false);
 }
예제 #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.components = new System.ComponentModel.Container();
            System.Windows.Forms.Label tipo_luminaria_idLabel;
            System.Windows.Forms.Label poste_idLabel;
            System.Windows.Forms.Label lampada_idLabel;
            System.Windows.Forms.Label braco_idLabel;
            System.Windows.Forms.Label ativacao_idLabel;
            System.Windows.Forms.Label fase_idLabel;
            System.Windows.Forms.Label quantidadeLabel;
            System.Windows.Forms.Label chave_comandoLabel;
            System.Windows.Forms.Label latLabel;
            System.Windows.Forms.Label lonLabel;
            System.Windows.Forms.Label gps_timeLabel;
            System.Windows.Forms.DataGridTextBoxColumn quantidadeDataGridColumnStyleDataGridTextBoxColumn1;
            System.Windows.Forms.DataGridTextBoxColumn lampadaDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn luminariaDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.Label reator_idLabel;
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.menuItem1 = new System.Windows.Forms.MenuItem();
            this.menuItem4 = new System.Windows.Forms.MenuItem();
            this.menuItem5 = new System.Windows.Forms.MenuItem();
            this.menuItem6 = new System.Windows.Forms.MenuItem();
            this.menuItem7 = new System.Windows.Forms.MenuItem();
            this.menuItem3 = new System.Windows.Forms.MenuItem();
            this.menuItem2 = new System.Windows.Forms.MenuItem();
            this.label1 = new System.Windows.Forms.Label();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.luminariasBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.luminariasDataGrid = new System.Windows.Forms.DataGrid();
            this.eletrocadDataSet = new CipX.db.eletrocadDataSet();
            this.luminariasTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.chavecomandoBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.cbChaveComando = new System.Windows.Forms.ComboBox();
            this.postehastipoluminariaBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.quantidadeTextBox = new System.Windows.Forms.TextBox();
            this.faseBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.cbFaseId = new System.Windows.Forms.ComboBox();
            this.ativacaoBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.cbAtivacao = new System.Windows.Forms.ComboBox();
            this.bracoBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.cbBraco = new System.Windows.Forms.ComboBox();
            this.lampadaBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.cbLampada = new System.Windows.Forms.ComboBox();
            this.tipoluminariaBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.cbTipoLum = new System.Windows.Forms.ComboBox();
            this.poste_idTextBox = new System.Windows.Forms.TextBox();
            this.tabPage4 = new System.Windows.Forms.TabPage();
            this.chkRepetir = new System.Windows.Forms.CheckBox();
            this.reatorBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.cbReator = new System.Windows.Forms.ComboBox();
            this.checkBox1 = new System.Windows.Forms.CheckBox();
            this.gps_timeTextBox = new System.Windows.Forms.TextBox();
            this.lonTextBox = new System.Windows.Forms.TextBox();
            this.latTextBox = new System.Windows.Forms.TextBox();
            this.tabPage3 = new System.Windows.Forms.TabPage();
            this.foto_pathTextBox = new System.Windows.Forms.TextBox();
            this.button2 = new System.Windows.Forms.Button();
            this.button1 = new System.Windows.Forms.Button();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.poste_has_tipo_luminariaTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.poste_has_tipo_luminariaTableAdapter();
            this.tipo_luminariaTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.tipo_luminariaTableAdapter();
            this.lampadaTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.lampadaTableAdapter();
            this.reatorTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.reatorTableAdapter();
            this.bracoTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.bracoTableAdapter();
            this.ativacaoTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.ativacaoTableAdapter();
            this.faseTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.faseTableAdapter();
            this.chave_comandoTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.chave_comandoTableAdapter();
            this.luminariasTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.luminariasTableAdapter();
            this.chkDerivacao = new System.Windows.Forms.CheckBox();
            tipo_luminaria_idLabel = new System.Windows.Forms.Label();
            poste_idLabel = new System.Windows.Forms.Label();
            lampada_idLabel = new System.Windows.Forms.Label();
            braco_idLabel = new System.Windows.Forms.Label();
            ativacao_idLabel = new System.Windows.Forms.Label();
            fase_idLabel = new System.Windows.Forms.Label();
            quantidadeLabel = new System.Windows.Forms.Label();
            chave_comandoLabel = new System.Windows.Forms.Label();
            latLabel = new System.Windows.Forms.Label();
            lonLabel = new System.Windows.Forms.Label();
            gps_timeLabel = new System.Windows.Forms.Label();
            quantidadeDataGridColumnStyleDataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
            lampadaDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            luminariaDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            reator_idLabel = new System.Windows.Forms.Label();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.luminariasBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.eletrocadDataSet)).BeginInit();
            this.tabPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chavecomandoBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.postehastipoluminariaBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.faseBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ativacaoBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bracoBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lampadaBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tipoluminariaBindingSource)).BeginInit();
            this.tabPage4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.reatorBindingSource)).BeginInit();
            this.tabPage3.SuspendLayout();
            this.SuspendLayout();
            // 
            // tipo_luminaria_idLabel
            // 
            tipo_luminaria_idLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            tipo_luminaria_idLabel.Location = new System.Drawing.Point(4, 11);
            tipo_luminaria_idLabel.Name = "tipo_luminaria_idLabel";
            tipo_luminaria_idLabel.Size = new System.Drawing.Size(110, 14);
            tipo_luminaria_idLabel.Text = "tipo luminaria id:";
            // 
            // poste_idLabel
            // 
            poste_idLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            poste_idLabel.Location = new System.Drawing.Point(52, 230);
            poste_idLabel.Name = "poste_idLabel";
            poste_idLabel.Size = new System.Drawing.Size(61, 14);
            poste_idLabel.Text = "poste id:";
            poste_idLabel.Visible = false;
            // 
            // lampada_idLabel
            // 
            lampada_idLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            lampada_idLabel.Location = new System.Drawing.Point(36, 38);
            lampada_idLabel.Name = "lampada_idLabel";
            lampada_idLabel.Size = new System.Drawing.Size(77, 14);
            lampada_idLabel.Text = "lampada id:";
            // 
            // braco_idLabel
            // 
            braco_idLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            braco_idLabel.Location = new System.Drawing.Point(53, 62);
            braco_idLabel.Name = "braco_idLabel";
            braco_idLabel.Size = new System.Drawing.Size(60, 14);
            braco_idLabel.Text = "braco id:";
            // 
            // ativacao_idLabel
            // 
            ativacao_idLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            ativacao_idLabel.Location = new System.Drawing.Point(36, 93);
            ativacao_idLabel.Name = "ativacao_idLabel";
            ativacao_idLabel.Size = new System.Drawing.Size(77, 14);
            ativacao_idLabel.Text = "ativacao id:";
            // 
            // fase_idLabel
            // 
            fase_idLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            fase_idLabel.Location = new System.Drawing.Point(62, 120);
            fase_idLabel.Name = "fase_idLabel";
            fase_idLabel.Size = new System.Drawing.Size(51, 14);
            fase_idLabel.Text = "fase id:";
            // 
            // quantidadeLabel
            // 
            quantidadeLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            quantidadeLabel.Location = new System.Drawing.Point(32, 177);
            quantidadeLabel.Name = "quantidadeLabel";
            quantidadeLabel.Size = new System.Drawing.Size(81, 14);
            quantidadeLabel.Text = "quantidade:";
            // 
            // chave_comandoLabel
            // 
            chave_comandoLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            chave_comandoLabel.Location = new System.Drawing.Point(7, 148);
            chave_comandoLabel.Name = "chave_comandoLabel";
            chave_comandoLabel.Size = new System.Drawing.Size(106, 14);
            chave_comandoLabel.Text = "chave comando:";
            // 
            // latLabel
            // 
            latLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            latLabel.Location = new System.Drawing.Point(50, 61);
            latLabel.Name = "latLabel";
            latLabel.Size = new System.Drawing.Size(27, 14);
            latLabel.Text = "lat:";
            // 
            // lonLabel
            // 
            lonLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            lonLabel.Location = new System.Drawing.Point(47, 88);
            lonLabel.Name = "lonLabel";
            lonLabel.Size = new System.Drawing.Size(30, 14);
            lonLabel.Text = "lon:";
            // 
            // gps_timeLabel
            // 
            gps_timeLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            gps_timeLabel.Location = new System.Drawing.Point(13, 115);
            gps_timeLabel.Name = "gps_timeLabel";
            gps_timeLabel.Size = new System.Drawing.Size(64, 14);
            gps_timeLabel.Text = "gps time:";
            // 
            // quantidadeDataGridColumnStyleDataGridTextBoxColumn1
            // 
            quantidadeDataGridColumnStyleDataGridTextBoxColumn1.Format = "";
            quantidadeDataGridColumnStyleDataGridTextBoxColumn1.FormatInfo = null;
            quantidadeDataGridColumnStyleDataGridTextBoxColumn1.HeaderText = "quantidade";
            quantidadeDataGridColumnStyleDataGridTextBoxColumn1.MappingName = "quantidade";
            quantidadeDataGridColumnStyleDataGridTextBoxColumn1.NullText = "";
            quantidadeDataGridColumnStyleDataGridTextBoxColumn1.Width = 80;
            // 
            // lampadaDataGridColumnStyleDataGridTextBoxColumn
            // 
            lampadaDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            lampadaDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            lampadaDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "lâmpada";
            lampadaDataGridColumnStyleDataGridTextBoxColumn.MappingName = "lampada";
            lampadaDataGridColumnStyleDataGridTextBoxColumn.Width = 120;
            // 
            // luminariaDataGridColumnStyleDataGridTextBoxColumn
            // 
            luminariaDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            luminariaDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            luminariaDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "luminária";
            luminariaDataGridColumnStyleDataGridTextBoxColumn.MappingName = "luminaria";
            luminariaDataGridColumnStyleDataGridTextBoxColumn.Width = 80;
            // 
            // reator_idLabel
            // 
            reator_idLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            reator_idLabel.Location = new System.Drawing.Point(18, 10);
            reator_idLabel.Name = "reator_idLabel";
            reator_idLabel.Size = new System.Drawing.Size(64, 14);
            reator_idLabel.Text = "reator id:";
            // 
            // mainMenu1
            // 
            this.mainMenu1.MenuItems.Add(this.menuItem1);
            // 
            // menuItem1
            // 
            this.menuItem1.MenuItems.Add(this.menuItem4);
            this.menuItem1.MenuItems.Add(this.menuItem5);
            this.menuItem1.MenuItems.Add(this.menuItem6);
            this.menuItem1.MenuItems.Add(this.menuItem3);
            this.menuItem1.MenuItems.Add(this.menuItem2);
            this.menuItem1.Text = "Opções";
            // 
            // menuItem4
            // 
            this.menuItem4.Text = "Novo";
            this.menuItem4.Click += new System.EventHandler(this.novo);
            // 
            // menuItem5
            // 
            this.menuItem5.Text = "Salvar";
            this.menuItem5.Click += new System.EventHandler(this.salvar);
            // 
            // menuItem6
            // 
            this.menuItem6.MenuItems.Add(this.menuItem7);
            this.menuItem6.Text = "Mais";
            // 
            // menuItem7
            // 
            this.menuItem7.Text = "Excluir";
            this.menuItem7.Click += new System.EventHandler(this.excluir);
            // 
            // menuItem3
            // 
            this.menuItem3.Text = "-";
            // 
            // menuItem2
            // 
            this.menuItem2.Text = "Sair";
            this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
            // 
            // label1
            // 
            this.label1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.label1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.label1.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
            this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.label1.Location = new System.Drawing.Point(0, 274);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(240, 20);
            this.label1.Text = "label1";
            this.label1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            this.label1.Visible = false;
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Controls.Add(this.tabPage4);
            this.tabControl1.Controls.Add(this.tabPage3);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.Location = new System.Drawing.Point(0, 0);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(240, 274);
            this.tabControl1.TabIndex = 8;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.luminariasDataGrid);
            this.tabPage1.Location = new System.Drawing.Point(0, 0);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Size = new System.Drawing.Size(240, 251);
            this.tabPage1.Text = "Tabela";
            // 
            // luminariasBindingSource
            // 
            this.luminariasBindingSource.DataMember = "luminarias";
            this.luminariasBindingSource.DataSource = this.eletrocadDataSet;
            // 
            // luminariasDataGrid
            // 
            this.luminariasDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.luminariasDataGrid.DataSource = this.luminariasBindingSource;
            this.luminariasDataGrid.Dock = System.Windows.Forms.DockStyle.Top;
            this.luminariasDataGrid.Location = new System.Drawing.Point(0, 0);
            this.luminariasDataGrid.Name = "luminariasDataGrid";
            this.luminariasDataGrid.RowHeadersVisible = false;
            this.luminariasDataGrid.Size = new System.Drawing.Size(240, 248);
            this.luminariasDataGrid.TabIndex = 2;
            this.luminariasDataGrid.TableStyles.Add(this.luminariasTableStyleDataGridTableStyle);
            // 
            // eletrocadDataSet
            // 
            this.eletrocadDataSet.DataSetName = "eletrocadDataSet";
            this.eletrocadDataSet.Prefix = "";
            this.eletrocadDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // luminariasTableStyleDataGridTableStyle
            // 
            this.luminariasTableStyleDataGridTableStyle.GridColumnStyles.Add(luminariaDataGridColumnStyleDataGridTextBoxColumn);
            this.luminariasTableStyleDataGridTableStyle.GridColumnStyles.Add(lampadaDataGridColumnStyleDataGridTextBoxColumn);
            this.luminariasTableStyleDataGridTableStyle.GridColumnStyles.Add(quantidadeDataGridColumnStyleDataGridTextBoxColumn1);
            this.luminariasTableStyleDataGridTableStyle.MappingName = "luminarias";
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(this.cbChaveComando);
            this.tabPage2.Controls.Add(chave_comandoLabel);
            this.tabPage2.Controls.Add(quantidadeLabel);
            this.tabPage2.Controls.Add(this.quantidadeTextBox);
            this.tabPage2.Controls.Add(this.cbFaseId);
            this.tabPage2.Controls.Add(this.cbAtivacao);
            this.tabPage2.Controls.Add(fase_idLabel);
            this.tabPage2.Controls.Add(ativacao_idLabel);
            this.tabPage2.Controls.Add(this.cbBraco);
            this.tabPage2.Controls.Add(braco_idLabel);
            this.tabPage2.Controls.Add(this.cbLampada);
            this.tabPage2.Controls.Add(lampada_idLabel);
            this.tabPage2.Controls.Add(this.cbTipoLum);
            this.tabPage2.Controls.Add(tipo_luminaria_idLabel);
            this.tabPage2.Controls.Add(poste_idLabel);
            this.tabPage2.Controls.Add(this.poste_idTextBox);
            this.tabPage2.Location = new System.Drawing.Point(0, 0);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Size = new System.Drawing.Size(232, 248);
            this.tabPage2.Text = "Formulário I";
            // 
            // chavecomandoBindingSource
            // 
            this.chavecomandoBindingSource.DataMember = "chave_comando";
            this.chavecomandoBindingSource.DataSource = this.eletrocadDataSet;
            // 
            // cbChaveComando
            // 
            this.cbChaveComando.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.postehastipoluminariaBindingSource, "chave_comando", true));
            this.cbChaveComando.DataSource = this.chavecomandoBindingSource;
            this.cbChaveComando.DisplayMember = "descricao";
            this.cbChaveComando.Location = new System.Drawing.Point(114, 146);
            this.cbChaveComando.Name = "cbChaveComando";
            this.cbChaveComando.Size = new System.Drawing.Size(119, 22);
            this.cbChaveComando.TabIndex = 32;
            this.cbChaveComando.ValueMember = "id";
            // 
            // postehastipoluminariaBindingSource
            // 
            this.postehastipoluminariaBindingSource.DataMember = "poste_has_tipo_luminaria";
            this.postehastipoluminariaBindingSource.DataSource = this.eletrocadDataSet;
            // 
            // quantidadeTextBox
            // 
            this.quantidadeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.postehastipoluminariaBindingSource, "quantidade", true));
            this.quantidadeTextBox.Location = new System.Drawing.Point(114, 174);
            this.quantidadeTextBox.Name = "quantidadeTextBox";
            this.quantidadeTextBox.Size = new System.Drawing.Size(119, 21);
            this.quantidadeTextBox.TabIndex = 31;
            this.quantidadeTextBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.quantidadeTextBox_KeyPress);
            // 
            // faseBindingSource
            // 
            this.faseBindingSource.DataMember = "fase";
            this.faseBindingSource.DataSource = this.eletrocadDataSet;
            // 
            // cbFaseId
            // 
            this.cbFaseId.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.postehastipoluminariaBindingSource, "fase_id", true));
            this.cbFaseId.DataSource = this.faseBindingSource;
            this.cbFaseId.DisplayMember = "descricao";
            this.cbFaseId.Location = new System.Drawing.Point(114, 118);
            this.cbFaseId.Name = "cbFaseId";
            this.cbFaseId.Size = new System.Drawing.Size(119, 22);
            this.cbFaseId.TabIndex = 22;
            this.cbFaseId.ValueMember = "id";
            // 
            // ativacaoBindingSource
            // 
            this.ativacaoBindingSource.DataMember = "ativacao";
            this.ativacaoBindingSource.DataSource = this.eletrocadDataSet;
            // 
            // cbAtivacao
            // 
            this.cbAtivacao.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.postehastipoluminariaBindingSource, "ativacao_id", true));
            this.cbAtivacao.DataSource = this.ativacaoBindingSource;
            this.cbAtivacao.DisplayMember = "descricao";
            this.cbAtivacao.Location = new System.Drawing.Point(114, 90);
            this.cbAtivacao.Name = "cbAtivacao";
            this.cbAtivacao.Size = new System.Drawing.Size(119, 22);
            this.cbAtivacao.TabIndex = 21;
            this.cbAtivacao.ValueMember = "id";
            // 
            // bracoBindingSource
            // 
            this.bracoBindingSource.DataMember = "braco";
            this.bracoBindingSource.DataSource = this.eletrocadDataSet;
            // 
            // cbBraco
            // 
            this.cbBraco.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.postehastipoluminariaBindingSource, "braco_id", true));
            this.cbBraco.DataSource = this.bracoBindingSource;
            this.cbBraco.DisplayMember = "descricao";
            this.cbBraco.Location = new System.Drawing.Point(114, 62);
            this.cbBraco.Name = "cbBraco";
            this.cbBraco.Size = new System.Drawing.Size(119, 22);
            this.cbBraco.TabIndex = 13;
            this.cbBraco.ValueMember = "id";
            // 
            // lampadaBindingSource
            // 
            this.lampadaBindingSource.DataMember = "lampada";
            this.lampadaBindingSource.DataSource = this.eletrocadDataSet;
            // 
            // cbLampada
            // 
            this.cbLampada.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.postehastipoluminariaBindingSource, "lampada_id", true));
            this.cbLampada.DataSource = this.lampadaBindingSource;
            this.cbLampada.DisplayMember = "descricao";
            this.cbLampada.Location = new System.Drawing.Point(114, 35);
            this.cbLampada.Name = "cbLampada";
            this.cbLampada.Size = new System.Drawing.Size(119, 22);
            this.cbLampada.TabIndex = 11;
            this.cbLampada.ValueMember = "id";
            // 
            // tipoluminariaBindingSource
            // 
            this.tipoluminariaBindingSource.DataMember = "tipo_luminaria";
            this.tipoluminariaBindingSource.DataSource = this.eletrocadDataSet;
            // 
            // cbTipoLum
            // 
            this.cbTipoLum.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.postehastipoluminariaBindingSource, "tipo_luminaria_id", true));
            this.cbTipoLum.DataSource = this.tipoluminariaBindingSource;
            this.cbTipoLum.DisplayMember = "descricao";
            this.cbTipoLum.Location = new System.Drawing.Point(114, 7);
            this.cbTipoLum.Name = "cbTipoLum";
            this.cbTipoLum.Size = new System.Drawing.Size(119, 22);
            this.cbTipoLum.TabIndex = 8;
            this.cbTipoLum.ValueMember = "id";
            this.cbTipoLum.SelectedIndexChanged += new System.EventHandler(this.cbTipoLum_SelectedIndexChanged);
            this.cbTipoLum.SelectedValueChanged += new System.EventHandler(this.cbTipoLum_SelectedValueChanged);
            // 
            // poste_idTextBox
            // 
            this.poste_idTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.postehastipoluminariaBindingSource, "poste_id", true));
            this.poste_idTextBox.Location = new System.Drawing.Point(114, 227);
            this.poste_idTextBox.Name = "poste_idTextBox";
            this.poste_idTextBox.ReadOnly = true;
            this.poste_idTextBox.Size = new System.Drawing.Size(119, 21);
            this.poste_idTextBox.TabIndex = 7;
            this.poste_idTextBox.Visible = false;
            // 
            // tabPage4
            // 
            this.tabPage4.Controls.Add(this.chkDerivacao);
            this.tabPage4.Controls.Add(this.chkRepetir);
            this.tabPage4.Controls.Add(this.cbReator);
            this.tabPage4.Controls.Add(reator_idLabel);
            this.tabPage4.Controls.Add(this.checkBox1);
            this.tabPage4.Controls.Add(gps_timeLabel);
            this.tabPage4.Controls.Add(this.gps_timeTextBox);
            this.tabPage4.Controls.Add(lonLabel);
            this.tabPage4.Controls.Add(this.lonTextBox);
            this.tabPage4.Controls.Add(latLabel);
            this.tabPage4.Controls.Add(this.latTextBox);
            this.tabPage4.Location = new System.Drawing.Point(0, 0);
            this.tabPage4.Name = "tabPage4";
            this.tabPage4.Size = new System.Drawing.Size(240, 251);
            this.tabPage4.Text = "Formulário II";
            // 
            // chkRepetir
            // 
            this.chkRepetir.Location = new System.Drawing.Point(9, 142);
            this.chkRepetir.Name = "chkRepetir";
            this.chkRepetir.Size = new System.Drawing.Size(224, 20);
            this.chkRepetir.TabIndex = 47;
            this.chkRepetir.Text = "Repetir Coordenada do poste";
            this.chkRepetir.CheckStateChanged += new System.EventHandler(this.chkDerivacao_CheckStateChanged);
            // 
            // reatorBindingSource
            // 
            this.reatorBindingSource.DataMember = "reator";
            this.reatorBindingSource.DataSource = this.eletrocadDataSet;
            // 
            // cbReator
            // 
            this.cbReator.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.postehastipoluminariaBindingSource, "reator_id", true));
            this.cbReator.DataSource = this.reatorBindingSource;
            this.cbReator.DisplayMember = "descricao";
            this.cbReator.Location = new System.Drawing.Point(83, 7);
            this.cbReator.Name = "cbReator";
            this.cbReator.Size = new System.Drawing.Size(119, 22);
            this.cbReator.TabIndex = 45;
            this.cbReator.ValueMember = "id";
            // 
            // checkBox1
            // 
            this.checkBox1.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.postehastipoluminariaBindingSource, "aceso", true));
            this.checkBox1.Location = new System.Drawing.Point(83, 35);
            this.checkBox1.Name = "checkBox1";
            this.checkBox1.Size = new System.Drawing.Size(100, 20);
            this.checkBox1.TabIndex = 8;
            this.checkBox1.Text = "Aceso 24 H";
            // 
            // gps_timeTextBox
            // 
            this.gps_timeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.postehastipoluminariaBindingSource, "gps_time", true));
            this.gps_timeTextBox.Location = new System.Drawing.Point(83, 115);
            this.gps_timeTextBox.Name = "gps_timeTextBox";
            this.gps_timeTextBox.ReadOnly = true;
            this.gps_timeTextBox.Size = new System.Drawing.Size(150, 21);
            this.gps_timeTextBox.TabIndex = 5;
            // 
            // lonTextBox
            // 
            this.lonTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.postehastipoluminariaBindingSource, "lon", true));
            this.lonTextBox.Location = new System.Drawing.Point(83, 88);
            this.lonTextBox.Name = "lonTextBox";
            this.lonTextBox.ReadOnly = true;
            this.lonTextBox.Size = new System.Drawing.Size(150, 21);
            this.lonTextBox.TabIndex = 3;
            // 
            // latTextBox
            // 
            this.latTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.postehastipoluminariaBindingSource, "lat", true));
            this.latTextBox.Location = new System.Drawing.Point(83, 61);
            this.latTextBox.Name = "latTextBox";
            this.latTextBox.ReadOnly = true;
            this.latTextBox.Size = new System.Drawing.Size(150, 21);
            this.latTextBox.TabIndex = 1;
            // 
            // tabPage3
            // 
            this.tabPage3.Controls.Add(this.foto_pathTextBox);
            this.tabPage3.Controls.Add(this.button2);
            this.tabPage3.Controls.Add(this.button1);
            this.tabPage3.Controls.Add(this.pictureBox1);
            this.tabPage3.Location = new System.Drawing.Point(0, 0);
            this.tabPage3.Name = "tabPage3";
            this.tabPage3.Size = new System.Drawing.Size(232, 248);
            this.tabPage3.Text = "Foto";
            this.tabPage3.GotFocus += new System.EventHandler(this.tabPage3_GotFocus);
            // 
            // foto_pathTextBox
            // 
            this.foto_pathTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.foto_pathTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.postehastipoluminariaBindingSource, "foto_path", true));
            this.foto_pathTextBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.foto_pathTextBox.Location = new System.Drawing.Point(3, 186);
            this.foto_pathTextBox.Name = "foto_pathTextBox";
            this.foto_pathTextBox.ReadOnly = true;
            this.foto_pathTextBox.Size = new System.Drawing.Size(230, 19);
            this.foto_pathTextBox.TabIndex = 7;
            // 
            // button2
            // 
            this.button2.Location = new System.Drawing.Point(115, 213);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(86, 33);
            this.button2.TabIndex = 4;
            this.button2.Text = "Mostar Foto";
            this.button2.Click += new System.EventHandler(this.button2_Click);
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(3, 213);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(86, 33);
            this.button1.TabIndex = 2;
            this.button1.Text = "Fotografar";
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // pictureBox1
            // 
            this.pictureBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.pictureBox1.DataBindings.Add(new System.Windows.Forms.Binding("Image", this.postehastipoluminariaBindingSource, "foto_path", true));
            this.pictureBox1.Location = new System.Drawing.Point(3, 3);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(230, 200);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            // 
            // poste_has_tipo_luminariaTableAdapter
            // 
            this.poste_has_tipo_luminariaTableAdapter.ClearBeforeFill = true;
            // 
            // tipo_luminariaTableAdapter
            // 
            this.tipo_luminariaTableAdapter.ClearBeforeFill = true;
            // 
            // lampadaTableAdapter
            // 
            this.lampadaTableAdapter.ClearBeforeFill = true;
            // 
            // reatorTableAdapter
            // 
            this.reatorTableAdapter.ClearBeforeFill = true;
            // 
            // bracoTableAdapter
            // 
            this.bracoTableAdapter.ClearBeforeFill = true;
            // 
            // ativacaoTableAdapter
            // 
            this.ativacaoTableAdapter.ClearBeforeFill = true;
            // 
            // faseTableAdapter
            // 
            this.faseTableAdapter.ClearBeforeFill = true;
            // 
            // chave_comandoTableAdapter
            // 
            this.chave_comandoTableAdapter.ClearBeforeFill = true;
            // 
            // luminariasTableAdapter
            // 
            this.luminariasTableAdapter.ClearBeforeFill = true;
            // 
            // chkDerivacao
            // 
            this.chkDerivacao.Location = new System.Drawing.Point(9, 168);
            this.chkDerivacao.Name = "chkDerivacao";
            this.chkDerivacao.Size = new System.Drawing.Size(224, 20);
            this.chkDerivacao.TabIndex = 52;
            this.chkDerivacao.Text = "Derivação (Outra Coordenada)";
            this.chkDerivacao.CheckStateChanged += new System.EventHandler(this.chkDerivacao_CheckStateChanged);
            // 
            // CadastrarLuminaria
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(240, 294);
            this.ControlBox = false;
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.label1);
            this.Location = new System.Drawing.Point(0, 0);
            this.Menu = this.mainMenu1;
            this.MinimizeBox = false;
            this.Name = "CadastrarLuminaria";
            this.Text = "CadastrarLuminaria";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.CadastrarLuminaria_Load);
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.luminariasBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.eletrocadDataSet)).EndInit();
            this.tabPage2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.chavecomandoBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.postehastipoluminariaBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.faseBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ativacaoBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bracoBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lampadaBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tipoluminariaBindingSource)).EndInit();
            this.tabPage4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.reatorBindingSource)).EndInit();
            this.tabPage3.ResumeLayout(false);
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.DataGridTextBoxColumn idDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn descricaoDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn latDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn lonDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn projeto_idDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn obsDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.Label descricaoLabel;
            System.Windows.Forms.Label obsLabel;
            System.Windows.Forms.Label latLabel;
            System.Windows.Forms.Label lonLabel;
            System.Windows.Forms.Label projeto_idLabel;
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.menuItem1 = new System.Windows.Forms.MenuItem();
            this.menuItem4 = new System.Windows.Forms.MenuItem();
            this.menuItem5 = new System.Windows.Forms.MenuItem();
            this.menuItem6 = new System.Windows.Forms.MenuItem();
            this.menuItem3 = new System.Windows.Forms.MenuItem();
            this.menuItem2 = new System.Windows.Forms.MenuItem();
            this.pontosignificativoBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.lptDataSet = new Colibri.db.lptDataSet();
            this.ponto_significativoDataGrid = new System.Windows.Forms.DataGrid();
            this.ponto_significativoTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
            this.descricaoTextBox = new System.Windows.Forms.TextBox();
            this.obsTextBox = new System.Windows.Forms.TextBox();
            this.latTextBox = new System.Windows.Forms.TextBox();
            this.lonTextBox = new System.Windows.Forms.TextBox();
            this.ponto_significativoTableAdapter = new Colibri.db.lptDataSetTableAdapters.ponto_significativoTableAdapter();
            this.projeto_idTextBox = new System.Windows.Forms.TextBox();
            idDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            descricaoDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            latDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            lonDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            projeto_idDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            obsDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            descricaoLabel = new System.Windows.Forms.Label();
            obsLabel = new System.Windows.Forms.Label();
            latLabel = new System.Windows.Forms.Label();
            lonLabel = new System.Windows.Forms.Label();
            projeto_idLabel = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.pontosignificativoBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lptDataSet)).BeginInit();
            this.SuspendLayout();
            // 
            // idDataGridColumnStyleDataGridTextBoxColumn
            // 
            idDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            idDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            idDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "id";
            idDataGridColumnStyleDataGridTextBoxColumn.MappingName = "id";
            // 
            // descricaoDataGridColumnStyleDataGridTextBoxColumn
            // 
            descricaoDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            descricaoDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            descricaoDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "descricao";
            descricaoDataGridColumnStyleDataGridTextBoxColumn.MappingName = "descricao";
            // 
            // latDataGridColumnStyleDataGridTextBoxColumn
            // 
            latDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            latDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            latDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "lat";
            latDataGridColumnStyleDataGridTextBoxColumn.MappingName = "lat";
            // 
            // lonDataGridColumnStyleDataGridTextBoxColumn
            // 
            lonDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            lonDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            lonDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "lon";
            lonDataGridColumnStyleDataGridTextBoxColumn.MappingName = "lon";
            // 
            // projeto_idDataGridColumnStyleDataGridTextBoxColumn
            // 
            projeto_idDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            projeto_idDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            projeto_idDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "projeto_id";
            projeto_idDataGridColumnStyleDataGridTextBoxColumn.MappingName = "projeto_id";
            // 
            // obsDataGridColumnStyleDataGridTextBoxColumn
            // 
            obsDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            obsDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            obsDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "obs";
            obsDataGridColumnStyleDataGridTextBoxColumn.MappingName = "obs";
            // 
            // descricaoLabel
            // 
            descricaoLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            descricaoLabel.Location = new System.Drawing.Point(3, 0);
            descricaoLabel.Name = "descricaoLabel";
            descricaoLabel.Size = new System.Drawing.Size(67, 14);
            descricaoLabel.Text = "descricao:";
            // 
            // obsLabel
            // 
            obsLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            obsLabel.Location = new System.Drawing.Point(3, 41);
            obsLabel.Name = "obsLabel";
            obsLabel.Size = new System.Drawing.Size(33, 14);
            obsLabel.Text = "obs:";
            // 
            // latLabel
            // 
            latLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            latLabel.Location = new System.Drawing.Point(3, 111);
            latLabel.Name = "latLabel";
            latLabel.Size = new System.Drawing.Size(27, 14);
            latLabel.Text = "lat:";
            // 
            // lonLabel
            // 
            lonLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            lonLabel.Location = new System.Drawing.Point(109, 111);
            lonLabel.Name = "lonLabel";
            lonLabel.Size = new System.Drawing.Size(30, 14);
            lonLabel.Text = "lon:";
            // 
            // projeto_idLabel
            // 
            projeto_idLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            projeto_idLabel.Location = new System.Drawing.Point(165, 0);
            projeto_idLabel.Name = "projeto_idLabel";
            projeto_idLabel.Size = new System.Drawing.Size(72, 14);
            projeto_idLabel.Text = "projeto id:";
            // 
            // mainMenu1
            // 
            this.mainMenu1.MenuItems.Add(this.menuItem1);
            // 
            // menuItem1
            // 
            this.menuItem1.MenuItems.Add(this.menuItem4);
            this.menuItem1.MenuItems.Add(this.menuItem5);
            this.menuItem1.MenuItems.Add(this.menuItem6);
            this.menuItem1.MenuItems.Add(this.menuItem3);
            this.menuItem1.MenuItems.Add(this.menuItem2);
            this.menuItem1.Text = "Opções";
            // 
            // menuItem4
            // 
            this.menuItem4.Text = "Novo";
            this.menuItem4.Click += new System.EventHandler(this.menuItem4_Click);
            // 
            // menuItem5
            // 
            this.menuItem5.Text = "Salvar";
            this.menuItem5.Click += new System.EventHandler(this.menuItem5_Click);
            // 
            // menuItem6
            // 
            this.menuItem6.Text = "Excluir";
            this.menuItem6.Click += new System.EventHandler(this.menuItem6_Click);
            // 
            // menuItem3
            // 
            this.menuItem3.Text = "-";
            // 
            // menuItem2
            // 
            this.menuItem2.Text = "Voltar a tela anterior";
            this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
            // 
            // pontosignificativoBindingSource
            // 
            this.pontosignificativoBindingSource.DataMember = "ponto_significativo";
            this.pontosignificativoBindingSource.DataSource = this.lptDataSet;
            // 
            // lptDataSet
            // 
            this.lptDataSet.DataSetName = "lptDataSet";
            this.lptDataSet.Prefix = "";
            this.lptDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // ponto_significativoDataGrid
            // 
            this.ponto_significativoDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.ponto_significativoDataGrid.DataSource = this.pontosignificativoBindingSource;
            this.ponto_significativoDataGrid.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.ponto_significativoDataGrid.Location = new System.Drawing.Point(0, 179);
            this.ponto_significativoDataGrid.Name = "ponto_significativoDataGrid";
            this.ponto_significativoDataGrid.Size = new System.Drawing.Size(240, 115);
            this.ponto_significativoDataGrid.TabIndex = 1;
            this.ponto_significativoDataGrid.TableStyles.Add(this.ponto_significativoTableStyleDataGridTableStyle);
            // 
            // ponto_significativoTableStyleDataGridTableStyle
            // 
            this.ponto_significativoTableStyleDataGridTableStyle.GridColumnStyles.Add(idDataGridColumnStyleDataGridTextBoxColumn);
            this.ponto_significativoTableStyleDataGridTableStyle.GridColumnStyles.Add(descricaoDataGridColumnStyleDataGridTextBoxColumn);
            this.ponto_significativoTableStyleDataGridTableStyle.GridColumnStyles.Add(latDataGridColumnStyleDataGridTextBoxColumn);
            this.ponto_significativoTableStyleDataGridTableStyle.GridColumnStyles.Add(lonDataGridColumnStyleDataGridTextBoxColumn);
            this.ponto_significativoTableStyleDataGridTableStyle.GridColumnStyles.Add(projeto_idDataGridColumnStyleDataGridTextBoxColumn);
            this.ponto_significativoTableStyleDataGridTableStyle.GridColumnStyles.Add(obsDataGridColumnStyleDataGridTextBoxColumn);
            this.ponto_significativoTableStyleDataGridTableStyle.MappingName = "ponto_significativo";
            // 
            // descricaoTextBox
            // 
            this.descricaoTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.pontosignificativoBindingSource, "descricao", true));
            this.descricaoTextBox.Location = new System.Drawing.Point(3, 17);
            this.descricaoTextBox.Name = "descricaoTextBox";
            this.descricaoTextBox.Size = new System.Drawing.Size(142, 21);
            this.descricaoTextBox.TabIndex = 2;
            // 
            // obsTextBox
            // 
            this.obsTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.pontosignificativoBindingSource, "obs", true));
            this.obsTextBox.Location = new System.Drawing.Point(3, 58);
            this.obsTextBox.Multiline = true;
            this.obsTextBox.Name = "obsTextBox";
            this.obsTextBox.Size = new System.Drawing.Size(234, 50);
            this.obsTextBox.TabIndex = 4;
            // 
            // latTextBox
            // 
            this.latTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.pontosignificativoBindingSource, "lat", true));
            this.latTextBox.Location = new System.Drawing.Point(3, 128);
            this.latTextBox.Name = "latTextBox";
            this.latTextBox.ReadOnly = true;
            this.latTextBox.Size = new System.Drawing.Size(100, 21);
            this.latTextBox.TabIndex = 6;
            // 
            // lonTextBox
            // 
            this.lonTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.pontosignificativoBindingSource, "lon", true));
            this.lonTextBox.Location = new System.Drawing.Point(109, 128);
            this.lonTextBox.Name = "lonTextBox";
            this.lonTextBox.ReadOnly = true;
            this.lonTextBox.Size = new System.Drawing.Size(100, 21);
            this.lonTextBox.TabIndex = 8;
            // 
            // ponto_significativoTableAdapter
            // 
            this.ponto_significativoTableAdapter.ClearBeforeFill = true;
            // 
            // projeto_idTextBox
            // 
            this.projeto_idTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.pontosignificativoBindingSource, "projeto_id", true));
            this.projeto_idTextBox.Location = new System.Drawing.Point(165, 17);
            this.projeto_idTextBox.Name = "projeto_idTextBox";
            this.projeto_idTextBox.ReadOnly = true;
            this.projeto_idTextBox.Size = new System.Drawing.Size(72, 21);
            this.projeto_idTextBox.TabIndex = 10;
            // 
            // PontoSignificativo
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(240, 294);
            this.ControlBox = false;
            this.Controls.Add(projeto_idLabel);
            this.Controls.Add(this.projeto_idTextBox);
            this.Controls.Add(lonLabel);
            this.Controls.Add(this.lonTextBox);
            this.Controls.Add(latLabel);
            this.Controls.Add(this.latTextBox);
            this.Controls.Add(obsLabel);
            this.Controls.Add(this.obsTextBox);
            this.Controls.Add(descricaoLabel);
            this.Controls.Add(this.descricaoTextBox);
            this.Controls.Add(this.ponto_significativoDataGrid);
            this.Location = new System.Drawing.Point(0, 0);
            this.Menu = this.mainMenu1;
            this.MinimizeBox = false;
            this.Name = "PontoSignificativo";
            this.Text = "PontoSignificativo";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.PontoSignificativo_Load);
            ((System.ComponentModel.ISupportInitialize)(this.pontosignificativoBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lptDataSet)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.DataGridTextBoxColumn idProjectDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn straatDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn huisnummerDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn postcodeDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn plaatsDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn actiefDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn naamDataGridColumnStyleDataGridTextBoxColumn;
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.newMenuItemMenuItem = new System.Windows.Forms.MenuItem();
            this.oGDRegistratieDataSet = new OGDRegistratieWM.OGDRegistratieDataSet();
            this.adresBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.adresTableAdapter = new OGDRegistratieWM.OGDRegistratieDataSetTableAdapters.AdresTableAdapter();
            this.adresDataGrid = new System.Windows.Forms.DataGrid();
            this.adresTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
            this.startAdresRitBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.ritTableAdapter = new OGDRegistratieWM.OGDRegistratieDataSetTableAdapters.RitTableAdapter();
            idProjectDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            straatDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            huisnummerDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            postcodeDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            plaatsDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            actiefDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            naamDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            ((System.ComponentModel.ISupportInitialize)(this.oGDRegistratieDataSet)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.adresBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.startAdresRitBindingSource)).BeginInit();
            this.SuspendLayout();
            // 
            // idProjectDataGridColumnStyleDataGridTextBoxColumn
            // 
            idProjectDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            idProjectDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            idProjectDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "IdProject";
            idProjectDataGridColumnStyleDataGridTextBoxColumn.MappingName = "IdProject";
            // 
            // straatDataGridColumnStyleDataGridTextBoxColumn
            // 
            straatDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            straatDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            straatDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "Straat";
            straatDataGridColumnStyleDataGridTextBoxColumn.MappingName = "Straat";
            // 
            // huisnummerDataGridColumnStyleDataGridTextBoxColumn
            // 
            huisnummerDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            huisnummerDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            huisnummerDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "Huisnummer";
            huisnummerDataGridColumnStyleDataGridTextBoxColumn.MappingName = "Huisnummer";
            // 
            // postcodeDataGridColumnStyleDataGridTextBoxColumn
            // 
            postcodeDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            postcodeDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            postcodeDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "Postcode";
            postcodeDataGridColumnStyleDataGridTextBoxColumn.MappingName = "Postcode";
            // 
            // plaatsDataGridColumnStyleDataGridTextBoxColumn
            // 
            plaatsDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            plaatsDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            plaatsDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "Plaats";
            plaatsDataGridColumnStyleDataGridTextBoxColumn.MappingName = "Plaats";
            // 
            // actiefDataGridColumnStyleDataGridTextBoxColumn
            // 
            actiefDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            actiefDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            actiefDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "Actief";
            actiefDataGridColumnStyleDataGridTextBoxColumn.MappingName = "Actief";
            // 
            // naamDataGridColumnStyleDataGridTextBoxColumn
            // 
            naamDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            naamDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            naamDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "Naam";
            naamDataGridColumnStyleDataGridTextBoxColumn.MappingName = "Naam";
            // 
            // mainMenu1
            // 
            this.mainMenu1.MenuItems.Add(this.newMenuItemMenuItem);
            // 
            // newMenuItemMenuItem
            // 
            this.newMenuItemMenuItem.Text = "New";
            this.newMenuItemMenuItem.Click += new System.EventHandler(this.newMenuItemMenuItem_Click);
            // 
            // oGDRegistratieDataSet
            // 
            this.oGDRegistratieDataSet.DataSetName = "OGDRegistratieDataSet";
            this.oGDRegistratieDataSet.Prefix = "";
            this.oGDRegistratieDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // adresBindingSource
            // 
            this.adresBindingSource.DataMember = "Adres";
            this.adresBindingSource.DataSource = this.oGDRegistratieDataSet;
            // 
            // adresTableAdapter
            // 
            this.adresTableAdapter.ClearBeforeFill = true;
            // 
            // adresDataGrid
            // 
            this.adresDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.adresDataGrid.DataSource = this.adresBindingSource;
            this.adresDataGrid.Dock = System.Windows.Forms.DockStyle.Fill;
            this.adresDataGrid.Location = new System.Drawing.Point(0, 0);
            this.adresDataGrid.Name = "adresDataGrid";
            this.adresDataGrid.Size = new System.Drawing.Size(240, 268);
            this.adresDataGrid.TabIndex = 0;
            this.adresDataGrid.TableStyles.Add(this.adresTableStyleDataGridTableStyle);
            this.adresDataGrid.CurrentCellChanged += new System.EventHandler(this.adresDataGrid_CurrentCellChanged);
            this.adresDataGrid.Click += new System.EventHandler(this.adresDataGrid_Click);
            // 
            // adresTableStyleDataGridTableStyle
            // 
            this.adresTableStyleDataGridTableStyle.GridColumnStyles.Add(naamDataGridColumnStyleDataGridTextBoxColumn);
            this.adresTableStyleDataGridTableStyle.GridColumnStyles.Add(idProjectDataGridColumnStyleDataGridTextBoxColumn);
            this.adresTableStyleDataGridTableStyle.GridColumnStyles.Add(straatDataGridColumnStyleDataGridTextBoxColumn);
            this.adresTableStyleDataGridTableStyle.GridColumnStyles.Add(huisnummerDataGridColumnStyleDataGridTextBoxColumn);
            this.adresTableStyleDataGridTableStyle.GridColumnStyles.Add(postcodeDataGridColumnStyleDataGridTextBoxColumn);
            this.adresTableStyleDataGridTableStyle.GridColumnStyles.Add(plaatsDataGridColumnStyleDataGridTextBoxColumn);
            this.adresTableStyleDataGridTableStyle.GridColumnStyles.Add(actiefDataGridColumnStyleDataGridTextBoxColumn);
            this.adresTableStyleDataGridTableStyle.MappingName = "Adres";
            // 
            // startAdresRitBindingSource
            // 
            this.startAdresRitBindingSource.DataMember = "StartAdresRit";
            this.startAdresRitBindingSource.DataSource = this.adresBindingSource;
            // 
            // ritTableAdapter
            // 
            this.ritTableAdapter.ClearBeforeFill = true;
            // 
            // AdresIndexForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(240, 268);
            this.Controls.Add(this.adresDataGrid);
            this.Menu = this.mainMenu1;
            this.Name = "AdresIndexForm";
            this.Text = "Adressen";
            this.Load += new System.EventHandler(this.frmAdresIndex_Load);
            ((System.ComponentModel.ISupportInitialize)(this.oGDRegistratieDataSet)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.adresBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.startAdresRitBindingSource)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.Label n_medidorLabel;
            System.Windows.Forms.Label rgLabel;
            System.Windows.Forms.Label cpfLabel;
            System.Windows.Forms.Label projeto_idLabel;
            System.Windows.Forms.Label nomeLabel;
            System.Windows.Forms.Label obsLabel;
            System.Windows.Forms.DataGridTextBoxColumn nomeDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn cpfDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn rgDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn latDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn lonDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn eletrificadaDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn n_medidorDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn projeto_idDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn obsDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn tipo_cliente_idDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.Label label1;
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.menuItem1 = new System.Windows.Forms.MenuItem();
            this.menuItem3 = new System.Windows.Forms.MenuItem();
            this.menuItemSalvar = new System.Windows.Forms.MenuItem();
            this.menuItem6 = new System.Windows.Forms.MenuItem();
            this.menuItem4 = new System.Windows.Forms.MenuItem();
            this.menuItem2 = new System.Windows.Forms.MenuItem();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.tipoclienteBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.comboBox1 = new System.Windows.Forms.ComboBox();
            this.clienteBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.lptDataSet = new Colibri.db.lptDataSet();
            this.clienteDataGrid1 = new System.Windows.Forms.DataGrid();
            this.clienteTableStyleDataGridTableStyle1 = new System.Windows.Forms.DataGridTableStyle();
            this.projeto_idTextBox = new System.Windows.Forms.TextBox();
            this.nomeTextBox = new System.Windows.Forms.TextBox();
            this.rgTextBox = new System.Windows.Forms.TextBox();
            this.cpfTextBox = new System.Windows.Forms.TextBox();
            this.n_medidorTextBox = new System.Windows.Forms.TextBox();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.obsTextBox = new System.Windows.Forms.TextBox();
            this.tabPage3 = new System.Windows.Forms.TabPage();
            this.txtAcuracia = new System.Windows.Forms.Label();
            this.label21 = new System.Windows.Forms.Label();
            this.txtSatelites = new System.Windows.Forms.Label();
            this.label16 = new System.Windows.Forms.Label();
            this.txtLon = new System.Windows.Forms.Label();
            this.txtLat = new System.Windows.Forms.Label();
            this.label25 = new System.Windows.Forms.Label();
            this.label26 = new System.Windows.Forms.Label();
            this.clienteTableAdapter = new Colibri.db.lptDataSetTableAdapters.clienteTableAdapter();
            this.tipo_clienteTableAdapter = new Colibri.db.lptDataSetTableAdapters.tipo_clienteTableAdapter();
            n_medidorLabel = new System.Windows.Forms.Label();
            rgLabel = new System.Windows.Forms.Label();
            cpfLabel = new System.Windows.Forms.Label();
            projeto_idLabel = new System.Windows.Forms.Label();
            nomeLabel = new System.Windows.Forms.Label();
            obsLabel = new System.Windows.Forms.Label();
            nomeDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            cpfDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            rgDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            latDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            lonDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            eletrificadaDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            n_medidorDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            projeto_idDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            obsDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            tipo_cliente_idDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            label1 = new System.Windows.Forms.Label();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tipoclienteBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.clienteBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lptDataSet)).BeginInit();
            this.tabPage2.SuspendLayout();
            this.tabPage3.SuspendLayout();
            this.SuspendLayout();
            // 
            // n_medidorLabel
            // 
            n_medidorLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            n_medidorLabel.Location = new System.Drawing.Point(130, 84);
            n_medidorLabel.Name = "n_medidorLabel";
            n_medidorLabel.Size = new System.Drawing.Size(73, 14);
            n_medidorLabel.Text = "n medidor:";
            // 
            // rgLabel
            // 
            rgLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            rgLabel.Location = new System.Drawing.Point(133, 44);
            rgLabel.Name = "rgLabel";
            rgLabel.Size = new System.Drawing.Size(24, 14);
            rgLabel.Text = "rg:";
            // 
            // cpfLabel
            // 
            cpfLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            cpfLabel.Location = new System.Drawing.Point(4, 44);
            cpfLabel.Name = "cpfLabel";
            cpfLabel.Size = new System.Drawing.Size(30, 14);
            cpfLabel.Text = "cpf:";
            // 
            // projeto_idLabel
            // 
            projeto_idLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            projeto_idLabel.Location = new System.Drawing.Point(163, 6);
            projeto_idLabel.Name = "projeto_idLabel";
            projeto_idLabel.Size = new System.Drawing.Size(72, 14);
            projeto_idLabel.Text = "projeto id:";
            // 
            // nomeLabel
            // 
            nomeLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            nomeLabel.Location = new System.Drawing.Point(4, 5);
            nomeLabel.Name = "nomeLabel";
            nomeLabel.Size = new System.Drawing.Size(45, 14);
            nomeLabel.Text = "nome:";
            // 
            // obsLabel
            // 
            obsLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            obsLabel.Location = new System.Drawing.Point(7, 6);
            obsLabel.Name = "obsLabel";
            obsLabel.Size = new System.Drawing.Size(33, 14);
            obsLabel.Text = "obs:";
            // 
            // nomeDataGridColumnStyleDataGridTextBoxColumn
            // 
            nomeDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            nomeDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            nomeDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "nome";
            nomeDataGridColumnStyleDataGridTextBoxColumn.MappingName = "nome";
            // 
            // cpfDataGridColumnStyleDataGridTextBoxColumn
            // 
            cpfDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            cpfDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            cpfDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "cpf";
            cpfDataGridColumnStyleDataGridTextBoxColumn.MappingName = "cpf";
            // 
            // rgDataGridColumnStyleDataGridTextBoxColumn
            // 
            rgDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            rgDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            rgDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "rg";
            rgDataGridColumnStyleDataGridTextBoxColumn.MappingName = "rg";
            // 
            // latDataGridColumnStyleDataGridTextBoxColumn
            // 
            latDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            latDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            latDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "lat";
            latDataGridColumnStyleDataGridTextBoxColumn.MappingName = "lat";
            // 
            // lonDataGridColumnStyleDataGridTextBoxColumn
            // 
            lonDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            lonDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            lonDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "lon";
            lonDataGridColumnStyleDataGridTextBoxColumn.MappingName = "lon";
            // 
            // eletrificadaDataGridColumnStyleDataGridTextBoxColumn
            // 
            eletrificadaDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            eletrificadaDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            eletrificadaDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "eletrificada";
            eletrificadaDataGridColumnStyleDataGridTextBoxColumn.MappingName = "eletrificada";
            // 
            // n_medidorDataGridColumnStyleDataGridTextBoxColumn
            // 
            n_medidorDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            n_medidorDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            n_medidorDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "n_medidor";
            n_medidorDataGridColumnStyleDataGridTextBoxColumn.MappingName = "n_medidor";
            // 
            // projeto_idDataGridColumnStyleDataGridTextBoxColumn
            // 
            projeto_idDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            projeto_idDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            projeto_idDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "projeto_id";
            projeto_idDataGridColumnStyleDataGridTextBoxColumn.MappingName = "projeto_id";
            // 
            // obsDataGridColumnStyleDataGridTextBoxColumn
            // 
            obsDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            obsDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            obsDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "obs";
            obsDataGridColumnStyleDataGridTextBoxColumn.MappingName = "obs";
            // 
            // tipo_cliente_idDataGridColumnStyleDataGridTextBoxColumn
            // 
            tipo_cliente_idDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            tipo_cliente_idDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            tipo_cliente_idDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "tipo_cliente_id";
            tipo_cliente_idDataGridColumnStyleDataGridTextBoxColumn.MappingName = "tipo_cliente_id";
            // 
            // label1
            // 
            label1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            label1.Location = new System.Drawing.Point(4, 82);
            label1.Name = "label1";
            label1.Size = new System.Drawing.Size(33, 14);
            label1.Text = "tipo:";
            // 
            // mainMenu1
            // 
            this.mainMenu1.MenuItems.Add(this.menuItem1);
            // 
            // menuItem1
            // 
            this.menuItem1.MenuItems.Add(this.menuItem3);
            this.menuItem1.MenuItems.Add(this.menuItemSalvar);
            this.menuItem1.MenuItems.Add(this.menuItem6);
            this.menuItem1.MenuItems.Add(this.menuItem4);
            this.menuItem1.MenuItems.Add(this.menuItem2);
            this.menuItem1.Text = "Opções";
            // 
            // menuItem3
            // 
            this.menuItem3.Text = "Novo";
            this.menuItem3.Click += new System.EventHandler(this.menuItem3_Click);
            // 
            // menuItemSalvar
            // 
            this.menuItemSalvar.Text = "Salvar";
            this.menuItemSalvar.Click += new System.EventHandler(this.menuItem5_Click);
            // 
            // menuItem6
            // 
            this.menuItem6.Text = "Excluir";
            this.menuItem6.Click += new System.EventHandler(this.menuItem6_Click);
            // 
            // menuItem4
            // 
            this.menuItem4.Text = "-";
            // 
            // menuItem2
            // 
            this.menuItem2.Text = "Voltar para tela anterior";
            this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Controls.Add(this.tabPage3);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.Location = new System.Drawing.Point(0, 0);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(240, 294);
            this.tabControl1.TabIndex = 33;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.comboBox1);
            this.tabPage1.Controls.Add(label1);
            this.tabPage1.Controls.Add(this.clienteDataGrid1);
            this.tabPage1.Controls.Add(projeto_idLabel);
            this.tabPage1.Controls.Add(this.projeto_idTextBox);
            this.tabPage1.Controls.Add(nomeLabel);
            this.tabPage1.Controls.Add(this.nomeTextBox);
            this.tabPage1.Controls.Add(rgLabel);
            this.tabPage1.Controls.Add(this.rgTextBox);
            this.tabPage1.Controls.Add(cpfLabel);
            this.tabPage1.Controls.Add(this.cpfTextBox);
            this.tabPage1.Controls.Add(n_medidorLabel);
            this.tabPage1.Controls.Add(this.n_medidorTextBox);
            this.tabPage1.Location = new System.Drawing.Point(0, 0);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Size = new System.Drawing.Size(240, 271);
            this.tabPage1.Text = "Cliente";
            // 
            // tipoclienteBindingSource
            // 
            this.tipoclienteBindingSource.DataMember = "tipo_cliente";
            this.tipoclienteBindingSource.DataSource = this.lptDataSet;
            // 
            // comboBox1
            // 
            this.comboBox1.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.clienteBindingSource, "tipo_cliente_id", true));
            this.comboBox1.DataSource = this.tipoclienteBindingSource;
            this.comboBox1.DisplayMember = "descricao";
            this.comboBox1.Location = new System.Drawing.Point(4, 99);
            this.comboBox1.Name = "comboBox1";
            this.comboBox1.Size = new System.Drawing.Size(118, 22);
            this.comboBox1.TabIndex = 61;
            this.comboBox1.ValueMember = "id";
            // 
            // clienteBindingSource
            // 
            this.clienteBindingSource.DataMember = "cliente";
            this.clienteBindingSource.DataSource = this.lptDataSet;
            // 
            // lptDataSet
            // 
            this.lptDataSet.DataSetName = "lptDataSet";
            this.lptDataSet.Prefix = "";
            this.lptDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // clienteDataGrid1
            // 
            this.clienteDataGrid1.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.clienteDataGrid1.DataSource = this.clienteBindingSource;
            this.clienteDataGrid1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.clienteDataGrid1.Location = new System.Drawing.Point(0, 177);
            this.clienteDataGrid1.Name = "clienteDataGrid1";
            this.clienteDataGrid1.RowHeadersVisible = false;
            this.clienteDataGrid1.Size = new System.Drawing.Size(240, 94);
            this.clienteDataGrid1.TabIndex = 52;
            this.clienteDataGrid1.TableStyles.Add(this.clienteTableStyleDataGridTableStyle1);
            // 
            // clienteTableStyleDataGridTableStyle1
            // 
            this.clienteTableStyleDataGridTableStyle1.GridColumnStyles.Add(nomeDataGridColumnStyleDataGridTextBoxColumn);
            this.clienteTableStyleDataGridTableStyle1.GridColumnStyles.Add(cpfDataGridColumnStyleDataGridTextBoxColumn);
            this.clienteTableStyleDataGridTableStyle1.GridColumnStyles.Add(rgDataGridColumnStyleDataGridTextBoxColumn);
            this.clienteTableStyleDataGridTableStyle1.GridColumnStyles.Add(latDataGridColumnStyleDataGridTextBoxColumn);
            this.clienteTableStyleDataGridTableStyle1.GridColumnStyles.Add(lonDataGridColumnStyleDataGridTextBoxColumn);
            this.clienteTableStyleDataGridTableStyle1.GridColumnStyles.Add(eletrificadaDataGridColumnStyleDataGridTextBoxColumn);
            this.clienteTableStyleDataGridTableStyle1.GridColumnStyles.Add(n_medidorDataGridColumnStyleDataGridTextBoxColumn);
            this.clienteTableStyleDataGridTableStyle1.GridColumnStyles.Add(projeto_idDataGridColumnStyleDataGridTextBoxColumn);
            this.clienteTableStyleDataGridTableStyle1.GridColumnStyles.Add(obsDataGridColumnStyleDataGridTextBoxColumn);
            this.clienteTableStyleDataGridTableStyle1.GridColumnStyles.Add(tipo_cliente_idDataGridColumnStyleDataGridTextBoxColumn);
            this.clienteTableStyleDataGridTableStyle1.MappingName = "cliente";
            // 
            // projeto_idTextBox
            // 
            this.projeto_idTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.clienteBindingSource, "projeto_id", true));
            this.projeto_idTextBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.projeto_idTextBox.Location = new System.Drawing.Point(163, 22);
            this.projeto_idTextBox.Name = "projeto_idTextBox";
            this.projeto_idTextBox.ReadOnly = true;
            this.projeto_idTextBox.Size = new System.Drawing.Size(69, 19);
            this.projeto_idTextBox.TabIndex = 46;
            // 
            // nomeTextBox
            // 
            this.nomeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.clienteBindingSource, "nome", true));
            this.nomeTextBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.nomeTextBox.Location = new System.Drawing.Point(4, 22);
            this.nomeTextBox.Name = "nomeTextBox";
            this.nomeTextBox.Size = new System.Drawing.Size(153, 19);
            this.nomeTextBox.TabIndex = 45;
            // 
            // rgTextBox
            // 
            this.rgTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.clienteBindingSource, "rg", true));
            this.rgTextBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.rgTextBox.Location = new System.Drawing.Point(133, 61);
            this.rgTextBox.Name = "rgTextBox";
            this.rgTextBox.Size = new System.Drawing.Size(100, 19);
            this.rgTextBox.TabIndex = 36;
            // 
            // cpfTextBox
            // 
            this.cpfTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.clienteBindingSource, "cpf", true));
            this.cpfTextBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.cpfTextBox.Location = new System.Drawing.Point(4, 60);
            this.cpfTextBox.Name = "cpfTextBox";
            this.cpfTextBox.Size = new System.Drawing.Size(100, 19);
            this.cpfTextBox.TabIndex = 35;
            this.cpfTextBox.Validated += new System.EventHandler(this.cpfTextBox_Validated_1);
            // 
            // n_medidorTextBox
            // 
            this.n_medidorTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.clienteBindingSource, "n_medidor", true));
            this.n_medidorTextBox.Location = new System.Drawing.Point(133, 100);
            this.n_medidorTextBox.Name = "n_medidorTextBox";
            this.n_medidorTextBox.Size = new System.Drawing.Size(100, 21);
            this.n_medidorTextBox.TabIndex = 29;
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(obsLabel);
            this.tabPage2.Controls.Add(this.obsTextBox);
            this.tabPage2.Location = new System.Drawing.Point(0, 0);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Size = new System.Drawing.Size(232, 268);
            this.tabPage2.Text = "Obs/Tipo";
            // 
            // obsTextBox
            // 
            this.obsTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.clienteBindingSource, "obs", true));
            this.obsTextBox.Location = new System.Drawing.Point(7, 23);
            this.obsTextBox.Multiline = true;
            this.obsTextBox.Name = "obsTextBox";
            this.obsTextBox.Size = new System.Drawing.Size(226, 92);
            this.obsTextBox.TabIndex = 1;
            // 
            // tabPage3
            // 
            this.tabPage3.Controls.Add(this.txtAcuracia);
            this.tabPage3.Controls.Add(this.label21);
            this.tabPage3.Controls.Add(this.txtSatelites);
            this.tabPage3.Controls.Add(this.label16);
            this.tabPage3.Controls.Add(this.txtLon);
            this.tabPage3.Controls.Add(this.txtLat);
            this.tabPage3.Controls.Add(this.label25);
            this.tabPage3.Controls.Add(this.label26);
            this.tabPage3.Location = new System.Drawing.Point(0, 0);
            this.tabPage3.Name = "tabPage3";
            this.tabPage3.Size = new System.Drawing.Size(232, 268);
            this.tabPage3.Text = "GPS";
            // 
            // txtAcuracia
            // 
            this.txtAcuracia.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.txtAcuracia.Location = new System.Drawing.Point(118, 58);
            this.txtAcuracia.Name = "txtAcuracia";
            this.txtAcuracia.Size = new System.Drawing.Size(108, 15);
            this.txtAcuracia.Text = "0";
            // 
            // label21
            // 
            this.label21.Font = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Bold);
            this.label21.Location = new System.Drawing.Point(118, 43);
            this.label21.Name = "label21";
            this.label21.Size = new System.Drawing.Size(114, 15);
            this.label21.Text = "Acurácia Estimada";
            // 
            // txtSatelites
            // 
            this.txtSatelites.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.txtSatelites.Location = new System.Drawing.Point(4, 58);
            this.txtSatelites.Name = "txtSatelites";
            this.txtSatelites.Size = new System.Drawing.Size(108, 15);
            this.txtSatelites.Text = "0";
            // 
            // label16
            // 
            this.label16.Font = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Bold);
            this.label16.Location = new System.Drawing.Point(4, 43);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(65, 15);
            this.label16.Text = "Satelites";
            // 
            // txtLon
            // 
            this.txtLon.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.clienteBindingSource, "lon", true));
            this.txtLon.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.txtLon.Location = new System.Drawing.Point(118, 23);
            this.txtLon.Name = "txtLon";
            this.txtLon.Size = new System.Drawing.Size(108, 15);
            this.txtLon.Text = "0";
            // 
            // txtLat
            // 
            this.txtLat.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.clienteBindingSource, "lat", true));
            this.txtLat.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.txtLat.Location = new System.Drawing.Point(4, 23);
            this.txtLat.Name = "txtLat";
            this.txtLat.Size = new System.Drawing.Size(108, 15);
            this.txtLat.Text = "0";
            // 
            // label25
            // 
            this.label25.Font = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Bold);
            this.label25.Location = new System.Drawing.Point(118, 8);
            this.label25.Name = "label25";
            this.label25.Size = new System.Drawing.Size(65, 16);
            this.label25.Text = "Longitude";
            // 
            // label26
            // 
            this.label26.Font = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Bold);
            this.label26.Location = new System.Drawing.Point(4, 8);
            this.label26.Name = "label26";
            this.label26.Size = new System.Drawing.Size(65, 15);
            this.label26.Text = "Latitude";
            // 
            // clienteTableAdapter
            // 
            this.clienteTableAdapter.ClearBeforeFill = true;
            // 
            // tipo_clienteTableAdapter
            // 
            this.tipo_clienteTableAdapter.ClearBeforeFill = true;
            // 
            // CroquiResidencia
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(240, 294);
            this.ControlBox = false;
            this.Controls.Add(this.tabControl1);
            this.Location = new System.Drawing.Point(0, 0);
            this.Menu = this.mainMenu1;
            this.Name = "CroquiResidencia";
            this.Text = "CroquiResidencia";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.CroquiResidencia_Load);
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.tipoclienteBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.clienteBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lptDataSet)).EndInit();
            this.tabPage2.ResumeLayout(false);
            this.tabPage3.ResumeLayout(false);
            this.ResumeLayout(false);

        }
예제 #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.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);
 }
예제 #32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridTextBoxColumn chaveDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.DataGridTextBoxColumn ciaDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.DataGridTextBoxColumn programacao_ip_idDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.Label chaveLabel;
     System.Windows.Forms.Label ciaLabel;
     System.Windows.Forms.Label alimentadorLabel;
     System.Windows.Forms.Label gps_timeLabel;
     System.Windows.Forms.Label usuario_idLabel;
     System.Windows.Forms.Label programacao_ip_idLabel;
     this.mainMenu1          = new System.Windows.Forms.MainMenu();
     this.menuItem1          = new System.Windows.Forms.MenuItem();
     this.menuItemNovo       = new System.Windows.Forms.MenuItem();
     this.menuItemSalvar     = new System.Windows.Forms.MenuItem();
     this.menuItem7          = new System.Windows.Forms.MenuItem();
     this.menuItemPostes     = new System.Windows.Forms.MenuItem();
     this.menuItem3          = new System.Windows.Forms.MenuItem();
     this.menuItem2          = new System.Windows.Forms.MenuItem();
     this.trafoBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.eletrocadDataSet   = new CipX.db.eletrocadDataSet();
     this.trafoDataGrid      = new System.Windows.Forms.DataGrid();
     this.trafoTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1    = new System.Windows.Forms.TabPage();
     this.tabPage2    = new System.Windows.Forms.TabPage();
     this.programacao_ip_idTextBox = new System.Windows.Forms.TextBox();
     this.usuario_idTextBox        = new System.Windows.Forms.TextBox();
     this.gps_timeTextBox          = new System.Windows.Forms.TextBox();
     this.alimentadorTextBox       = new System.Windows.Forms.TextBox();
     this.ciaTextBox        = new System.Windows.Forms.TextBox();
     this.chaveTextBox      = new System.Windows.Forms.TextBox();
     this.lblTtrafoId       = new System.Windows.Forms.Label();
     this.trafoTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.trafoTableAdapter();
     chaveDataGridColumnStyleDataGridTextBoxColumn             = new System.Windows.Forms.DataGridTextBoxColumn();
     ciaDataGridColumnStyleDataGridTextBoxColumn               = new System.Windows.Forms.DataGridTextBoxColumn();
     programacao_ip_idDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
     chaveLabel             = new System.Windows.Forms.Label();
     ciaLabel               = new System.Windows.Forms.Label();
     alimentadorLabel       = new System.Windows.Forms.Label();
     gps_timeLabel          = new System.Windows.Forms.Label();
     usuario_idLabel        = new System.Windows.Forms.Label();
     programacao_ip_idLabel = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.trafoBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.eletrocadDataSet)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.SuspendLayout();
     //
     // chaveDataGridColumnStyleDataGridTextBoxColumn
     //
     chaveDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     chaveDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     chaveDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "chave";
     chaveDataGridColumnStyleDataGridTextBoxColumn.MappingName = "chave";
     chaveDataGridColumnStyleDataGridTextBoxColumn.NullText    = "";
     chaveDataGridColumnStyleDataGridTextBoxColumn.Width       = 80;
     //
     // ciaDataGridColumnStyleDataGridTextBoxColumn
     //
     ciaDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     ciaDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     ciaDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "cia";
     ciaDataGridColumnStyleDataGridTextBoxColumn.MappingName = "cia";
     ciaDataGridColumnStyleDataGridTextBoxColumn.NullText    = "";
     ciaDataGridColumnStyleDataGridTextBoxColumn.Width       = 80;
     //
     // programacao_ip_idDataGridColumnStyleDataGridTextBoxColumn
     //
     programacao_ip_idDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     programacao_ip_idDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     programacao_ip_idDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "programacao_ip_id";
     programacao_ip_idDataGridColumnStyleDataGridTextBoxColumn.MappingName = "programacao_ip_id";
     programacao_ip_idDataGridColumnStyleDataGridTextBoxColumn.NullText    = "";
     programacao_ip_idDataGridColumnStyleDataGridTextBoxColumn.Width       = 80;
     //
     // chaveLabel
     //
     chaveLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     chaveLabel.Location = new System.Drawing.Point(52, 30);
     chaveLabel.Name     = "chaveLabel";
     chaveLabel.Size     = new System.Drawing.Size(46, 14);
     chaveLabel.Text     = "chave:";
     //
     // ciaLabel
     //
     ciaLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     ciaLabel.Location = new System.Drawing.Point(71, 57);
     ciaLabel.Name     = "ciaLabel";
     ciaLabel.Size     = new System.Drawing.Size(27, 14);
     ciaLabel.Text     = "cia:";
     //
     // alimentadorLabel
     //
     alimentadorLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     alimentadorLabel.Location = new System.Drawing.Point(14, 84);
     alimentadorLabel.Name     = "alimentadorLabel";
     alimentadorLabel.Size     = new System.Drawing.Size(84, 14);
     alimentadorLabel.Text     = "alimentador:";
     //
     // gps_timeLabel
     //
     gps_timeLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     gps_timeLabel.Location = new System.Drawing.Point(34, 111);
     gps_timeLabel.Name     = "gps_timeLabel";
     gps_timeLabel.Size     = new System.Drawing.Size(64, 14);
     gps_timeLabel.Text     = "gps time:";
     //
     // usuario_idLabel
     //
     usuario_idLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     usuario_idLabel.Location = new System.Drawing.Point(27, 185);
     usuario_idLabel.Name     = "usuario_idLabel";
     usuario_idLabel.Size     = new System.Drawing.Size(71, 14);
     usuario_idLabel.Text     = "usuario id:";
     usuario_idLabel.Visible  = false;
     //
     // programacao_ip_idLabel
     //
     programacao_ip_idLabel.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     programacao_ip_idLabel.Location = new System.Drawing.Point(7, 212);
     programacao_ip_idLabel.Name     = "programacao_ip_idLabel";
     programacao_ip_idLabel.Size     = new System.Drawing.Size(91, 14);
     programacao_ip_idLabel.Text     = "programação:";
     programacao_ip_idLabel.Visible  = false;
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.Add(this.menuItem1);
     //
     // menuItem1
     //
     this.menuItem1.MenuItems.Add(this.menuItemNovo);
     this.menuItem1.MenuItems.Add(this.menuItemSalvar);
     this.menuItem1.MenuItems.Add(this.menuItem7);
     this.menuItem1.MenuItems.Add(this.menuItemPostes);
     this.menuItem1.MenuItems.Add(this.menuItem3);
     this.menuItem1.MenuItems.Add(this.menuItem2);
     this.menuItem1.Text   = "Opções";
     this.menuItem1.Popup += new System.EventHandler(this.menuItem1_Click);
     this.menuItem1.Click += new System.EventHandler(this.menuItem1_Click);
     //
     // menuItemNovo
     //
     this.menuItemNovo.Text   = "Novo";
     this.menuItemNovo.Click += new System.EventHandler(this.novo);
     //
     // menuItemSalvar
     //
     this.menuItemSalvar.Text   = "Salvar";
     this.menuItemSalvar.Click += new System.EventHandler(this.salvar);
     //
     // menuItem7
     //
     this.menuItem7.Text = "-";
     //
     // menuItemPostes
     //
     this.menuItemPostes.Text   = "Postes";
     this.menuItemPostes.Click += new System.EventHandler(this.menuItem6_Click);
     //
     // menuItem3
     //
     this.menuItem3.Text = "-";
     //
     // menuItem2
     //
     this.menuItem2.Text   = "Sair";
     this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
     //
     // trafoBindingSource
     //
     this.trafoBindingSource.DataMember = "trafo";
     this.trafoBindingSource.DataSource = this.eletrocadDataSet;
     //
     // eletrocadDataSet
     //
     this.eletrocadDataSet.DataSetName             = "eletrocadDataSet";
     this.eletrocadDataSet.Prefix                  = "";
     this.eletrocadDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // trafoDataGrid
     //
     this.trafoDataGrid.BackgroundColor   = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.trafoDataGrid.DataSource        = this.trafoBindingSource;
     this.trafoDataGrid.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.trafoDataGrid.Location          = new System.Drawing.Point(0, 0);
     this.trafoDataGrid.Name              = "trafoDataGrid";
     this.trafoDataGrid.RowHeadersVisible = false;
     this.trafoDataGrid.Size              = new System.Drawing.Size(253, 251);
     this.trafoDataGrid.TabIndex          = 1;
     this.trafoDataGrid.TableStyles.Add(this.trafoTableStyleDataGridTableStyle);
     //
     // trafoTableStyleDataGridTableStyle
     //
     this.trafoTableStyleDataGridTableStyle.GridColumnStyles.Add(chaveDataGridColumnStyleDataGridTextBoxColumn);
     this.trafoTableStyleDataGridTableStyle.GridColumnStyles.Add(ciaDataGridColumnStyleDataGridTextBoxColumn);
     this.trafoTableStyleDataGridTableStyle.GridColumnStyles.Add(programacao_ip_idDataGridColumnStyleDataGridTextBoxColumn);
     this.trafoTableStyleDataGridTableStyle.MappingName = "trafo";
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location      = new System.Drawing.Point(0, 0);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(253, 274);
     this.tabControl1.TabIndex      = 2;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.trafoDataGrid);
     this.tabPage1.Location = new System.Drawing.Point(0, 0);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(253, 251);
     this.tabPage1.Text     = "Tabela";
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(programacao_ip_idLabel);
     this.tabPage2.Controls.Add(this.programacao_ip_idTextBox);
     this.tabPage2.Controls.Add(usuario_idLabel);
     this.tabPage2.Controls.Add(this.usuario_idTextBox);
     this.tabPage2.Controls.Add(gps_timeLabel);
     this.tabPage2.Controls.Add(this.gps_timeTextBox);
     this.tabPage2.Controls.Add(alimentadorLabel);
     this.tabPage2.Controls.Add(this.alimentadorTextBox);
     this.tabPage2.Controls.Add(ciaLabel);
     this.tabPage2.Controls.Add(this.ciaTextBox);
     this.tabPage2.Controls.Add(chaveLabel);
     this.tabPage2.Controls.Add(this.chaveTextBox);
     this.tabPage2.Location = new System.Drawing.Point(0, 0);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(253, 251);
     this.tabPage2.Text     = "Formulário";
     //
     // programacao_ip_idTextBox
     //
     this.programacao_ip_idTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.trafoBindingSource, "programacao_ip_id", true));
     this.programacao_ip_idTextBox.Location = new System.Drawing.Point(105, 209);
     this.programacao_ip_idTextBox.Name     = "programacao_ip_idTextBox";
     this.programacao_ip_idTextBox.ReadOnly = true;
     this.programacao_ip_idTextBox.Size     = new System.Drawing.Size(100, 21);
     this.programacao_ip_idTextBox.TabIndex = 17;
     this.programacao_ip_idTextBox.Visible  = false;
     //
     // usuario_idTextBox
     //
     this.usuario_idTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.trafoBindingSource, "usuario_id", true));
     this.usuario_idTextBox.Location = new System.Drawing.Point(105, 182);
     this.usuario_idTextBox.Name     = "usuario_idTextBox";
     this.usuario_idTextBox.ReadOnly = true;
     this.usuario_idTextBox.Size     = new System.Drawing.Size(100, 21);
     this.usuario_idTextBox.TabIndex = 16;
     this.usuario_idTextBox.Text     = "USER";
     this.usuario_idTextBox.Visible  = false;
     //
     // gps_timeTextBox
     //
     this.gps_timeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.trafoBindingSource, "gps_time", true));
     this.gps_timeTextBox.Location = new System.Drawing.Point(105, 108);
     this.gps_timeTextBox.Name     = "gps_timeTextBox";
     this.gps_timeTextBox.ReadOnly = true;
     this.gps_timeTextBox.Size     = new System.Drawing.Size(100, 21);
     this.gps_timeTextBox.TabIndex = 12;
     //
     // alimentadorTextBox
     //
     this.alimentadorTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.trafoBindingSource, "alimentador", true));
     this.alimentadorTextBox.Location = new System.Drawing.Point(105, 81);
     this.alimentadorTextBox.Name     = "alimentadorTextBox";
     this.alimentadorTextBox.Size     = new System.Drawing.Size(100, 21);
     this.alimentadorTextBox.TabIndex = 5;
     //
     // ciaTextBox
     //
     this.ciaTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.trafoBindingSource, "cia", true));
     this.ciaTextBox.Location = new System.Drawing.Point(105, 54);
     this.ciaTextBox.Name     = "ciaTextBox";
     this.ciaTextBox.Size     = new System.Drawing.Size(100, 21);
     this.ciaTextBox.TabIndex = 3;
     //
     // chaveTextBox
     //
     this.chaveTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.trafoBindingSource, "chave", true));
     this.chaveTextBox.Location = new System.Drawing.Point(105, 27);
     this.chaveTextBox.Name     = "chaveTextBox";
     this.chaveTextBox.Size     = new System.Drawing.Size(100, 21);
     this.chaveTextBox.TabIndex = 1;
     //
     // lblTtrafoId
     //
     this.lblTtrafoId.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.lblTtrafoId.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.trafoBindingSource, "id", true));
     this.lblTtrafoId.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.lblTtrafoId.Font      = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.lblTtrafoId.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.lblTtrafoId.Location  = new System.Drawing.Point(0, 274);
     this.lblTtrafoId.Name      = "lblTtrafoId";
     this.lblTtrafoId.Size      = new System.Drawing.Size(253, 20);
     this.lblTtrafoId.Text      = "0";
     this.lblTtrafoId.Visible   = false;
     //
     // trafoTableAdapter
     //
     this.trafoTableAdapter.ClearBeforeFill = true;
     //
     // CadastrarTrafo
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.AutoScroll          = true;
     this.ClientSize          = new System.Drawing.Size(253, 294);
     this.ControlBox          = false;
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.lblTtrafoId);
     this.Location    = new System.Drawing.Point(0, 0);
     this.Menu        = this.mainMenu1;
     this.MinimizeBox = false;
     this.Name        = "CadastrarTrafo";
     this.Text        = "CadastrarTrafo";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.CadastrarTrafo_Load);
     this.Closing    += new System.ComponentModel.CancelEventHandler(this.CadastrarTrafo_Closing);
     ((System.ComponentModel.ISupportInitialize)(this.trafoBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.eletrocadDataSet)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     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);
 }
예제 #34
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.Label fasesLabel;
            System.Windows.Forms.Label cod_reatorLabel;
            System.Windows.Forms.Label cod_lampadaLabel;
            System.Windows.Forms.Label cod_luminariaLabel;
            System.Windows.Forms.Label cod_bracoLabel;
            System.Windows.Forms.Label label1;
            System.Windows.Forms.Label plaqueta_fkLabel;
            System.Windows.Forms.DataGridTextBoxColumn fasesDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn cod_luminariaDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn cod_lampadaDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn plaqueta_fkDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.Label observacaoLabel;
            System.Windows.Forms.Label comandoLabel;
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.menuItem1 = new System.Windows.Forms.MenuItem();
            this.menuItem4 = new System.Windows.Forms.MenuItem();
            this.menuItem5 = new System.Windows.Forms.MenuItem();
            this.menuItem3 = new System.Windows.Forms.MenuItem();
            this.menuItem2 = new System.Windows.Forms.MenuItem();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.materialDataGrid = new System.Windows.Forms.DataGrid();
            this.materialBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.citeluzDataSet = new Colibri.db.citeluzDataSet();
            this.materialTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.plaqueta_fkTextBox = new System.Windows.Forms.TextBox();
            this.multiplicadorUpDown = new System.Windows.Forms.NumericUpDown();
            this.fasesComboBox = new System.Windows.Forms.ComboBox();
            this.cod_reatorComboBox = new System.Windows.Forms.ComboBox();
            this.cod_lampadaComboBox = new System.Windows.Forms.ComboBox();
            this.cod_luminariaComboBox = new System.Windows.Forms.ComboBox();
            this.cod_bracoComboBox = new System.Windows.Forms.ComboBox();
            this.tabPage3 = new System.Windows.Forms.TabPage();
            this.observacaoTextBox = new System.Windows.Forms.TextBox();
            this.materialTableAdapter = new Colibri.db.citeluzDataSetTableAdapters.materialTableAdapter();
            this.comandoComboBox = new System.Windows.Forms.ComboBox();
            fasesLabel = new System.Windows.Forms.Label();
            cod_reatorLabel = new System.Windows.Forms.Label();
            cod_lampadaLabel = new System.Windows.Forms.Label();
            cod_luminariaLabel = new System.Windows.Forms.Label();
            cod_bracoLabel = new System.Windows.Forms.Label();
            label1 = new System.Windows.Forms.Label();
            plaqueta_fkLabel = new System.Windows.Forms.Label();
            fasesDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            cod_luminariaDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            cod_lampadaDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            plaqueta_fkDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            observacaoLabel = new System.Windows.Forms.Label();
            comandoLabel = new System.Windows.Forms.Label();
            this.tabControl1.SuspendLayout();
            this.tabPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.materialBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.citeluzDataSet)).BeginInit();
            this.tabPage1.SuspendLayout();
            this.tabPage3.SuspendLayout();
            this.SuspendLayout();
            // 
            // fasesLabel
            // 
            fasesLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            fasesLabel.Location = new System.Drawing.Point(47, 95);
            fasesLabel.Name = "fasesLabel";
            fasesLabel.Size = new System.Drawing.Size(42, 14);
            fasesLabel.Text = "fases:";
            // 
            // cod_reatorLabel
            // 
            cod_reatorLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            cod_reatorLabel.Location = new System.Drawing.Point(21, 179);
            cod_reatorLabel.Name = "cod_reatorLabel";
            cod_reatorLabel.Size = new System.Drawing.Size(75, 14);
            cod_reatorLabel.Text = "cod reator:";
            // 
            // cod_lampadaLabel
            // 
            cod_lampadaLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            cod_lampadaLabel.Location = new System.Drawing.Point(8, 151);
            cod_lampadaLabel.Name = "cod_lampadaLabel";
            cod_lampadaLabel.Size = new System.Drawing.Size(88, 14);
            cod_lampadaLabel.Text = "cod lampada:";
            // 
            // cod_luminariaLabel
            // 
            cod_luminariaLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            cod_luminariaLabel.Location = new System.Drawing.Point(4, 123);
            cod_luminariaLabel.Name = "cod_luminariaLabel";
            cod_luminariaLabel.Size = new System.Drawing.Size(92, 14);
            cod_luminariaLabel.Text = "cod luminaria:";
            // 
            // cod_bracoLabel
            // 
            cod_bracoLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            cod_bracoLabel.Location = new System.Drawing.Point(25, 68);
            cod_bracoLabel.Name = "cod_bracoLabel";
            cod_bracoLabel.Size = new System.Drawing.Size(71, 14);
            cod_bracoLabel.Text = "cod braco:";
            // 
            // label1
            // 
            label1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            label1.Location = new System.Drawing.Point(8, 41);
            label1.Name = "label1";
            label1.Size = new System.Drawing.Size(81, 19);
            label1.Text = "multiplicar:";
            label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
            // 
            // plaqueta_fkLabel
            // 
            plaqueta_fkLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            plaqueta_fkLabel.Location = new System.Drawing.Point(8, 14);
            plaqueta_fkLabel.Name = "plaqueta_fkLabel";
            plaqueta_fkLabel.Size = new System.Drawing.Size(81, 14);
            plaqueta_fkLabel.Text = "plaqueta fk:";
            // 
            // fasesDataGridColumnStyleDataGridTextBoxColumn
            // 
            fasesDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            fasesDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            fasesDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "fases";
            fasesDataGridColumnStyleDataGridTextBoxColumn.MappingName = "fases";
            // 
            // cod_luminariaDataGridColumnStyleDataGridTextBoxColumn
            // 
            cod_luminariaDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            cod_luminariaDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            cod_luminariaDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "cod_luminaria";
            cod_luminariaDataGridColumnStyleDataGridTextBoxColumn.MappingName = "cod_luminaria";
            // 
            // cod_lampadaDataGridColumnStyleDataGridTextBoxColumn
            // 
            cod_lampadaDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            cod_lampadaDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            cod_lampadaDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "cod_lampada";
            cod_lampadaDataGridColumnStyleDataGridTextBoxColumn.MappingName = "cod_lampada";
            // 
            // plaqueta_fkDataGridColumnStyleDataGridTextBoxColumn
            // 
            plaqueta_fkDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            plaqueta_fkDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            plaqueta_fkDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "plaqueta";
            plaqueta_fkDataGridColumnStyleDataGridTextBoxColumn.MappingName = "plaqueta_fk";
            plaqueta_fkDataGridColumnStyleDataGridTextBoxColumn.Width = 100;
            // 
            // observacaoLabel
            // 
            observacaoLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            observacaoLabel.Location = new System.Drawing.Point(9, 4);
            observacaoLabel.Name = "observacaoLabel";
            observacaoLabel.Size = new System.Drawing.Size(80, 14);
            observacaoLabel.Text = "observacao:";
            // 
            // mainMenu1
            // 
            this.mainMenu1.MenuItems.Add(this.menuItem1);
            // 
            // menuItem1
            // 
            this.menuItem1.MenuItems.Add(this.menuItem4);
            this.menuItem1.MenuItems.Add(this.menuItem5);
            this.menuItem1.MenuItems.Add(this.menuItem3);
            this.menuItem1.MenuItems.Add(this.menuItem2);
            this.menuItem1.Text = "Opções";
            // 
            // menuItem4
            // 
            this.menuItem4.Text = "Novo";
            this.menuItem4.Click += new System.EventHandler(this.menuItem4_Click);
            // 
            // menuItem5
            // 
            this.menuItem5.Text = "Salvar";
            this.menuItem5.Click += new System.EventHandler(this.menuItem5_Click);
            // 
            // menuItem3
            // 
            this.menuItem3.Text = "-";
            // 
            // menuItem2
            // 
            this.menuItem2.Text = "Sair";
            this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage3);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.Location = new System.Drawing.Point(0, 0);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(240, 294);
            this.tabControl1.TabIndex = 0;
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(this.materialDataGrid);
            this.tabPage2.Location = new System.Drawing.Point(0, 0);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Size = new System.Drawing.Size(240, 271);
            this.tabPage2.Text = "Tabela";
            // 
            // materialDataGrid
            // 
            this.materialDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.materialDataGrid.DataSource = this.materialBindingSource;
            this.materialDataGrid.Dock = System.Windows.Forms.DockStyle.Fill;
            this.materialDataGrid.Location = new System.Drawing.Point(0, 0);
            this.materialDataGrid.Name = "materialDataGrid";
            this.materialDataGrid.Size = new System.Drawing.Size(240, 271);
            this.materialDataGrid.TabIndex = 0;
            this.materialDataGrid.TableStyles.Add(this.materialTableStyleDataGridTableStyle);
            // 
            // materialBindingSource
            // 
            this.materialBindingSource.DataMember = "material";
            this.materialBindingSource.DataSource = this.citeluzDataSet;
            // 
            // citeluzDataSet
            // 
            this.citeluzDataSet.DataSetName = "citeluzDataSet";
            this.citeluzDataSet.Prefix = "";
            this.citeluzDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // materialTableStyleDataGridTableStyle
            // 
            this.materialTableStyleDataGridTableStyle.GridColumnStyles.Add(plaqueta_fkDataGridColumnStyleDataGridTextBoxColumn);
            this.materialTableStyleDataGridTableStyle.GridColumnStyles.Add(fasesDataGridColumnStyleDataGridTextBoxColumn);
            this.materialTableStyleDataGridTableStyle.GridColumnStyles.Add(cod_luminariaDataGridColumnStyleDataGridTextBoxColumn);
            this.materialTableStyleDataGridTableStyle.GridColumnStyles.Add(cod_lampadaDataGridColumnStyleDataGridTextBoxColumn);
            this.materialTableStyleDataGridTableStyle.MappingName = "material";
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(comandoLabel);
            this.tabPage1.Controls.Add(this.comandoComboBox);
            this.tabPage1.Controls.Add(plaqueta_fkLabel);
            this.tabPage1.Controls.Add(this.plaqueta_fkTextBox);
            this.tabPage1.Controls.Add(this.multiplicadorUpDown);
            this.tabPage1.Controls.Add(label1);
            this.tabPage1.Controls.Add(fasesLabel);
            this.tabPage1.Controls.Add(this.fasesComboBox);
            this.tabPage1.Controls.Add(cod_reatorLabel);
            this.tabPage1.Controls.Add(this.cod_reatorComboBox);
            this.tabPage1.Controls.Add(cod_lampadaLabel);
            this.tabPage1.Controls.Add(this.cod_lampadaComboBox);
            this.tabPage1.Controls.Add(cod_luminariaLabel);
            this.tabPage1.Controls.Add(this.cod_luminariaComboBox);
            this.tabPage1.Controls.Add(cod_bracoLabel);
            this.tabPage1.Controls.Add(this.cod_bracoComboBox);
            this.tabPage1.Location = new System.Drawing.Point(0, 0);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Size = new System.Drawing.Size(240, 271);
            this.tabPage1.Text = "tabPage1";
            // 
            // plaqueta_fkTextBox
            // 
            this.plaqueta_fkTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.materialBindingSource, "plaqueta_fk", true));
            this.plaqueta_fkTextBox.Location = new System.Drawing.Point(96, 11);
            this.plaqueta_fkTextBox.Name = "plaqueta_fkTextBox";
            this.plaqueta_fkTextBox.ReadOnly = true;
            this.plaqueta_fkTextBox.Size = new System.Drawing.Size(100, 21);
            this.plaqueta_fkTextBox.TabIndex = 51;
            // 
            // multiplicadorUpDown
            // 
            this.multiplicadorUpDown.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.multiplicadorUpDown.Location = new System.Drawing.Point(96, 38);
            this.multiplicadorUpDown.Name = "multiplicadorUpDown";
            this.multiplicadorUpDown.Size = new System.Drawing.Size(67, 20);
            this.multiplicadorUpDown.TabIndex = 44;
            this.multiplicadorUpDown.Value = new decimal(new int[] {
            1,
            0,
            0,
            0});
            // 
            // fasesComboBox
            // 
            this.fasesComboBox.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.materialBindingSource, "fases", true));
            this.fasesComboBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.fasesComboBox.Location = new System.Drawing.Point(96, 95);
            this.fasesComboBox.Name = "fasesComboBox";
            this.fasesComboBox.Size = new System.Drawing.Size(78, 20);
            this.fasesComboBox.TabIndex = 36;
            // 
            // cod_reatorComboBox
            // 
            this.cod_reatorComboBox.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.materialBindingSource, "cod_reator", true));
            this.cod_reatorComboBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.cod_reatorComboBox.Location = new System.Drawing.Point(96, 179);
            this.cod_reatorComboBox.Name = "cod_reatorComboBox";
            this.cod_reatorComboBox.Size = new System.Drawing.Size(137, 20);
            this.cod_reatorComboBox.TabIndex = 35;
            // 
            // cod_lampadaComboBox
            // 
            this.cod_lampadaComboBox.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.materialBindingSource, "cod_lampada", true));
            this.cod_lampadaComboBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.cod_lampadaComboBox.Location = new System.Drawing.Point(96, 151);
            this.cod_lampadaComboBox.Name = "cod_lampadaComboBox";
            this.cod_lampadaComboBox.Size = new System.Drawing.Size(137, 20);
            this.cod_lampadaComboBox.TabIndex = 34;
            // 
            // cod_luminariaComboBox
            // 
            this.cod_luminariaComboBox.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.materialBindingSource, "cod_luminaria", true));
            this.cod_luminariaComboBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.cod_luminariaComboBox.Location = new System.Drawing.Point(96, 123);
            this.cod_luminariaComboBox.Name = "cod_luminariaComboBox";
            this.cod_luminariaComboBox.Size = new System.Drawing.Size(137, 20);
            this.cod_luminariaComboBox.TabIndex = 33;
            // 
            // cod_bracoComboBox
            // 
            this.cod_bracoComboBox.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.materialBindingSource, "cod_braco", true));
            this.cod_bracoComboBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.cod_bracoComboBox.Location = new System.Drawing.Point(96, 68);
            this.cod_bracoComboBox.Name = "cod_bracoComboBox";
            this.cod_bracoComboBox.Size = new System.Drawing.Size(137, 20);
            this.cod_bracoComboBox.TabIndex = 32;
            // 
            // tabPage3
            // 
            this.tabPage3.Controls.Add(observacaoLabel);
            this.tabPage3.Controls.Add(this.observacaoTextBox);
            this.tabPage3.Location = new System.Drawing.Point(0, 0);
            this.tabPage3.Name = "tabPage3";
            this.tabPage3.Size = new System.Drawing.Size(240, 271);
            this.tabPage3.Text = "tabPage3";
            // 
            // observacaoTextBox
            // 
            this.observacaoTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.materialBindingSource, "observacao", true));
            this.observacaoTextBox.Location = new System.Drawing.Point(9, 21);
            this.observacaoTextBox.Multiline = true;
            this.observacaoTextBox.Name = "observacaoTextBox";
            this.observacaoTextBox.Size = new System.Drawing.Size(224, 68);
            this.observacaoTextBox.TabIndex = 54;
            // 
            // materialTableAdapter
            // 
            this.materialTableAdapter.ClearBeforeFill = false;
            // 
            // comandoLabel
            // 
            comandoLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            comandoLabel.Location = new System.Drawing.Point(21, 205);
            comandoLabel.Name = "comandoLabel";
            comandoLabel.Size = new System.Drawing.Size(67, 14);
            comandoLabel.Text = "comando:";
            // 
            // comandoComboBox
            // 
            this.comandoComboBox.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.materialBindingSource, "comando", true));
            this.comandoComboBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.comandoComboBox.Location = new System.Drawing.Point(94, 205);
            this.comandoComboBox.Name = "comandoComboBox";
            this.comandoComboBox.Size = new System.Drawing.Size(139, 20);
            this.comandoComboBox.TabIndex = 59;
            // 
            // Material
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(240, 294);
            this.ControlBox = false;
            this.Controls.Add(this.tabControl1);
            this.Location = new System.Drawing.Point(0, 0);
            this.Menu = this.mainMenu1;
            this.MinimizeBox = false;
            this.Name = "Material";
            this.Text = "Material";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.Material_Load);
            this.tabControl1.ResumeLayout(false);
            this.tabPage2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.materialBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.citeluzDataSet)).EndInit();
            this.tabPage1.ResumeLayout(false);
            this.tabPage3.ResumeLayout(false);
            this.ResumeLayout(false);

        }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.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);
 }
예제 #36
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.Label cod_trafoLabel;
            System.Windows.Forms.Label plaqueta_trafoLabel;
            System.Windows.Forms.Label potenciaLabel;
            System.Windows.Forms.Label cod_proprietarioLabel;
            System.Windows.Forms.Label observacaoLabel;
            System.Windows.Forms.DataGridTextBoxColumn cod_trafoDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.Label userLabel;
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.menuItem1 = new System.Windows.Forms.MenuItem();
            this.menuItem3 = new System.Windows.Forms.MenuItem();
            this.menuItem5 = new System.Windows.Forms.MenuItem();
            this.menuItem6 = new System.Windows.Forms.MenuItem();
            this.menuItem7 = new System.Windows.Forms.MenuItem();
            this.menuItem8 = new System.Windows.Forms.MenuItem();
            this.menuItem4 = new System.Windows.Forms.MenuItem();
            this.menuItem2 = new System.Windows.Forms.MenuItem();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.trafoDataGrid = new System.Windows.Forms.DataGrid();
            this.trafoBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.citeluzDataSet = new Cadx.db.citeluzDataSet();
            this.trafoTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.totalMaterialLabel = new System.Windows.Forms.Label();
            this.totalPlaquetaLabel = new System.Windows.Forms.Label();
            this.totalLabel = new System.Windows.Forms.Label();
            this.userTextBox = new System.Windows.Forms.TextBox();
            this.observacaoTextBox = new Cadx.CipTextBox();
            this.cod_proprietarioComboBox = new System.Windows.Forms.ComboBox();
            this.potenciaTextBox = new Cadx.CipTextBox();
            this.plaqueta_trafoTextBox = new Cadx.CipTextBox();
            this.cod_trafoTextBox = new Cadx.CipTextBox();
            this.plaquetaBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.trafoTableAdapter = new Cadx.db.citeluzDataSetTableAdapters.trafoTableAdapter();
            this.plaquetaTableAdapter = new Cadx.db.citeluzDataSetTableAdapters.plaquetaTableAdapter();
            this.materialBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.materialTableAdapter = new Cadx.db.citeluzDataSetTableAdapters.materialTableAdapter();
            cod_trafoLabel = new System.Windows.Forms.Label();
            plaqueta_trafoLabel = new System.Windows.Forms.Label();
            potenciaLabel = new System.Windows.Forms.Label();
            cod_proprietarioLabel = new System.Windows.Forms.Label();
            observacaoLabel = new System.Windows.Forms.Label();
            cod_trafoDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            userLabel = new System.Windows.Forms.Label();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.trafoBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.citeluzDataSet)).BeginInit();
            this.tabPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.plaquetaBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.materialBindingSource)).BeginInit();
            this.SuspendLayout();
            // 
            // cod_trafoLabel
            // 
            cod_trafoLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            cod_trafoLabel.Location = new System.Drawing.Point(47, 12);
            cod_trafoLabel.Name = "cod_trafoLabel";
            cod_trafoLabel.Size = new System.Drawing.Size(68, 14);
            cod_trafoLabel.Text = "cod trafo:";
            // 
            // plaqueta_trafoLabel
            // 
            plaqueta_trafoLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            plaqueta_trafoLabel.Location = new System.Drawing.Point(15, 39);
            plaqueta_trafoLabel.Name = "plaqueta_trafoLabel";
            plaqueta_trafoLabel.Size = new System.Drawing.Size(100, 14);
            plaqueta_trafoLabel.Text = "plaqueta trafo:";
            // 
            // potenciaLabel
            // 
            potenciaLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            potenciaLabel.Location = new System.Drawing.Point(51, 66);
            potenciaLabel.Name = "potenciaLabel";
            potenciaLabel.Size = new System.Drawing.Size(64, 14);
            potenciaLabel.Text = "potencia:";
            // 
            // cod_proprietarioLabel
            // 
            cod_proprietarioLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            cod_proprietarioLabel.Location = new System.Drawing.Point(5, 90);
            cod_proprietarioLabel.Name = "cod_proprietarioLabel";
            cod_proprietarioLabel.Size = new System.Drawing.Size(110, 14);
            cod_proprietarioLabel.Text = "cod proprietario:";
            // 
            // observacaoLabel
            // 
            observacaoLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            observacaoLabel.Location = new System.Drawing.Point(5, 108);
            observacaoLabel.Name = "observacaoLabel";
            observacaoLabel.Size = new System.Drawing.Size(80, 14);
            observacaoLabel.Text = "observacao:";
            // 
            // cod_trafoDataGridColumnStyleDataGridTextBoxColumn
            // 
            cod_trafoDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            cod_trafoDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "cod_trafo";
            cod_trafoDataGridColumnStyleDataGridTextBoxColumn.MappingName = "cod_trafo";
            cod_trafoDataGridColumnStyleDataGridTextBoxColumn.Width = 80;
            // 
            // plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn
            // 
            plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "plaqueta_trafo";
            plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn.MappingName = "plaqueta_trafo";
            plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn.Width = 100;
            // 
            // userLabel
            // 
            userLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            userLabel.Location = new System.Drawing.Point(70, 185);
            userLabel.Name = "userLabel";
            userLabel.Size = new System.Drawing.Size(37, 14);
            userLabel.Text = "user:"******"Opções";
            // 
            // menuItem3
            // 
            this.menuItem3.Text = "Novo";
            this.menuItem3.Click += new System.EventHandler(this.menuItem3_Click);
            // 
            // menuItem5
            // 
            this.menuItem5.Text = "Salvar";
            this.menuItem5.Click += new System.EventHandler(this.menuItem5_Click);
            // 
            // menuItem6
            // 
            this.menuItem6.MenuItems.Add(this.menuItem7);
            this.menuItem6.Text = "Mais";
            // 
            // menuItem7
            // 
            this.menuItem7.Text = "Plaquetas";
            this.menuItem7.Click += new System.EventHandler(this.menuItem7_Click);
            // 
            // menuItem8
            // 
            this.menuItem8.Text = "Excluir";
            this.menuItem8.Click += new System.EventHandler(this.menuItem8_Click);
            // 
            // menuItem4
            // 
            this.menuItem4.Text = "-";
            // 
            // menuItem2
            // 
            this.menuItem2.Text = "Sair";
            this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.Location = new System.Drawing.Point(0, 0);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(240, 294);
            this.tabControl1.TabIndex = 0;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.trafoDataGrid);
            this.tabPage1.Location = new System.Drawing.Point(0, 0);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Size = new System.Drawing.Size(240, 271);
            this.tabPage1.Text = "Tabela";
            // 
            // trafoDataGrid
            // 
            this.trafoDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.trafoDataGrid.DataSource = this.trafoBindingSource;
            this.trafoDataGrid.Dock = System.Windows.Forms.DockStyle.Fill;
            this.trafoDataGrid.Location = new System.Drawing.Point(0, 0);
            this.trafoDataGrid.Name = "trafoDataGrid";
            this.trafoDataGrid.RowHeadersVisible = false;
            this.trafoDataGrid.Size = new System.Drawing.Size(240, 271);
            this.trafoDataGrid.TabIndex = 0;
            this.trafoDataGrid.TableStyles.Add(this.trafoTableStyleDataGridTableStyle);
            // 
            // trafoBindingSource
            // 
            this.trafoBindingSource.DataMember = "trafo";
            this.trafoBindingSource.DataSource = this.citeluzDataSet;
            // 
            // citeluzDataSet
            // 
            this.citeluzDataSet.DataSetName = "citeluzDataSet";
            this.citeluzDataSet.Prefix = "";
            this.citeluzDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // trafoTableStyleDataGridTableStyle
            // 
            this.trafoTableStyleDataGridTableStyle.GridColumnStyles.Add(plaqueta_trafoDataGridColumnStyleDataGridTextBoxColumn);
            this.trafoTableStyleDataGridTableStyle.GridColumnStyles.Add(cod_trafoDataGridColumnStyleDataGridTextBoxColumn);
            this.trafoTableStyleDataGridTableStyle.MappingName = "trafo";
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(this.totalMaterialLabel);
            this.tabPage2.Controls.Add(this.totalPlaquetaLabel);
            this.tabPage2.Controls.Add(this.totalLabel);
            this.tabPage2.Controls.Add(userLabel);
            this.tabPage2.Controls.Add(this.userTextBox);
            this.tabPage2.Controls.Add(observacaoLabel);
            this.tabPage2.Controls.Add(this.observacaoTextBox);
            this.tabPage2.Controls.Add(this.cod_proprietarioComboBox);
            this.tabPage2.Controls.Add(this.potenciaTextBox);
            this.tabPage2.Controls.Add(this.plaqueta_trafoTextBox);
            this.tabPage2.Controls.Add(this.cod_trafoTextBox);
            this.tabPage2.Controls.Add(cod_proprietarioLabel);
            this.tabPage2.Controls.Add(potenciaLabel);
            this.tabPage2.Controls.Add(plaqueta_trafoLabel);
            this.tabPage2.Controls.Add(cod_trafoLabel);
            this.tabPage2.Location = new System.Drawing.Point(0, 0);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Size = new System.Drawing.Size(240, 271);
            this.tabPage2.Text = "tabPage2";
            // 
            // totalMaterialLabel
            // 
            this.totalMaterialLabel.Location = new System.Drawing.Point(5, 250);
            this.totalMaterialLabel.Name = "totalMaterialLabel";
            this.totalMaterialLabel.Size = new System.Drawing.Size(130, 20);
            this.totalMaterialLabel.Text = "label2";
            // 
            // totalPlaquetaLabel
            // 
            this.totalPlaquetaLabel.Location = new System.Drawing.Point(5, 230);
            this.totalPlaquetaLabel.Name = "totalPlaquetaLabel";
            this.totalPlaquetaLabel.Size = new System.Drawing.Size(130, 20);
            this.totalPlaquetaLabel.Text = "label1";
            // 
            // totalLabel
            // 
            this.totalLabel.Location = new System.Drawing.Point(5, 210);
            this.totalLabel.Name = "totalLabel";
            this.totalLabel.Size = new System.Drawing.Size(130, 20);
            this.totalLabel.Text = "totalLabel";
            // 
            // userTextBox
            // 
            this.userTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.trafoBindingSource, "user", true));
            this.userTextBox.Location = new System.Drawing.Point(114, 182);
            this.userTextBox.Name = "userTextBox";
            this.userTextBox.ReadOnly = true;
            this.userTextBox.Size = new System.Drawing.Size(119, 21);
            this.userTextBox.TabIndex = 14;
            // 
            // observacaoTextBox
            // 
            this.observacaoTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.trafoBindingSource, "observacao", true));
            this.observacaoTextBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.observacaoTextBox.Location = new System.Drawing.Point(5, 125);
            this.observacaoTextBox.Multiline = true;
            this.observacaoTextBox.Name = "observacaoTextBox";
            this.observacaoTextBox.Size = new System.Drawing.Size(226, 51);
            this.observacaoTextBox.TabIndex = 9;
            // 
            // cod_proprietarioComboBox
            // 
            this.cod_proprietarioComboBox.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.trafoBindingSource, "cod_proprietario", true));
            this.cod_proprietarioComboBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.cod_proprietarioComboBox.Location = new System.Drawing.Point(114, 88);
            this.cod_proprietarioComboBox.Name = "cod_proprietarioComboBox";
            this.cod_proprietarioComboBox.Size = new System.Drawing.Size(119, 20);
            this.cod_proprietarioComboBox.TabIndex = 7;
            // 
            // potenciaTextBox
            // 
            this.potenciaTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.trafoBindingSource, "potencia", true));
            this.potenciaTextBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.potenciaTextBox.Location = new System.Drawing.Point(114, 61);
            this.potenciaTextBox.Name = "potenciaTextBox";
            this.potenciaTextBox.Size = new System.Drawing.Size(119, 19);
            this.potenciaTextBox.TabIndex = 5;
            // 
            // plaqueta_trafoTextBox
            // 
            this.plaqueta_trafoTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.trafoBindingSource, "plaqueta_trafo", true));
            this.plaqueta_trafoTextBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.plaqueta_trafoTextBox.Location = new System.Drawing.Point(114, 34);
            this.plaqueta_trafoTextBox.Name = "plaqueta_trafoTextBox";
            this.plaqueta_trafoTextBox.Size = new System.Drawing.Size(119, 19);
            this.plaqueta_trafoTextBox.TabIndex = 3;
            // 
            // cod_trafoTextBox
            // 
            this.cod_trafoTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.trafoBindingSource, "cod_trafo", true));
            this.cod_trafoTextBox.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.cod_trafoTextBox.Location = new System.Drawing.Point(114, 7);
            this.cod_trafoTextBox.Name = "cod_trafoTextBox";
            this.cod_trafoTextBox.Size = new System.Drawing.Size(119, 19);
            this.cod_trafoTextBox.TabIndex = 1;
            // 
            // plaquetaBindingSource
            // 
            this.plaquetaBindingSource.DataMember = "plaqueta";
            this.plaquetaBindingSource.DataSource = this.citeluzDataSet;
            // 
            // trafoTableAdapter
            // 
            this.trafoTableAdapter.ClearBeforeFill = true;
            // 
            // plaquetaTableAdapter
            // 
            this.plaquetaTableAdapter.ClearBeforeFill = true;
            // 
            // materialBindingSource
            // 
            this.materialBindingSource.DataMember = "material";
            this.materialBindingSource.DataSource = this.citeluzDataSet;
            // 
            // materialTableAdapter
            // 
            this.materialTableAdapter.ClearBeforeFill = true;
            // 
            // Trafo
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(240, 294);
            this.ControlBox = false;
            this.Controls.Add(this.tabControl1);
            this.Location = new System.Drawing.Point(0, 0);
            this.Menu = this.mainMenu1;
            this.MinimizeBox = false;
            this.Name = "Trafo";
            this.Text = "Trafo";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.Trafo_Load);
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.trafoBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.citeluzDataSet)).EndInit();
            this.tabPage2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.plaquetaBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.materialBindingSource)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.DataGridTextBoxColumn iDDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn firstNameDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn lastNameDataGridColumnStyleDataGridTextBoxColumn;
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.userDataSet = new DersDemo_Mobile_Address.UserDataSet();
            this.contactBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.contactDataGrid = new System.Windows.Forms.DataGrid();
            this.contactTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
            this.label1 = new System.Windows.Forms.Label();
            this.textBox1 = new System.Windows.Forms.TextBox();
            this.textBox2 = new System.Windows.Forms.TextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.button1 = new System.Windows.Forms.Button();
            this.menuItem1 = new System.Windows.Forms.MenuItem();
            this.menuItem2 = new System.Windows.Forms.MenuItem();
            this.button2 = new System.Windows.Forms.Button();
            this.textBox3 = new System.Windows.Forms.TextBox();
            this.label3 = new System.Windows.Forms.Label();
            this.textBox4 = new System.Windows.Forms.TextBox();
            this.label4 = new System.Windows.Forms.Label();
            iDDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            firstNameDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            lastNameDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            ((System.ComponentModel.ISupportInitialize)(this.userDataSet)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.contactBindingSource)).BeginInit();
            this.SuspendLayout();
            // 
            // mainMenu1
            // 
            this.mainMenu1.MenuItems.Add(this.menuItem1);
            // 
            // userDataSet
            // 
            this.userDataSet.DataSetName = "UserDataSet";
            this.userDataSet.Prefix = "";
            this.userDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // contactBindingSource
            // 
            this.contactBindingSource.DataMember = "Contact";
            this.contactBindingSource.DataSource = this.userDataSet;
            // 
            // contactDataGrid
            // 
            this.contactDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.contactDataGrid.DataSource = this.contactBindingSource;
            this.contactDataGrid.Location = new System.Drawing.Point(11, 14);
            this.contactDataGrid.Name = "contactDataGrid";
            this.contactDataGrid.Size = new System.Drawing.Size(219, 115);
            this.contactDataGrid.TabIndex = 0;
            this.contactDataGrid.TableStyles.Add(this.contactTableStyleDataGridTableStyle);
            // 
            // contactTableStyleDataGridTableStyle
            // 
            this.contactTableStyleDataGridTableStyle.GridColumnStyles.Add(iDDataGridColumnStyleDataGridTextBoxColumn);
            this.contactTableStyleDataGridTableStyle.GridColumnStyles.Add(firstNameDataGridColumnStyleDataGridTextBoxColumn);
            this.contactTableStyleDataGridTableStyle.GridColumnStyles.Add(lastNameDataGridColumnStyleDataGridTextBoxColumn);
            this.contactTableStyleDataGridTableStyle.MappingName = "Contact";
            // 
            // iDDataGridColumnStyleDataGridTextBoxColumn
            // 
            iDDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            iDDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            iDDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "ID";
            iDDataGridColumnStyleDataGridTextBoxColumn.MappingName = "ID";
            // 
            // firstNameDataGridColumnStyleDataGridTextBoxColumn
            // 
            firstNameDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            firstNameDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            firstNameDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "FirstName";
            firstNameDataGridColumnStyleDataGridTextBoxColumn.MappingName = "FirstName";
            // 
            // lastNameDataGridColumnStyleDataGridTextBoxColumn
            // 
            lastNameDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            lastNameDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            lastNameDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "LastName";
            lastNameDataGridColumnStyleDataGridTextBoxColumn.MappingName = "LastName";
            // 
            // label1
            // 
            this.label1.Location = new System.Drawing.Point(11, 136);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(100, 20);
            this.label1.Text = "Ad : ";
            // 
            // textBox1
            // 
            this.textBox1.Location = new System.Drawing.Point(62, 135);
            this.textBox1.Name = "textBox1";
            this.textBox1.Size = new System.Drawing.Size(100, 21);
            this.textBox1.TabIndex = 2;
            // 
            // textBox2
            // 
            this.textBox2.Location = new System.Drawing.Point(62, 162);
            this.textBox2.Name = "textBox2";
            this.textBox2.Size = new System.Drawing.Size(100, 21);
            this.textBox2.TabIndex = 4;
            // 
            // label2
            // 
            this.label2.Location = new System.Drawing.Point(11, 163);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(100, 20);
            this.label2.Text = "Soyad : ";
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(11, 189);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(151, 20);
            this.button1.TabIndex = 6;
            this.button1.Text = "Contact Kaydet";
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // menuItem1
            // 
            this.menuItem1.MenuItems.Add(this.menuItem2);
            this.menuItem1.Text = "Dosya";
            // 
            // menuItem2
            // 
            this.menuItem2.Text = "Çıkış";
            this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
            // 
            // button2
            // 
            this.button2.Location = new System.Drawing.Point(11, 309);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(208, 20);
            this.button2.TabIndex = 11;
            this.button2.Text = "Sms Gönder";
            this.button2.Click += new System.EventHandler(this.button2_Click);
            // 
            // textBox3
            // 
            this.textBox3.Location = new System.Drawing.Point(62, 242);
            this.textBox3.Multiline = true;
            this.textBox3.Name = "textBox3";
            this.textBox3.Size = new System.Drawing.Size(157, 60);
            this.textBox3.TabIndex = 10;
            // 
            // label3
            // 
            this.label3.Location = new System.Drawing.Point(11, 243);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(100, 20);
            this.label3.Text = "Mesaj : ";
            // 
            // textBox4
            // 
            this.textBox4.Location = new System.Drawing.Point(62, 215);
            this.textBox4.Name = "textBox4";
            this.textBox4.Size = new System.Drawing.Size(157, 21);
            this.textBox4.TabIndex = 9;
            // 
            // label4
            // 
            this.label4.Location = new System.Drawing.Point(11, 216);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(100, 20);
            this.label4.Text = "Alıcı : ";
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(240, 268);
            this.Controls.Add(this.button2);
            this.Controls.Add(this.textBox3);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.textBox4);
            this.Controls.Add(this.label4);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.textBox2);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.textBox1);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.contactDataGrid);
            this.Menu = this.mainMenu1;
            this.Name = "Form1";
            this.Text = "Form1";
            this.Load += new System.EventHandler(this.Form1_Load);
            ((System.ComponentModel.ISupportInitialize)(this.userDataSet)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.contactBindingSource)).EndInit();
            this.ResumeLayout(false);

        }
예제 #38
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);
 }
예제 #39
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.Label bairroLabel;
            System.Windows.Forms.Label ruaLabel;
            System.Windows.Forms.Label barramentoLabel;
            System.Windows.Forms.Label latLabel;
            System.Windows.Forms.Label lonLabel;
            System.Windows.Forms.Label obsLabel;
            System.Windows.Forms.Label sequenciaLabel;
            System.Windows.Forms.Label gps_timeLabel;
            System.Windows.Forms.Label medidorLabel;
            System.Windows.Forms.Label trafo_idLabel;
            System.Windows.Forms.Label posicao_trafoLabel;
            System.Windows.Forms.Label condicao_risco_idLabel;
            System.Windows.Forms.DataGridTextBoxColumn bairroDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn logradouroDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn sequenciaDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn barramentoDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.Label poste_vizinho_idLabel;
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.menuItem1 = new System.Windows.Forms.MenuItem();
            this.menuItem4 = new System.Windows.Forms.MenuItem();
            this.menuItemSalvar = new System.Windows.Forms.MenuItem();
            this.menuItem12 = new System.Windows.Forms.MenuItem();
            this.menuItem11 = new System.Windows.Forms.MenuItem();
            this.menuItemComponente = new System.Windows.Forms.MenuItem();
            this.menuItem5 = new System.Windows.Forms.MenuItem();
            this.menuItem9 = new System.Windows.Forms.MenuItem();
            this.menuItem3 = new System.Windows.Forms.MenuItem();
            this.menuItem2 = new System.Windows.Forms.MenuItem();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.labelPosteID = new System.Windows.Forms.Label();
            this.posteBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.eletrocadDataSet = new CipX.db.eletrocadDataSet();
            this.posteDataGrid = new System.Windows.Forms.DataGrid();
            this.posteTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.medidorTextBox = new System.Windows.Forms.TextBox();
            this.checkBox1 = new System.Windows.Forms.CheckBox();
            this.sequenciaTextBox = new System.Windows.Forms.TextBox();
            this.lonTextBox = new System.Windows.Forms.TextBox();
            this.latTextBox = new System.Windows.Forms.TextBox();
            this.barramentoTextBox = new System.Windows.Forms.TextBox();
            this.ruaTextBox = new System.Windows.Forms.TextBox();
            this.bairroTextBox = new System.Windows.Forms.TextBox();
            this.tabPage3 = new System.Windows.Forms.TabPage();
            this.posteVizinhoBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
            this.comboBox6 = new System.Windows.Forms.ComboBox();
            this.condicaoriscoBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.comboBoxCondicao = new System.Windows.Forms.ComboBox();
            this.comboBox1 = new System.Windows.Forms.ComboBox();
            this.trafo_idTextBox = new System.Windows.Forms.TextBox();
            this.gps_timeTextBox = new System.Windows.Forms.TextBox();
            this.obsTextBox = new System.Windows.Forms.TextBox();
            this.tabPage4 = new System.Windows.Forms.TabPage();
            this.listPendencias = new System.Windows.Forms.TextBox();
            this.button1 = new System.Windows.Forms.Button();
            this.condicao_riscoTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.condicao_riscoTableAdapter();
            this.posteTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.posteTableAdapter();
            this.postehasusomutuoBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.poste_has_uso_mutuoTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.poste_has_uso_mutuoTableAdapter();
            this.postehastipoluminariaBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.poste_has_tipo_luminariaTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.poste_has_tipo_luminariaTableAdapter();
            bairroLabel = new System.Windows.Forms.Label();
            ruaLabel = new System.Windows.Forms.Label();
            barramentoLabel = new System.Windows.Forms.Label();
            latLabel = new System.Windows.Forms.Label();
            lonLabel = new System.Windows.Forms.Label();
            obsLabel = new System.Windows.Forms.Label();
            sequenciaLabel = new System.Windows.Forms.Label();
            gps_timeLabel = new System.Windows.Forms.Label();
            medidorLabel = new System.Windows.Forms.Label();
            trafo_idLabel = new System.Windows.Forms.Label();
            posicao_trafoLabel = new System.Windows.Forms.Label();
            condicao_risco_idLabel = new System.Windows.Forms.Label();
            bairroDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            logradouroDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            sequenciaDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            barramentoDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            poste_vizinho_idLabel = new System.Windows.Forms.Label();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.posteBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.eletrocadDataSet)).BeginInit();
            this.tabPage2.SuspendLayout();
            this.tabPage3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.posteVizinhoBindingSource1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.condicaoriscoBindingSource)).BeginInit();
            this.tabPage4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.postehasusomutuoBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.postehastipoluminariaBindingSource)).BeginInit();
            this.SuspendLayout();
            // 
            // bairroLabel
            // 
            bairroLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            bairroLabel.Location = new System.Drawing.Point(32, 10);
            bairroLabel.Name = "bairroLabel";
            bairroLabel.Size = new System.Drawing.Size(99, 14);
            bairroLabel.Text = "bairro:";
            // 
            // ruaLabel
            // 
            ruaLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            ruaLabel.Location = new System.Drawing.Point(3, 37);
            ruaLabel.Name = "ruaLabel";
            ruaLabel.Size = new System.Drawing.Size(83, 14);
            ruaLabel.Text = "logradouro:";
            // 
            // barramentoLabel
            // 
            barramentoLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            barramentoLabel.Location = new System.Drawing.Point(43, 91);
            barramentoLabel.Name = "barramentoLabel";
            barramentoLabel.Size = new System.Drawing.Size(83, 14);
            barramentoLabel.Text = "barramento:";
            // 
            // latLabel
            // 
            latLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            latLabel.Location = new System.Drawing.Point(98, 199);
            latLabel.Name = "latLabel";
            latLabel.Size = new System.Drawing.Size(27, 14);
            latLabel.Text = "lat:";
            // 
            // lonLabel
            // 
            lonLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            lonLabel.Location = new System.Drawing.Point(95, 223);
            lonLabel.Name = "lonLabel";
            lonLabel.Size = new System.Drawing.Size(30, 14);
            lonLabel.Text = "lon:";
            // 
            // obsLabel
            // 
            obsLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            obsLabel.Location = new System.Drawing.Point(6, 10);
            obsLabel.Name = "obsLabel";
            obsLabel.Size = new System.Drawing.Size(33, 14);
            obsLabel.Text = "obs:";
            // 
            // sequenciaLabel
            // 
            sequenciaLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            sequenciaLabel.Location = new System.Drawing.Point(55, 64);
            sequenciaLabel.Name = "sequenciaLabel";
            sequenciaLabel.Size = new System.Drawing.Size(71, 14);
            sequenciaLabel.Text = "sequencia:";
            // 
            // gps_timeLabel
            // 
            gps_timeLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            gps_timeLabel.Location = new System.Drawing.Point(61, 223);
            gps_timeLabel.Name = "gps_timeLabel";
            gps_timeLabel.Size = new System.Drawing.Size(64, 14);
            gps_timeLabel.Text = "gps time:";
            gps_timeLabel.Visible = false;
            // 
            // medidorLabel
            // 
            medidorLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            medidorLabel.Location = new System.Drawing.Point(64, 145);
            medidorLabel.Name = "medidorLabel";
            medidorLabel.Size = new System.Drawing.Size(61, 14);
            medidorLabel.Text = "medidor:";
            // 
            // trafo_idLabel
            // 
            trafo_idLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            trafo_idLabel.Location = new System.Drawing.Point(68, 196);
            trafo_idLabel.Name = "trafo_idLabel";
            trafo_idLabel.Size = new System.Drawing.Size(57, 14);
            trafo_idLabel.Text = "trafo id:";
            trafo_idLabel.Visible = false;
            // 
            // posicao_trafoLabel
            // 
            posicao_trafoLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            posicao_trafoLabel.Location = new System.Drawing.Point(38, 83);
            posicao_trafoLabel.Name = "posicao_trafoLabel";
            posicao_trafoLabel.Size = new System.Drawing.Size(92, 14);
            posicao_trafoLabel.Text = "posicao trafo:";
            // 
            // condicao_risco_idLabel
            // 
            condicao_risco_idLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            condicao_risco_idLabel.Location = new System.Drawing.Point(13, 114);
            condicao_risco_idLabel.Name = "condicao_risco_idLabel";
            condicao_risco_idLabel.Size = new System.Drawing.Size(112, 14);
            condicao_risco_idLabel.Text = "condicao risco id:";
            // 
            // bairroDataGridColumnStyleDataGridTextBoxColumn
            // 
            bairroDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            bairroDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            bairroDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "bairro";
            bairroDataGridColumnStyleDataGridTextBoxColumn.MappingName = "bairro";
            bairroDataGridColumnStyleDataGridTextBoxColumn.NullText = "";
            bairroDataGridColumnStyleDataGridTextBoxColumn.Width = 80;
            // 
            // logradouroDataGridColumnStyleDataGridTextBoxColumn
            // 
            logradouroDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            logradouroDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            logradouroDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "logradouro";
            logradouroDataGridColumnStyleDataGridTextBoxColumn.MappingName = "logradouro";
            logradouroDataGridColumnStyleDataGridTextBoxColumn.NullText = "";
            logradouroDataGridColumnStyleDataGridTextBoxColumn.Width = 80;
            // 
            // sequenciaDataGridColumnStyleDataGridTextBoxColumn
            // 
            sequenciaDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            sequenciaDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            sequenciaDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "sequencia";
            sequenciaDataGridColumnStyleDataGridTextBoxColumn.MappingName = "sequencia";
            sequenciaDataGridColumnStyleDataGridTextBoxColumn.Width = 70;
            // 
            // barramentoDataGridColumnStyleDataGridTextBoxColumn
            // 
            barramentoDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            barramentoDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            barramentoDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "barramento";
            barramentoDataGridColumnStyleDataGridTextBoxColumn.MappingName = "barramento";
            barramentoDataGridColumnStyleDataGridTextBoxColumn.NullText = "";
            barramentoDataGridColumnStyleDataGridTextBoxColumn.Width = 80;
            // 
            // poste_vizinho_idLabel
            // 
            poste_vizinho_idLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            poste_vizinho_idLabel.Location = new System.Drawing.Point(34, 143);
            poste_vizinho_idLabel.Name = "poste_vizinho_idLabel";
            poste_vizinho_idLabel.Size = new System.Drawing.Size(93, 14);
            poste_vizinho_idLabel.Text = "poste vizinho:";
            // 
            // mainMenu1
            // 
            this.mainMenu1.MenuItems.Add(this.menuItem1);
            // 
            // menuItem1
            // 
            this.menuItem1.MenuItems.Add(this.menuItem4);
            this.menuItem1.MenuItems.Add(this.menuItemSalvar);
            this.menuItem1.MenuItems.Add(this.menuItem12);
            this.menuItem1.MenuItems.Add(this.menuItem11);
            this.menuItem1.MenuItems.Add(this.menuItemComponente);
            this.menuItem1.MenuItems.Add(this.menuItem3);
            this.menuItem1.MenuItems.Add(this.menuItem2);
            this.menuItem1.Text = "Opções";
            this.menuItem1.Popup += new System.EventHandler(this.menuItem1_Click);
            this.menuItem1.Click += new System.EventHandler(this.menuItem1_Click);
            // 
            // menuItem4
            // 
            this.menuItem4.Text = "Novo";
            this.menuItem4.Click += new System.EventHandler(this.novo);
            // 
            // menuItemSalvar
            // 
            this.menuItemSalvar.Text = "Salvar";
            this.menuItemSalvar.Click += new System.EventHandler(this.salvar);
            // 
            // menuItem12
            // 
            this.menuItem12.Text = "Croqui";
            this.menuItem12.Click += new System.EventHandler(this.croqui);
            // 
            // menuItem11
            // 
            this.menuItem11.Text = "-";
            // 
            // menuItemComponente
            // 
            this.menuItemComponente.MenuItems.Add(this.menuItem5);
            this.menuItemComponente.MenuItems.Add(this.menuItem9);
            this.menuItemComponente.Text = "Componentes";
            // 
            // menuItem5
            // 
            this.menuItem5.Text = "Luminárias";
            this.menuItem5.Click += new System.EventHandler(this.menuItem5_Click);
            // 
            // menuItem9
            // 
            this.menuItem9.Text = "Uso Mútuo";
            this.menuItem9.Click += new System.EventHandler(this.cadastrarUsoMutuo);
            // 
            // menuItem3
            // 
            this.menuItem3.Text = "-";
            // 
            // menuItem2
            // 
            this.menuItem2.Text = "Sair";
            this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Controls.Add(this.tabPage3);
            this.tabControl1.Controls.Add(this.tabPage4);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.Location = new System.Drawing.Point(0, 0);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(240, 294);
            this.tabControl1.TabIndex = 0;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.labelPosteID);
            this.tabPage1.Controls.Add(this.posteDataGrid);
            this.tabPage1.Location = new System.Drawing.Point(0, 0);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Size = new System.Drawing.Size(240, 271);
            this.tabPage1.Text = "Tabela";
            // 
            // labelPosteID
            // 
            this.labelPosteID.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.labelPosteID.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.posteBindingSource, "id", true));
            this.labelPosteID.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.labelPosteID.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.labelPosteID.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
            this.labelPosteID.Location = new System.Drawing.Point(0, 251);
            this.labelPosteID.Name = "labelPosteID";
            this.labelPosteID.Size = new System.Drawing.Size(240, 20);
            this.labelPosteID.Text = "0";
            this.labelPosteID.Visible = false;
            // 
            // posteBindingSource
            // 
            this.posteBindingSource.DataMember = "poste";
            this.posteBindingSource.DataSource = this.eletrocadDataSet;
            // 
            // eletrocadDataSet
            // 
            this.eletrocadDataSet.DataSetName = "eletrocadDataSet";
            this.eletrocadDataSet.Prefix = "";
            this.eletrocadDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // posteDataGrid
            // 
            this.posteDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.posteDataGrid.DataSource = this.posteBindingSource;
            this.posteDataGrid.Dock = System.Windows.Forms.DockStyle.Fill;
            this.posteDataGrid.Location = new System.Drawing.Point(0, 0);
            this.posteDataGrid.Name = "posteDataGrid";
            this.posteDataGrid.RowHeadersVisible = false;
            this.posteDataGrid.Size = new System.Drawing.Size(240, 271);
            this.posteDataGrid.TabIndex = 0;
            this.posteDataGrid.TableStyles.Add(this.posteTableStyleDataGridTableStyle);
            // 
            // posteTableStyleDataGridTableStyle
            // 
            this.posteTableStyleDataGridTableStyle.GridColumnStyles.Add(sequenciaDataGridColumnStyleDataGridTextBoxColumn);
            this.posteTableStyleDataGridTableStyle.GridColumnStyles.Add(barramentoDataGridColumnStyleDataGridTextBoxColumn);
            this.posteTableStyleDataGridTableStyle.GridColumnStyles.Add(bairroDataGridColumnStyleDataGridTextBoxColumn);
            this.posteTableStyleDataGridTableStyle.GridColumnStyles.Add(logradouroDataGridColumnStyleDataGridTextBoxColumn);
            this.posteTableStyleDataGridTableStyle.MappingName = "poste";
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(medidorLabel);
            this.tabPage2.Controls.Add(this.medidorTextBox);
            this.tabPage2.Controls.Add(this.checkBox1);
            this.tabPage2.Controls.Add(sequenciaLabel);
            this.tabPage2.Controls.Add(this.sequenciaTextBox);
            this.tabPage2.Controls.Add(lonLabel);
            this.tabPage2.Controls.Add(this.lonTextBox);
            this.tabPage2.Controls.Add(latLabel);
            this.tabPage2.Controls.Add(this.latTextBox);
            this.tabPage2.Controls.Add(barramentoLabel);
            this.tabPage2.Controls.Add(this.barramentoTextBox);
            this.tabPage2.Controls.Add(this.ruaTextBox);
            this.tabPage2.Controls.Add(this.bairroTextBox);
            this.tabPage2.Controls.Add(ruaLabel);
            this.tabPage2.Controls.Add(bairroLabel);
            this.tabPage2.Location = new System.Drawing.Point(0, 0);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Size = new System.Drawing.Size(232, 245);
            this.tabPage2.Text = "Form. I";
            // 
            // medidorTextBox
            // 
            this.medidorTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.posteBindingSource, "medidor", true));
            this.medidorTextBox.Enabled = false;
            this.medidorTextBox.Location = new System.Drawing.Point(132, 142);
            this.medidorTextBox.Name = "medidorTextBox";
            this.medidorTextBox.Size = new System.Drawing.Size(100, 21);
            this.medidorTextBox.TabIndex = 40;
            // 
            // checkBox1
            // 
            this.checkBox1.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.posteBindingSource, "medido", true));
            this.checkBox1.Location = new System.Drawing.Point(132, 116);
            this.checkBox1.Name = "checkBox1";
            this.checkBox1.Size = new System.Drawing.Size(100, 20);
            this.checkBox1.TabIndex = 39;
            this.checkBox1.Text = "Medido";
            this.checkBox1.CheckStateChanged += new System.EventHandler(this.checkBox1_CheckStateChanged);
            // 
            // sequenciaTextBox
            // 
            this.sequenciaTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.posteBindingSource, "sequencia", true));
            this.sequenciaTextBox.Location = new System.Drawing.Point(133, 61);
            this.sequenciaTextBox.Name = "sequenciaTextBox";
            this.sequenciaTextBox.Size = new System.Drawing.Size(64, 21);
            this.sequenciaTextBox.TabIndex = 29;
            this.sequenciaTextBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.sequenciaTextBox_KeyPress);
            // 
            // lonTextBox
            // 
            this.lonTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.posteBindingSource, "lon", true));
            this.lonTextBox.Location = new System.Drawing.Point(132, 220);
            this.lonTextBox.Name = "lonTextBox";
            this.lonTextBox.ReadOnly = true;
            this.lonTextBox.Size = new System.Drawing.Size(100, 21);
            this.lonTextBox.TabIndex = 19;
            // 
            // latTextBox
            // 
            this.latTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.posteBindingSource, "lat", true));
            this.latTextBox.Location = new System.Drawing.Point(132, 196);
            this.latTextBox.Name = "latTextBox";
            this.latTextBox.ReadOnly = true;
            this.latTextBox.Size = new System.Drawing.Size(100, 21);
            this.latTextBox.TabIndex = 17;
            // 
            // barramentoTextBox
            // 
            this.barramentoTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.posteBindingSource, "barramento", true));
            this.barramentoTextBox.Location = new System.Drawing.Point(133, 88);
            this.barramentoTextBox.Name = "barramentoTextBox";
            this.barramentoTextBox.Size = new System.Drawing.Size(100, 21);
            this.barramentoTextBox.TabIndex = 9;
            // 
            // ruaTextBox
            // 
            this.ruaTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.posteBindingSource, "logradouro", true));
            this.ruaTextBox.Location = new System.Drawing.Point(81, 34);
            this.ruaTextBox.Name = "ruaTextBox";
            this.ruaTextBox.Size = new System.Drawing.Size(152, 21);
            this.ruaTextBox.TabIndex = 3;
            // 
            // bairroTextBox
            // 
            this.bairroTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.posteBindingSource, "bairro", true));
            this.bairroTextBox.Location = new System.Drawing.Point(81, 7);
            this.bairroTextBox.Name = "bairroTextBox";
            this.bairroTextBox.Size = new System.Drawing.Size(152, 21);
            this.bairroTextBox.TabIndex = 1;
            // 
            // tabPage3
            // 
            this.tabPage3.Controls.Add(this.comboBox6);
            this.tabPage3.Controls.Add(poste_vizinho_idLabel);
            this.tabPage3.Controls.Add(this.comboBoxCondicao);
            this.tabPage3.Controls.Add(condicao_risco_idLabel);
            this.tabPage3.Controls.Add(this.comboBox1);
            this.tabPage3.Controls.Add(posicao_trafoLabel);
            this.tabPage3.Controls.Add(trafo_idLabel);
            this.tabPage3.Controls.Add(this.trafo_idTextBox);
            this.tabPage3.Controls.Add(gps_timeLabel);
            this.tabPage3.Controls.Add(this.gps_timeTextBox);
            this.tabPage3.Controls.Add(obsLabel);
            this.tabPage3.Controls.Add(this.obsTextBox);
            this.tabPage3.Location = new System.Drawing.Point(0, 0);
            this.tabPage3.Name = "tabPage3";
            this.tabPage3.Size = new System.Drawing.Size(232, 245);
            this.tabPage3.Text = "Form. II";
            // 
            // posteVizinhoBindingSource1
            // 
            this.posteVizinhoBindingSource1.DataMember = "poste";
            this.posteVizinhoBindingSource1.DataSource = this.eletrocadDataSet;
            // 
            // comboBox6
            // 
            this.comboBox6.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.posteBindingSource, "poste_vizinho_id", true));
            this.comboBox6.DataSource = this.posteVizinhoBindingSource1;
            this.comboBox6.DisplayMember = "sequencia";
            this.comboBox6.Location = new System.Drawing.Point(133, 139);
            this.comboBox6.Name = "comboBox6";
            this.comboBox6.Size = new System.Drawing.Size(99, 22);
            this.comboBox6.TabIndex = 60;
            this.comboBox6.ValueMember = "id";
            // 
            // condicaoriscoBindingSource
            // 
            this.condicaoriscoBindingSource.DataMember = "condicao_risco";
            this.condicaoriscoBindingSource.DataSource = this.eletrocadDataSet;
            // 
            // comboBoxCondicao
            // 
            this.comboBoxCondicao.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.posteBindingSource, "condicao_risco_id", true));
            this.comboBoxCondicao.DataSource = this.condicaoriscoBindingSource;
            this.comboBoxCondicao.DisplayMember = "descricao";
            this.comboBoxCondicao.Location = new System.Drawing.Point(133, 111);
            this.comboBoxCondicao.Name = "comboBoxCondicao";
            this.comboBoxCondicao.Size = new System.Drawing.Size(100, 22);
            this.comboBoxCondicao.TabIndex = 22;
            this.comboBoxCondicao.ValueMember = "id";
            // 
            // comboBox1
            // 
            this.comboBox1.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.posteBindingSource, "posicao_trafo", true));
            this.comboBox1.Items.Add("");
            this.comboBox1.Items.Add("Favor");
            this.comboBox1.Items.Add("Contra");
            this.comboBox1.Location = new System.Drawing.Point(133, 83);
            this.comboBox1.Name = "comboBox1";
            this.comboBox1.Size = new System.Drawing.Size(100, 22);
            this.comboBox1.TabIndex = 18;
            // 
            // trafo_idTextBox
            // 
            this.trafo_idTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.posteBindingSource, "trafo_id", true));
            this.trafo_idTextBox.Location = new System.Drawing.Point(132, 193);
            this.trafo_idTextBox.Name = "trafo_idTextBox";
            this.trafo_idTextBox.ReadOnly = true;
            this.trafo_idTextBox.Size = new System.Drawing.Size(100, 21);
            this.trafo_idTextBox.TabIndex = 17;
            this.trafo_idTextBox.Visible = false;
            // 
            // gps_timeTextBox
            // 
            this.gps_timeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.posteBindingSource, "gps_time", true));
            this.gps_timeTextBox.Location = new System.Drawing.Point(132, 220);
            this.gps_timeTextBox.Name = "gps_timeTextBox";
            this.gps_timeTextBox.ReadOnly = true;
            this.gps_timeTextBox.Size = new System.Drawing.Size(100, 21);
            this.gps_timeTextBox.TabIndex = 7;
            this.gps_timeTextBox.Visible = false;
            // 
            // obsTextBox
            // 
            this.obsTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.posteBindingSource, "obs", true));
            this.obsTextBox.Location = new System.Drawing.Point(46, 7);
            this.obsTextBox.Multiline = true;
            this.obsTextBox.Name = "obsTextBox";
            this.obsTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.obsTextBox.Size = new System.Drawing.Size(187, 62);
            this.obsTextBox.TabIndex = 1;
            // 
            // tabPage4
            // 
            this.tabPage4.Controls.Add(this.listPendencias);
            this.tabPage4.Controls.Add(this.button1);
            this.tabPage4.Location = new System.Drawing.Point(0, 0);
            this.tabPage4.Name = "tabPage4";
            this.tabPage4.Size = new System.Drawing.Size(232, 245);
            this.tabPage4.Text = "Pendências";
            // 
            // listPendencias
            // 
            this.listPendencias.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
            this.listPendencias.Dock = System.Windows.Forms.DockStyle.Top;
            this.listPendencias.Font = new System.Drawing.Font("Courier New", 8F, System.Drawing.FontStyle.Regular);
            this.listPendencias.ForeColor = System.Drawing.Color.Red;
            this.listPendencias.Location = new System.Drawing.Point(0, 0);
            this.listPendencias.Multiline = true;
            this.listPendencias.Name = "listPendencias";
            this.listPendencias.ReadOnly = true;
            this.listPendencias.ScrollBars = System.Windows.Forms.ScrollBars.Both;
            this.listPendencias.Size = new System.Drawing.Size(232, 219);
            this.listPendencias.TabIndex = 2;
            this.listPendencias.WordWrap = false;
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(3, 225);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(84, 20);
            this.button1.TabIndex = 1;
            this.button1.Text = "Gerar";
            this.button1.Click += new System.EventHandler(this.verificarPendenciaButton);
            // 
            // condicao_riscoTableAdapter
            // 
            this.condicao_riscoTableAdapter.ClearBeforeFill = true;
            // 
            // posteTableAdapter
            // 
            this.posteTableAdapter.ClearBeforeFill = true;
            // 
            // postehasusomutuoBindingSource
            // 
            this.postehasusomutuoBindingSource.DataMember = "poste_has_uso_mutuo";
            this.postehasusomutuoBindingSource.DataSource = this.eletrocadDataSet;
            // 
            // poste_has_uso_mutuoTableAdapter
            // 
            this.poste_has_uso_mutuoTableAdapter.ClearBeforeFill = true;
            // 
            // postehastipoluminariaBindingSource
            // 
            this.postehastipoluminariaBindingSource.DataMember = "poste_has_tipo_luminaria";
            this.postehastipoluminariaBindingSource.DataSource = this.eletrocadDataSet;
            // 
            // poste_has_tipo_luminariaTableAdapter
            // 
            this.poste_has_tipo_luminariaTableAdapter.ClearBeforeFill = true;
            // 
            // CadastrarPostes
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(240, 294);
            this.ControlBox = false;
            this.Controls.Add(this.tabControl1);
            this.Location = new System.Drawing.Point(0, 0);
            this.Menu = this.mainMenu1;
            this.MinimizeBox = false;
            this.Name = "CadastrarPostes";
            this.Text = "CadastrarPostes";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.CadastrarPostes_Load);
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.posteBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.eletrocadDataSet)).EndInit();
            this.tabPage2.ResumeLayout(false);
            this.tabPage3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.posteVizinhoBindingSource1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.condicaoriscoBindingSource)).EndInit();
            this.tabPage4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.postehasusomutuoBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.postehastipoluminariaBindingSource)).EndInit();
            this.ResumeLayout(false);

        }
예제 #40
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.DataGridTextBoxColumn nomeDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn tipoDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.Label senhaLabel;
            System.Windows.Forms.Label nomeLabel;
            System.Windows.Forms.Label tipoLabel;
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.menuItem1 = new System.Windows.Forms.MenuItem();
            this.menuItem2 = new System.Windows.Forms.MenuItem();
            this.usuarioBindingSource = new System.Windows.Forms.BindingSource(this.components);
            //this.cipDatabaseDataSet = new Colibri.CipDatabaseDataSet();
            this.cipDbDataSet = new Colibri.cipdbDataSet();
            this.usuarioDataGrid = new System.Windows.Forms.DataGrid();
            this.usuarioTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
            this.senhaTextBox = new Colibri.CipTextBox();
            this.nomeTextBox = new Colibri.CipTextBox();
            this.tipoComboBox = new System.Windows.Forms.ComboBox();
            this.button1 = new System.Windows.Forms.Button();
            this.button2 = new System.Windows.Forms.Button();
            this.button3 = new System.Windows.Forms.Button();
            this.notification1 = new Microsoft.WindowsCE.Forms.Notification();
            this.usuarioTableAdapter = new Colibri.cipdbDataSetTableAdapters.UsuarioTableAdapter();
            this.checkBox1 = new System.Windows.Forms.CheckBox();
            nomeDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            tipoDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            senhaLabel = new System.Windows.Forms.Label();
            nomeLabel = new System.Windows.Forms.Label();
            tipoLabel = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.usuarioBindingSource)).BeginInit();
            //((System.ComponentModel.ISupportInitialize)(this.cipDatabaseDataSet)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cipDbDataSet)).BeginInit();          this.SuspendLayout();
            // 
            // nomeDataGridColumnStyleDataGridTextBoxColumn
            // 
            nomeDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            nomeDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            nomeDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "Nome";
            nomeDataGridColumnStyleDataGridTextBoxColumn.MappingName = "nome";
            nomeDataGridColumnStyleDataGridTextBoxColumn.Width = 110;
            // 
            // tipoDataGridColumnStyleDataGridTextBoxColumn
            // 
            tipoDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            tipoDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            tipoDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "Tipo";
            tipoDataGridColumnStyleDataGridTextBoxColumn.MappingName = "tipo";
            tipoDataGridColumnStyleDataGridTextBoxColumn.Width = 60;
            // 
            // senhaLabel
            // 
            senhaLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            senhaLabel.Location = new System.Drawing.Point(8, 41);
            senhaLabel.Name = "senhaLabel";
            senhaLabel.Size = new System.Drawing.Size(47, 14);
            senhaLabel.Text = "Senha:";
            // 
            // nomeLabel
            // 
            nomeLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            nomeLabel.Location = new System.Drawing.Point(8, 14);
            nomeLabel.Name = "nomeLabel";
            nomeLabel.Size = new System.Drawing.Size(45, 14);
            nomeLabel.Text = "Nome:";
            // 
            // tipoLabel
            // 
            tipoLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            tipoLabel.Location = new System.Drawing.Point(8, 68);
            tipoLabel.Name = "tipoLabel";
            tipoLabel.Size = new System.Drawing.Size(36, 14);
            tipoLabel.Text = "Tipo:";
            // 
            // mainMenu1
            // 
            this.mainMenu1.MenuItems.Add(this.menuItem1);
            // 
            // menuItem1
            // 
            this.menuItem1.MenuItems.Add(this.menuItem2);
            this.menuItem1.Text = "Opções";
            // 
            // menuItem2
            // 
            this.menuItem2.Text = "Voltar";
            this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
            // 
            // usuarioBindingSource
            // 
            this.usuarioBindingSource.DataMember = "Usuario";
            this.usuarioBindingSource.DataSource = this.cipDbDataSet;
            // 
            // cipDatabaseDataSet
            // 
            this.cipDbDataSet.DataSetName = "CipDbDataSet";
            this.cipDbDataSet.Prefix = "";
            this.cipDbDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            //this.cipDatabaseDataSet.DataSetName = "CipDatabaseDataSet";
            //this.cipDatabaseDataSet.Prefix = "";
            //this.cipDatabaseDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // usuarioDataGrid
            // 
            this.usuarioDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.usuarioDataGrid.DataSource = this.usuarioBindingSource;
            this.usuarioDataGrid.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.usuarioDataGrid.Location = new System.Drawing.Point(0, 125);
            this.usuarioDataGrid.Name = "usuarioDataGrid";
            this.usuarioDataGrid.RowHeadersVisible = false;
            this.usuarioDataGrid.Size = new System.Drawing.Size(240, 169);
            this.usuarioDataGrid.TabIndex = 0;
            this.usuarioDataGrid.TableStyles.Add(this.usuarioTableStyleDataGridTableStyle);
            // 
            // usuarioTableStyleDataGridTableStyle
            // 
            this.usuarioTableStyleDataGridTableStyle.GridColumnStyles.Add(nomeDataGridColumnStyleDataGridTextBoxColumn);
            this.usuarioTableStyleDataGridTableStyle.GridColumnStyles.Add(tipoDataGridColumnStyleDataGridTextBoxColumn);
            this.usuarioTableStyleDataGridTableStyle.MappingName = "Usuario";
            // 
            // senhaTextBox
            // 
            this.senhaTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.usuarioBindingSource, "senha", true));
            this.senhaTextBox.Location = new System.Drawing.Point(62, 38);
            this.senhaTextBox.Name = "senhaTextBox";
            this.senhaTextBox.PasswordChar = '*';
            this.senhaTextBox.Size = new System.Drawing.Size(88, 21);
            this.senhaTextBox.TabIndex = 2;
            this.senhaTextBox.TextChanged += new System.EventHandler(this.textChanged);
            // 
            // nomeTextBox
            // 
            this.nomeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.usuarioBindingSource, "nome", true));
            this.nomeTextBox.Location = new System.Drawing.Point(62, 11);
            this.nomeTextBox.Name = "nomeTextBox";
            this.nomeTextBox.Size = new System.Drawing.Size(116, 21);
            this.nomeTextBox.TabIndex = 4;
            this.nomeTextBox.TextChanged += new System.EventHandler(this.textChanged);
            // 
            // tipoComboBox
            // 
            this.tipoComboBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.usuarioBindingSource, "tipo", true));
            this.tipoComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDown;
            this.tipoComboBox.Items.Add("ADMIN");
            this.tipoComboBox.Items.Add("AUDIT");
            this.tipoComboBox.Items.Add("USER");
            this.tipoComboBox.Location = new System.Drawing.Point(62, 65);
            this.tipoComboBox.Name = "tipoComboBox";
            this.tipoComboBox.Size = new System.Drawing.Size(116, 22);
            this.tipoComboBox.TabIndex = 7;
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(6, 99);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(72, 20);
            this.button1.TabIndex = 11;
            this.button1.Text = "Inserir";
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // button2
            // 
            this.button2.Location = new System.Drawing.Point(84, 99);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(72, 20);
            this.button2.TabIndex = 15;
            this.button2.Text = "Salvar";
            this.button2.Click += new System.EventHandler(this.button2_Click);
            // 
            // button3
            // 
            this.button3.Location = new System.Drawing.Point(162, 99);
            this.button3.Name = "button3";
            this.button3.Size = new System.Drawing.Size(72, 20);
            this.button3.TabIndex = 16;
            this.button3.Text = "Excluir";
            this.button3.Click += new System.EventHandler(this.button3_Click);
            // 
            // notification1
            // 
            this.notification1.Text = "notification1";
            // 
            // usuarioTableAdapter
            // 
            this.usuarioTableAdapter.ClearBeforeFill = true;
            // 
            // checkBox1
            // 
            this.checkBox1.Location = new System.Drawing.Point(156, 38);
            this.checkBox1.Name = "checkBox1";
            this.checkBox1.Size = new System.Drawing.Size(74, 20);
            this.checkBox1.TabIndex = 20;
            this.checkBox1.Text = "Mostrar";
            this.checkBox1.CheckStateChanged += new System.EventHandler(this.checkBox1_CheckStateChanged);
            // 
            // EditarUsuario
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(240, 294);
            this.ControlBox = false;
            this.Controls.Add(this.checkBox1);
            this.Controls.Add(this.button3);
            this.Controls.Add(this.button2);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.tipoComboBox);
            this.Controls.Add(senhaLabel);
            this.Controls.Add(this.senhaTextBox);
            this.Controls.Add(nomeLabel);
            this.Controls.Add(this.nomeTextBox);
            this.Controls.Add(tipoLabel);
            this.Controls.Add(this.usuarioDataGrid);
            this.Location = new System.Drawing.Point(0, 0);
            this.Menu = this.mainMenu1;
            this.Name = "EditarUsuario";
            this.Text = "EditarUsuario";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.EditarUsuario_Load);
            ((System.ComponentModel.ISupportInitialize)(this.usuarioBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cipDbDataSet)).EndInit();
            this.ResumeLayout(false);

        }
예제 #41
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.DataGridTextBoxColumn lampada_idDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.Label lampada_idLabel;
            System.Windows.Forms.Label poste_idLabel;
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.menuItem1 = new System.Windows.Forms.MenuItem();
            this.menuItem3 = new System.Windows.Forms.MenuItem();
            this.menuItem5 = new System.Windows.Forms.MenuItem();
            this.menuItem4 = new System.Windows.Forms.MenuItem();
            this.menuItem2 = new System.Windows.Forms.MenuItem();
            this.eletrocadDataSet = new CipX.db.eletrocadDataSet();
            this.postehaslampadaBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.poste_has_lampadaTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.poste_has_lampadaTableAdapter();
            this.poste_has_lampadaDataGrid = new System.Windows.Forms.DataGrid();
            this.poste_has_lampadaTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
            this.tipolampadaBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.tipo_lampadaTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.tipo_lampadaTableAdapter();
            this.lampadaBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.lampadaCb = new System.Windows.Forms.ComboBox();
            this.poste_idTextBox = new System.Windows.Forms.TextBox();
            this.lampadaTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.lampadaTableAdapter();
            this.label1 = new System.Windows.Forms.Label();
            lampada_idDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            lampada_idLabel = new System.Windows.Forms.Label();
            poste_idLabel = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.eletrocadDataSet)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.postehaslampadaBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tipolampadaBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lampadaBindingSource)).BeginInit();
            this.SuspendLayout();
            // 
            // lampada_idDataGridColumnStyleDataGridTextBoxColumn
            // 
            lampada_idDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            lampada_idDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            lampada_idDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "Lampadas";
            lampada_idDataGridColumnStyleDataGridTextBoxColumn.MappingName = "descricao";
            lampada_idDataGridColumnStyleDataGridTextBoxColumn.Width = 80;
            // 
            // lampada_idLabel
            // 
            lampada_idLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            lampada_idLabel.Location = new System.Drawing.Point(18, 15);
            lampada_idLabel.Name = "lampada_idLabel";
            lampada_idLabel.Size = new System.Drawing.Size(77, 14);
            lampada_idLabel.Text = "lampada id:";
            // 
            // poste_idLabel
            // 
            poste_idLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            poste_idLabel.Location = new System.Drawing.Point(33, 46);
            poste_idLabel.Name = "poste_idLabel";
            poste_idLabel.Size = new System.Drawing.Size(61, 14);
            poste_idLabel.Text = "poste id:";
            // 
            // mainMenu1
            // 
            this.mainMenu1.MenuItems.Add(this.menuItem1);
            // 
            // menuItem1
            // 
            this.menuItem1.MenuItems.Add(this.menuItem3);
            this.menuItem1.MenuItems.Add(this.menuItem5);
            this.menuItem1.MenuItems.Add(this.menuItem4);
            this.menuItem1.MenuItems.Add(this.menuItem2);
            this.menuItem1.Text = "Opções";
            // 
            // menuItem3
            // 
            this.menuItem3.Text = "Novo";
            this.menuItem3.Click += new System.EventHandler(this.novo);
            // 
            // menuItem5
            // 
            this.menuItem5.Text = "Salvar";
            this.menuItem5.Click += new System.EventHandler(this.salvar);
            // 
            // menuItem4
            // 
            this.menuItem4.Text = "-";
            // 
            // menuItem2
            // 
            this.menuItem2.Text = "Sair";
            this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
            // 
            // eletrocadDataSet
            // 
            this.eletrocadDataSet.DataSetName = "eletrocadDataSet";
            this.eletrocadDataSet.Prefix = "";
            this.eletrocadDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // postehaslampadaBindingSource
            // 
            this.postehaslampadaBindingSource.DataMember = "poste_has_lampada";
            this.postehaslampadaBindingSource.DataSource = this.eletrocadDataSet;
            // 
            // poste_has_lampadaTableAdapter
            // 
            this.poste_has_lampadaTableAdapter.ClearBeforeFill = true;
            // 
            // poste_has_lampadaDataGrid
            // 
            this.poste_has_lampadaDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.poste_has_lampadaDataGrid.DataSource = this.postehaslampadaBindingSource;
            this.poste_has_lampadaDataGrid.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.poste_has_lampadaDataGrid.Location = new System.Drawing.Point(0, 92);
            this.poste_has_lampadaDataGrid.Name = "poste_has_lampadaDataGrid";
            this.poste_has_lampadaDataGrid.RowHeadersVisible = false;
            this.poste_has_lampadaDataGrid.Size = new System.Drawing.Size(240, 182);
            this.poste_has_lampadaDataGrid.TabIndex = 1;
            this.poste_has_lampadaDataGrid.TableStyles.Add(this.poste_has_lampadaTableStyleDataGridTableStyle);
            // 
            // poste_has_lampadaTableStyleDataGridTableStyle
            // 
            this.poste_has_lampadaTableStyleDataGridTableStyle.GridColumnStyles.Add(lampada_idDataGridColumnStyleDataGridTextBoxColumn);
            this.poste_has_lampadaTableStyleDataGridTableStyle.MappingName = "poste_has_lampada";
            // 
            // tipolampadaBindingSource
            // 
            this.tipolampadaBindingSource.DataMember = "tipo_lampada";
            this.tipolampadaBindingSource.DataSource = this.eletrocadDataSet;
            // 
            // tipo_lampadaTableAdapter
            // 
            this.tipo_lampadaTableAdapter.ClearBeforeFill = true;
            // 
            // lampadaBindingSource
            // 
            this.lampadaBindingSource.DataMember = "lampada";
            this.lampadaBindingSource.DataSource = this.eletrocadDataSet;
            // 
            // lampadaCb
            // 
            this.lampadaCb.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.postehaslampadaBindingSource, "lampada_id", true));
            this.lampadaCb.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.postehaslampadaBindingSource, "descricao", true));
            this.lampadaCb.DataSource = this.lampadaBindingSource;
            this.lampadaCb.DisplayMember = "descricao";
            this.lampadaCb.Location = new System.Drawing.Point(101, 15);
            this.lampadaCb.Name = "lampadaCb";
            this.lampadaCb.Size = new System.Drawing.Size(100, 22);
            this.lampadaCb.TabIndex = 3;
            this.lampadaCb.ValueMember = "id";
            // 
            // poste_idTextBox
            // 
            this.poste_idTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.postehaslampadaBindingSource, "poste_id", true));
            this.poste_idTextBox.Enabled = false;
            this.poste_idTextBox.Location = new System.Drawing.Point(101, 43);
            this.poste_idTextBox.Name = "poste_idTextBox";
            this.poste_idTextBox.ReadOnly = true;
            this.poste_idTextBox.Size = new System.Drawing.Size(100, 21);
            this.poste_idTextBox.TabIndex = 4;
            // 
            // lampadaTableAdapter
            // 
            this.lampadaTableAdapter.ClearBeforeFill = true;
            // 
            // label1
            // 
            this.label1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.label1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.label1.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
            this.label1.Location = new System.Drawing.Point(0, 274);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(240, 20);
            this.label1.Text = "label1";
            this.label1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            this.label1.Visible = false;
            // 
            // CadastrarLampadas
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(240, 294);
            this.ControlBox = false;
            this.Controls.Add(poste_idLabel);
            this.Controls.Add(this.poste_idTextBox);
            this.Controls.Add(this.lampadaCb);
            this.Controls.Add(lampada_idLabel);
            this.Controls.Add(this.poste_has_lampadaDataGrid);
            this.Controls.Add(this.label1);
            this.Location = new System.Drawing.Point(0, 0);
            this.Menu = this.mainMenu1;
            this.MinimizeBox = false;
            this.Name = "CadastrarLampadas";
            this.Text = "CadastrarLampadas";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.CadastrarLampadas_Load);
            ((System.ComponentModel.ISupportInitialize)(this.eletrocadDataSet)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.postehaslampadaBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tipolampadaBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lampadaBindingSource)).EndInit();
            this.ResumeLayout(false);

        }
예제 #42
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);
 }
예제 #43
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.DataGridTextBoxColumn regionalDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn cod_localDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn inicio_programadoDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn termino_programadoDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn municipio_idDataGridColumnStyleDataGridTextBoxColumn;
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.menuItem1 = new System.Windows.Forms.MenuItem();
            this.menuItem5 = new System.Windows.Forms.MenuItem();
            this.menuItem3 = new System.Windows.Forms.MenuItem();
            this.menuItem6 = new System.Windows.Forms.MenuItem();
            this.menuItem2 = new System.Windows.Forms.MenuItem();
            this.programacaoipBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.eletrocadDataSet = new CipX.db.eletrocadDataSet();
            this.programacao_ipDataGrid = new System.Windows.Forms.DataGrid();
            this.programacao_ipTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.programacao_ipTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.programacao_ipTableAdapter();
            regionalDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            cod_localDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            inicio_programadoDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            termino_programadoDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            municipio_idDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            ((System.ComponentModel.ISupportInitialize)(this.programacaoipBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.eletrocadDataSet)).BeginInit();
            this.SuspendLayout();
            // 
            // regionalDataGridColumnStyleDataGridTextBoxColumn
            // 
            regionalDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            regionalDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            regionalDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "regional";
            regionalDataGridColumnStyleDataGridTextBoxColumn.MappingName = "regional";
            regionalDataGridColumnStyleDataGridTextBoxColumn.Width = 80;
            // 
            // cod_localDataGridColumnStyleDataGridTextBoxColumn
            // 
            cod_localDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            cod_localDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            cod_localDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "cod_local";
            cod_localDataGridColumnStyleDataGridTextBoxColumn.MappingName = "cod_local";
            cod_localDataGridColumnStyleDataGridTextBoxColumn.Width = 80;
            // 
            // inicio_programadoDataGridColumnStyleDataGridTextBoxColumn
            // 
            inicio_programadoDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            inicio_programadoDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            inicio_programadoDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "inicio_programado";
            inicio_programadoDataGridColumnStyleDataGridTextBoxColumn.MappingName = "inicio_programado";
            inicio_programadoDataGridColumnStyleDataGridTextBoxColumn.Width = 80;
            // 
            // termino_programadoDataGridColumnStyleDataGridTextBoxColumn
            // 
            termino_programadoDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            termino_programadoDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            termino_programadoDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "termino_programado";
            termino_programadoDataGridColumnStyleDataGridTextBoxColumn.MappingName = "termino_programado";
            termino_programadoDataGridColumnStyleDataGridTextBoxColumn.Width = 80;
            // 
            // municipio_idDataGridColumnStyleDataGridTextBoxColumn
            // 
            municipio_idDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            municipio_idDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            municipio_idDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "municipio_id";
            municipio_idDataGridColumnStyleDataGridTextBoxColumn.MappingName = "municipio_id";
            municipio_idDataGridColumnStyleDataGridTextBoxColumn.Width = 80;
            // 
            // mainMenu1
            // 
            this.mainMenu1.MenuItems.Add(this.menuItem1);
            // 
            // menuItem1
            // 
            this.menuItem1.MenuItems.Add(this.menuItem5);
            this.menuItem1.MenuItems.Add(this.menuItem3);
            this.menuItem1.MenuItems.Add(this.menuItem6);
            this.menuItem1.MenuItems.Add(this.menuItem2);
            this.menuItem1.Text = "Opções";
            // 
            // menuItem5
            // 
            this.menuItem5.Text = "Trafos";
            this.menuItem5.Click += new System.EventHandler(this.menuItem5_Click);
            // 
            // menuItem3
            // 
            this.menuItem3.Text = "Importar Programação";
            this.menuItem3.Click += new System.EventHandler(this.importar);
            // 
            // menuItem6
            // 
            this.menuItem6.Text = "-";
            // 
            // menuItem2
            // 
            this.menuItem2.Text = "Sair";
            this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
            // 
            // programacaoipBindingSource
            // 
            this.programacaoipBindingSource.DataMember = "programacao_ip";
            this.programacaoipBindingSource.DataSource = this.eletrocadDataSet;
            // 
            // eletrocadDataSet
            // 
            this.eletrocadDataSet.DataSetName = "eletrocadDataSet";
            this.eletrocadDataSet.Prefix = "";
            this.eletrocadDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // programacao_ipDataGrid
            // 
            this.programacao_ipDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.programacao_ipDataGrid.DataSource = this.programacaoipBindingSource;
            this.programacao_ipDataGrid.Dock = System.Windows.Forms.DockStyle.Fill;
            this.programacao_ipDataGrid.Location = new System.Drawing.Point(0, 0);
            this.programacao_ipDataGrid.Name = "programacao_ipDataGrid";
            this.programacao_ipDataGrid.RowHeadersVisible = false;
            this.programacao_ipDataGrid.Size = new System.Drawing.Size(240, 294);
            this.programacao_ipDataGrid.TabIndex = 0;
            this.programacao_ipDataGrid.TableStyles.Add(this.programacao_ipTableStyleDataGridTableStyle);
            // 
            // programacao_ipTableStyleDataGridTableStyle
            // 
            this.programacao_ipTableStyleDataGridTableStyle.GridColumnStyles.Add(regionalDataGridColumnStyleDataGridTextBoxColumn);
            this.programacao_ipTableStyleDataGridTableStyle.GridColumnStyles.Add(cod_localDataGridColumnStyleDataGridTextBoxColumn);
            this.programacao_ipTableStyleDataGridTableStyle.GridColumnStyles.Add(inicio_programadoDataGridColumnStyleDataGridTextBoxColumn);
            this.programacao_ipTableStyleDataGridTableStyle.GridColumnStyles.Add(termino_programadoDataGridColumnStyleDataGridTextBoxColumn);
            this.programacao_ipTableStyleDataGridTableStyle.GridColumnStyles.Add(municipio_idDataGridColumnStyleDataGridTextBoxColumn);
            this.programacao_ipTableStyleDataGridTableStyle.MappingName = "programacao_ip";
            // 
            // label1
            // 
            this.label1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.label1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.label1.Font = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular);
            this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
            this.label1.Location = new System.Drawing.Point(0, 274);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(240, 20);
            this.label1.Text = "label1";
            this.label1.Visible = false;
            // 
            // label2
            // 
            this.label2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.label2.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.programacaoipBindingSource, "id", true));
            this.label2.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.label2.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
            this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
            this.label2.Location = new System.Drawing.Point(0, 254);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(240, 20);
            this.label2.Text = "0";
            this.label2.Visible = false;
            // 
            // programacao_ipTableAdapter
            // 
            this.programacao_ipTableAdapter.ClearBeforeFill = true;
            // 
            // CadastroProgramacao
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(240, 294);
            this.ControlBox = false;
            this.Controls.Add(this.label2);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.programacao_ipDataGrid);
            this.Location = new System.Drawing.Point(0, 0);
            this.Menu = this.mainMenu1;
            this.MinimizeBox = false;
            this.Name = "CadastroProgramacao";
            this.Text = "CadastroProgramacao";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.CadastroProgramacao_Load);
            ((System.ComponentModel.ISupportInitialize)(this.programacaoipBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.eletrocadDataSet)).EndInit();
            this.ResumeLayout(false);

        }
예제 #44
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);
 }
        /// <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.DataGridTextBoxColumn naamDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn kentekenDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn actiefDataGridColumnStyleDataGridTextBoxColumn;
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.newMenuItemMenuItem = new System.Windows.Forms.MenuItem();
            this.oGDRegistratieDataSet = new OGDRegistratieWM.OGDRegistratieDataSet();
            this.vervoermiddelBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.vervoermiddelTableAdapter = new OGDRegistratieWM.OGDRegistratieDataSetTableAdapters.VervoermiddelTableAdapter();
            this.vervoermiddelDataGrid = new System.Windows.Forms.DataGrid();
            this.vervoermiddelTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
            naamDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            kentekenDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            actiefDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            ((System.ComponentModel.ISupportInitialize)(this.oGDRegistratieDataSet)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.vervoermiddelBindingSource)).BeginInit();
            this.SuspendLayout();
            // 
            // naamDataGridColumnStyleDataGridTextBoxColumn
            // 
            naamDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            naamDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            naamDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "Naam";
            naamDataGridColumnStyleDataGridTextBoxColumn.MappingName = "Naam";
            // 
            // kentekenDataGridColumnStyleDataGridTextBoxColumn
            // 
            kentekenDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            kentekenDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            kentekenDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "Kenteken";
            kentekenDataGridColumnStyleDataGridTextBoxColumn.MappingName = "Kenteken";
            // 
            // actiefDataGridColumnStyleDataGridTextBoxColumn
            // 
            actiefDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            actiefDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            actiefDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "Actief";
            actiefDataGridColumnStyleDataGridTextBoxColumn.MappingName = "Actief";
            // 
            // mainMenu1
            // 
            this.mainMenu1.MenuItems.Add(this.newMenuItemMenuItem);
            // 
            // newMenuItemMenuItem
            // 
            this.newMenuItemMenuItem.Text = "New";
            this.newMenuItemMenuItem.Click += new System.EventHandler(this.newMenuItemMenuItem_Click);
            // 
            // oGDRegistratieDataSet
            // 
            this.oGDRegistratieDataSet.DataSetName = "OGDRegistratieDataSet";
            this.oGDRegistratieDataSet.Prefix = "";
            this.oGDRegistratieDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // vervoermiddelBindingSource
            // 
            this.vervoermiddelBindingSource.DataMember = "Vervoermiddel";
            this.vervoermiddelBindingSource.DataSource = this.oGDRegistratieDataSet;
            // 
            // vervoermiddelTableAdapter
            // 
            this.vervoermiddelTableAdapter.ClearBeforeFill = true;
            // 
            // vervoermiddelDataGrid
            // 
            this.vervoermiddelDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.vervoermiddelDataGrid.DataSource = this.vervoermiddelBindingSource;
            this.vervoermiddelDataGrid.Dock = System.Windows.Forms.DockStyle.Fill;
            this.vervoermiddelDataGrid.Location = new System.Drawing.Point(0, 0);
            this.vervoermiddelDataGrid.Name = "vervoermiddelDataGrid";
            this.vervoermiddelDataGrid.Size = new System.Drawing.Size(240, 268);
            this.vervoermiddelDataGrid.TabIndex = 0;
            this.vervoermiddelDataGrid.TableStyles.Add(this.vervoermiddelTableStyleDataGridTableStyle);
            this.vervoermiddelDataGrid.Click += new System.EventHandler(this.vervoermiddelDataGrid_Click);
            // 
            // vervoermiddelTableStyleDataGridTableStyle
            // 
            this.vervoermiddelTableStyleDataGridTableStyle.GridColumnStyles.Add(naamDataGridColumnStyleDataGridTextBoxColumn);
            this.vervoermiddelTableStyleDataGridTableStyle.GridColumnStyles.Add(kentekenDataGridColumnStyleDataGridTextBoxColumn);
            this.vervoermiddelTableStyleDataGridTableStyle.GridColumnStyles.Add(actiefDataGridColumnStyleDataGridTextBoxColumn);
            this.vervoermiddelTableStyleDataGridTableStyle.MappingName = "Vervoermiddel";
            // 
            // VervoermiddelIndexForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(240, 268);
            this.Controls.Add(this.vervoermiddelDataGrid);
            this.Menu = this.mainMenu1;
            this.Name = "VervoermiddelIndexForm";
            this.Text = "Vervoermiddelen";
            this.Load += new System.EventHandler(this.frmVervoermiddelIndex_Load);
            ((System.ComponentModel.ISupportInitialize)(this.oGDRegistratieDataSet)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.vervoermiddelBindingSource)).EndInit();
            this.ResumeLayout(false);

        }
예제 #46
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.DataGridTextBoxColumn startTijdDataGridColumnStyleDataGridTextBoxColumn1;
            System.Windows.Forms.DataGridTextBoxColumn startIdAdresDataGridColumnStyleDataGridTextBoxColumn1;
            System.Windows.Forms.DataGridTextBoxColumn startStandDataGridColumnStyleDataGridTextBoxColumn1;
            System.Windows.Forms.DataGridTextBoxColumn eindTijdDataGridColumnStyleDataGridTextBoxColumn1;
            System.Windows.Forms.DataGridTextBoxColumn eindIdAdresDataGridColumnStyleDataGridTextBoxColumn1;
            System.Windows.Forms.DataGridTextBoxColumn eindStandDataGridColumnStyleDataGridTextBoxColumn1;
            System.Windows.Forms.DataGridTextBoxColumn idVervoermiddelDataGridColumnStyleDataGridTextBoxColumn1;
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.newMenuItemMenuItem = new System.Windows.Forms.MenuItem();
            this.oGDRegistratieDataSet = new OGDRegistratieWM.OGDRegistratieDataSet();
            this.ritBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.ritTableAdapter = new OGDRegistratieWM.OGDRegistratieDataSetTableAdapters.RitTableAdapter();
            this.ritDataGrid = new System.Windows.Forms.DataGrid();
            this.ritTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
            startTijdDataGridColumnStyleDataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
            startIdAdresDataGridColumnStyleDataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
            startStandDataGridColumnStyleDataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
            eindTijdDataGridColumnStyleDataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
            eindIdAdresDataGridColumnStyleDataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
            eindStandDataGridColumnStyleDataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
            idVervoermiddelDataGridColumnStyleDataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
            ((System.ComponentModel.ISupportInitialize)(this.oGDRegistratieDataSet)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ritBindingSource)).BeginInit();
            this.SuspendLayout();
            // 
            // startTijdDataGridColumnStyleDataGridTextBoxColumn1
            // 
            startTijdDataGridColumnStyleDataGridTextBoxColumn1.Format = "";
            startTijdDataGridColumnStyleDataGridTextBoxColumn1.FormatInfo = null;
            startTijdDataGridColumnStyleDataGridTextBoxColumn1.HeaderText = "StartTijd";
            startTijdDataGridColumnStyleDataGridTextBoxColumn1.MappingName = "StartTijd";
            // 
            // startIdAdresDataGridColumnStyleDataGridTextBoxColumn1
            // 
            startIdAdresDataGridColumnStyleDataGridTextBoxColumn1.Format = "";
            startIdAdresDataGridColumnStyleDataGridTextBoxColumn1.FormatInfo = null;
            startIdAdresDataGridColumnStyleDataGridTextBoxColumn1.HeaderText = "StartIdAdres";
            startIdAdresDataGridColumnStyleDataGridTextBoxColumn1.MappingName = "StartIdAdres";
            // 
            // startStandDataGridColumnStyleDataGridTextBoxColumn1
            // 
            startStandDataGridColumnStyleDataGridTextBoxColumn1.Format = "";
            startStandDataGridColumnStyleDataGridTextBoxColumn1.FormatInfo = null;
            startStandDataGridColumnStyleDataGridTextBoxColumn1.HeaderText = "StartStand";
            startStandDataGridColumnStyleDataGridTextBoxColumn1.MappingName = "StartStand";
            // 
            // eindTijdDataGridColumnStyleDataGridTextBoxColumn1
            // 
            eindTijdDataGridColumnStyleDataGridTextBoxColumn1.Format = "";
            eindTijdDataGridColumnStyleDataGridTextBoxColumn1.FormatInfo = null;
            eindTijdDataGridColumnStyleDataGridTextBoxColumn1.HeaderText = "EindTijd";
            eindTijdDataGridColumnStyleDataGridTextBoxColumn1.MappingName = "EindTijd";
            // 
            // eindIdAdresDataGridColumnStyleDataGridTextBoxColumn1
            // 
            eindIdAdresDataGridColumnStyleDataGridTextBoxColumn1.Format = "";
            eindIdAdresDataGridColumnStyleDataGridTextBoxColumn1.FormatInfo = null;
            eindIdAdresDataGridColumnStyleDataGridTextBoxColumn1.HeaderText = "EindIdAdres";
            eindIdAdresDataGridColumnStyleDataGridTextBoxColumn1.MappingName = "EindIdAdres";
            // 
            // eindStandDataGridColumnStyleDataGridTextBoxColumn1
            // 
            eindStandDataGridColumnStyleDataGridTextBoxColumn1.Format = "";
            eindStandDataGridColumnStyleDataGridTextBoxColumn1.FormatInfo = null;
            eindStandDataGridColumnStyleDataGridTextBoxColumn1.HeaderText = "EindStand";
            eindStandDataGridColumnStyleDataGridTextBoxColumn1.MappingName = "EindStand";
            // 
            // idVervoermiddelDataGridColumnStyleDataGridTextBoxColumn1
            // 
            idVervoermiddelDataGridColumnStyleDataGridTextBoxColumn1.Format = "";
            idVervoermiddelDataGridColumnStyleDataGridTextBoxColumn1.FormatInfo = null;
            idVervoermiddelDataGridColumnStyleDataGridTextBoxColumn1.HeaderText = "IdVervoermiddel";
            idVervoermiddelDataGridColumnStyleDataGridTextBoxColumn1.MappingName = "IdVervoermiddel";
            // 
            // mainMenu1
            // 
            this.mainMenu1.MenuItems.Add(this.newMenuItemMenuItem);
            // 
            // newMenuItemMenuItem
            // 
            this.newMenuItemMenuItem.Text = "New";
            this.newMenuItemMenuItem.Click += new System.EventHandler(this.newMenuItemMenuItem_Click);
            // 
            // oGDRegistratieDataSet
            // 
            this.oGDRegistratieDataSet.DataSetName = "OGDRegistratieDataSet";
            this.oGDRegistratieDataSet.Prefix = "";
            this.oGDRegistratieDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // ritBindingSource
            // 
            this.ritBindingSource.DataMember = "Rit";
            this.ritBindingSource.DataSource = this.oGDRegistratieDataSet;
            // 
            // ritTableAdapter
            // 
            this.ritTableAdapter.ClearBeforeFill = true;
            // 
            // ritDataGrid
            // 
            this.ritDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.ritDataGrid.DataSource = this.ritBindingSource;
            this.ritDataGrid.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ritDataGrid.Location = new System.Drawing.Point(0, 0);
            this.ritDataGrid.Name = "ritDataGrid";
            this.ritDataGrid.Size = new System.Drawing.Size(240, 268);
            this.ritDataGrid.TabIndex = 0;
            this.ritDataGrid.TableStyles.Add(this.ritTableStyleDataGridTableStyle);
            this.ritDataGrid.Click += new System.EventHandler(this.ritDataGrid_Click);
            // 
            // ritTableStyleDataGridTableStyle
            // 
            this.ritTableStyleDataGridTableStyle.GridColumnStyles.Add(startTijdDataGridColumnStyleDataGridTextBoxColumn1);
            this.ritTableStyleDataGridTableStyle.GridColumnStyles.Add(startIdAdresDataGridColumnStyleDataGridTextBoxColumn1);
            this.ritTableStyleDataGridTableStyle.GridColumnStyles.Add(startStandDataGridColumnStyleDataGridTextBoxColumn1);
            this.ritTableStyleDataGridTableStyle.GridColumnStyles.Add(eindTijdDataGridColumnStyleDataGridTextBoxColumn1);
            this.ritTableStyleDataGridTableStyle.GridColumnStyles.Add(eindIdAdresDataGridColumnStyleDataGridTextBoxColumn1);
            this.ritTableStyleDataGridTableStyle.GridColumnStyles.Add(eindStandDataGridColumnStyleDataGridTextBoxColumn1);
            this.ritTableStyleDataGridTableStyle.GridColumnStyles.Add(idVervoermiddelDataGridColumnStyleDataGridTextBoxColumn1);
            this.ritTableStyleDataGridTableStyle.MappingName = "Rit";
            // 
            // RitIndexForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(240, 268);
            this.Controls.Add(this.ritDataGrid);
            this.Menu = this.mainMenu1;
            this.Name = "RitIndexForm";
            this.Text = "Ritten";
            this.Load += new System.EventHandler(this.frmRittenIndex_Load);
            this.Closing += new System.ComponentModel.CancelEventHandler(this.RitIndexForm_Closing);
            ((System.ComponentModel.ISupportInitialize)(this.oGDRegistratieDataSet)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ritBindingSource)).EndInit();
            this.ResumeLayout(false);

        }
예제 #47
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.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.components = new System.ComponentModel.Container();
            System.Windows.Forms.Label codigoLabel;
            System.Windows.Forms.Label tipo_medidor_obra_idLabel;
            System.Windows.Forms.Label projeto_idLabel;
            System.Windows.Forms.DataGridTextBoxColumn idDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn codigoDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn tipo_medidor_obra_idDataGridColumnStyleDataGridTextBoxColumn;
            System.Windows.Forms.DataGridTextBoxColumn projeto_idDataGridColumnStyleDataGridTextBoxColumn;
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.lptDataSet = new Colibri.db.lptDataSet();
            this.medidorobraBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.medidor_obraTableAdapter = new Colibri.db.lptDataSetTableAdapters.medidor_obraTableAdapter();
            this.codigoTextBox = new System.Windows.Forms.TextBox();
            this.projeto_idTextBox = new System.Windows.Forms.TextBox();
            this.menuItem1 = new System.Windows.Forms.MenuItem();
            this.menuItem2 = new System.Windows.Forms.MenuItem();
            this.menuItem3 = new System.Windows.Forms.MenuItem();
            this.menuItem4 = new System.Windows.Forms.MenuItem();
            this.menuItem5 = new System.Windows.Forms.MenuItem();
            this.medidor_obraDataGrid = new System.Windows.Forms.DataGrid();
            this.medidor_obraTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
            this.tipomedidorobraBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.comboBox1 = new System.Windows.Forms.ComboBox();
            this.tipo_medidor_obraTableAdapter = new Colibri.db.lptDataSetTableAdapters.tipo_medidor_obraTableAdapter();
            codigoLabel = new System.Windows.Forms.Label();
            tipo_medidor_obra_idLabel = new System.Windows.Forms.Label();
            projeto_idLabel = new System.Windows.Forms.Label();
            idDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            codigoDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            tipo_medidor_obra_idDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            projeto_idDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
            ((System.ComponentModel.ISupportInitialize)(this.lptDataSet)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.medidorobraBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tipomedidorobraBindingSource)).BeginInit();
            this.SuspendLayout();
            // 
            // mainMenu1
            // 
            this.mainMenu1.MenuItems.Add(this.menuItem1);
            // 
            // lptDataSet
            // 
            this.lptDataSet.DataSetName = "lptDataSet";
            this.lptDataSet.Prefix = "";
            this.lptDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // medidorobraBindingSource
            // 
            this.medidorobraBindingSource.DataMember = "medidor_obra";
            this.medidorobraBindingSource.DataSource = this.lptDataSet;
            // 
            // medidor_obraTableAdapter
            // 
            this.medidor_obraTableAdapter.ClearBeforeFill = true;
            // 
            // codigoLabel
            // 
            codigoLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            codigoLabel.Location = new System.Drawing.Point(4, 6);
            codigoLabel.Name = "codigoLabel";
            codigoLabel.Size = new System.Drawing.Size(52, 14);
            codigoLabel.Text = "codigo:";
            // 
            // codigoTextBox
            // 
            this.codigoTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.medidorobraBindingSource, "codigo", true));
            this.codigoTextBox.Location = new System.Drawing.Point(4, 23);
            this.codigoTextBox.Name = "codigoTextBox";
            this.codigoTextBox.Size = new System.Drawing.Size(100, 21);
            this.codigoTextBox.TabIndex = 2;
            // 
            // tipo_medidor_obra_idLabel
            // 
            tipo_medidor_obra_idLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            tipo_medidor_obra_idLabel.Location = new System.Drawing.Point(4, 59);
            tipo_medidor_obra_idLabel.Name = "tipo_medidor_obra_idLabel";
            tipo_medidor_obra_idLabel.Size = new System.Drawing.Size(137, 14);
            tipo_medidor_obra_idLabel.Text = "tipo medidor obra id:";
            // 
            // projeto_idLabel
            // 
            projeto_idLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            projeto_idLabel.Location = new System.Drawing.Point(4, 103);
            projeto_idLabel.Name = "projeto_idLabel";
            projeto_idLabel.Size = new System.Drawing.Size(72, 14);
            projeto_idLabel.Text = "projeto id:";
            // 
            // projeto_idTextBox
            // 
            this.projeto_idTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.medidorobraBindingSource, "projeto_id", true));
            this.projeto_idTextBox.Location = new System.Drawing.Point(4, 120);
            this.projeto_idTextBox.Name = "projeto_idTextBox";
            this.projeto_idTextBox.ReadOnly = true;
            this.projeto_idTextBox.Size = new System.Drawing.Size(100, 21);
            this.projeto_idTextBox.TabIndex = 5;
            // 
            // menuItem1
            // 
            this.menuItem1.MenuItems.Add(this.menuItem4);
            this.menuItem1.MenuItems.Add(this.menuItem5);
            this.menuItem1.MenuItems.Add(this.menuItem3);
            this.menuItem1.MenuItems.Add(this.menuItem2);
            this.menuItem1.Text = "Opções";
            // 
            // menuItem2
            // 
            this.menuItem2.Text = "Voltar a tela anterior";
            this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
            // 
            // menuItem3
            // 
            this.menuItem3.Text = "-";
            // 
            // menuItem4
            // 
            this.menuItem4.Text = "Novo";
            this.menuItem4.Click += new System.EventHandler(this.menuItem4_Click);
            // 
            // menuItem5
            // 
            this.menuItem5.Text = "Salvar";
            this.menuItem5.Click += new System.EventHandler(this.menuItem5_Click);
            // 
            // medidor_obraDataGrid
            // 
            this.medidor_obraDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.medidor_obraDataGrid.DataSource = this.medidorobraBindingSource;
            this.medidor_obraDataGrid.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.medidor_obraDataGrid.Location = new System.Drawing.Point(0, 179);
            this.medidor_obraDataGrid.Name = "medidor_obraDataGrid";
            this.medidor_obraDataGrid.Size = new System.Drawing.Size(240, 115);
            this.medidor_obraDataGrid.TabIndex = 6;
            this.medidor_obraDataGrid.TableStyles.Add(this.medidor_obraTableStyleDataGridTableStyle);
            // 
            // medidor_obraTableStyleDataGridTableStyle
            // 
            this.medidor_obraTableStyleDataGridTableStyle.GridColumnStyles.Add(idDataGridColumnStyleDataGridTextBoxColumn);
            this.medidor_obraTableStyleDataGridTableStyle.GridColumnStyles.Add(codigoDataGridColumnStyleDataGridTextBoxColumn);
            this.medidor_obraTableStyleDataGridTableStyle.GridColumnStyles.Add(tipo_medidor_obra_idDataGridColumnStyleDataGridTextBoxColumn);
            this.medidor_obraTableStyleDataGridTableStyle.GridColumnStyles.Add(projeto_idDataGridColumnStyleDataGridTextBoxColumn);
            this.medidor_obraTableStyleDataGridTableStyle.MappingName = "medidor_obra";
            // 
            // idDataGridColumnStyleDataGridTextBoxColumn
            // 
            idDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            idDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            idDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "id";
            idDataGridColumnStyleDataGridTextBoxColumn.MappingName = "id";
            // 
            // codigoDataGridColumnStyleDataGridTextBoxColumn
            // 
            codigoDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            codigoDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            codigoDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "codigo";
            codigoDataGridColumnStyleDataGridTextBoxColumn.MappingName = "codigo";
            // 
            // tipo_medidor_obra_idDataGridColumnStyleDataGridTextBoxColumn
            // 
            tipo_medidor_obra_idDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            tipo_medidor_obra_idDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            tipo_medidor_obra_idDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "tipo_medidor_obra_id";
            tipo_medidor_obra_idDataGridColumnStyleDataGridTextBoxColumn.MappingName = "tipo_medidor_obra_id";
            // 
            // projeto_idDataGridColumnStyleDataGridTextBoxColumn
            // 
            projeto_idDataGridColumnStyleDataGridTextBoxColumn.Format = "";
            projeto_idDataGridColumnStyleDataGridTextBoxColumn.FormatInfo = null;
            projeto_idDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "projeto_id";
            projeto_idDataGridColumnStyleDataGridTextBoxColumn.MappingName = "projeto_id";
            // 
            // tipomedidorobraBindingSource
            // 
            this.tipomedidorobraBindingSource.DataMember = "tipo_medidor_obra";
            this.tipomedidorobraBindingSource.DataSource = this.lptDataSet;
            // 
            // comboBox1
            // 
            this.comboBox1.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.medidorobraBindingSource, "tipo_medidor_obra_id", true));
            this.comboBox1.DataSource = this.tipomedidorobraBindingSource;
            this.comboBox1.DisplayMember = "descricao";
            this.comboBox1.Location = new System.Drawing.Point(4, 76);
            this.comboBox1.Name = "comboBox1";
            this.comboBox1.Size = new System.Drawing.Size(160, 22);
            this.comboBox1.TabIndex = 7;
            this.comboBox1.ValueMember = "id";
            // 
            // tipo_medidor_obraTableAdapter
            // 
            this.tipo_medidor_obraTableAdapter.ClearBeforeFill = true;
            // 
            // CroquiMedidorObra
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(240, 294);
            this.ControlBox = false;
            this.Controls.Add(this.comboBox1);
            this.Controls.Add(this.medidor_obraDataGrid);
            this.Controls.Add(projeto_idLabel);
            this.Controls.Add(this.projeto_idTextBox);
            this.Controls.Add(tipo_medidor_obra_idLabel);
            this.Controls.Add(codigoLabel);
            this.Controls.Add(this.codigoTextBox);
            this.Location = new System.Drawing.Point(0, 0);
            this.Menu = this.mainMenu1;
            this.Name = "CroquiMedidorObra";
            this.Text = "CroquiMedidorObra";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.CroquiMedidorObra_Load);
            ((System.ComponentModel.ISupportInitialize)(this.lptDataSet)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.medidorobraBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tipomedidorobraBindingSource)).EndInit();
            this.ResumeLayout(false);

        }
예제 #49
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);
 }
예제 #50
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);
 }
예제 #51
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.DataGridTextBoxColumn regionalDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.DataGridTextBoxColumn cod_localDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.DataGridTextBoxColumn inicio_programadoDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.DataGridTextBoxColumn termino_programadoDataGridColumnStyleDataGridTextBoxColumn;
     System.Windows.Forms.DataGridTextBoxColumn municipio_idDataGridColumnStyleDataGridTextBoxColumn;
     this.mainMenu1 = new System.Windows.Forms.MainMenu();
     this.menuItem1 = new System.Windows.Forms.MenuItem();
     this.menuItem5 = new System.Windows.Forms.MenuItem();
     this.menuItem3 = new System.Windows.Forms.MenuItem();
     this.menuItem6 = new System.Windows.Forms.MenuItem();
     this.menuItem2 = new System.Windows.Forms.MenuItem();
     this.programacaoipBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.eletrocadDataSet           = new CipX.db.eletrocadDataSet();
     this.programacao_ipDataGrid     = new System.Windows.Forms.DataGrid();
     this.programacao_ipTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.programacao_ipTableAdapter = new CipX.db.eletrocadDataSetTableAdapters.programacao_ipTableAdapter();
     regionalDataGridColumnStyleDataGridTextBoxColumn           = new System.Windows.Forms.DataGridTextBoxColumn();
     cod_localDataGridColumnStyleDataGridTextBoxColumn          = new System.Windows.Forms.DataGridTextBoxColumn();
     inicio_programadoDataGridColumnStyleDataGridTextBoxColumn  = new System.Windows.Forms.DataGridTextBoxColumn();
     termino_programadoDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
     municipio_idDataGridColumnStyleDataGridTextBoxColumn       = new System.Windows.Forms.DataGridTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.programacaoipBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.eletrocadDataSet)).BeginInit();
     this.SuspendLayout();
     //
     // regionalDataGridColumnStyleDataGridTextBoxColumn
     //
     regionalDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     regionalDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     regionalDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "regional";
     regionalDataGridColumnStyleDataGridTextBoxColumn.MappingName = "regional";
     regionalDataGridColumnStyleDataGridTextBoxColumn.Width       = 80;
     //
     // cod_localDataGridColumnStyleDataGridTextBoxColumn
     //
     cod_localDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     cod_localDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     cod_localDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "cod_local";
     cod_localDataGridColumnStyleDataGridTextBoxColumn.MappingName = "cod_local";
     cod_localDataGridColumnStyleDataGridTextBoxColumn.Width       = 80;
     //
     // inicio_programadoDataGridColumnStyleDataGridTextBoxColumn
     //
     inicio_programadoDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     inicio_programadoDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     inicio_programadoDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "inicio_programado";
     inicio_programadoDataGridColumnStyleDataGridTextBoxColumn.MappingName = "inicio_programado";
     inicio_programadoDataGridColumnStyleDataGridTextBoxColumn.Width       = 80;
     //
     // termino_programadoDataGridColumnStyleDataGridTextBoxColumn
     //
     termino_programadoDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     termino_programadoDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     termino_programadoDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "termino_programado";
     termino_programadoDataGridColumnStyleDataGridTextBoxColumn.MappingName = "termino_programado";
     termino_programadoDataGridColumnStyleDataGridTextBoxColumn.Width       = 80;
     //
     // municipio_idDataGridColumnStyleDataGridTextBoxColumn
     //
     municipio_idDataGridColumnStyleDataGridTextBoxColumn.Format      = "";
     municipio_idDataGridColumnStyleDataGridTextBoxColumn.FormatInfo  = null;
     municipio_idDataGridColumnStyleDataGridTextBoxColumn.HeaderText  = "municipio_id";
     municipio_idDataGridColumnStyleDataGridTextBoxColumn.MappingName = "municipio_id";
     municipio_idDataGridColumnStyleDataGridTextBoxColumn.Width       = 80;
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.Add(this.menuItem1);
     //
     // menuItem1
     //
     this.menuItem1.MenuItems.Add(this.menuItem5);
     this.menuItem1.MenuItems.Add(this.menuItem3);
     this.menuItem1.MenuItems.Add(this.menuItem6);
     this.menuItem1.MenuItems.Add(this.menuItem2);
     this.menuItem1.Text = "Opções";
     //
     // menuItem5
     //
     this.menuItem5.Text   = "Trafos";
     this.menuItem5.Click += new System.EventHandler(this.menuItem5_Click);
     //
     // menuItem3
     //
     this.menuItem3.Text   = "Importar Programação";
     this.menuItem3.Click += new System.EventHandler(this.importar);
     //
     // menuItem6
     //
     this.menuItem6.Text = "-";
     //
     // menuItem2
     //
     this.menuItem2.Text   = "Sair";
     this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
     //
     // programacaoipBindingSource
     //
     this.programacaoipBindingSource.DataMember = "programacao_ip";
     this.programacaoipBindingSource.DataSource = this.eletrocadDataSet;
     //
     // eletrocadDataSet
     //
     this.eletrocadDataSet.DataSetName             = "eletrocadDataSet";
     this.eletrocadDataSet.Prefix                  = "";
     this.eletrocadDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // programacao_ipDataGrid
     //
     this.programacao_ipDataGrid.BackgroundColor   = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.programacao_ipDataGrid.DataSource        = this.programacaoipBindingSource;
     this.programacao_ipDataGrid.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.programacao_ipDataGrid.Location          = new System.Drawing.Point(0, 0);
     this.programacao_ipDataGrid.Name              = "programacao_ipDataGrid";
     this.programacao_ipDataGrid.RowHeadersVisible = false;
     this.programacao_ipDataGrid.Size              = new System.Drawing.Size(240, 294);
     this.programacao_ipDataGrid.TabIndex          = 0;
     this.programacao_ipDataGrid.TableStyles.Add(this.programacao_ipTableStyleDataGridTableStyle);
     //
     // programacao_ipTableStyleDataGridTableStyle
     //
     this.programacao_ipTableStyleDataGridTableStyle.GridColumnStyles.Add(regionalDataGridColumnStyleDataGridTextBoxColumn);
     this.programacao_ipTableStyleDataGridTableStyle.GridColumnStyles.Add(cod_localDataGridColumnStyleDataGridTextBoxColumn);
     this.programacao_ipTableStyleDataGridTableStyle.GridColumnStyles.Add(inicio_programadoDataGridColumnStyleDataGridTextBoxColumn);
     this.programacao_ipTableStyleDataGridTableStyle.GridColumnStyles.Add(termino_programadoDataGridColumnStyleDataGridTextBoxColumn);
     this.programacao_ipTableStyleDataGridTableStyle.GridColumnStyles.Add(municipio_idDataGridColumnStyleDataGridTextBoxColumn);
     this.programacao_ipTableStyleDataGridTableStyle.MappingName = "programacao_ip";
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.label1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.label1.Font      = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular);
     this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.label1.Location  = new System.Drawing.Point(0, 274);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(240, 20);
     this.label1.Text      = "label1";
     this.label1.Visible   = false;
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.label2.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.programacaoipBindingSource, "id", true));
     this.label2.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.label2.Font      = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Regular);
     this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.label2.Location  = new System.Drawing.Point(0, 254);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(240, 20);
     this.label2.Text      = "0";
     this.label2.Visible   = false;
     //
     // programacao_ipTableAdapter
     //
     this.programacao_ipTableAdapter.ClearBeforeFill = true;
     //
     // CadastroProgramacao
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.AutoScroll          = true;
     this.ClientSize          = new System.Drawing.Size(240, 294);
     this.ControlBox          = false;
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.programacao_ipDataGrid);
     this.Location    = new System.Drawing.Point(0, 0);
     this.Menu        = this.mainMenu1;
     this.MinimizeBox = false;
     this.Name        = "CadastroProgramacao";
     this.Text        = "CadastroProgramacao";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.CadastroProgramacao_Load);
     ((System.ComponentModel.ISupportInitialize)(this.programacaoipBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.eletrocadDataSet)).EndInit();
     this.ResumeLayout(false);
 }