Пример #1
0
 public Form_VisualFactura(string buscar, string menu, Form_Vendedores formvend)
 {
     this.negocioVendedor = new VendedorN();
     this.InitializeComponent();
     this.busqueda        = buscar;
     this.menub           = menu;
     this.form_Vendedores = formvend;
     this.Visual();
 }
Пример #2
0
 private void menu_vendedormes_Click(object sender, EventArgs e)
 {
     if (this.MdiChildren.Length == 0)
     {
         Form_Vendedores frm = new Form_Vendedores();
         frm.MdiParent = this;
         frm.Show();
     }
 }