Example #1
0
        private void vInitializeEvents(ref Formularios.frmCadastros formFCadastros)
        {
            // Carrega Interface
            formFCadastros.eCallCarregaInterface += new mdlCadastros.Formularios.frmCadastros.delCallCarregaInterface(formFCadastros_eCallCarregaInterface);

            // Carrega Botoes
            formFCadastros.eCallCarregaBotoes += new mdlCadastros.Formularios.frmCadastros.delCallCarregaBotoes(formFCadastros_eCallCarregaBotoes);
        }
Example #2
0
 public void Show()
 {
     m_formFCadastros           = new mdlCadastros.Formularios.frmCadastros(m_strEnderecoExecutavel);
     m_formFCadastros.MdiParent = m_formParent;
     vInitializeEvents(ref m_formFCadastros);
     m_formFCadastros.Show();
     m_formFCadastros.BringToFront();
 }