private void btnActualizar_Click(object sender, EventArgs e)
        {
            try
            {
                if (this.grillaProductos.SelectedRows != null)
                {
                    FrmProductos form  = new FrmProductos();
                    int          index = this.grillaProductos.SelectedRows[0].Index;
                    form.tipooperacion = "A";
                    form.producto_id   = Int32.Parse(this.grillaProductos.Rows[index].Cells["id"].Value.ToString());
                    var result = form.ShowDialog();

                    if (result == DialogResult.OK)
                    {
                        this.CargarGrilla();
                    }
                }
                else
                {
                    MessageBox.Show("Debe seleccionar un registro", "Información",
                                    MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
            }
            catch (Exception)
            {
                throw;
            }
        }
        private void btnNuevoProducto_Click(object sender, EventArgs e)
        {
            FrmProductos form = new FrmProductos();

            form.tipooperacion = "N";
            var result = form.ShowDialog();

            if (result == DialogResult.OK)
            {
                this.CargarGrilla();
            }
        }