ArcEngine10:ArcGIS version not specified. You must call RuntimeManager.Bind before creating any ArcG...

在Program.cs中添加ESRI.ArcGIS.RuntimeManager.Bind(ESRI.ArcGIS.ProductCode.EngineOrDesktop);如下

1 static void Main()
2         {
3             Application.EnableVisualStyles();
4             Application.SetCompatibleTextRenderingDefault(false);
5 
6             ESRI.ArcGIS.RuntimeManager.Bind(ESRI.ArcGIS.ProductCode.EngineOrDesktop);
7 
8             Application.Run(new Form1());
9         }
View Code

 

转载于:https://www.cnblogs.com/fatherZyl/p/3319421.html

你可能感兴趣的:(ArcEngine10:ArcGIS version not specified. You must call RuntimeManager.Bind before creating any ArcG...)