コード例 #1
0
ファイル: PiscesForm.cs プロジェクト: woohn/Pisces
        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();
            }
        }
コード例 #2
0
ファイル: PiscesForm.cs プロジェクト: usbr/Pisces
        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();
            }
        }