程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> ArcGIS10+:ArcGIS version not specified. You must call RuntimeManager.Bind before creating any ArcGIS,arcgis10.2安裝教程

ArcGIS10+:ArcGIS version not specified. You must call RuntimeManager.Bind before creating any ArcGIS,arcgis10.2安裝教程

編輯:C#入門知識

ArcGIS10+:ArcGIS version not specified. You must call RuntimeManager.Bind before creating any ArcGIS,arcgis10.2安裝教程


今天將ArcGIS系列的軟件從ArcGIS9.3.1升級到ArcGIS10,然後就使用VS創建一個簡單的AE應用程序,然後拖放一個toolbar、LicenseControl以及MapControl控件。

接著編譯應用程序,編譯成功。

然後單擊F5運行程序,這個時候程序報錯,出現下面所示的錯誤:

ArcGIS version not specified. You must call RuntimeManager.Bind before creating any ArcGIS components.

問題解決方案:

在系統的入口添加下面的一行代碼:

ESRI.ArcGIS.RuntimeManager.Bind(ESRI.ArcGIS.ProductCode.EngineOrDesktop);

當然上面這樣代碼也可以添加到其他的適合的位置,本人感覺放到程序的入口最合適

這裡還需要添加一個Reference:ESRI.ArcGIS.Version

完整的參考代碼如下所示:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            ESRI.ArcGIS.RuntimeManager.Bind(ESRI.ArcGIS.ProductCode.EngineOrDesktop);
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }
    }
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved