1. exw.exe shell problem
------=_NextPart_000_002E_01BF9432.F8D75340
charset="iso-8859-2"
Content-Transfer-Encoding: quoted-printable
It displays this error message:
Can't open C:\EUPHORIA\psamples\euphoria.exw
when i want to run
file C:\EUPHORIA\psamples\euphoria editors\wee\Wee.exw
from within Explorer.
*.exw extensions are connected to be opened with exw.exe.
What's wrong?
If I open Wee.exw with ed.ex and run it, the error is gone, it runs =
normal.
------=_NextPart_000_002E_01BF9432.F8D75340
charset="iso-8859-2"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content=3D"text/html; charset=3Diso-8859-2" =
http-equiv=3DContent-Type>
<META content=3D"MSHTML 5.00.2614.3401" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>It displays this error =
message:</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Can't open=20
C:\EUPHORIA\psamples\euphoria.exw</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>when i want to run</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>file C:\EUPHORIA\psamples\euphoria=20
editors\wee\Wee.exw</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>from within Explorer.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>*.exw extensions are connected to =
be opened=20
with exw.exe.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>What's wrong?</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=3DArial size=3D2>If I open Wee.exw with ed.ex and =
run it, the=20
------=_NextPart_000_002E_01BF9432.F8D75340--
2. Re: exw.exe shell problem
On Wed, 22 Mar 2000 19:15:23 +0100, =?iso-8859-2?B?qWtvZGE=?=
<tone.skoda at SIOL.NET> wrote:
>It displays this error message:
>Can't open C:\EUPHORIA\psamples\euphoria.exw
>when i want to run
>file C:\EUPHORIA\psamples\euphoria editors\wee\Wee.exw
>from within Explorer.
>*.exw extensions are connected to be opened with exw.exe.
>What's wrong?
>
>If I open Wee.exw with ed.ex and run it, the error is gone, it runs normal.
>
This is a Windows long-filename problem. You're file association probably
looks something like this:
c:\euphoria\bin\exw.exe %1
What you need to do is enclose the %1 (and %2, %3, etc. if present) in
double quotes like this:
c:\euphoria\bin\exw.exe "%1"
That will fix your problem.
Brian