private void button2_Click(object sender, EventArgs e) { EstoqueRapido rap = new EstoqueRapido(); rap.ShowDialog(); }
private void Menu_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode.ToString() == "F1") { CadProdutos cad = new CadProdutos(); cad.ShowDialog(); } if (e.KeyCode.ToString() == "F2") { AlterarProd alt = new AlterarProd(); alt.ShowDialog(); } if (e.KeyCode.ToString() == "F3") { Estoque est = new Estoque(); est.ShowDialog(); } if (e.KeyCode.ToString() == "F4") { AlterarProd altEs = new AlterarProd(); altEs.ShowDialog(); } if (e.KeyCode.ToString() == "F5") { Caixa caixa = new Caixa(); caixa.ShowDialog(); } if (e.KeyCode.ToString() == "F6") { EstoqueRapido cad = new EstoqueRapido(); cad.ShowDialog(); } if (e.KeyCode.ToString() == "F7") { CadFuncionario func = new CadFuncionario(); func.ShowDialog(); } if (e.KeyCode.ToString() == "F8") { CadastrarFornecedores forn = new CadastrarFornecedores(); forn.ShowDialog(); } if (e.KeyCode.ToString() == "F9") { AltFornecedor alt = new AltFornecedor(); alt.ShowDialog(); } if (e.KeyCode.ToString() == "F10") { PedidoFornecedor ped = new PedidoFornecedor(); ped.ShowDialog(); } if (e.KeyCode.ToString() == "F11") { Relatorio rel = new Relatorio(); rel.ShowDialog(); } }