Exemplo n.º 1
0
        private void search_ButtonClick(object sender, EventArgs e)
        {
            CBClass.Controls.Search search = sender as CBClass.Controls.Search;

            switch (search.CBFormName)
            {
            case "categoria": categoria a = new categoria(true); a.ShowDialog(); break;

            case "autores": autores b = new autores(true); b.ShowDialog(); break;

            case "editora": editora c = new editora(true); c.ShowDialog(); break;
            }
            search.CBValue = Variables.returnValue.ToString();
            search.reload();
            Variables.returnValue = 0;
        }
Exemplo n.º 2
0
        private void ToolStrip_Click(object sender, EventArgs e)
        {
            Methods.saveFormProperties();
            this.Hide();
            switch ((sender as ToolStripMenuItem).Text)
            {
            case "Livros": livros a = new livros(); a.ShowDialog(); break;

            case "Leitores": leitores b = new leitores(); b.ShowDialog(); break;

            case "Requisitar": requisita c = new requisita(); c.ShowDialog(); break;

            case "Autores": autores d = new autores(); d.ShowDialog(); break;

            case "Categorias": categoria f = new categoria(); f.ShowDialog(); break;

            case "Editoras": editora g = new editora(); g.ShowDialog(); break;

            case "Funcionários": funcionarios h = new funcionarios(); h.ShowDialog(); break;
            }
        }