ArcGIS10 小程序试验

最近要 ArcGIS Engine10 处理管线数据, 先做个小东东,不想就几个控件几行代码,首次运行,抛出:   

ArcGIS10:ArcGIS version not specified. You must call RuntimeManager.Bind before creating any ArcGIS;

上网游走一圈问题解决:    在系统的入口添加下面的一行代码:

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

当然上面这样代码也可以添加到其他的适合的位置,本人感觉放到程序的入口最合适。异常: <wbr>ArcGIS10:ArcGIS <wbr>version <wbr>not <wbr>specified. <wbr>You <wbr>must <wbr>call <wbr>RuntimeManager.Bind <wbr>before <wbr>creating


这时此起彼伏呀,这个问题搞解决再次抛出:The specified path is invalid

 折腾一会解决:少了AxLicenseControl 控件!  加上就好了 !

你可能感兴趣的:(ArcGIS)