C++ CLI getting started, what to #include?!!

C++ CLI getting started, what to #include?!!

Anonymous
Not applicable
417 Views
1 Reply
Message 1 of 2

C++ CLI getting started, what to #include?!!

Anonymous
Not applicable
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.
0 Likes
418 Views
1 Reply
Reply (1)
Message 2 of 2

Anonymous
Not applicable
Hi,

#using "acdbmgd.dll",

#using "acmgd.dll",
Edited by: FLaurent on Sep 15, 2009 7:08 AM
0 Likes