Message 1 of 4
Not applicable
10-19-2010
09:25 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have simple program that look like this
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Autodesk.Gis.Map.Platform.Interop;
using Autodesk.Gis.Map.Platform;
using Autodesk.AutoCAD.Runtime;
using OSGeo.MapGuide;
namespace probaAcMapMap
{
public class Class1
{
[CommandMethod("nesto")]
public void nesto()
{
AcMapMap map = AcMapMap.GetCurrentMap();
}
}
}
and I'm getting this exception "Failed to retrieve message for "MgInvalidArgumentException"."
This code is working just fine in 2010 and VS2008.
This code is builded with VS2010
Am I missing some reference or what?
Solved! Go to Solution.