/// <summary> /// Método necesario para admitir el Diseñador. No se puede modificar /// el contenido del método con el editor de código. /// </summary> private void InitializeComponent() { System.Configuration.AppSettingsReader configurationAppSettings = new System.Configuration.AppSettingsReader(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Concretera)); this.sqlDAConcretera = new System.Data.SqlClient.SqlDataAdapter(); this.sqlDeleteCommand1 = new System.Data.SqlClient.SqlCommand(); this.sqlConn = new System.Data.SqlClient.SqlConnection(); this.sqlInsertCommand1 = new System.Data.SqlClient.SqlCommand(); this.sqlSelectCommand1 = new System.Data.SqlClient.SqlCommand(); this.sqlUpdateCommand1 = new System.Data.SqlClient.SqlCommand(); this.dsConcretera1 = new LancNeo.dsConcretera(); this.lblIdConcretera = new System.Windows.Forms.Label(); this.lblConcretera = new System.Windows.Forms.Label(); this.lblDireccion = new System.Windows.Forms.Label(); this.txtIdConcretera = new System.Windows.Forms.TextBox(); this.txtConcretera = new System.Windows.Forms.TextBox(); this.txtDireccion = new System.Windows.Forms.TextBox(); this.panel1 = new System.Windows.Forms.Panel(); this.buscaBtn1 = new Soluciones2000.Tools.WinLib.BuscaBtn(); this.panelToolBar.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dsConcretera1)).BeginInit(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // statusBar1 // this.statusBar1.ShowPanels = true; this.statusBar1.Size = new System.Drawing.Size(576, 22); // // panelToolBar // this.panelToolBar.Size = new System.Drawing.Size(576, 64); // // sqlDAConcretera // this.sqlDAConcretera.DeleteCommand = this.sqlDeleteCommand1; this.sqlDAConcretera.InsertCommand = this.sqlInsertCommand1; this.sqlDAConcretera.SelectCommand = this.sqlSelectCommand1; this.sqlDAConcretera.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] { new System.Data.Common.DataTableMapping("Table", "Concretera", new System.Data.Common.DataColumnMapping[] { new System.Data.Common.DataColumnMapping("IdConcretera", "IdConcretera"), new System.Data.Common.DataColumnMapping("Concretera", "Concretera"), new System.Data.Common.DataColumnMapping("Direccion", "Direccion") }) }); this.sqlDAConcretera.UpdateCommand = this.sqlUpdateCommand1; // // sqlDeleteCommand1 // this.sqlDeleteCommand1.CommandText = "DELETE FROM Concretera WHERE (IdConcretera = @Original_IdConcretera) AND (Concret" + "era = @Original_Concretera) AND (Direccion = @Original_Direccion OR @Original_Di" + "reccion IS NULL AND Direccion IS NULL)"; this.sqlDeleteCommand1.Connection = this.sqlConn; this.sqlDeleteCommand1.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] { new System.Data.SqlClient.SqlParameter("@Original_IdConcretera", System.Data.SqlDbType.NVarChar, 10, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "IdConcretera", System.Data.DataRowVersion.Original, null), new System.Data.SqlClient.SqlParameter("@Original_Concretera", System.Data.SqlDbType.NVarChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Concretera", System.Data.DataRowVersion.Original, null), new System.Data.SqlClient.SqlParameter("@Original_Direccion", System.Data.SqlDbType.NVarChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Direccion", System.Data.DataRowVersion.Original, null) }); // // sqlConn // this.sqlConn.ConnectionString = ((string)(configurationAppSettings.GetValue("sqlConn.ConnectionString", typeof(string)))); this.sqlConn.FireInfoMessageEventOnUserErrors = false; // // sqlInsertCommand1 // this.sqlInsertCommand1.CommandText = resources.GetString("sqlInsertCommand1.CommandText"); this.sqlInsertCommand1.Connection = this.sqlConn; this.sqlInsertCommand1.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] { new System.Data.SqlClient.SqlParameter("@IdConcretera", System.Data.SqlDbType.NVarChar, 10, "IdConcretera"), new System.Data.SqlClient.SqlParameter("@Concretera", System.Data.SqlDbType.NVarChar, 50, "Concretera"), new System.Data.SqlClient.SqlParameter("@Direccion", System.Data.SqlDbType.NVarChar, 50, "Direccion") }); // // sqlSelectCommand1 // this.sqlSelectCommand1.CommandText = "SELECT IdConcretera, Concretera, Direccion FROM Concretera"; this.sqlSelectCommand1.Connection = this.sqlConn; // // sqlUpdateCommand1 // this.sqlUpdateCommand1.CommandText = resources.GetString("sqlUpdateCommand1.CommandText"); this.sqlUpdateCommand1.Connection = this.sqlConn; this.sqlUpdateCommand1.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] { new System.Data.SqlClient.SqlParameter("@IdConcretera", System.Data.SqlDbType.NVarChar, 10, "IdConcretera"), new System.Data.SqlClient.SqlParameter("@Concretera", System.Data.SqlDbType.NVarChar, 50, "Concretera"), new System.Data.SqlClient.SqlParameter("@Direccion", System.Data.SqlDbType.NVarChar, 50, "Direccion"), new System.Data.SqlClient.SqlParameter("@Original_IdConcretera", System.Data.SqlDbType.NVarChar, 10, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "IdConcretera", System.Data.DataRowVersion.Original, null), new System.Data.SqlClient.SqlParameter("@Original_Concretera", System.Data.SqlDbType.NVarChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Concretera", System.Data.DataRowVersion.Original, null), new System.Data.SqlClient.SqlParameter("@Original_Direccion", System.Data.SqlDbType.NVarChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Direccion", System.Data.DataRowVersion.Original, null) }); // // dsConcretera1 // this.dsConcretera1.DataSetName = "dsConcretera"; this.dsConcretera1.Locale = new System.Globalization.CultureInfo("es-MX"); this.dsConcretera1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // lblIdConcretera // this.lblIdConcretera.Location = new System.Drawing.Point(16, 48); this.lblIdConcretera.Name = "lblIdConcretera"; this.lblIdConcretera.Size = new System.Drawing.Size(80, 23); this.lblIdConcretera.TabIndex = 3; this.lblIdConcretera.Text = "Id Concretera:"; this.lblIdConcretera.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // lblConcretera // this.lblConcretera.Location = new System.Drawing.Point(16, 88); this.lblConcretera.Name = "lblConcretera"; this.lblConcretera.Size = new System.Drawing.Size(80, 23); this.lblConcretera.TabIndex = 3; this.lblConcretera.Text = "Concretera:"; this.lblConcretera.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // lblDireccion // this.lblDireccion.Location = new System.Drawing.Point(16, 128); this.lblDireccion.Name = "lblDireccion"; this.lblDireccion.Size = new System.Drawing.Size(80, 23); this.lblDireccion.TabIndex = 3; this.lblDireccion.Text = "Dirección:"; this.lblDireccion.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // txtIdConcretera // this.txtIdConcretera.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dsConcretera1, "Concretera.IdConcretera", true)); this.txtIdConcretera.Location = new System.Drawing.Point(112, 48); this.txtIdConcretera.Name = "txtIdConcretera"; this.txtIdConcretera.Size = new System.Drawing.Size(128, 20); this.txtIdConcretera.TabIndex = 4; this.txtIdConcretera.Text = "textBox1"; // // txtConcretera // this.txtConcretera.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dsConcretera1, "Concretera.Concretera", true)); this.txtConcretera.Location = new System.Drawing.Point(112, 88); this.txtConcretera.Name = "txtConcretera"; this.txtConcretera.Size = new System.Drawing.Size(256, 20); this.txtConcretera.TabIndex = 4; this.txtConcretera.Text = "textBox1"; // // txtDireccion // this.txtDireccion.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dsConcretera1, "Concretera.Direccion", true)); this.txtDireccion.Location = new System.Drawing.Point(112, 128); this.txtDireccion.Name = "txtDireccion"; this.txtDireccion.Size = new System.Drawing.Size(256, 20); this.txtDireccion.TabIndex = 4; this.txtDireccion.Text = "textBox1"; // // panel1 // this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.panel1.Controls.Add(this.buscaBtn1); this.panel1.Controls.Add(this.lblIdConcretera); this.panel1.Controls.Add(this.lblConcretera); this.panel1.Controls.Add(this.lblDireccion); this.panel1.Controls.Add(this.txtIdConcretera); this.panel1.Controls.Add(this.txtConcretera); this.panel1.Controls.Add(this.txtDireccion); this.panel1.Location = new System.Drawing.Point(96, 96); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(384, 192); this.panel1.TabIndex = 9; // // buscaBtn1 // this.buscaBtn1.AnchoDlgBusq = 0; this.buscaBtn1.BackColor = System.Drawing.Color.Transparent; this.buscaBtn1.Datos = this.dsConcretera1.Concretera; this.buscaBtn1.Icon = ((System.Drawing.Icon)(resources.GetObject("buscaBtn1.Icon"))); this.buscaBtn1.Location = new System.Drawing.Point(240, 16); this.buscaBtn1.Name = "buscaBtn1"; this.buscaBtn1.Size = new System.Drawing.Size(64, 64); this.buscaBtn1.TabIndex = 5; this.toolTip1.SetToolTip(this.buscaBtn1, "Buscar"); // // Concretera // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(576, 423); this.Controls.Add(this.panel1); this.DAGeneral = this.sqlDAConcretera; this.dsGeneral = this.dsConcretera1; this.Name = "Concretera"; this.NombreTabla = "Concretera"; this.Text = "Catálogo de Concreteras y Premezcladoras"; this.Load += new System.EventHandler(this.Concretera_Load); this.Controls.SetChildIndex(this.statusBar1, 0); this.Controls.SetChildIndex(this.panelToolBar, 0); this.Controls.SetChildIndex(this.panel1, 0); this.panelToolBar.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.dsConcretera1)).EndInit(); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); this.ResumeLayout(false); }
/// <summary> /// Método necesario para admitir el Diseñador. No se puede modificar /// el contenido del método con el editor de código. /// </summary> private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Planta)); System.Configuration.AppSettingsReader configurationAppSettings = new System.Configuration.AppSettingsReader(); this.panel2 = new System.Windows.Forms.Panel(); this.buscaBtn1 = new Soluciones2000.Tools.WinLib.BuscaBtn(); this.dsPlanta1 = new LancNeo.dsPlanta(); this.cmbConcretera = new System.Windows.Forms.ComboBox(); this.dsConcretera1 = new LancNeo.dsConcretera(); this.txtIdNivel = new System.Windows.Forms.TextBox(); this.lblIdPlanta = new System.Windows.Forms.Label(); this.lblPlanta = new System.Windows.Forms.Label(); this.txtNivel = new System.Windows.Forms.TextBox(); this.lblIdConcretera = new System.Windows.Forms.Label(); this.sqlDAPlanta = new System.Data.SqlClient.SqlDataAdapter(); this.sqlDeleteCommand1 = new System.Data.SqlClient.SqlCommand(); this.sqlConn = new System.Data.SqlClient.SqlConnection(); this.sqlInsertCommand1 = new System.Data.SqlClient.SqlCommand(); this.sqlSelectCommand1 = new System.Data.SqlClient.SqlCommand(); this.sqlUpdateCommand1 = new System.Data.SqlClient.SqlCommand(); this.sqlDAConcretera = new System.Data.SqlClient.SqlDataAdapter(); this.sqlSelectCommand2 = new System.Data.SqlClient.SqlCommand(); this.panelToolBar.SuspendLayout(); this.panel2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dsPlanta1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dsConcretera1)).BeginInit(); this.SuspendLayout(); // // statusBar1 // this.statusBar1.ShowPanels = true; this.statusBar1.Size = new System.Drawing.Size(576, 22); // // panelToolBar // this.panelToolBar.Size = new System.Drawing.Size(576, 64); // // panel2 // this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.panel2.Controls.Add(this.buscaBtn1); this.panel2.Controls.Add(this.cmbConcretera); this.panel2.Controls.Add(this.txtIdNivel); this.panel2.Controls.Add(this.lblIdPlanta); this.panel2.Controls.Add(this.lblPlanta); this.panel2.Controls.Add(this.txtNivel); this.panel2.Controls.Add(this.lblIdConcretera); this.panel2.Location = new System.Drawing.Point(48, 115); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(456, 192); this.panel2.TabIndex = 6; // // buscaBtn1 // this.buscaBtn1.AnchoDlgBusq = 0; this.buscaBtn1.BackColor = System.Drawing.Color.Transparent; this.buscaBtn1.Datos = this.dsPlanta1.Planta; this.buscaBtn1.Icon = ((System.Drawing.Icon)(resources.GetObject("buscaBtn1.Icon"))); this.buscaBtn1.Location = new System.Drawing.Point(224, 16); this.buscaBtn1.Name = "buscaBtn1"; this.buscaBtn1.Size = new System.Drawing.Size(64, 64); this.buscaBtn1.TabIndex = 3; // // dsPlanta1 // this.dsPlanta1.DataSetName = "dsPlanta"; this.dsPlanta1.Locale = new System.Globalization.CultureInfo("es-MX"); this.dsPlanta1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // cmbConcretera // this.cmbConcretera.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.dsPlanta1, "Planta.IdConcretera", true)); this.cmbConcretera.DataSource = this.dsConcretera1.Concretera; this.cmbConcretera.DisplayMember = "Concretera"; this.cmbConcretera.Location = new System.Drawing.Point(120, 128); this.cmbConcretera.Name = "cmbConcretera"; this.cmbConcretera.Size = new System.Drawing.Size(304, 21); this.cmbConcretera.TabIndex = 2; this.cmbConcretera.ValueMember = "IdConcretera"; // // dsConcretera1 // this.dsConcretera1.DataSetName = "dsConcretera"; this.dsConcretera1.Locale = new System.Globalization.CultureInfo("es-MX"); this.dsConcretera1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // txtIdNivel // this.txtIdNivel.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dsPlanta1, "Planta.IdPlanta", true)); this.txtIdNivel.Location = new System.Drawing.Point(119, 46); this.txtIdNivel.Name = "txtIdNivel"; this.txtIdNivel.Size = new System.Drawing.Size(100, 20); this.txtIdNivel.TabIndex = 1; this.txtIdNivel.Text = "textBox1"; // // lblIdPlanta // this.lblIdPlanta.Location = new System.Drawing.Point(31, 42); this.lblIdPlanta.Name = "lblIdPlanta"; this.lblIdPlanta.Size = new System.Drawing.Size(80, 23); this.lblIdPlanta.TabIndex = 0; this.lblIdPlanta.Text = "Id Planta:"; this.lblIdPlanta.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // lblPlanta // this.lblPlanta.Location = new System.Drawing.Point(31, 82); this.lblPlanta.Name = "lblPlanta"; this.lblPlanta.Size = new System.Drawing.Size(80, 23); this.lblPlanta.TabIndex = 0; this.lblPlanta.Text = "Planta:"; this.lblPlanta.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // txtNivel // this.txtNivel.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dsPlanta1, "Planta.Planta", true)); this.txtNivel.Location = new System.Drawing.Point(119, 86); this.txtNivel.MaxLength = 50; this.txtNivel.Name = "txtNivel"; this.txtNivel.Size = new System.Drawing.Size(97, 20); this.txtNivel.TabIndex = 1; this.txtNivel.Text = "textBox1"; // // lblIdConcretera // this.lblIdConcretera.Location = new System.Drawing.Point(31, 120); this.lblIdConcretera.Name = "lblIdConcretera"; this.lblIdConcretera.Size = new System.Drawing.Size(80, 23); this.lblIdConcretera.TabIndex = 0; this.lblIdConcretera.Text = "Id Concretera:"; this.lblIdConcretera.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // sqlDAPlanta // this.sqlDAPlanta.DeleteCommand = this.sqlDeleteCommand1; this.sqlDAPlanta.InsertCommand = this.sqlInsertCommand1; this.sqlDAPlanta.SelectCommand = this.sqlSelectCommand1; this.sqlDAPlanta.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] { new System.Data.Common.DataTableMapping("Table", "Planta", new System.Data.Common.DataColumnMapping[] { new System.Data.Common.DataColumnMapping("IdPlanta", "IdPlanta"), new System.Data.Common.DataColumnMapping("Planta", "Planta"), new System.Data.Common.DataColumnMapping("IdConcretera", "IdConcretera") }) }); this.sqlDAPlanta.UpdateCommand = this.sqlUpdateCommand1; // // sqlDeleteCommand1 // this.sqlDeleteCommand1.CommandText = "DELETE FROM Planta WHERE (IdConcretera = @Original_IdConcretera) AND (IdPlanta = " + "@Original_IdPlanta) AND (Planta = @Original_Planta OR @Original_Planta IS NULL A" + "ND Planta IS NULL)"; this.sqlDeleteCommand1.Connection = this.sqlConn; this.sqlDeleteCommand1.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] { new System.Data.SqlClient.SqlParameter("@Original_IdConcretera", System.Data.SqlDbType.NVarChar, 10, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "IdConcretera", System.Data.DataRowVersion.Original, null), new System.Data.SqlClient.SqlParameter("@Original_IdPlanta", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "IdPlanta", System.Data.DataRowVersion.Original, null), new System.Data.SqlClient.SqlParameter("@Original_Planta", System.Data.SqlDbType.NVarChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Planta", System.Data.DataRowVersion.Original, null) }); // // sqlConn // this.sqlConn.ConnectionString = ((string)(configurationAppSettings.GetValue("sqlConn.ConnectionString", typeof(string)))); this.sqlConn.FireInfoMessageEventOnUserErrors = false; // // sqlInsertCommand1 // this.sqlInsertCommand1.CommandText = resources.GetString("sqlInsertCommand1.CommandText"); this.sqlInsertCommand1.Connection = this.sqlConn; this.sqlInsertCommand1.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] { new System.Data.SqlClient.SqlParameter("@IdPlanta", System.Data.SqlDbType.Int, 4, "IdPlanta"), new System.Data.SqlClient.SqlParameter("@Planta", System.Data.SqlDbType.NVarChar, 50, "Planta"), new System.Data.SqlClient.SqlParameter("@IdConcretera", System.Data.SqlDbType.NVarChar, 10, "IdConcretera") }); // // sqlSelectCommand1 // this.sqlSelectCommand1.CommandText = "SELECT IdPlanta, Planta, IdConcretera FROM Planta ORDER BY IdPlanta"; this.sqlSelectCommand1.Connection = this.sqlConn; // // sqlUpdateCommand1 // this.sqlUpdateCommand1.CommandText = resources.GetString("sqlUpdateCommand1.CommandText"); this.sqlUpdateCommand1.Connection = this.sqlConn; this.sqlUpdateCommand1.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] { new System.Data.SqlClient.SqlParameter("@IdPlanta", System.Data.SqlDbType.Int, 4, "IdPlanta"), new System.Data.SqlClient.SqlParameter("@Planta", System.Data.SqlDbType.NVarChar, 50, "Planta"), new System.Data.SqlClient.SqlParameter("@IdConcretera", System.Data.SqlDbType.NVarChar, 10, "IdConcretera"), new System.Data.SqlClient.SqlParameter("@Original_IdConcretera", System.Data.SqlDbType.NVarChar, 10, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "IdConcretera", System.Data.DataRowVersion.Original, null), new System.Data.SqlClient.SqlParameter("@Original_IdPlanta", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "IdPlanta", System.Data.DataRowVersion.Original, null), new System.Data.SqlClient.SqlParameter("@Original_Planta", System.Data.SqlDbType.NVarChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Planta", System.Data.DataRowVersion.Original, null) }); // // sqlDAConcretera // this.sqlDAConcretera.SelectCommand = this.sqlSelectCommand2; this.sqlDAConcretera.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] { new System.Data.Common.DataTableMapping("Table", "Concretera", new System.Data.Common.DataColumnMapping[] { new System.Data.Common.DataColumnMapping("IdConcretera", "IdConcretera"), new System.Data.Common.DataColumnMapping("Concretera", "Concretera"), new System.Data.Common.DataColumnMapping("Direccion", "Direccion") }) }); // // sqlSelectCommand2 // this.sqlSelectCommand2.CommandText = "SELECT IdConcretera, Concretera, Direccion FROM Concretera ORDER BY Concretera"; this.sqlSelectCommand2.Connection = this.sqlConn; // // Planta // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(576, 423); this.Controls.Add(this.panel2); this.DAGeneral = this.sqlDAPlanta; this.dsGeneral = this.dsPlanta1; this.Name = "Planta"; this.NombreTabla = "Planta"; this.Text = "Planta"; this.Load += new System.EventHandler(this.Planta_Load); this.Controls.SetChildIndex(this.statusBar1, 0); this.Controls.SetChildIndex(this.panelToolBar, 0); this.Controls.SetChildIndex(this.panel2, 0); this.panelToolBar.ResumeLayout(false); this.panel2.ResumeLayout(false); this.panel2.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dsPlanta1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dsConcretera1)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Método necesario para admitir el Diseñador. No se puede modificar /// el contenido del método con el editor de código. /// </summary> private void InitializeComponent() { System.Configuration.AppSettingsReader configurationAppSettings = new System.Configuration.AppSettingsReader(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RepPromedios)); this.sqlConn = new System.Data.SqlClient.SqlConnection(); this.sqlDAUnidad = new System.Data.SqlClient.SqlDataAdapter(); this.sqlSelectCommand1 = new System.Data.SqlClient.SqlCommand(); this.sqlDAConcretera = new System.Data.SqlClient.SqlDataAdapter(); this.sqlSelectCommand5 = new System.Data.SqlClient.SqlCommand(); this.sqlDAPLanta = new System.Data.SqlClient.SqlDataAdapter(); this.sqlSelectCommand6 = new System.Data.SqlClient.SqlCommand(); this.sqlDABusObra = new System.Data.SqlClient.SqlDataAdapter(); this.sqlCommand1 = new System.Data.SqlClient.SqlCommand(); this.dsUnidad1 = new LancNeo.dsUnidad(); this.dsPlanta1 = new LancNeo.dsPlanta(); this.dsConcretera1 = new LancNeo.dsConcretera(); this.panel1 = new System.Windows.Forms.Panel(); this.buscaBtn1 = new Soluciones2000.Tools.WinLib.BuscaBtn(); this.dsConcreto1 = new LancNeo.dsConcreto(); this.btnVistaPrevia = new Soluciones2000.Tools.WinLib.tbBtn(); this.chbLab = new System.Windows.Forms.CheckBox(); this.cmbIdDiam = new System.Windows.Forms.ComboBox(); this.dsDiametro1 = new LancNeo.dsDiametro(); this.label14 = new System.Windows.Forms.Label(); this.textBox1 = new System.Windows.Forms.TextBox(); this.cbkPrefijo = new System.Windows.Forms.CheckBox(); this.label9 = new System.Windows.Forms.Label(); this.label8 = new System.Windows.Forms.Label(); this.cmbUnidad = new System.Windows.Forms.ComboBox(); this.label5 = new System.Windows.Forms.Label(); this.dtpFin = new System.Windows.Forms.DateTimePicker(); this.label4 = new System.Windows.Forms.Label(); this.dtpIni = new System.Windows.Forms.DateTimePicker(); this.label3 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.cmbIdObra = new System.Windows.Forms.ComboBox(); this.dsBuscaObra1 = new LancNeo.dsBuscaObra(); this.label1 = new System.Windows.Forms.Label(); this.Fecha = new System.Windows.Forms.Label(); this.cmbConcretera = new System.Windows.Forms.ComboBox(); this.cmbPlanta = new System.Windows.Forms.ComboBox(); this.txtIdobra = new System.Windows.Forms.TextBox(); this.sqlDAConcreto = new System.Data.SqlClient.SqlDataAdapter(); this.sqlCommand2 = new System.Data.SqlClient.SqlCommand(); this.crvRepPromedios = new CrystalDecisions.Windows.Forms.CrystalReportViewer(); this.sqlDAPromedios = new System.Data.SqlClient.SqlDataAdapter(); this.sqlSelectCommand2 = new System.Data.SqlClient.SqlCommand(); this.dsPromedios1 = new LancNeo.dsPromedios(); this.cryRepPromedios1 = new LancNeo.CryRepPromedios(); this.dsMuestra1 = new LancNeo.dsMuestra(); this.sqlDADiametro = new System.Data.SqlClient.SqlDataAdapter(); this.sqlSelectCommand9 = new System.Data.SqlClient.SqlCommand(); this.sqlDATipo = new System.Data.SqlClient.SqlDataAdapter(); this.sqlSelectCommand11 = new System.Data.SqlClient.SqlCommand(); this.dsTipo1 = new LancNeo.dsTipo(); this.cmbTipo = new System.Windows.Forms.ComboBox(); ((System.ComponentModel.ISupportInitialize)(this.dsUnidad1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dsPlanta1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dsConcretera1)).BeginInit(); this.panel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dsConcreto1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dsDiametro1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dsBuscaObra1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dsPromedios1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dsMuestra1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dsTipo1)).BeginInit(); this.SuspendLayout(); // // sqlConn // this.sqlConn.ConnectionString = ((string)(configurationAppSettings.GetValue("sqlConn.ConnectionString", typeof(string)))); this.sqlConn.FireInfoMessageEventOnUserErrors = false; // // sqlDAUnidad // this.sqlDAUnidad.SelectCommand = this.sqlSelectCommand1; this.sqlDAUnidad.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] { new System.Data.Common.DataTableMapping("Table", "Unidad", new System.Data.Common.DataColumnMapping[] { new System.Data.Common.DataColumnMapping("IdUnidad", "IdUnidad"), new System.Data.Common.DataColumnMapping("Factor", "Factor"), new System.Data.Common.DataColumnMapping("Undescr", "Undescr"), new System.Data.Common.DataColumnMapping("MaxagrUn", "MaxagrUn"), new System.Data.Common.DataColumnMapping("RevenUn", "RevenUn") }) }); // // sqlSelectCommand1 // this.sqlSelectCommand1.CommandText = "SELECT IdUnidad, Factor, Undescr, MaxagrUn, RevenUn FROM Unidad"; this.sqlSelectCommand1.Connection = this.sqlConn; // // sqlDAConcretera // this.sqlDAConcretera.SelectCommand = this.sqlSelectCommand5; this.sqlDAConcretera.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] { new System.Data.Common.DataTableMapping("Table", "Concretera", new System.Data.Common.DataColumnMapping[] { new System.Data.Common.DataColumnMapping("IdConcretera", "IdConcretera"), new System.Data.Common.DataColumnMapping("Concretera", "Concretera"), new System.Data.Common.DataColumnMapping("Direccion", "Direccion") }) }); // // sqlSelectCommand5 // this.sqlSelectCommand5.CommandText = "SELECT IdConcretera, Concretera, Direccion FROM Concretera"; this.sqlSelectCommand5.Connection = this.sqlConn; // // sqlDAPLanta // this.sqlDAPLanta.SelectCommand = this.sqlSelectCommand6; this.sqlDAPLanta.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] { new System.Data.Common.DataTableMapping("Table", "Planta", new System.Data.Common.DataColumnMapping[] { new System.Data.Common.DataColumnMapping("IdConcretera", "IdConcretera"), new System.Data.Common.DataColumnMapping("IdPlanta", "IdPlanta"), new System.Data.Common.DataColumnMapping("Planta", "Planta") }) }); // // sqlSelectCommand6 // this.sqlSelectCommand6.CommandText = "SELECT IdConcretera, IdPlanta, Planta FROM Planta WHERE (IdConcretera LIKE @IdCon" + "cretera)"; this.sqlSelectCommand6.Connection = this.sqlConn; this.sqlSelectCommand6.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] { new System.Data.SqlClient.SqlParameter("@IdConcretera", System.Data.SqlDbType.NVarChar, 10, "IdConcretera") }); // // sqlDABusObra // this.sqlDABusObra.SelectCommand = this.sqlCommand1; this.sqlDABusObra.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] { new System.Data.Common.DataTableMapping("Table", "Obra", new System.Data.Common.DataColumnMapping[] { new System.Data.Common.DataColumnMapping("Idobra", "Idobra"), new System.Data.Common.DataColumnMapping("Ubicacion", "Ubicacion"), new System.Data.Common.DataColumnMapping("RFC", "RFC"), new System.Data.Common.DataColumnMapping("Facturar", "Facturar") }) }); // // sqlCommand1 // this.sqlCommand1.CommandText = resources.GetString("sqlCommand1.CommandText"); this.sqlCommand1.Connection = this.sqlConn; // // dsUnidad1 // this.dsUnidad1.DataSetName = "dsUnidad"; this.dsUnidad1.Locale = new System.Globalization.CultureInfo("es-MX"); this.dsUnidad1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // dsPlanta1 // this.dsPlanta1.DataSetName = "dsPlanta"; this.dsPlanta1.Locale = new System.Globalization.CultureInfo("es-MX"); this.dsPlanta1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // dsConcretera1 // this.dsConcretera1.DataSetName = "dsConcretera"; this.dsConcretera1.Locale = new System.Globalization.CultureInfo("es-MX"); this.dsConcretera1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // panel1 // this.panel1.BackColor = System.Drawing.SystemColors.Highlight; this.panel1.Controls.Add(this.btnVistaPrevia); this.panel1.Controls.Add(this.buscaBtn1); this.panel1.Controls.Add(this.cmbTipo); this.panel1.Controls.Add(this.chbLab); this.panel1.Controls.Add(this.cmbIdDiam); this.panel1.Controls.Add(this.label14); this.panel1.Controls.Add(this.textBox1); this.panel1.Controls.Add(this.cbkPrefijo); this.panel1.Controls.Add(this.label9); this.panel1.Controls.Add(this.label8); this.panel1.Controls.Add(this.cmbUnidad); this.panel1.Controls.Add(this.label5); this.panel1.Controls.Add(this.dtpFin); this.panel1.Controls.Add(this.label4); this.panel1.Controls.Add(this.dtpIni); this.panel1.Controls.Add(this.label3); this.panel1.Controls.Add(this.label2); this.panel1.Controls.Add(this.cmbIdObra); this.panel1.Controls.Add(this.label1); this.panel1.Controls.Add(this.Fecha); this.panel1.Controls.Add(this.cmbConcretera); this.panel1.Controls.Add(this.cmbPlanta); this.panel1.Controls.Add(this.txtIdobra); this.panel1.Dock = System.Windows.Forms.DockStyle.Top; this.panel1.Location = new System.Drawing.Point(0, 0); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(1046, 78); this.panel1.TabIndex = 10; // // buscaBtn1 // this.buscaBtn1.AnchoDlgBusq = 450; this.buscaBtn1.BackColor = System.Drawing.Color.Transparent; this.buscaBtn1.Datos = this.dsConcreto1.Muestras; this.buscaBtn1.Icon = ((System.Drawing.Icon)(resources.GetObject("buscaBtn1.Icon"))); this.buscaBtn1.Location = new System.Drawing.Point(360, 0); this.buscaBtn1.Name = "buscaBtn1"; this.buscaBtn1.Size = new System.Drawing.Size(64, 64); this.buscaBtn1.TabIndex = 2; this.buscaBtn1.Visible = false; this.buscaBtn1.Click += new System.EventHandler(this.buscaBtn1_Click); // // dsConcreto1 // this.dsConcreto1.DataSetName = "dsConcreto"; this.dsConcreto1.Locale = new System.Globalization.CultureInfo("es-MX"); this.dsConcreto1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // btnVistaPrevia // this.btnVistaPrevia.BackColor = System.Drawing.Color.Transparent; this.btnVistaPrevia.Icon = ((System.Drawing.Icon)(resources.GetObject("btnVistaPrevia.Icon"))); this.btnVistaPrevia.Location = new System.Drawing.Point(792, 8); this.btnVistaPrevia.Name = "btnVistaPrevia"; this.btnVistaPrevia.Size = new System.Drawing.Size(64, 64); this.btnVistaPrevia.TabIndex = 11; this.btnVistaPrevia.Visible = false; this.btnVistaPrevia.Click += new System.EventHandler(this.btnVistaPrevia_Click); // // chbLab // this.chbLab.Checked = true; this.chbLab.CheckState = System.Windows.Forms.CheckState.Checked; this.chbLab.Location = new System.Drawing.Point(440, 52); this.chbLab.Name = "chbLab"; this.chbLab.Size = new System.Drawing.Size(116, 24); this.chbLab.TabIndex = 77; this.chbLab.Text = "Incluye laboratorio"; // // cmbIdDiam // this.cmbIdDiam.DataSource = this.dsDiametro1; this.cmbIdDiam.DisplayMember = "Diametro.Figura"; this.cmbIdDiam.Location = new System.Drawing.Point(224, 28); this.cmbIdDiam.Name = "cmbIdDiam"; this.cmbIdDiam.Size = new System.Drawing.Size(128, 21); this.cmbIdDiam.TabIndex = 76; this.cmbIdDiam.ValueMember = "IdDiam"; // // dsDiametro1 // this.dsDiametro1.DataSetName = "dsDiametro"; this.dsDiametro1.Locale = new System.Globalization.CultureInfo("es-MX"); this.dsDiametro1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // label14 // this.label14.AutoSize = true; this.label14.Location = new System.Drawing.Point(144, 28); this.label14.Name = "label14"; this.label14.Size = new System.Drawing.Size(74, 13); this.label14.TabIndex = 75; this.label14.Text = "F. geométrica:"; this.label14.TextAlign = System.Drawing.ContentAlignment.TopRight; // // textBox1 // this.textBox1.Location = new System.Drawing.Point(16, 48); this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(76, 20); this.textBox1.TabIndex = 74; this.textBox1.Text = "textBox1"; this.textBox1.Visible = false; // // cbkPrefijo // this.cbkPrefijo.Checked = true; this.cbkPrefijo.CheckState = System.Windows.Forms.CheckState.Checked; this.cbkPrefijo.Location = new System.Drawing.Point(112, 48); this.cbkPrefijo.Name = "cbkPrefijo"; this.cbkPrefijo.Size = new System.Drawing.Size(74, 24); this.cbkPrefijo.TabIndex = 73; this.cbkPrefijo.Text = "No prefijo"; this.cbkPrefijo.CheckedChanged += new System.EventHandler(this.cbkPrefijo_CheckedChanged); // // label9 // this.label9.AutoSize = true; this.label9.Location = new System.Drawing.Point(672, 30); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(40, 13); this.label9.TabIndex = 24; this.label9.Text = "Planta:"; this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // label8 // this.label8.AutoSize = true; this.label8.Location = new System.Drawing.Point(648, 6); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(62, 13); this.label8.TabIndex = 23; this.label8.Text = "Concretera:"; this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // cmbUnidad // this.cmbUnidad.DataSource = this.dsUnidad1.Unidad; this.cmbUnidad.DisplayMember = "Undescr"; this.cmbUnidad.Location = new System.Drawing.Point(696, 52); this.cmbUnidad.Name = "cmbUnidad"; this.cmbUnidad.Size = new System.Drawing.Size(84, 21); this.cmbUnidad.TabIndex = 10; this.cmbUnidad.ValueMember = "IdUnidad"; // // label5 // this.label5.AutoSize = true; this.label5.Location = new System.Drawing.Point(656, 54); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(44, 13); this.label5.TabIndex = 13; this.label5.Text = "Unidad:"; // // dtpFin // this.dtpFin.Format = System.Windows.Forms.DateTimePickerFormat.Short; this.dtpFin.Location = new System.Drawing.Point(560, 28); this.dtpFin.Name = "dtpFin"; this.dtpFin.Size = new System.Drawing.Size(84, 20); this.dtpFin.TabIndex = 4; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(524, 32); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(32, 13); this.label4.TabIndex = 11; this.label4.Text = "Final:"; // // dtpIni // this.dtpIni.Format = System.Windows.Forms.DateTimePickerFormat.Short; this.dtpIni.Location = new System.Drawing.Point(560, 4); this.dtpIni.Name = "dtpIni"; this.dtpIni.Size = new System.Drawing.Size(84, 20); this.dtpIni.TabIndex = 3; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(520, 6); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(37, 13); this.label3.TabIndex = 9; this.label3.Text = "Inicial:"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(192, 6); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(33, 13); this.label2.TabIndex = 8; this.label2.Text = "Obra:"; // // cmbIdObra // this.cmbIdObra.DataSource = this.dsBuscaObra1.Obra; this.cmbIdObra.DisplayMember = "Idobra"; this.cmbIdObra.Location = new System.Drawing.Point(224, 4); this.cmbIdObra.Name = "cmbIdObra"; this.cmbIdObra.Size = new System.Drawing.Size(80, 21); this.cmbIdObra.TabIndex = 1; this.cmbIdObra.ValueMember = "IdObra"; this.cmbIdObra.SelectedIndexChanged += new System.EventHandler(this.cmbIdObra_SelectedIndexChanged); // // dsBuscaObra1 // this.dsBuscaObra1.DataSetName = "dsBuscaObra"; this.dsBuscaObra1.Locale = new System.Globalization.CultureInfo("es-MX"); this.dsBuscaObra1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.Location = new System.Drawing.Point(8, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(187, 24); this.label1.TabIndex = 0; this.label1.Text = "Análisis promedios"; // // Fecha // this.Fecha.AutoSize = true; this.Fecha.Location = new System.Drawing.Point(424, 6); this.Fecha.Name = "Fecha"; this.Fecha.Size = new System.Drawing.Size(95, 13); this.Fecha.TabIndex = 4; this.Fecha.Text = "Fechas de periodo"; // // cmbConcretera // this.cmbConcretera.DataSource = this.dsConcretera1.Concretera; this.cmbConcretera.DisplayMember = "Concretera"; this.cmbConcretera.Location = new System.Drawing.Point(712, 4); this.cmbConcretera.Name = "cmbConcretera"; this.cmbConcretera.Size = new System.Drawing.Size(68, 21); this.cmbConcretera.TabIndex = 5; this.cmbConcretera.ValueMember = "IdConcretera"; // // cmbPlanta // this.cmbPlanta.DataSource = this.dsPlanta1.Planta; this.cmbPlanta.DisplayMember = "Planta"; this.cmbPlanta.Enabled = false; this.cmbPlanta.Location = new System.Drawing.Point(712, 28); this.cmbPlanta.Name = "cmbPlanta"; this.cmbPlanta.Size = new System.Drawing.Size(68, 21); this.cmbPlanta.TabIndex = 6; this.cmbPlanta.ValueMember = "IdPlanta"; // // txtIdobra // this.txtIdobra.Location = new System.Drawing.Point(368, 24); this.txtIdobra.Name = "txtIdobra"; this.txtIdobra.ReadOnly = true; this.txtIdobra.Size = new System.Drawing.Size(48, 20); this.txtIdobra.TabIndex = 2; this.txtIdobra.Visible = false; // // sqlDAConcreto // this.sqlDAConcreto.SelectCommand = this.sqlCommand2; this.sqlDAConcreto.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] { new System.Data.Common.DataTableMapping("Table", "Muestras", new System.Data.Common.DataColumnMapping[] { new System.Data.Common.DataColumnMapping("IdObra", "IdObra"), new System.Data.Common.DataColumnMapping("Resistencia", "Resistencia"), new System.Data.Common.DataColumnMapping("Tipo", "Tipo"), new System.Data.Common.DataColumnMapping("T.M.A.", "T.M.A."), new System.Data.Common.DataColumnMapping("Rev.", "Rev."), new System.Data.Common.DataColumnMapping("T. A.", "T. A.") }) }); // // sqlCommand2 // this.sqlCommand2.CommandText = resources.GetString("sqlCommand2.CommandText"); this.sqlCommand2.Connection = this.sqlConn; this.sqlCommand2.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] { new System.Data.SqlClient.SqlParameter("@IdObra", System.Data.SqlDbType.NVarChar, 6, "IdObra") }); // // crvRepPromedios // this.crvRepPromedios.ActiveViewIndex = -1; this.crvRepPromedios.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.crvRepPromedios.Cursor = System.Windows.Forms.Cursors.Default; this.crvRepPromedios.Dock = System.Windows.Forms.DockStyle.Fill; this.crvRepPromedios.EnableRefresh = false; this.crvRepPromedios.Location = new System.Drawing.Point(0, 78); this.crvRepPromedios.Name = "crvRepPromedios"; this.crvRepPromedios.ShowCloseButton = false; this.crvRepPromedios.ShowGroupTreeButton = false; this.crvRepPromedios.ShowLogo = false; this.crvRepPromedios.ShowRefreshButton = false; this.crvRepPromedios.Size = new System.Drawing.Size(1046, 670); this.crvRepPromedios.TabIndex = 11; this.crvRepPromedios.ToolPanelView = CrystalDecisions.Windows.Forms.ToolPanelViewType.None; this.crvRepPromedios.ToolPanelWidth = 167; // // sqlDAPromedios // this.sqlDAPromedios.SelectCommand = this.sqlSelectCommand2; // // sqlSelectCommand2 // this.sqlSelectCommand2.CommandText = "[Promedios]"; this.sqlSelectCommand2.CommandType = System.Data.CommandType.StoredProcedure; this.sqlSelectCommand2.Connection = this.sqlConn; this.sqlSelectCommand2.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] { new System.Data.SqlClient.SqlParameter("@RETURN_VALUE", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.ReturnValue, false, ((byte)(0)), ((byte)(0)), "", System.Data.DataRowVersion.Current, null), new System.Data.SqlClient.SqlParameter("@IdObra", System.Data.SqlDbType.NVarChar, 6), new System.Data.SqlClient.SqlParameter("@IdConcretera", System.Data.SqlDbType.NVarChar, 10), new System.Data.SqlClient.SqlParameter("@IdPlanta", System.Data.SqlDbType.SmallInt, 2), new System.Data.SqlClient.SqlParameter("@FechaIni", System.Data.SqlDbType.DateTime, 8), new System.Data.SqlClient.SqlParameter("@FechaFin", System.Data.SqlDbType.DateTime, 8), new System.Data.SqlClient.SqlParameter("@ResistenciaKG", System.Data.SqlDbType.Real, 4), new System.Data.SqlClient.SqlParameter("@Tipo", System.Data.SqlDbType.Int, 4), new System.Data.SqlClient.SqlParameter("@Agregado", System.Data.SqlDbType.Real, 4), new System.Data.SqlClient.SqlParameter("@Renvenimiento", System.Data.SqlDbType.Real, 4), new System.Data.SqlClient.SqlParameter("@IdAgregado", System.Data.SqlDbType.Int, 4), new System.Data.SqlClient.SqlParameter("@IdPrueba", System.Data.SqlDbType.SmallInt, 2), new System.Data.SqlClient.SqlParameter("@IdUnidad", System.Data.SqlDbType.SmallInt, 2), new System.Data.SqlClient.SqlParameter("@Todos", System.Data.SqlDbType.Bit, 1), new System.Data.SqlClient.SqlParameter("@IdDiam", System.Data.SqlDbType.SmallInt, 2) }); // // dsPromedios1 // this.dsPromedios1.DataSetName = "dsPromedios"; this.dsPromedios1.Locale = new System.Globalization.CultureInfo("en-US"); this.dsPromedios1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // dsMuestra1 // this.dsMuestra1.DataSetName = "dsMuestra"; this.dsMuestra1.Locale = new System.Globalization.CultureInfo("es-MX"); this.dsMuestra1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // sqlDADiametro // this.sqlDADiametro.SelectCommand = this.sqlSelectCommand9; this.sqlDADiametro.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] { new System.Data.Common.DataTableMapping("Table", "Diametro", new System.Data.Common.DataColumnMapping[] { new System.Data.Common.DataColumnMapping("IdDiam", "IdDiam"), new System.Data.Common.DataColumnMapping("Diametro", "Diametro") }) }); // // sqlSelectCommand9 // this.sqlSelectCommand9.CommandText = "SELECT IdDiam, Diametro, Diametro + \' \' + Figura AS Figura FROM Diametro"; this.sqlSelectCommand9.Connection = this.sqlConn; // // sqlDATipo // this.sqlDATipo.SelectCommand = this.sqlSelectCommand11; this.sqlDATipo.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] { new System.Data.Common.DataTableMapping("Table", "Tipo", new System.Data.Common.DataColumnMapping[] { new System.Data.Common.DataColumnMapping("Tipo", "Tipo"), new System.Data.Common.DataColumnMapping("DesTipo", "DesTipo") }) }); // // sqlSelectCommand11 // this.sqlSelectCommand11.CommandText = "SELECT Tipo, DesTipo FROM Tipo ORDER BY Tipo"; this.sqlSelectCommand11.Connection = this.sqlConn; // // dsTipo1 // this.dsTipo1.DataSetName = "dsTipo"; this.dsTipo1.Locale = new System.Globalization.CultureInfo("es-MX"); this.dsTipo1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // cmbTipo // this.cmbTipo.DataSource = this.dsTipo1; this.cmbTipo.DisplayMember = "Tipo.DesTipo"; this.cmbTipo.Location = new System.Drawing.Point(560, 52); this.cmbTipo.Name = "cmbTipo"; this.cmbTipo.Size = new System.Drawing.Size(64, 21); this.cmbTipo.TabIndex = 78; this.cmbTipo.ValueMember = "Tipo.Tipo"; // // RepPromedios // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(1046, 748); this.Controls.Add(this.crvRepPromedios); this.Controls.Add(this.panel1); this.Name = "RepPromedios"; this.Text = "RepPromedios"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RepPromedios_Load); ((System.ComponentModel.ISupportInitialize)(this.dsUnidad1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dsPlanta1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dsConcretera1)).EndInit(); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dsConcreto1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dsDiametro1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dsBuscaObra1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dsPromedios1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dsMuestra1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dsTipo1)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Método necesario para admitir el Diseñador. No se puede modificar /// el contenido del método con el editor de código. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Experiencia)); System.Configuration.AppSettingsReader configurationAppSettings = new System.Configuration.AppSettingsReader(); this.panel2 = new System.Windows.Forms.Panel(); this.buscaBtn1 = new Soluciones2000.Tools.WinLib.BuscaBtn(); this.dsExperiencia1 = new LancNeo.dsExperiencia(); this.btnEliminar = new Soluciones2000.Tools.WinLib.tbBtn(); this.btnCalculaTodas = new Soluciones2000.Tools.WinLib.tbBtn(); this.label1 = new System.Windows.Forms.Label(); this.cmbIdConcretera = new System.Windows.Forms.ComboBox(); this.dsConcretera1 = new LancNeo.dsConcretera(); this.lblIdObra = new System.Windows.Forms.Label(); this.sqlDAConcretera = new System.Data.SqlClient.SqlDataAdapter(); this.sqlSelectCommand1 = new System.Data.SqlClient.SqlCommand(); this.sqlConn = new System.Data.SqlClient.SqlConnection(); this.sqlDAdExperiencia = new System.Data.SqlClient.SqlDataAdapter(); this.sqlSelectCommand2 = new System.Data.SqlClient.SqlCommand(); this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); this.sqlCMBorra = new System.Data.SqlClient.SqlCommand(); this.dgExperiencia = new System.Windows.Forms.DataGridView(); this.premezDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ptaDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.fcDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.tipoDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.tmaDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.revDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.grDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.tADataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.muestrasDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.a7DataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.aEEDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.aEEDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.fIniDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.fFinDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.d3A7DataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.d3AEEDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.d7AEEDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.unidadDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.pruebaDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.identificadorDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.experienciaBindingSource = new System.Windows.Forms.BindingSource(this.components); this.sqlCCalcula = new System.Data.SqlClient.SqlCommand(); this.panel2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dsExperiencia1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dsConcretera1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dgExperiencia)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.experienciaBindingSource)).BeginInit(); this.SuspendLayout(); // // panel2 // this.panel2.BackColor = System.Drawing.SystemColors.Highlight; this.panel2.Controls.Add(this.btnCalculaTodas); this.panel2.Controls.Add(this.btnEliminar); this.panel2.Controls.Add(this.buscaBtn1); this.panel2.Controls.Add(this.label1); this.panel2.Controls.Add(this.cmbIdConcretera); this.panel2.Controls.Add(this.lblIdObra); this.panel2.Location = new System.Drawing.Point(0, 0); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(948, 74); this.panel2.TabIndex = 6; // // buscaBtn1 // this.buscaBtn1.AnchoColTit = true; this.buscaBtn1.AnchoDlgBusq = 800; this.buscaBtn1.BackColor = System.Drawing.Color.Transparent; this.buscaBtn1.Datos = this.dsExperiencia1.Experiencia; this.buscaBtn1.Icon = ((System.Drawing.Icon)(resources.GetObject("buscaBtn1.Icon"))); this.buscaBtn1.Location = new System.Drawing.Point(536, 0); this.buscaBtn1.Name = "buscaBtn1"; this.buscaBtn1.Size = new System.Drawing.Size(64, 64); this.buscaBtn1.TabIndex = 41; this.toolTip1.SetToolTip(this.buscaBtn1, "Buscar experiencia para eliminar"); this.buscaBtn1.Click += new System.EventHandler(this.buscaBtn1_Click); // // dsExperiencia1 // this.dsExperiencia1.DataSetName = "dsExperiencia"; this.dsExperiencia1.Locale = new System.Globalization.CultureInfo("es-MX"); this.dsExperiencia1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // btnEliminar // this.btnEliminar.BackColor = System.Drawing.Color.Transparent; this.btnEliminar.Icon = ((System.Drawing.Icon)(resources.GetObject("btnEliminar.Icon"))); this.btnEliminar.Location = new System.Drawing.Point(608, 0); this.btnEliminar.Name = "btnEliminar"; this.btnEliminar.Size = new System.Drawing.Size(64, 64); this.btnEliminar.TabIndex = 42; this.toolTip1.SetToolTip(this.btnEliminar, "Eliminar"); this.btnEliminar.Visible = false; this.btnEliminar.Load += new System.EventHandler(this.btnEliminar_Load); this.btnEliminar.Click += new System.EventHandler(this.btnEliminar_Click); // // btnCalculaTodas // this.btnCalculaTodas.BackColor = System.Drawing.Color.Transparent; this.btnCalculaTodas.Icon = ((System.Drawing.Icon)(resources.GetObject("btnCalculaTodas.Icon"))); this.btnCalculaTodas.Location = new System.Drawing.Point(709, 0); this.btnCalculaTodas.Name = "btnCalculaTodas"; this.btnCalculaTodas.Size = new System.Drawing.Size(64, 64); this.btnCalculaTodas.TabIndex = 65; this.toolTip1.SetToolTip(this.btnCalculaTodas, "Calcula todas las experiencias"); this.btnCalculaTodas.Click += new System.EventHandler(this.btnCalculaTodas_Click); // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.Location = new System.Drawing.Point(8, 8); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(242, 23); this.label1.TabIndex = 40; this.label1.Text = "Consulta de experiencia"; // // cmbIdConcretera // this.cmbIdConcretera.DataSource = this.dsConcretera1.Concretera; this.cmbIdConcretera.DisplayMember = "Concretera"; this.cmbIdConcretera.Location = new System.Drawing.Point(320, 16); this.cmbIdConcretera.Name = "cmbIdConcretera"; this.cmbIdConcretera.Size = new System.Drawing.Size(208, 21); this.cmbIdConcretera.TabIndex = 39; this.cmbIdConcretera.Tag = "ACE"; this.cmbIdConcretera.ValueMember = "IdConcretera"; this.cmbIdConcretera.SelectedIndexChanged += new System.EventHandler(this.cmbIdObra_SelectedIndexChanged); // // dsConcretera1 // this.dsConcretera1.DataSetName = "dsConcretera"; this.dsConcretera1.Locale = new System.Globalization.CultureInfo("es-MX"); this.dsConcretera1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // lblIdObra // this.lblIdObra.AutoSize = true; this.lblIdObra.Location = new System.Drawing.Point(256, 18); this.lblIdObra.Name = "lblIdObra"; this.lblIdObra.Size = new System.Drawing.Size(62, 13); this.lblIdObra.TabIndex = 1; this.lblIdObra.Text = "Concretera:"; this.lblIdObra.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // sqlDAConcretera // this.sqlDAConcretera.SelectCommand = this.sqlSelectCommand1; this.sqlDAConcretera.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] { new System.Data.Common.DataTableMapping("Table", "Concretera", new System.Data.Common.DataColumnMapping[] { new System.Data.Common.DataColumnMapping("IdConcretera", "IdConcretera"), new System.Data.Common.DataColumnMapping("Concretera", "Concretera"), new System.Data.Common.DataColumnMapping("Direccion", "Direccion") }) }); // // sqlSelectCommand1 // this.sqlSelectCommand1.CommandText = "SELECT IdConcretera, Concretera, Direccion FROM Concretera ORDER BY Concretera"; this.sqlSelectCommand1.Connection = this.sqlConn; // // sqlConn // this.sqlConn.ConnectionString = ((string)(configurationAppSettings.GetValue("sqlConn.ConnectionString", typeof(string)))); this.sqlConn.FireInfoMessageEventOnUserErrors = false; // // sqlDAdExperiencia // this.sqlDAdExperiencia.SelectCommand = this.sqlSelectCommand2; this.sqlDAdExperiencia.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] { new System.Data.Common.DataTableMapping("Table", "Experiencia", new System.Data.Common.DataColumnMapping[] { new System.Data.Common.DataColumnMapping("IdConcretera", "IdConcretera"), new System.Data.Common.DataColumnMapping("IdPlanta", "IdPlanta"), new System.Data.Common.DataColumnMapping("ResistenciaKG", "ResistenciaKG"), new System.Data.Common.DataColumnMapping("Tipo", "Tipo"), new System.Data.Common.DataColumnMapping("Agregado", "Agregado"), new System.Data.Common.DataColumnMapping("Revenimento", "Revenimento"), new System.Data.Common.DataColumnMapping("Grado", "Grado"), new System.Data.Common.DataColumnMapping("IdAgregado", "IdAgregado"), new System.Data.Common.DataColumnMapping("Fechaini", "Fechaini"), new System.Data.Common.DataColumnMapping("Fechafin", "Fechafin"), new System.Data.Common.DataColumnMapping("Planta", "Planta"), new System.Data.Common.DataColumnMapping("Muestras", "Muestras"), new System.Data.Common.DataColumnMapping("d3a7", "d3a7"), new System.Data.Common.DataColumnMapping("d3aEE", "d3aEE"), new System.Data.Common.DataColumnMapping("d7aEE", "d7aEE"), new System.Data.Common.DataColumnMapping("s3a7", "s3a7"), new System.Data.Common.DataColumnMapping("s3EE", "s3EE"), new System.Data.Common.DataColumnMapping("s7EE", "s7EE"), new System.Data.Common.DataColumnMapping("IdPrueba", "IdPrueba"), new System.Data.Common.DataColumnMapping("Unidad", "Unidad"), new System.Data.Common.DataColumnMapping("Diametro", "Diametro") }) }); // // sqlSelectCommand2 // this.sqlSelectCommand2.CommandText = resources.GetString("sqlSelectCommand2.CommandText"); this.sqlSelectCommand2.Connection = this.sqlConn; this.sqlSelectCommand2.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] { new System.Data.SqlClient.SqlParameter("@IdConcretera", System.Data.SqlDbType.NVarChar, 10, "Premez") }); // // sqlCMBorra // this.sqlCMBorra.CommandText = "DELETE FROM Experiencia WHERE (Identificador = @Identificador)"; this.sqlCMBorra.Connection = this.sqlConn; this.sqlCMBorra.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] { new System.Data.SqlClient.SqlParameter("@Identificador", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Identificador", System.Data.DataRowVersion.Original, null) }); // // dgExperiencia // this.dgExperiencia.AutoGenerateColumns = false; this.dgExperiencia.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dgExperiencia.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.premezDataGridViewTextBoxColumn, this.ptaDataGridViewTextBoxColumn, this.fcDataGridViewTextBoxColumn, this.tipoDataGridViewTextBoxColumn, this.tmaDataGridViewTextBoxColumn, this.revDataGridViewTextBoxColumn, this.grDataGridViewTextBoxColumn, this.tADataGridViewTextBoxColumn, this.muestrasDataGridViewTextBoxColumn, this.a7DataGridViewTextBoxColumn, this.aEEDataGridViewTextBoxColumn, this.aEEDataGridViewTextBoxColumn1, this.fIniDataGridViewTextBoxColumn, this.fFinDataGridViewTextBoxColumn, this.d3A7DataGridViewTextBoxColumn, this.d3AEEDataGridViewTextBoxColumn, this.d7AEEDataGridViewTextBoxColumn, this.unidadDataGridViewTextBoxColumn, this.pruebaDataGridViewTextBoxColumn, this.identificadorDataGridViewTextBoxColumn }); this.dgExperiencia.DataSource = this.experienciaBindingSource; this.dgExperiencia.Location = new System.Drawing.Point(0, 80); this.dgExperiencia.Name = "dgExperiencia"; this.dgExperiencia.Size = new System.Drawing.Size(957, 529); this.dgExperiencia.TabIndex = 8; // // premezDataGridViewTextBoxColumn // this.premezDataGridViewTextBoxColumn.DataPropertyName = "Premez"; this.premezDataGridViewTextBoxColumn.HeaderText = "Premez"; this.premezDataGridViewTextBoxColumn.Name = "premezDataGridViewTextBoxColumn"; // // ptaDataGridViewTextBoxColumn // this.ptaDataGridViewTextBoxColumn.DataPropertyName = "Pta"; this.ptaDataGridViewTextBoxColumn.HeaderText = "Pta"; this.ptaDataGridViewTextBoxColumn.Name = "ptaDataGridViewTextBoxColumn"; // // fcDataGridViewTextBoxColumn // this.fcDataGridViewTextBoxColumn.DataPropertyName = "f´c "; this.fcDataGridViewTextBoxColumn.HeaderText = "f´c "; this.fcDataGridViewTextBoxColumn.Name = "fcDataGridViewTextBoxColumn"; // // tipoDataGridViewTextBoxColumn // this.tipoDataGridViewTextBoxColumn.DataPropertyName = "Tipo "; this.tipoDataGridViewTextBoxColumn.HeaderText = "Tipo "; this.tipoDataGridViewTextBoxColumn.Name = "tipoDataGridViewTextBoxColumn"; // // tmaDataGridViewTextBoxColumn // this.tmaDataGridViewTextBoxColumn.DataPropertyName = "Tma "; this.tmaDataGridViewTextBoxColumn.HeaderText = "Tma "; this.tmaDataGridViewTextBoxColumn.Name = "tmaDataGridViewTextBoxColumn"; // // revDataGridViewTextBoxColumn // this.revDataGridViewTextBoxColumn.DataPropertyName = "Rev "; this.revDataGridViewTextBoxColumn.HeaderText = "Rev "; this.revDataGridViewTextBoxColumn.Name = "revDataGridViewTextBoxColumn"; // // grDataGridViewTextBoxColumn // this.grDataGridViewTextBoxColumn.DataPropertyName = "Gr"; this.grDataGridViewTextBoxColumn.HeaderText = "Gr"; this.grDataGridViewTextBoxColumn.Name = "grDataGridViewTextBoxColumn"; // // tADataGridViewTextBoxColumn // this.tADataGridViewTextBoxColumn.DataPropertyName = " T A "; this.tADataGridViewTextBoxColumn.HeaderText = " T A "; this.tADataGridViewTextBoxColumn.Name = "tADataGridViewTextBoxColumn"; // // muestrasDataGridViewTextBoxColumn // this.muestrasDataGridViewTextBoxColumn.DataPropertyName = "Muestras"; this.muestrasDataGridViewTextBoxColumn.HeaderText = "Muestras"; this.muestrasDataGridViewTextBoxColumn.Name = "muestrasDataGridViewTextBoxColumn"; // // a7DataGridViewTextBoxColumn // this.a7DataGridViewTextBoxColumn.DataPropertyName = "3 a 7"; this.a7DataGridViewTextBoxColumn.HeaderText = "3 a 7"; this.a7DataGridViewTextBoxColumn.Name = "a7DataGridViewTextBoxColumn"; this.a7DataGridViewTextBoxColumn.ReadOnly = true; // // aEEDataGridViewTextBoxColumn // this.aEEDataGridViewTextBoxColumn.DataPropertyName = "3 a EE"; this.aEEDataGridViewTextBoxColumn.HeaderText = "3 a EE"; this.aEEDataGridViewTextBoxColumn.Name = "aEEDataGridViewTextBoxColumn"; this.aEEDataGridViewTextBoxColumn.ReadOnly = true; // // aEEDataGridViewTextBoxColumn1 // this.aEEDataGridViewTextBoxColumn1.DataPropertyName = "7 a EE"; this.aEEDataGridViewTextBoxColumn1.HeaderText = "7 a EE"; this.aEEDataGridViewTextBoxColumn1.Name = "aEEDataGridViewTextBoxColumn1"; this.aEEDataGridViewTextBoxColumn1.ReadOnly = true; // // fIniDataGridViewTextBoxColumn // this.fIniDataGridViewTextBoxColumn.DataPropertyName = "F. Ini"; this.fIniDataGridViewTextBoxColumn.HeaderText = "F. Ini"; this.fIniDataGridViewTextBoxColumn.Name = "fIniDataGridViewTextBoxColumn"; // // fFinDataGridViewTextBoxColumn // this.fFinDataGridViewTextBoxColumn.DataPropertyName = "F. Fin"; this.fFinDataGridViewTextBoxColumn.HeaderText = "F. Fin"; this.fFinDataGridViewTextBoxColumn.Name = "fFinDataGridViewTextBoxColumn"; // // d3A7DataGridViewTextBoxColumn // this.d3A7DataGridViewTextBoxColumn.DataPropertyName = "d3 a 7"; this.d3A7DataGridViewTextBoxColumn.HeaderText = "d3 a 7"; this.d3A7DataGridViewTextBoxColumn.Name = "d3A7DataGridViewTextBoxColumn"; this.d3A7DataGridViewTextBoxColumn.ReadOnly = true; // // d3AEEDataGridViewTextBoxColumn // this.d3AEEDataGridViewTextBoxColumn.DataPropertyName = "d3 a EE"; this.d3AEEDataGridViewTextBoxColumn.HeaderText = "d3 a EE"; this.d3AEEDataGridViewTextBoxColumn.Name = "d3AEEDataGridViewTextBoxColumn"; this.d3AEEDataGridViewTextBoxColumn.ReadOnly = true; // // d7AEEDataGridViewTextBoxColumn // this.d7AEEDataGridViewTextBoxColumn.DataPropertyName = "d7 a EE"; this.d7AEEDataGridViewTextBoxColumn.HeaderText = "d7 a EE"; this.d7AEEDataGridViewTextBoxColumn.Name = "d7AEEDataGridViewTextBoxColumn"; this.d7AEEDataGridViewTextBoxColumn.ReadOnly = true; // // unidadDataGridViewTextBoxColumn // this.unidadDataGridViewTextBoxColumn.DataPropertyName = "Unidad"; this.unidadDataGridViewTextBoxColumn.HeaderText = "Unidad"; this.unidadDataGridViewTextBoxColumn.Name = "unidadDataGridViewTextBoxColumn"; // // pruebaDataGridViewTextBoxColumn // this.pruebaDataGridViewTextBoxColumn.DataPropertyName = "Prueba"; this.pruebaDataGridViewTextBoxColumn.HeaderText = "Prueba"; this.pruebaDataGridViewTextBoxColumn.Name = "pruebaDataGridViewTextBoxColumn"; // // identificadorDataGridViewTextBoxColumn // this.identificadorDataGridViewTextBoxColumn.DataPropertyName = "Identificador"; this.identificadorDataGridViewTextBoxColumn.HeaderText = "Identificador"; this.identificadorDataGridViewTextBoxColumn.Name = "identificadorDataGridViewTextBoxColumn"; this.identificadorDataGridViewTextBoxColumn.ReadOnly = true; // // experienciaBindingSource // this.experienciaBindingSource.DataMember = "Experiencia"; this.experienciaBindingSource.DataSource = this.dsExperiencia1; // // sqlCCalcula // this.sqlCCalcula.CommandText = "ExpTotal"; this.sqlCCalcula.CommandTimeout = 600; this.sqlCCalcula.CommandType = System.Data.CommandType.StoredProcedure; this.sqlCCalcula.Connection = this.sqlConn; this.sqlCCalcula.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] { new System.Data.SqlClient.SqlParameter("@RETURN_VALUE", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.ReturnValue, false, ((byte)(0)), ((byte)(0)), "", System.Data.DataRowVersion.Current, null) }); // // Experiencia // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.BackColor = System.Drawing.SystemColors.Highlight; this.ClientSize = new System.Drawing.Size(960, 613); this.Controls.Add(this.dgExperiencia); this.Controls.Add(this.panel2); this.Name = "Experiencia"; this.Text = "Experiencia"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.Experiencia_Load); this.panel2.ResumeLayout(false); this.panel2.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dsExperiencia1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dsConcretera1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dgExperiencia)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.experienciaBindingSource)).EndInit(); this.ResumeLayout(false); }