Example #1
0
        private void AtualizarGrid()
        {
            v_Pendencias v = Application.OpenForms["v_Pendencias"] as v_Pendencias;

            if (v != null)
            {
                v.CarregarPendencias();
            }
        }
Example #2
0
        private void bbiPendencias_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            v_Pendencias v_pendencias = new v_Pendencias(_usuario, _permissao);

            v_pendencias.ShowDialog();
        }