public void CompletarTipoPago() { if (Txtcodigo.Fun_SQL_Buscar_CodigoRegistro("gendbftipopago", "idtipopago")) { DataSet ds = Txtcodigo._Dataset; Txtdescripcion.Text = ds.Tables[0].Rows[0]["descripcion"].ToString(); Ckbcheque.Checked = Convert.ToBoolean(ds.Tables[0].Rows[0]["cheque"]); Ckbbanco.Checked = Convert.ToBoolean(ds.Tables[0].Rows[0]["banco"]); Ckbautorizacion.Checked = Convert.ToBoolean(ds.Tables[0].Rows[0]["autorizacion"]); Ckbtarjeta.Checked = Convert.ToBoolean(ds.Tables[0].Rows[0]["tarjeta"]); Ckbfechaven.Checked = Convert.ToBoolean(ds.Tables[0].Rows[0]["fechaven"]); Ckbcvc.Checked = Convert.ToBoolean(ds.Tables[0].Rows[0]["cvc"]); Ckbaprobacion.Checked = Convert.ToBoolean(ds.Tables[0].Rows[0]["aprobacion"]); Ckbcuentaban.Checked = Convert.ToBoolean(ds.Tables[0].Rows[0]["cuentaban"]); //Ckbregistro.Checked = Convert.ToBoolean(ds.Tables[0].Rows[0]["registro"]); Ckbdocumento.Checked = Convert.ToBoolean(ds.Tables[0].Rows[0]["documento"]); Ckbmoneda.Checked = Convert.ToBoolean(ds.Tables[0].Rows[0]["moneda"]); if (Convert.ToInt32(ds.Tables[0].Rows[0]["nulo"].ToString()) == 0 && ActivateParameter == ">=") { LblLetrero.Text = "Registro Activo"; } else if (Convert.ToInt32(ds.Tables[0].Rows[0]["nulo"].ToString()) > 0 && ActivateParameter == ">=") { LblLetrero.Text = "Registro Desactivo"; } } else { Txtdescripcion.Text = string.Empty; } }
protected override void Modificar() { base.Modificar(); Txtcodigo.Enabled = true; Btnbuscar.Visible = true; Txtcodigo.Focus(); }
protected override void Consultar() { base.Consultar(); Txtcodigo.Enabled = true; Btnbuscar.Visible = true; Txtcodigo._IgnorarNulo = true; Txtcodigo.Focus(); }
private void LimpiarCajas() { Txtcodigo.Text = ""; TxtNombre.Text = ""; TxtApellido.Text = ""; TxtCargo.Text = ""; TxtSalario.Text = ""; TxtArea.Text = ""; TxtNombre.Text = ""; TxtCiudad.Text = ""; Txtcodigo.Focus(); }
private void Completar_tipo_cliente() { if (Txtcodigo.Fun_SQL_Buscar_CodigoRegistro("cxcdbftipocliente", "idtipocliente")) { DataSet ds = Txtcodigo._Dataset; Txtdescripcion.Text = ds.Tables[0].Rows[0]["descripcion"].ToString(); LblEstado.Text = Funciones_Duke4.Funciones.Fun_Buscar_Estado_Registro(Funciones_Duke4.Funciones.Fun_Convierte_String_aEntrero(ds.Tables[0].Rows[0]["nulo"].ToString()), _ActivateParameter); } else { Funciones_Duke4.Funciones.Fun_Limpiar_Formulario(MainPanel); } }
protected override void Modificar() { base.Modificar(); Txtcodigo.Enabled = true; Btnbuscar.Visible = true; Txtdecimal.Enabled = true; Dtpingreso.Enabled = true; mskCedula1.Enabled = true; Txtcorreo.Enabled = true; Cmbsexo.Enabled = true; Ckbestado.Enabled = true; groupBox1.Enabled = true; msktelefono.Enabled = true; Txtcodigo.Focus(); }
protected override void Consultar() { base.Consultar(); Txtdecimal.Enabled = false; Dtpingreso.Enabled = false; mskCedula1.Enabled = false; Txtcorreo.Enabled = false; groupBox1.Enabled = false; Cmbsexo.Enabled = false; Ckbestado.Enabled = false; msktelefono.Enabled = false; Txtcodigo.Enabled = true; Btnbuscar.Visible = true; Txtcodigo._IgnorarNulo = true; Txtcodigo.Focus(); }
private void Estudiante() { if (Txtcodigo.Fun_SQL_Buscar_CodigoRegistro("prudbfestudiante", "idestudiante")) { DataSet ds = Txtcodigo._Dataset; Txtdescripcion.Text = ds.Tables[0].Rows[0]["descripcion"].ToString(); Txtcorreo.Text = ds.Tables[0].Rows[0]["correo"].ToString(); Txtdecimal.Text = ds.Tables[0].Rows[0]["balance"].ToString(); msktelefono.Text = ds.Tables[0].Rows[0]["telefono"].ToString(); mskCedula1.Text = ds.Tables[0].Rows[0]["cedula"].ToString(); Cmbsexo.SelectedValue = ds.Tables[0].Rows[0]["sexo"].ToString(); Ckbestado.Text = ds.Tables[0].Rows[0]["nulo"].ToString(); //LblEstado.Text = Funciones_Duke4.Funciones.Fun_Buscar_Estado_Registro(Funciones_Duke4.Funciones.Fun_Convierte_String_aEntrero(ds.Tables[0].Rows[0]["nulo"].ToString()), _ActivateParameter); } else { Funciones_Duke4.Funciones.Fun_Limpiar_Formulario(MainPanel); } }
private void Btnagregar_Click(object sender, EventArgs e) { NOrden Producto = new NOrden(); string Nombre = Producto.NombreProducto(Txtcodigo.Text); if (string.IsNullOrEmpty(Nombre) && string.IsNullOrEmpty(Txtnombre.Text)) { MessageBox.Show("Debe suministrar un nombre para crear el producto"); } else { bool Existe = false; int NumFila = 0; if (Cont == 0) { if (string.IsNullOrEmpty(Nombre)) { Nombre = Txtnombre.Text; } DTVDetalle.Rows.Add(Txtcodigo.Text, Nombre, Txtcantidad.Text, Txtvalor.Text); double Total = Convert.ToDouble(DTVDetalle.Rows[Cont].Cells[2].Value) * Convert.ToDouble(DTVDetalle.Rows[Cont].Cells[3].Value); DTVDetalle.Rows[Cont].Cells[4].Value = Total; Cont++; Txtcodigo.Clear(); Txtnombre.Clear(); Txtcantidad.Clear(); Txtvalor.Clear(); } else { foreach (DataGridViewRow Fila in DTVDetalle.Rows) { if (Fila.Cells[0].Value.ToString() == Txtcodigo.Text) { Existe = true; NumFila = Fila.Index; } } if (Existe == true) { DTVDetalle.Rows[NumFila].Cells[2].Value = (Convert.ToDouble(Txtcantidad.Text) + Convert.ToDouble(DTVDetalle.Rows[NumFila].Cells[2].Value)).ToString(); DTVDetalle.Rows[NumFila].Cells[3].Value = (Convert.ToDouble(Txtvalor.Text) + Convert.ToDouble(DTVDetalle.Rows[NumFila].Cells[3].Value)).ToString(); double Total = Convert.ToDouble(DTVDetalle.Rows[NumFila].Cells[2].Value) * Convert.ToDouble(DTVDetalle.Rows[NumFila].Cells[3].Value); DTVDetalle.Rows[NumFila].Cells[4].Value = Total; Txtcodigo.Clear(); Txtnombre.Clear(); Txtcantidad.Clear(); Txtvalor.Clear(); } else { if (string.IsNullOrEmpty(Nombre)) { Nombre = Txtnombre.Text; } DTVDetalle.Rows.Add(Txtcodigo.Text, Nombre, Txtcantidad.Text, Txtvalor.Text); double Total = Convert.ToDouble(DTVDetalle.Rows[Cont].Cells[2].Value) * Convert.ToDouble(DTVDetalle.Rows[Cont].Cells[3].Value); DTVDetalle.Rows[Cont].Cells[4].Value = Total; Cont++; Txtcodigo.Clear(); Txtnombre.Clear(); Txtcantidad.Clear(); Txtvalor.Clear(); } } TotalO = 0; foreach (DataGridViewRow Fila in DTVDetalle.Rows) { TotalO += Convert.ToDouble(Fila.Cells[4].Value); } Lbltotal.Text = TotalO.ToString(); Txtcodigo.Focus(); } }