Message 1 of 2
C++ CLI getting started, what to #include?!!

Not applicable
09-08-2009
11:46 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
hi
I have C++ CLI project. I need to manipulate an autocad drawing. I've added reference to autocad 2009 type Library. I've written the code bellow:
acadApplication ^_App = gcnew acadApplication();
acadDocument ^_doc = _App->Documents->items[ 0 ];
next i write
_doc->ModelSpace->
but Intellisense doesn't show anything else. I guess I need to #include a header file, but I don't know what.
Any help would be most appreciated.
I have C++ CLI project. I need to manipulate an autocad drawing. I've added reference to autocad 2009 type Library. I've written the code bellow:
acadApplication ^_App = gcnew acadApplication();
acadDocument ^_doc = _App->Documents->items[ 0 ];
next i write
_doc->ModelSpace->
but Intellisense doesn't show anything else. I guess I need to #include a header file, but I don't know what.
Any help would be most appreciated.