ArcGIS10,然后就使用VS创建一个简单的AE应用程序,然后拖放一个toolbar.LicenseControl以及MapControl控件. 接着编译应用程序,编译成功. 然后单击F5运行程序,这个时候程序报错,出现下面所示的错误: ArcGIS version not specified. You must call RuntimeManager.Bind before creating any ArcGIS components. 问题解决方案: 在系统的入口添加下面的一行代码: ES…
ArcGIS10+版本,使用VS创建一个简单的AE应用程序,然后拖放一个toolbar.LicenseControl以及MapControl控件. 接着编译应用程序,编译成功. 然后单击F5运行程序,这个时候程序报错,出现下面所示的错误: ArcGIS version not specified. You must call RuntimeManager.Bind before creating any ArcGIS components. 问题解决方案: 在系统的入口添加下面的一行代码: ES…
[网络转载] 今天将ArcGIS系列的软件从ArcGIS9.3.1升级到ArcGIS10,然后就使用VS创建一个简单的AE应用程序,然后拖放一个toolbar.LicenseControl以及MapControl控件. 接着编译应用程序,编译成功. 然后单击F5运行程序,这个时候程序报错,出现下面所示的错误: ArcGIS version not specified. You must call RuntimeManager.Bind before creating any ArcGIS com…
问题描述:程序报错“ArcGIS version not specified. You must call RuntimeManager.Bind before creating any ArcGIS components.” 解决方法:打开program.cs. 把ESRI.ArcGIS.RuntimeManager.Bind(ESRI.ArcGIS.ProductCode.EngineOrDesktop); 放到Application.SetCompatibleTextRenderingDe…
在Program.cs中添加ESRI.ArcGIS.RuntimeManager.Bind(ESRI.ArcGIS.ProductCode.EngineOrDesktop);如下 static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); ESRI.ArcGIS.RuntimeManager.Bind(ESRI.ArcGIS.Product…
打开program.cs把ESRI.ArcGIS.RuntimeManager.Bind(ESRI.ArcGIS.ProductCode.EngineOrDesktop);这句放到Application.SetCompatibleTextRenderingDefault(false);和Application.Run(new Form1());之间应该就好了…
问题 在调用arcgis10 的ISurface用来取指定航线的地形时,这段代码在加载.dem时总是出错. 报: Fail to open raster dataset 解决方法: 在窗体中加载Mapcontrol控件即可 问题 1.ArcGIS version not specified. 解决方法: ArcGIS version not specified. You must call RuntimeManager.Bind before creating any ArcGIS compon…
“System.Runtime.InteropServices.COMException”类型的未经处理的异常在 Arcgis_Test.exe 中发生 其他信息: ArcGIS product not specified. You must first bind to an ArcGIS version prior to using any ArcGIS components. 解决办法:添加 ESRI.ArcGIS.RuntimeManager.Bind(ESRI.ArcGIS.Produc…
“System.DllNotFoundException”类型的未经处理的异常在 ESRI.ArcGIS.Version.dll 中发生 其他信息: 无法加载 DLL“ArcGISVersion.dll”: 找不到指定的模块. (异常来自 HRESULT:0x8007007E).…
“System.Runtime.InteropServices.COMException”类型的第一次机会异常在 ESRI.ArcGIS.Version.dll 中发生 其他信息: The specified product or version does not exist on this machine. 如有适用于此异常的处理程序,该程序便可安全地继续运行. 解决思路: 本人尚未解决,发现问题的原因可能和ArcGIS组件的dll版本有关.…