Inheritance: JanusBaseForm
Exemple #1
0
        private static bool CheckEnvironment()
        {
            if (Environment.Version < new Version(2, 0, 50727, 1433))
            {
                using (var frm = new SP1RequiredForm())
                    frm.ShowDialog();
                return(false);
            }

            return(true);
        }
Exemple #2
0
		private static bool CheckEnvironment()
		{
			if (Environment.Version < new Version(2, 0, 50727, 1433))
			{
				using (var frm = new SP1RequiredForm())
					frm.ShowDialog();
				return false;
			}

			return true;
		}