Re: ZipMaster
i haven't had a chance to look at the zip code, but from michael's comment,
i suspect that you might want to look at the environment variable EUDIR to
find out where Euphoria lives on the user's machine, rather than assuming
that it's on the C: drive. something like:
function get_eu_path()
-- get environment from the variable EUDIR
-- if not found, guess the C: drive
object env
env = getenv("EUDIR")
if atom( env ) then
-- it's not set, so make a guess
return "c:\\euphoria"
else
return env
end if
end function
-- david cuny
|
Not Categorized, Please Help
|
|