Make prog work without setting DLL to SYSTEM folder?
is there a way to achieve this..? i just wondered coz i have school comps which i cant install anything too,yet i need to show my home work projects,and they wont gimme admin rights or wont install it for me because its the entire school network(l17 building...) Please help ? =(
Re: Make prog work without setting DLL to SYSTEM folder?
Have you tried running the app with the DLL in your projects working directory. I believe that that is the last place that windows looks if it can't find them in the system area.
Re: Make prog work without setting DLL to SYSTEM folder?
You can configure your app to run with all files necessary in the working directory
as David stated. This will give you a local install type of setup so you can
copy your apps folder and paste it to the schools computer and it will run,
always looking into the local folder for all dependent file(s).
I usually do this when I make a program run from a CD without installing
anything (demo cd). You can do the same. Place all you files on a CD and
have you code reference the app.path and so forth.
HTH