<?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: Module generated by the Module Wizard won't compile - MS AS in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Module-generated-by-the-Module-Wizard-won-t-compile-MS-ASO-2-6/m-p/838242#M56459</link>
    <description>Sorry, the title should have been MS ADO 2.6, not ASO.</description>
    <pubDate>Thu, 07 Jul 2005 22:44:08 GMT</pubDate>
    <dc:creator>monarchi</dc:creator>
    <dc:date>2005-07-07T22:44:08Z</dc:date>
    <item>
      <title>Module generated by the Module Wizard won't compile - MS ASO 2.6</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Module-generated-by-the-Module-Wizard-won-t-compile-MS-ASO-2-6/m-p/838241#M56458</link>
      <description>I used the module wizard to generate a module for Microsoft ActiveX Data Objects 2.6 Library (msado26.tlb). When I try to compile the module, I get the following error 8 times.&lt;BR /&gt;&lt;BR /&gt;Error: There is no matching specific subroutine for this generic subroutine call. [AUTOADDARG]&lt;BR /&gt;&lt;BR /&gt;The lines of code that it occurs on are similar to the following.&lt;BR /&gt;&lt;BR /&gt;CALL AUTOADDARG(invokeargs, 'NumericScale', $RETURN, AUTO_ARG_OUT)&lt;BR /&gt;&lt;BR /&gt;What am I missing here?  Is some step necessary between creating the module and compiling it?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance,&lt;BR /&gt;david</description>
      <pubDate>Thu, 07 Jul 2005 22:41:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Module-generated-by-the-Module-Wizard-won-t-compile-MS-ASO-2-6/m-p/838241#M56458</guid>
      <dc:creator>monarchi</dc:creator>
      <dc:date>2005-07-07T22:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: Module generated by the Module Wizard won't compile - MS AS</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Module-generated-by-the-Module-Wizard-won-t-compile-MS-ASO-2-6/m-p/838242#M56459</link>
      <description>Sorry, the title should have been MS ADO 2.6, not ASO.</description>
      <pubDate>Thu, 07 Jul 2005 22:44:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Module-generated-by-the-Module-Wizard-won-t-compile-MS-ASO-2-6/m-p/838242#M56459</guid>
      <dc:creator>monarchi</dc:creator>
      <dc:date>2005-07-07T22:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: Module generated by the Module Wizard won't compile - MS AS</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Module-generated-by-the-Module-Wizard-won-t-compile-MS-ASO-2-6/m-p/838243#M56460</link>
      <description>What compiler and version are you using?  I just tried this with Intel Visual Fortran 9.0 and it worked ok.&lt;BR /&gt;&lt;BR /&gt;The error means that the arguments in the call don't match, by number, datatype or kind, those of any of the procedures in the generic interface.</description>
      <pubDate>Fri, 08 Jul 2005 00:14:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Module-generated-by-the-Module-Wizard-won-t-compile-MS-ASO-2-6/m-p/838243#M56460</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2005-07-08T00:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: Module generated by the Module Wizard won't compile - MS AS</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Module-generated-by-the-Module-Wizard-won-t-compile-MS-ASO-2-6/m-p/838244#M56461</link>
      <description>Sorry, Steve.  I should have included that information.&lt;BR /&gt;&lt;BR /&gt;I'm using  Version 9.0.2713.2003 with VS.Net 2003 Professional/Academic.  The OS is XP Pro with all current updates/patches.&lt;BR /&gt;&lt;BR /&gt;What library contains AUTOADDARG?  Perhaps I need to add something to the command line parameters or to the library list.&lt;BR /&gt;&lt;BR /&gt;Thanks for your help.&lt;BR /&gt;&lt;BR /&gt;david</description>
      <pubDate>Fri, 08 Jul 2005 00:26:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Module-generated-by-the-Module-Wizard-won-t-compile-MS-ASO-2-6/m-p/838244#M56461</guid>
      <dc:creator>monarchi</dc:creator>
      <dc:date>2005-07-08T00:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: Module generated by the Module Wizard won't compile - MS AS</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Module-generated-by-the-Module-Wizard-won-t-compile-MS-ASO-2-6/m-p/838245#M56462</link>
      <description>It's in IFAUTO, but the fact that you got the message about the generic tells you that it found the definition.  Do you have any non-default compiler options specified?  Did you just now generate this module or is it an old one you had lying around?&lt;BR /&gt;&lt;BR /&gt;What you need to do is look at the source of the module where these calls are made, determine the datatype and kind of each argument, and then compare that to the various specific procedures found in IFAUTO.F90 (in the INCLUDE folder) to see why the appropriate specific procedure was not matched.</description>
      <pubDate>Fri, 08 Jul 2005 00:44:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Module-generated-by-the-Module-Wizard-won-t-compile-MS-ASO-2-6/m-p/838245#M56462</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2005-07-08T00:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: Module generated by the Module Wizard won't compile - MS AS</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Module-generated-by-the-Module-Wizard-won-t-compile-MS-ASO-2-6/m-p/838246#M56463</link>
      <description>Thanks for the quick response, Steve.&lt;BR /&gt;&lt;BR /&gt;To the best of my knowledge, everything is as vanilla-flavored as it can be.  I created a new dummy solution yesterday just to try this out.  The solution, source file, and program are all named the same: DeleteDelete.  The body of the program consists of three non-comment lines:&lt;BR /&gt;&lt;BR /&gt;    program DeleteDelete&lt;BR /&gt;    implicit none&lt;BR /&gt;    ! Variables&lt;BR /&gt;&lt;BR /&gt;    ! Body of DeleteDelete&lt;BR /&gt;&lt;BR /&gt;    end program DeleteDelete&lt;BR /&gt;&lt;BR /&gt;The command line options are&lt;BR /&gt;/nologo /Zi /Od /module:"$(INTDIR)/" /object:"$(INTDIR)/" /traceback /check:bounds /libs:static /dbglibs /c&lt;BR /&gt;&lt;BR /&gt;I suspect I've overlooked something painfully obvious, but I don't see it.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;david</description>
      <pubDate>Fri, 08 Jul 2005 01:38:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Module-generated-by-the-Module-Wizard-won-t-compile-MS-ASO-2-6/m-p/838246#M56463</guid>
      <dc:creator>monarchi</dc:creator>
      <dc:date>2005-07-08T01:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: Module generated by the Module Wizard won't compile - MS AS</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Module-generated-by-the-Module-Wizard-won-t-compile-MS-ASO-2-6/m-p/838247#M56464</link>
      <description>Hmm.  Well, at this point, please submit an issue to Intel Premier Support, attach a ZIP of your project and ask that it be assigned to Steve Lionel.  I'll compare with my own test case and see what's up.&lt;BR /&gt;&lt;BR /&gt;I ran into an issue similar to this when using an older generated module, but regenerating the module made it go away.</description>
      <pubDate>Fri, 08 Jul 2005 01:50:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Module-generated-by-the-Module-Wizard-won-t-compile-MS-ASO-2-6/m-p/838247#M56464</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2005-07-08T01:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: Module generated by the Module Wizard won't compile - MS AS</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Module-generated-by-the-Module-Wizard-won-t-compile-MS-ASO-2-6/m-p/838248#M56465</link>
      <description>Hi Steve -&lt;BR /&gt;&lt;BR /&gt;I believe I've identified the cause, but I want to make certain I understand the problem.  Please bear with me for a moment.&lt;BR /&gt;&lt;BR /&gt;In creating the module with the wizard, there are 3 check boxes and a total of six combinations because some are constrained.&lt;BR /&gt;&lt;BR /&gt;I created and tried to compile all combinations with the following results:&lt;BR /&gt;&lt;BR /&gt;  Nothing checked - compiled&lt;BR /&gt;&lt;BR /&gt;  Generate code that uses Automation interfaces - did not compile&lt;BR /&gt;&lt;BR /&gt;  Generate DLLEXPORT statements - compiled&lt;BR /&gt;&lt;BR /&gt;  Automation interfaces and exception return status - did not   compile&lt;BR /&gt;&lt;BR /&gt;  Automation interfaces and DLLEXPORT statements - did not compile&lt;BR /&gt;&lt;BR /&gt;  Automation interfaces, exception return status, and DLLEXPORT statements - did not compile&lt;BR /&gt;&lt;BR /&gt;Clearly the problem is related to creating Automation interfaces.  &lt;BR /&gt;&lt;BR /&gt;Then I remember that I created this test as a console application.    Does that mean that I can't ask for the automation interfaces to be created even if I won't use them?&lt;BR /&gt;&lt;BR /&gt;Thanks for your patience.  I'm very old at Fortran (Fortran II in the 60s), but very, very new to the .COM and .NET world.&lt;BR /&gt;&lt;BR /&gt;Please let me know if I'm correct.  Thank you.&lt;BR /&gt;&lt;BR /&gt;cheers,&lt;BR /&gt;david</description>
      <pubDate>Fri, 08 Jul 2005 02:49:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Module-generated-by-the-Module-Wizard-won-t-compile-MS-ASO-2-6/m-p/838248#M56465</guid>
      <dc:creator>monarchi</dc:creator>
      <dc:date>2005-07-08T02:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: Module generated by the Module Wizard won't compile - MS AS</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Module-generated-by-the-Module-Wizard-won-t-compile-MS-ASO-2-6/m-p/838249#M56466</link>
      <description>David,&lt;BR /&gt;&lt;BR /&gt;I saw your report to Intel Premier Support and sent you a reply.  The problem is caused by a handful of Automation interfaces that return INTEGER(1) values.  Our automation library does not provide for that type.  I suggested a workaround, and will ask that the library be enhanced.</description>
      <pubDate>Fri, 08 Jul 2005 03:20:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Module-generated-by-the-Module-Wizard-won-t-compile-MS-ASO-2-6/m-p/838249#M56466</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2005-07-08T03:20:28Z</dc:date>
    </item>
  </channel>
</rss>

