techmanbd Posted March 1, 2004 Posted March 1, 2004 I was wondering if I need VS .NET to create a DLL or can I with the standard edition of VB .NET Quote Live as if you were to die tomorrow. Learn as if you were to live forever. Gandhi
techmanbd Posted March 1, 2004 Author Posted March 1, 2004 How would I do that? I read somwhere that I start a new windows application and under the properties => general, I set the 'output type' to Class Library, but I don't see that. the only options I have is 'Console Application' and 'Windows Application'. Quote Live as if you were to die tomorrow. Learn as if you were to live forever. Gandhi
Administrators PlausiblyDamp Posted March 1, 2004 Administrators Posted March 1, 2004 You don't get support for Classlibraries with the standard edition of VB.Net. Not unless you look here and then thank Derek ;) Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
techmanbd Posted March 1, 2004 Author Posted March 1, 2004 Ok, I got the class libraries but when I try to use it I get this error Object with program ID Vswizard.VSwizardengine cannot be created Quote Live as if you were to die tomorrow. Learn as if you were to live forever. Gandhi
mhaynie Posted March 26, 2004 Posted March 26, 2004 Need to alter a line Depending on your installation version of VB.NET standard, go into the .vsz that is in the zip file and change the line to : Wizard=VsWizard.VsWizardEngine.7.1 instead of : Wizard=VsWizard.VsWizardEngine That worked for me. You can open any of your vsz's in notepad to check that yours is in fact .7.1. MTH Quote
mskeel Posted March 30, 2004 Posted March 30, 2004 or you can use the command line compiler check vbc -? (or csc for C#) on the command line for documentation. Its pretty easy to use and you can use it even if you have visual studio standard. Quote
decrypt Posted June 1, 2004 Posted June 1, 2004 Quote from http://visualbasic.about.com/library/weekly/aa083003a.htm: Here's what I do ... In the .vbproj file, look for ... OutputType = "WinEXE" Just change it to ... OutputType = "Library" And make sure that ... StartupObject="" And recompile. Viola! -------- It works great, and saves time rather than using vbc.exe Quote
pelikan Posted June 10, 2004 Posted June 10, 2004 Check out the open source IDE SharpDevelop. Although the program has some flaws, it is still quite flexible - and free. Quote IN PARVUM MULTUM
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.