On Feb 19, 2008 11:37 AM, Derek Atkins &lt;<a href="mailto:warlord@mit.edu">warlord@mit.edu</a>&gt; wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Here&#39;s something to try.. &nbsp;What happens if you move (or copy)<br>the ibr-gnc-module.scm to C: and then you can try one of:<br><br>&nbsp;(load &quot;/ibr-gnc-module.scm&quot;)<br>&nbsp;(load &quot;/c/ibr-gnc-module.scm&quot;)<br>
&nbsp;(load &quot;c:/ibr-gnc-module.scm&quot;)<br>&nbsp;(load &quot;c:\ibr-gnc-module.scm&quot;)<br></blockquote><div><br>I believe that last one would have to be (load &quot;c:\\ibr-gnc-module.scm&quot;) otherwise Scheme will swallow the single \ character. What the heck, try all five.<br>
<br></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br>And see what works. &nbsp;Then we can at least see if this works<br>at all for you... &nbsp;And then we can go through the complications<br>
of trying to get it working otherwise.<br><br>Also, you might want to use the debug output to see your output.<br>For example, do you see your printf output in the gnucash.trace<br>file?<br><br>-derek<br><br>Jannick Asmus &lt;<a href="mailto:jannick.news@gmail.com">jannick.news@gmail.com</a>&gt; writes:<br>
<br>&gt; Nathan, Robert,<br>&gt;<br>&gt; thanks for your input.<br>&gt;<br>&gt; I tried every version of path format. No effect.<br>&gt;<br>&gt; So I might be that the code of the config.user is not correct. Could<br>&gt; someone check it, please? I am a real newbie to this stuff.<br>
&gt;<br>&gt; Thanx again.<br>&gt;<br>&gt; Best wishes,<br>&gt; J.<br>&gt;<br>&gt; On 17.02.2008 23:39, Nathan Buchanan wrote:<br>&gt;&gt; I doubt windows likes the double slash...try c:\path.... instead.<br>&gt;&gt;<br>&gt;&gt; On Feb 17, 2008 4:18 PM, Robert Heller &lt;<a href="mailto:heller@deepsoft.com">heller@deepsoft.com</a><br>
&gt;&gt; &lt;mailto:<a href="mailto:heller@deepsoft.com">heller@deepsoft.com</a>&gt;&gt; wrote:<br>&gt;&gt;<br>&gt;&gt; &nbsp; &nbsp; At Sun, 17 Feb 2008 20:14:22 +0100 Jannick Asmus<br>&gt;&gt; &nbsp; &nbsp; &lt;<a href="mailto:jannick.news@gmail.com">jannick.news@gmail.com</a> &lt;mailto:<a href="mailto:jannick.news@gmail.com">jannick.news@gmail.com</a>&gt;&gt; wrote:<br>
&gt;&gt;<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt;<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; Hi All,<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt;<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; I am encountering problems running the following config.user-file on<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; WinXP together with GC v2.2.3. The problem is that additional<br>
&gt;&gt; &nbsp; &nbsp; tools do<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; not show up as they are supposed to be.<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt;<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; Here is the config-file saved in .gnucash:<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; _____________________<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; (printf &quot;Start config.user\n&quot;)<br>
&gt;&gt; &nbsp; &nbsp; &nbsp;&gt;<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; (define ibr-menu-created #f)<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt;<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; (let (<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (path (&quot;C://Dokumente und<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; Einstellungen/user/.gnucash/ibr-gnc-module.scm&quot;))<br>
&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; &nbsp; &nbsp; &nbsp; )<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; &nbsp; &nbsp; &nbsp; (printf &quot;config.user: loading %s ...\n&quot; path)<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; &nbsp; &nbsp; &nbsp; (load path)<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; )<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt;<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; (printf &quot;End config.user\n&quot;)<br>
&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; _______________________<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt;<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; The file stems from<br>&gt;&gt; &nbsp; &nbsp; <a href="http://www.ibrieger.de/misc/linux/gnucash/index.html" target="_blank">http://www.ibrieger.de/misc/linux/gnucash/index.html</a><br>
&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; where the .scm-file is available for download as well.<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt;<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; At start-up GC looks for the config.user file in .gnucash and<br>&gt;&gt; &nbsp; &nbsp; starts it.<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; Derek and me, we have already found out that the line defining<br>
&gt;&gt; &nbsp; &nbsp; the hard<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; coded path variable<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt;<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; &nbsp; &nbsp; &nbsp; (path (&quot;C://Dokumente und<br>&gt;&gt; &nbsp; &nbsp; Einstellungen/user/.gnucash/ibr-gnc-module.scm&quot;))<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt;<br>
&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; does not seem to be correct.<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt;<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; Does anyone has a clue what format the path should have on a Windows<br>&gt;&gt; &nbsp; &nbsp; &nbsp;&gt; system? Should &quot;\&quot; be used? What is the syntax for calling the<br>
&gt;&gt; &nbsp; &nbsp; hard drive?<br>&gt;&gt;<br>&gt;&gt; &nbsp; &nbsp; I believe that the C Library&#39;s fopen() under MS-Windows handles &#39;/&#39; as<br>&gt;&gt; &nbsp; &nbsp; a directory separator (internally replaces &#39;/&#39; with &#39;\&#39; before calling<br>
&gt;&gt; &nbsp; &nbsp; the lower level O/S I/O functions. &nbsp;Don&#39;t know how drive letters are<br>&gt;&gt; &nbsp; &nbsp; handled. And I don&#39;t know what the MS-Windows port of GnuScheme does<br>&gt;&gt; &nbsp; &nbsp; with pathnames.<br>&gt; _______________________________________________<br>
&gt; gnucash-user mailing list<br>&gt; <a href="mailto:gnucash-user@gnucash.org">gnucash-user@gnucash.org</a><br>&gt; <a href="https://lists.gnucash.org/mailman/listinfo/gnucash-user" target="_blank">https://lists.gnucash.org/mailman/listinfo/gnucash-user</a><br>
&gt; -----<br>&gt; Please remember to CC this list on all your replies.<br>&gt; You can do this by using Reply-To-List or Reply-All.<br>&gt;<br>&gt;<br><br>--<br> &nbsp; &nbsp; &nbsp; Derek Atkins, SB &#39;93 MIT EE, SM &#39;95 MIT Media Laboratory<br>
 &nbsp; &nbsp; &nbsp; Member, MIT Student Information Processing Board &nbsp;(SIPB)<br> &nbsp; &nbsp; &nbsp; URL: <a href="http://web.mit.edu/warlord/" target="_blank">http://web.mit.edu/warlord/</a> &nbsp; &nbsp;PP-ASEL-IA &nbsp; &nbsp; N1NWH<br> &nbsp; &nbsp; &nbsp; <a href="mailto:warlord@MIT.EDU">warlord@MIT.EDU</a> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;PGP key available<br>
_______________________________________________<br>gnucash-user mailing list<br><a href="mailto:gnucash-user@gnucash.org">gnucash-user@gnucash.org</a><br><a href="https://lists.gnucash.org/mailman/listinfo/gnucash-user" target="_blank">https://lists.gnucash.org/mailman/listinfo/gnucash-user</a><br>
-----<br>Please remember to CC this list on all your replies.<br>You can do this by using Reply-To-List or Reply-All.<br></blockquote></div><br>