Kill the DLL
-
Hi, I am running a form, when i click a button in the form a dll is called in which another form is appeared, now total two forms are running. In the task manager processes, i can see only the name of the first form. So i cannot able to find and kill the second from code using 'processname.Kill'. How can i able to find and kill the dll running from main form? Thankyou, YP
-
Hi, I am running a form, when i click a button in the form a dll is called in which another form is appeared, now total two forms are running. In the task manager processes, i can see only the name of the first form. So i cannot able to find and kill the second from code using 'processname.Kill'. How can i able to find and kill the dll running from main form? Thankyou, YP
FreeLibrary(hModule); Free the Library (dll)....i'm assuming your program loaded the dll....
KitKat - A Very Simple Pseudo-RootKit (unedited) SpyNet - An Application Specific Keylogger(unedited) Shove - Shell Shoveler (like NetCat) (unedited) GzTx - Compress and Transfer Files (unedited)
-
FreeLibrary(hModule); Free the Library (dll)....i'm assuming your program loaded the dll....
KitKat - A Very Simple Pseudo-RootKit (unedited) SpyNet - An Application Specific Keylogger(unedited) Shove - Shell Shoveler (like NetCat) (unedited) GzTx - Compress and Transfer Files (unedited)
yes my program load a dll which display another form, how can i free the library?
-
Hi, I am running a form, when i click a button in the form a dll is called in which another form is appeared, now total two forms are running. In the task manager processes, i can see only the name of the first form. So i cannot able to find and kill the second from code using 'processname.Kill'. How can i able to find and kill the dll running from main form? Thankyou, YP
Kill the dll? Maybe you mean unload the dll from memory. Because only process owns the memory for excution. In this case, we can use AppDomain.Unload mehtod in .net as a approach.
:) I Love KongFu~