How can i attach a dll in the start up
-
Hi I have a small query. I have a dll and I want it to start as soon as my device reboots. Is there any way of doing it. How about putting it in the windows start up, so that whenever my device will start my dll will also start. Can anyone provide me with some logic. Thanks in advance!!!!
-
Hi I have a small query. I have a dll and I want it to start as soon as my device reboots. Is there any way of doing it. How about putting it in the windows start up, so that whenever my device will start my dll will also start. Can anyone provide me with some logic. Thanks in advance!!!!
You cannot just start a DLL. DLL requires a process to load it. So, may be you can write an application which loads your DLL and calls it's functions. And configure that application to auto-start after booting. Take a loot at following article: Automatically Starting Your Application on Windows Mobile[^]