1. ZipMaster
- Posted by The Reaper <reaper at LOKI.ATCON.COM> Feb 23, 1997
- 1199 views
Hey guys, I was bored last night,so I decided to make that zipping program (the one that zips up included files) and it works! It zips up includes, .bmps, files by open(), and .wavs by LoadSoundEffects(). Do you guys still want it? And, if you do want it, what should I do with it? =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= The Reaper (J. Lays) reaper at auracom.com ........................ . .. -||..........__...... "There are no miracles, . / ||......../-- \\.:::: Just dreams that come true, . ..| ||...... / o o| |.::: By the actions of someone .| _-||.......|| ^ / /.:::: Who didn't waste time dreaming." ..| |..||...... -\_- \ |\-.::: .| |.[< \ .../ \.:: .||.|||\|\ | -REAPER- . \.:::: ...|.\|| | \ | | |.:::. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
2. Re: ZipMaster
- Posted by Matthew Green <pogowolf at IASTATE.EDU> Feb 23, 1997
- 1169 views
> Hey guys, I was bored last night,so I decided to make that zipping program > (the one that zips up included files) and it works! It zips up includes, > .bmps, files by open(), and .wavs by LoadSoundEffects(). > > Do you guys still want it? YEA YEA YEA YEA YEA YEA YEA YEA YEA...... HAW HAW HAW HAW HAW HAW.... --- PogoWolf, pogowolf at iastate.edu HTTP://www.public.iastate.edu/~pogowolf Off the 10Base-T, through the router, down the T3, over the Fiber line, off the bridge, past the firewall.... Nothing but Net.
3. Re: ZipMaster
- Posted by Matt Stancliff <sysop at MINDSPRING.COM> Feb 23, 1997
- 1164 views
>Hey guys, I was bored last night,so I decided to make that zipping program >(the one that zips up included files) and it works! It zips up includes, >.bmps, files by open(), and .wavs by LoadSoundEffects(). >Do you guys still want it? >And, if you do want it, what should I do with it? What ever you do don't charge $40 for it!
4. ZipMaster
- Posted by Ad Rienks <Ad_Rienks at COMPUSERVE.COM> Feb 23, 1997
- 1194 views
The Reaper wrote: Do you guys still want it? And, if you do want it, what should I do with it? I want it. Maybe you can charge $ 39.95 for it, or come down here and bring it. If you come, you can have a coffee or maybe a beer or whatever you like! Otherwise, just put it on the net! Adriaan Hans Rienks I. P.S. I live in Holland, near to the famous windmills!
5. ZipMaster
- Posted by The Reaper <reaper at LOKI.ATCON.COM> Feb 25, 1997
- 1229 views
--=====================_856917488==_ Hey, some people have been having problems getting ZipMaster to work, so I am posting it on here to see what you guys come up with. Try it out! --=====================_856917488==_ x-mac-type="705A4950"; x-mac-creator="705A4950"
6. ZipMaster
- Posted by Ad Rienks <Ad_Rienks at COMPUSERVE.COM> Feb 25, 1997
- 1202 views
- Last edited Feb 26, 1997
To The Reaper: >Hey, some people have been having problems getting ZipMaster to work, so I >am posting it on here to see what you guys come up with. Try it out! Thanx, Jamie, a great program. It's the kind of quality we're already expecting from you. Greetings, Ad
7. Re: ZipMaster
- Posted by "Cuny, David" <ATB.DCUNY at HW1.CAHWNET.GOV> Feb 26, 1997
- 1156 views
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