FYRe Posted August 16, 2005 Posted August 16, 2005 how to open a file with extension ".dll" ? Using which program ? Quote sOMEONE'S gONNA dO iT, wHY nOT yOU ?
IngisKahn Posted August 16, 2005 Posted August 16, 2005 A dll contains executable code and data. What are you looking to do? Where is this dll from? Quote "Who is John Galt?"
FYRe Posted August 16, 2005 Author Posted August 16, 2005 .dll Just wondering of how to view the ".dll" file. Does anyone knows how ? Quote sOMEONE'S gONNA dO iT, wHY nOT yOU ?
FZelle Posted August 16, 2005 Posted August 16, 2005 A DLL is an executable, like an exe file. It is no Datafile, which you can watch like pictures or documents. Quote
*Experts* Nerseus Posted August 19, 2005 *Experts* Posted August 19, 2005 You can open a dll in Visual Studio - it will show you an resources embedded inside (icons, pictures, etc.). Just use File->Open. If this is a .NET dll and you want to see the code, open it in Reflector. If this is a .NET dll and you want to use the libraries inside, simply add a reference to the DLL through Visual Studio (expand the project in the Solution Explorer and right click on References). If this is a COM dll, you can add a reference to it like above (project references). Visual Studio will create a wrapper object for you, to use the COM object with .NET. If this is a standard C-style dll, you're in trouble as you have to write the PInvoke code yourself to define the exposed functions and get all the datatypes right. If this is a standard DLL, then someone may be able to help. If it's some 3rd party DLL, you may be OOL. If you want something else, you'll have to be more clear. Vagueness is the enemy! -nerse Quote "I want to stand as close to the edge as I can without going over. Out on the edge you see all the kinds of things you can't see from the center." - Kurt Vonnegut
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.