Re: [BangPypers] Need help in keeping dll's in another directory

2012-03-19 Thread Arunkumar Jigajinni
Thank you Vishal...I will try with this... i think it should suffice my requirement ... On Mon, Mar 19, 2012 at 12:52 PM, Vishal wrote: > Move the DLLs and PYDs whereever you want to put them. > use regsvr32.exe from Windows\System32 directory to register these DLLs and > PYD files (one by one),

Re: [BangPypers] Need help in keeping dll's in another directory

2012-03-19 Thread Vishal
Move the DLLs and PYDs whereever you want to put them. use regsvr32.exe from Windows\System32 directory to register these DLLs and PYD files (one by one), in their new location Now when you run the executable, windows will provide it with the correct file as and when it summons them. Please know t

[BangPypers] Need help in keeping dll's in another directory

2012-03-18 Thread Arunkumar Jigajinni
Hi All, I have exe file created from Py2exe in a directory and i have lots of .pyd and .dll files with that, i want to move those dependency files from running directory to another and run the exe. How do i achieve it? Any help would be great. Thanks, Arun