Problems Compiling

Craig

Well-known member
Joined
Oct 15, 2005
Messages
110
Location
United Kingdom
Programming Experience
Beginner
I recently built an application in VB .NET and when i try to compile it in the Visual studio command prompt using

VB.NET:
vbc C:\location\form1.vb /out:form1.exe /t:exe

But then I get a long list of errors and it then says:

vbc : error BC30041: Maximum number of errors has been exceeded

Any help would be greatly appreciated!
 
that means there are more than 120 errors in the project, if you were using the IDE it'd point out all the errors for ya
 
Well the IDE is Visual Studio...

What he means is if you open VS, select your project and choose build so that you can run a demo, the compiler will let you know of any errors that you have in your project...

hth Pace
 
then just use the exe file that's in the bin folder of your project that the IDE made for you instead of trying to compile it again in the command prompt
 
Back
Top