how to convert dll to a project

harvid

Member
Joined
Dec 8, 2004
Messages
18
Programming Experience
1-3
Hello all,

I'm having a dll. how do I need to convert dll into a seperate project?

Need in urgent,

Thnx in advance,

Vidhya
 
Do you mean that you have a compiled DLL file or that you have a solution that contains a library project that you want to move to its own solution? If the DLL is already compiled and you don't have the source code then you'd need to decompile it to create a project. If you do have the source then it is already a project. If you want to move that project to its own solution then you just have to Remove the project from the current solution, create a new solution and add the existing project to it.
 
jmcilhinney said:
If the DLL is already compiled and you don't have the source code then you'd need to decompile it to create a project.
That was merely a statement of fact. I really don't think that anyone who is asking this question is actually going to be decompiling any DLLs any time soon.

Edit: I guess the question that should be asked is "why do you need this DLL in a seperate project".
 
Back
Top