upgrading .NET application from MapPoint 2004 to 2009...

Posted by Joshua on Stack Overflow See other posts from Stack Overflow or by Joshua
Published on 2010-02-16T22:43:55Z Indexed on 2010/03/28 9:03 UTC
Read the original article Hit count: 617

Filed under:
|
|
|

I am in the process of upgrading a Visual Studio 2005 .NET (C#) application from it's integration with MapPoint 2004 to supporting MapPoint 2009. After a bit of searching and fiddling, I've generated new DLLs using "tldimp" and "aximp" and now have Interop.MapPoint.dll and AxInterop.MapPoint.dll and the namespaces seem to line up to the previous ones, so all the object definitions are available.

However, I have lots of errors telling me that various properties do not exist, even though I go into the Object Browser, and they do seem to exist.

Here is an example (there are dozens of similar errors)...

axMappointControl1.ActiveMap.Altitude = 1000;

That object initializes fine, as a MapPoint.Map object, which when I browse to in the Object Browser, I go to MapPoint and Map and under Map there are no properties but when I look deeper there is _Map80 and _Map90 and EACH of these has an Altitude property. Under Map it also lists "Base Types", which has _Map in it which also has all the referenced properties! Yet, I am getting the error:

"MapPoint.Map' does not contain a definition for 'Altitude'

Pretty much all the properties of both MapPoint.Map and MapPoint.Toolbars are doing this. Any ideas?

Thank you! Joshua

© Stack Overflow or respective owner

Related posts about mappoint

Related posts about upgrade