Archicad C++ API
About Archicad add-on development using the C++ API.

Who can give me an example of add-on what supports MFC?

Anonymous
Not applicable
just as the title.

Who can give me a simple example of add-on what supports or uses MFC?

Thanks a lot!

my email: weiqy@bjcks.com
2 REPLIES 2
Ralph Wessel
Mentor
wcyoot wrote:
Who can give me a simple example of add-on what supports or uses MFC?
I wouldn't recommend using MFC for plugin development, and I doubt you will get any examples of it. A plugin is not an application, and therefore does not have the freedom to do things MFC might assume are possible. You will certainly have problems if you use it for the UI, e.g. you will not be able to integrate API controls for attributes like pens, materials, etc. Your best bet is to build your plug-in on the ArchiCAD API.

Which features of MFC do you hope to use?
Ralph Wessel BArch

I want use some MFC variable, such as CArray、CString and so on. How to support it。

 

Thanks for much!