Example #1
0
 public frmSpatialReference()
 {
     if (CatalogLicenseProviderCheck.Check())
     {
         this.InitializeComponent();
     }
 }
Example #2
0
 public ExportToTABControl()
 {
     if (CatalogLicenseProviderCheck.Check())
     {
         this.InitializeComponent();
     }
 }
Example #3
0
 public CASSDataConvertControl()
 {
     if (CatalogLicenseProviderCheck.Check())
     {
         this.InitializeComponent();
     }
 }
Example #4
0
 public frmGeoDBDataTransfer()
 {
     if (CatalogLicenseProviderCheck.Check())
     {
         this.InitializeComponent();
     }
 }
Example #5
0
 public frmNewArcGISServer93()
 {
     if (CatalogLicenseProviderCheck.Check())
     {
         this.InitializeComponent();
     }
 }
Example #6
0
 public frmAddGDBConnection()
 {
     if (CatalogLicenseProviderCheck.Check())
     {
         this.InitializeComponent();
         this.lblVersion.Tag = "DEFAULT";
     }
 }
Example #7
0
 public frmObjectClass()
 {
     if (CatalogLicenseProviderCheck.Check())
     {
         this.InitializeComponent();
         ObjectClassHelper.CreateOCHelper();
     }
 }
Example #8
0
 public frmOpenFile()
 {
     if (CatalogLicenseProviderCheck.Check())
     {
         this.InitializeComponent();
         base.TopMost  = true;
         this.string_1 = System.IO.Path.Combine(Application.StartupPath, "Location.dat");
         if (File.Exists(this.string_1))
         {
             StreamReader reader = File.OpenText(this.string_1);
             m_pStartingLocation = reader.ReadLine();
             reader.Close();
         }
     }
 }