RE: Running a euphoria program from a CD
- Posted by Chris Burch <chriscrylex at aol.com> Dec 18, 2003
- 485 views
Hi To all who all who replied Yup, you're right - doh Cheers to all! Chris akusaya at gmx.net wrote: > > > C> -- check for presence of divx5 dll > C> fn = open("\\windows\\system32\\divx.dll","r") > C> if fn > -1 then --disable install divx button > C> setEnable(PushButton6, False) > C> end if > > I have another idea for this, why not just > address = open_dll("divx.dll") > and then check the value of address. > Windows will search the divx.dll file in the system or system32 > directory automatically. > >