<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Excel: Der Linker findet irgendeine Datei nicht]]></title><description><![CDATA[<p>Hallo,<br />
muß leider nerven: Bekomme laufend die Fehlermeldung<br />
<strong>[Linker Fatal Fehler] Fatal: Expected a file name.</strong> <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f621.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--pouting_face"
      title=":rage:"
      alt="😡"
    /></p>
<p>Schön und gut aber welche sagt er leider nicht. Habe in der FAQ alles schon rauf und runterprobiert, was die includes anbelangt. Das Dumme dieses Miniprogramm hatte ich bereits am Laufen.<br />
<strong>Kann jemand den entscheidenden Tipp geben?</strong><br />
Linker- u Compilerverzeichnisse BCB6 sind alle in Standardeinstellung belassen. (Excel ist aus Office 2k)</p>
<pre><code class="language-cpp">//h
#ifndef Unit1H
#define Unit1H
//---------------------------------------------------------------------------
#include &lt;Classes.hpp&gt;
#include &lt;Controls.hpp&gt;
#include &lt;StdCtrls.hpp&gt;
#include &lt;Forms.hpp&gt;
//---------------------------------------------------------------------------
class TForm1 : public TForm{
__published: 
  TButton *Button1;
  void __fastcall Button1Click(TObject *Sender);
..
};
extern PACKAGE TForm1 *Form1;
#endif
//---------------------
//cpp
#pragma hdrstop
#include &lt;utilcls.h&gt;
#include &quot;Unit1.h&quot;

#pragma package(smart_init)
#pragma resource &quot;*.dfm&quot;
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner): TForm(Owner){}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button1Click(TObject *Sender) {
  Variant V  = Variant::CreateObject(&quot;Excel.Application&quot;);
  V.OlePropertySet(&quot;Visible&quot;, true);
  ShowMessage(&quot;Excel has been launched and now is visible&quot;);
  V.OleFunction(&quot;Quit&quot;);
  V = Unassigned;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/191246/excel-der-linker-findet-irgendeine-datei-nicht</link><generator>RSS for Node</generator><lastBuildDate>Mon, 17 Aug 2026 16:27:03 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/191246.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 31 Aug 2007 17:04:11 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Excel: Der Linker findet irgendeine Datei nicht on Fri, 31 Aug 2007 17:04:11 GMT]]></title><description><![CDATA[<p>Hallo,<br />
muß leider nerven: Bekomme laufend die Fehlermeldung<br />
<strong>[Linker Fatal Fehler] Fatal: Expected a file name.</strong> <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f621.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--pouting_face"
      title=":rage:"
      alt="😡"
    /></p>
<p>Schön und gut aber welche sagt er leider nicht. Habe in der FAQ alles schon rauf und runterprobiert, was die includes anbelangt. Das Dumme dieses Miniprogramm hatte ich bereits am Laufen.<br />
<strong>Kann jemand den entscheidenden Tipp geben?</strong><br />
Linker- u Compilerverzeichnisse BCB6 sind alle in Standardeinstellung belassen. (Excel ist aus Office 2k)</p>
<pre><code class="language-cpp">//h
#ifndef Unit1H
#define Unit1H
//---------------------------------------------------------------------------
#include &lt;Classes.hpp&gt;
#include &lt;Controls.hpp&gt;
#include &lt;StdCtrls.hpp&gt;
#include &lt;Forms.hpp&gt;
//---------------------------------------------------------------------------
class TForm1 : public TForm{
__published: 
  TButton *Button1;
  void __fastcall Button1Click(TObject *Sender);
..
};
extern PACKAGE TForm1 *Form1;
#endif
//---------------------
//cpp
#pragma hdrstop
#include &lt;utilcls.h&gt;
#include &quot;Unit1.h&quot;

#pragma package(smart_init)
#pragma resource &quot;*.dfm&quot;
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner): TForm(Owner){}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button1Click(TObject *Sender) {
  Variant V  = Variant::CreateObject(&quot;Excel.Application&quot;);
  V.OlePropertySet(&quot;Visible&quot;, true);
  ShowMessage(&quot;Excel has been launched and now is visible&quot;);
  V.OleFunction(&quot;Quit&quot;);
  V = Unassigned;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1356301</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1356301</guid><dc:creator><![CDATA[thunderbol4]]></dc:creator><pubDate>Fri, 31 Aug 2007 17:04:11 GMT</pubDate></item><item><title><![CDATA[Reply to Excel: Der Linker findet irgendeine Datei nicht on Fri, 31 Aug 2007 17:51:45 GMT]]></title><description><![CDATA[<p>thunderbol4 schrieb:</p>
<blockquote>
<p>Habe in der FAQ alles schon rauf und runterprobiert</p>
</blockquote>
<p>Auch <a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-39196.htmlhttp://www.c-plusplus.net/forum/viewtopic-var-t-is-39196.html" rel="nofollow">den Thread</a>, dessen Titel sich genau auf deine Fehlermeldung bezieht!?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1356327</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1356327</guid><dc:creator><![CDATA[Jansen]]></dc:creator><pubDate>Fri, 31 Aug 2007 17:51:45 GMT</pubDate></item><item><title><![CDATA[Reply to Excel: Der Linker findet irgendeine Datei nicht on Fri, 31 Aug 2007 18:22:35 GMT]]></title><description><![CDATA[<p>Hallo <a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/52">@Jansen</a>, kann Deinen Link nicht lesen, ich denke Du meinst</p>
<blockquote>
<p>- der Installationspfad des BCB selbst sowie die Projektpfade sollten keine Verzeichnisse enthalten,<br />
deren Name mit '+' endet (wie zB. C++)<br />
- Pfade und Dateinamen sollten kein ' enthalten (Hochkomma/Apostroph)<br />
- Pfade und Dateinamen sollten kein - enthalten (Minus-Zeichen, kann in Verbindung mit dem<br />
nachfolgenden Buchstaben als Linker-Switch misinterpretiert werden)</p>
</blockquote>
<p>Hatte ich bereits gecheckt: Meine Pfade beginnen mit *<em>C:\Programme\Borland\CBuilder6*</em><br />
somit dürfte das Problem wo anders liegen.</p>
<p>Es muß was mit dem Excel zu tun haben. Alle anderen Programme werden ja ansonsten einwandfrei gelinkt ohne diesen Fehler.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1356354</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1356354</guid><dc:creator><![CDATA[thunderbol4]]></dc:creator><pubDate>Fri, 31 Aug 2007 18:22:35 GMT</pubDate></item><item><title><![CDATA[Reply to Excel: Der Linker findet irgendeine Datei nicht on Sat, 01 Sep 2007 09:20:55 GMT]]></title><description><![CDATA[<p>Hallo <a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/52">@Jansen</a>,<br />
Lösung gefunden. Wie ich so Deinen FAQ Artikel nochmals <strong>aufmerksam</strong> durchlese und da geschrieben steht: <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f62e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_open_mouth"
      title=":open_mouth:"
      alt="😮"
    /></p>
<blockquote>
<p>...sowie die Projektpfade sollten keine Verzeichnisse...(wie zB. C++)...</p>
</blockquote>
<p>Naja, dann war alles klar. Nach einer kurzen Umbenennung des Verzeichnisses läuft alles bestens.</p>
<p>Bitte um Entschuldigung und vielen Dank. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f44d.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--thumbs_up"
      title=":+1:"
      alt="👍"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1356649</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1356649</guid><dc:creator><![CDATA[thunderbol4]]></dc:creator><pubDate>Sat, 01 Sep 2007 09:20:55 GMT</pubDate></item></channel></rss>