private void _Dg_Grid_CellClick(object sender, DataGridViewCellEventArgs e) { if (_Dg_Grid.CurrentCell != null) { if (e.RowIndex != -1 & e.ColumnIndex != -1) { if (_Dg_Grid.Columns[e.ColumnIndex].Name == "Buscar") { TextBox _Txt_Temp = new TextBox(); Cursor = Cursors.WaitCursor; Frm_BusquedaAvanzada2 _Frm = new Frm_BusquedaAvanzada2(_Txt_Temp, new TextBox(), "", Convert.ToString(_Txt_Proveedor.Tag).Trim()); Cursor = Cursors.Default; _Frm.ShowDialog(this); if (_Txt_Temp.Text.Trim().Length > 0) { _Mtd_InsertarProducto(_Txt_Temp.Text.Trim(), e.RowIndex); _Mtd_Totalizar(); _Dg_Grid.Columns["Cajas"].DefaultCellStyle.BackColor = Color.Khaki; if (e.RowIndex == _Dg_Grid.RowCount - 1) { _Dg_Grid.Rows.Add(); } } } } } }
private void _Bt_Hasta_Click(object sender, EventArgs e) { if (_Txt_Desde.Text.Trim().Length > 0) { Cursor = Cursors.WaitCursor; Frm_BusquedaAvanzada2 _Frm = new Frm_BusquedaAvanzada2(_Txt_Hasta, new TextBox(), " AND cproducto>'" + _Txt_Desde.Text.Trim() + "'", Convert.ToString(_Txt_Proveedor.Tag).Trim()); Cursor = Cursors.Default; _Frm.ShowDialog(this); } else { MessageBox.Show("Debe seleccionar ingresar datos en el cuadro de texto 'Desde' para seleccionar esta opción", "Requerimiento", MessageBoxButtons.OK, MessageBoxIcon.Information); } }
private void _Bt_Desde_Click(object sender, EventArgs e) { if (_Txt_Proveedor.Text.Trim().Length > 0) { string _Str_Desde = _Txt_Desde.Text; Cursor = Cursors.WaitCursor; Frm_BusquedaAvanzada2 _Frm = new Frm_BusquedaAvanzada2(_Txt_Desde, new TextBox(), "", Convert.ToString(_Txt_Proveedor.Tag).Trim()); Cursor = Cursors.Default; _Frm.ShowDialog(this); if (_Txt_Desde.Text.Trim() != _Str_Desde.Trim()) { _Txt_Hasta.Text = ""; } } else { MessageBox.Show("Debe elegir un proveedor para seleccionar esta opción"); } }