Beispiel #1
0
        private void cadastrarToolStripMenuItem5_Click(object sender, EventArgs e)
        {
            LoginSistema sistema = new LoginSistema();

            String usuario = sistema.getUser(this.usuario);
            int    id_user = sistema.getId(this.usuario);

            Atendimento atendimento = new Atendimento(id_user, true, this);

            atendimento.txtUsuario.Text    = usuario.ToString();
            atendimento.txtUsuario.Enabled = false;
            atendimento.btnEditar.Visible  = false;
            atendimento.MdiParent          = this;
            atendimento.Show();
        }