<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: addon.apx not a valid win32 application in Archicad C++ API</title>
    <link>https://community.graphisoft.com/t5/Archicad-C-API/addon-apx-not-a-valid-win32-application/m-p/275492#M2437</link>
    <description>Thanks a lot!</description>
    <pubDate>Mon, 31 Aug 2020 09:19:48 GMT</pubDate>
    <dc:creator>dushyant</dc:creator>
    <dc:date>2020-08-31T09:19:48Z</dc:date>
    <item>
      <title>addon.apx not a valid win32 application</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/addon-apx-not-a-valid-win32-application/m-p/275485#M2430</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;Hello,&lt;BR /&gt;On trying to compile an addon on visual-studio-2017, I get the error: "addonName.apx is not a valid win32 application".. What's the problem here? (I have compiled this addon earlier and it worked.)&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;/DIV&gt;</description>
      <pubDate>Wed, 15 Sep 2021 07:47:11 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/addon-apx-not-a-valid-win32-application/m-p/275485#M2430</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2021-09-15T07:47:11Z</dc:date>
    </item>
    <item>
      <title>Re: addon.apx not a valid win32 application</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/addon-apx-not-a-valid-win32-application/m-p/275486#M2431</link>
      <description>In what context did you see this error? In a sense, the report is correct - an add-on is not an application.</description>
      <pubDate>Sat, 29 Aug 2020 12:43:31 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/addon-apx-not-a-valid-win32-application/m-p/275486#M2431</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2020-08-29T12:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: addon.apx not a valid win32 application</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/addon-apx-not-a-valid-win32-application/m-p/275487#M2432</link>
      <description>I get this error while trying to build the addon from the Visual-Studio-Solution..&lt;BR /&gt;</description>
      <pubDate>Sat, 29 Aug 2020 13:42:55 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/addon-apx-not-a-valid-win32-application/m-p/275487#M2432</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2020-08-29T13:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: addon.apx not a valid win32 application</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/addon-apx-not-a-valid-win32-application/m-p/275488#M2433</link>
      <description>I assume this was when you tried to debug or run the add-on? If so, you need to set the executable path for debugging to the Archicad application.</description>
      <pubDate>Sat, 29 Aug 2020 16:13:51 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/addon-apx-not-a-valid-win32-application/m-p/275488#M2433</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2020-08-29T16:13:51Z</dc:date>
    </item>
    <item>
      <title>Re: addon.apx not a valid win32 application</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/addon-apx-not-a-valid-win32-application/m-p/275489#M2434</link>
      <description>Can you please tell where exactly is this path to be set in Visual Studio?</description>
      <pubDate>Mon, 31 Aug 2020 05:00:27 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/addon-apx-not-a-valid-win32-application/m-p/275489#M2434</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2020-08-31T05:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: addon.apx not a valid win32 application</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/addon-apx-not-a-valid-win32-application/m-p/275490#M2435</link>
      <description>APX Add-Ons are dynamic librarys (DLL) on Windows platform so those cannot be executed.&lt;BR /&gt;
The executable is the ARCHICAD.exe, that will load your Add-On, so you should set the path of ARCHICAD.exe.&lt;BR /&gt;
After ARCHICAD was opened, you can load your Add-On from the Add-On Manager dialog (if it wasn't loaded yet).</description>
      <pubDate>Mon, 31 Aug 2020 08:24:44 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/addon-apx-not-a-valid-win32-application/m-p/275490#M2435</guid>
      <dc:creator>Tibor Lorantfy</dc:creator>
      <dc:date>2020-08-31T08:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: addon.apx not a valid win32 application</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/addon-apx-not-a-valid-win32-application/m-p/275491#M2436</link>
      <description>&lt;BLOCKQUOTE&gt;dushyant wrote:&lt;BR /&gt;
Can you please tell where exactly is this path to be set in Visual Studio?
&lt;/BLOCKQUOTE&gt;
In the project Properties, under the section Configuration Properties &amp;gt; Debugging &amp;gt; Command&lt;BR /&gt;
Just set a path to the target version of Archicad</description>
      <pubDate>Mon, 31 Aug 2020 09:04:37 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/addon-apx-not-a-valid-win32-application/m-p/275491#M2436</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2020-08-31T09:04:37Z</dc:date>
    </item>
    <item>
      <title>Re: addon.apx not a valid win32 application</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/addon-apx-not-a-valid-win32-application/m-p/275492#M2437</link>
      <description>Thanks a lot!</description>
      <pubDate>Mon, 31 Aug 2020 09:19:48 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/addon-apx-not-a-valid-win32-application/m-p/275492#M2437</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2020-08-31T09:19:48Z</dc:date>
    </item>
  </channel>
</rss>

