<HTML><FONT FACE=arial,helvetica><FONT COLOR="#000000" FACE="Courier New" FAMILY="FIXED" SIZE="2">I'm trying to wrap a unix file within a Revolution app and then execute it within the program on a later screen.   This works, except if the user puts the application in a folder that has spaces in it.   My unix file is called "PPPSetup", and it accepts parameters (username/password).   Here's what I've got so far:<BR>
<BR>
 put the defaultfolder & "/PPPoE_Connector.app/Contents/Resources/PPPSetup e " & username & " " & password into bundlepath<BR>
<BR>
put shell(bundlepath) into errorcode<BR>
<BR>
<BR>
The problem is that if the default folder contains a space, then the unix call thinks that everything after that space is a parameter, and fails.   I tried putting it all in quotes like this:<BR>
<BR>
 put quote & the defaultfolder & "/PPPoE_Connector.app/Contents/Resources/PPPSetup e " & username & " " & password & quote into bundlepath<BR>
<BR>
but that also failed - - - is there another way?<BR>
<BR>
- Rob<BR>
</FONT><FONT COLOR="#000000" FACE="Geneva" FAMILY="SANSSERIF" SIZE="2"></FONT></HTML>