Hi Sofi, > Hai, > > Can anybody help me with the following question > > How to convert a .lib file to a .dll file > > or > > How to use a .lib file instead of a .dll file in VB > > Sofi >
A .lib file is usually a library for use in C++ projects. Before .dll's there were .lib's. Whereas dll's are loaded "alongside" an application, .lib's need to be compiled "into" the application's .exe (or into the project's .dll if the project is a dll). To use a .lib's functionality from Visual Basic, your options are: (1) Compile the .lib into a DLL using C or C++. (2) Find an existing DLL which exposes the same functionality. Tell us some more about what .lib you are trying to use. Adelle. ------------------------ Yahoo! Groups Sponsor --------------------~--> $9.95 domain names from Yahoo!. Register anything. http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/k7folB/TM --------------------------------------------------------------------~-> '// ======================================================= Rules : http://ReliableAnswers.com/List/Rules.asp Home : http://groups.yahoo.com/group/vbHelp/ ======================================================= Post : [EMAIL PROTECTED] Join : [EMAIL PROTECTED] Leave : [EMAIL PROTECTED] '// ======================================================= Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/vbhelp/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
