<?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: Link to Excel 2000 in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Link-to-Excel-2000/m-p/980199#M25911</link>
    <description>This is only a guess based on your last meaning: The problem may have to do with single/multiple reentrancy libraries. Have you copied the VF run-time support libraries (DFORRT.DLL and DFORMD.DLL) to the computer which is running your application where CVF is NOT present? See here: &lt;A href="http://www.compaq.com/fortran/visual/redist.html"&gt;here&lt;/A&gt;.  &lt;BR /&gt;  &lt;BR /&gt;Regards,  &lt;BR /&gt;Sabalan.</description>
    <pubDate>Wed, 16 Jan 2002 19:47:52 GMT</pubDate>
    <dc:creator>sabalan</dc:creator>
    <dc:date>2002-01-16T19:47:52Z</dc:date>
    <item>
      <title>Link to Excel 2000</title>
      <link>https://community.intel.com/t5/Software-Archive/Link-to-Excel-2000/m-p/980198#M25910</link>
      <description>A couple of yers ago I wrote CVF application that interacts with an Excel spreadsheet, and it has worket perfectly eversince. We recently installed a new workstation, and installed Excel 2000 and the application didnt work any more. In  the previous computers, Excel 2000 had been installed on top of Excel 97, and so I suspected that ther was some change in the Excel object model or in some DLL between 97 and 2000. I uninstalled 2000 on the new workstation, installed 97 and then reinstalled 2000 on top of it and everything worked perfectly. &lt;BR /&gt;Just to make sure I compiled the Autodice example and get exactly the same problem: it only works if Excel 97 has been installed on the machine. &lt;BR /&gt;Strangely enough, it seems that when CVF is also present the problem does not show up, i.e. Autodice works even on Excel 2000. &lt;BR /&gt; &lt;BR /&gt;Can you give me a fix? I hate to think that I will have to keep a copy of Excel 97 around forever so that I can run the application ... &lt;BR /&gt; &lt;BR /&gt;Thanks and regards, &lt;BR /&gt; &lt;BR /&gt;Marcello Cattaneo</description>
      <pubDate>Wed, 16 Jan 2002 05:28:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Link-to-Excel-2000/m-p/980198#M25910</guid>
      <dc:creator>marcellocattaneo</dc:creator>
      <dc:date>2002-01-16T05:28:53Z</dc:date>
    </item>
    <item>
      <title>Re: Link to Excel 2000</title>
      <link>https://community.intel.com/t5/Software-Archive/Link-to-Excel-2000/m-p/980199#M25911</link>
      <description>This is only a guess based on your last meaning: The problem may have to do with single/multiple reentrancy libraries. Have you copied the VF run-time support libraries (DFORRT.DLL and DFORMD.DLL) to the computer which is running your application where CVF is NOT present? See here: &lt;A href="http://www.compaq.com/fortran/visual/redist.html"&gt;here&lt;/A&gt;.  &lt;BR /&gt;  &lt;BR /&gt;Regards,  &lt;BR /&gt;Sabalan.</description>
      <pubDate>Wed, 16 Jan 2002 19:47:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Link-to-Excel-2000/m-p/980199#M25911</guid>
      <dc:creator>sabalan</dc:creator>
      <dc:date>2002-01-16T19:47:52Z</dc:date>
    </item>
    <item>
      <title>Re: Link to Excel 2000</title>
      <link>https://community.intel.com/t5/Software-Archive/Link-to-Excel-2000/m-p/980200#M25912</link>
      <description>Thanks for the suggestion. I've just tried to substitute the old support library DLL's with new ones (dated 06/01) but it didnt help. &lt;BR /&gt; &lt;BR /&gt;regards, marcello</description>
      <pubDate>Thu, 17 Jan 2002 00:13:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Link-to-Excel-2000/m-p/980200#M25912</guid>
      <dc:creator>marcellocattaneo</dc:creator>
      <dc:date>2002-01-17T00:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: Link to Excel 2000</title>
      <link>https://community.intel.com/t5/Software-Archive/Link-to-Excel-2000/m-p/980201#M25913</link>
      <description>Hi,  &lt;BR /&gt;Do not know if this is going to help you but I have been using Autodice without proplems on both Excel 97 and excel2000. One thing you need to be aware of is to change the excel.application.number. You can find the correct number by doing a search on your computer with excel*.olb. However if you are distributing your application to users who may have either 97 or 2000 version you may need to incorporate both. &lt;BR /&gt;Thanks &lt;BR /&gt;&lt;PRE&gt; &lt;BR /&gt;	! Create an Excel object &lt;BR /&gt;	  CALL COMINITIALIZE(status) &lt;BR /&gt;      CALL COMCREATEOBJECT ("Excel.Application.8", excelapp, status) &lt;BR /&gt; 	  IF (excelapp == 0) THEN &lt;BR /&gt;	  CALL COMCREATEOBJECT ("Excel.Application.9", excelapp, status) &lt;BR /&gt;		IF (excelapp == 0) THEN &lt;BR /&gt;		  WRITE (*, '(" Unable to create Excel object; Aborting")') &lt;BR /&gt;		  CALL EXIT() &lt;BR /&gt;		  endif &lt;BR /&gt;	  END IF &lt;BR /&gt;      CALL $Application_SetVisible(excelapp, .TRUE.) &lt;BR /&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 17 Jan 2002 03:43:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Link-to-Excel-2000/m-p/980201#M25913</guid>
      <dc:creator>sumitm</dc:creator>
      <dc:date>2002-01-17T03:43:29Z</dc:date>
    </item>
  </channel>
</rss>

