public SaidaMovimento(int id, Estabelecimentos est, ConfigMovimento config, Funcionarios fun, Form tela) { InitializeComponent(); groupBox4.TabStop = false; rbInteiro.TabStop = false; rbManual.TabStop = false; rbProporcional.TabStop = false; rbZero.TabStop = false; this.est = est; // Estabelecimento this.config = config; // Configuração de Movimento this.fun = fun; // Funcionário telaMov = (TelaPrincipal)tela; // Tela de Movimento CarregaServico(); CarregaFormaPagamento(); CarregaFaturaExcedentePadrao(); //busca um movimento caso venha um ID if (id != 0) { obj = mDAO.GetById(id); PreencheMovimento(); } //ok }