Exemplo n.º 1
0
        private void toolStripMenuRWIS_Click(object sender, EventArgs e)
        {
            System.DirectoryServices.ActiveDirectory.Domain usrDom;
            bool allowForm = false;

            try
            {
                usrDom = System.DirectoryServices.ActiveDirectory.Domain.GetComputerDomain();
                if (usrDom.Name != "bor.doi.net")
                {
                    System.Windows.Forms.MessageBox.Show("RWIS Management Interface only available within the DOI-USBR network...");
                }
                else
                {
                    allowForm = true;
                }
            }
            catch
            {
                System.Windows.Forms.MessageBox.Show("RWIS Management Interface only available within the DOI-USBR network...");
                toolStripMenuRWIS.Enabled = false;
            }

            if (allowForm)
            {
                var f = new Rwis.Sync.rwisForm();
                f.DB = this.DB;
                f.ShowDialog();
            }
        }
Exemplo n.º 2
0
        private void toolStripMenuRWIS_Click(object sender, EventArgs e)
        {
            System.DirectoryServices.ActiveDirectory.Domain usrDom;
            bool allowForm = false;
            try
            {
                usrDom = System.DirectoryServices.ActiveDirectory.Domain.GetComputerDomain();
                if (usrDom.Name != "bor.doi.net")
                { System.Windows.Forms.MessageBox.Show("RWIS Management Interface only available within the DOI-USBR network..."); }
                else
                { allowForm = true; }
            }
            catch
            {
                System.Windows.Forms.MessageBox.Show("RWIS Management Interface only available within the DOI-USBR network...");
                toolStripMenuRWIS.Enabled = false;
            }

            if (allowForm)
            {
                var f = new Rwis.Sync.rwisForm();
                f.DB = this.DB;
                f.ShowDialog();
            }
        }