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

Last question :)

Anonymous
Not applicable
Hi!
I Finally succeeded to develop the add-on I wanted to develop for such a long time

BUT:
Im working in a local network with a few computers that use Archicad.
So I copied the apx file to one of the other computers on the network, and when I opened Archicad it said:
"This add-on is an outdated file..." I guess you know the rest.
Why is that?
does it have anything with the network?
how can I solve it?

Lots of thanks!
4 REPLIES 4
Ralph Wessel
Mentor
zanzibar wrote:
when I opened Archicad it said:
"This add-on is an outdated file..." I guess you know the rest.
Why is that?
Perhaps you linked the add-on against a library that doesn't exist on the other machine?
Ralph Wessel BArch
Anonymous
Not applicable
Could you please be more specific?
What kind of libraries could be linkedfor example?
Ralph Wessel
Mentor
zanzibar wrote:
Could you please be more specific?
What kind of libraries could be linkedfor example?
Your add-on may be linked against 3rd party libraries (DLLs) to add specific functionality. If you don't know what I mean, then that probably isn't the case. Alternatively (in Windows), your add-on might be linked against the debug version of the MS runtime library (MSVCRTD.lib), which is generally only installed with Visual Studio.
Ralph Wessel BArch
Anonymous
Not applicable
Thank you so much!!!!