Difference between DLL & Process ???
-
Hi All! What is the difference between DLL and process??? amit
"Success lies not in the result , But in the efforts !!!!!" Amit Mistry - petlad -Gujarat-India
-
Hi All! What is the difference between DLL and process??? amit
"Success lies not in the result , But in the efforts !!!!!" Amit Mistry - petlad -Gujarat-India
Hi, DLL ==== 1.DLL is inprocess 2.In one windows Application, if any problem in DLL, just that specific form or part only will not work.but if any problem in Exe, entire application will not work. EXE ==== 1.Executable file 2.exe is outprocess An EXE can run independently, whereas DLL will run within an EXE. DLL is an in-process file and EXE is an out-process file for detail information plz look the below link http://dotnetspider.com/qa/Question34260.aspx http://dotnetspider.com/qa/Question36124.aspx http://dotnetspider.com/qa/Question17736.aspx http://dotnetspider.com/qa/Question12712.aspx Regards,
The only programmers that are better than C programmers are those who code in 1's and 0's..... :) :)Programm3r My Blog: ^_^
-
Hi All! What is the difference between DLL and process??? amit
"Success lies not in the result , But in the efforts !!!!!" Amit Mistry - petlad -Gujarat-India
A dll is a dynamic library, a collection of functions and methods. This library kann be linked to an executable (.exe). Windows creates a process for each executable which is started. A process just exists in memory of your OS. A process has an Name and an ID (see task manager). A process executes code which ca reside in a dll.