EvilZone

Programming and Scripting => .NET Framework => Topic started by: iAmLuFFy on September 08, 2011, 11:30:41 PM

Title: Solution of visual basic debugging error
Post by: iAmLuFFy on September 08, 2011, 11:30:41 PM
Hey friends, i have installed Visual studio 2010 ultimate and start one console programing, now at the time of debugging i got the error massage related to double quatation in 28th line, my program is just 8 line program, so i explore on that error and click on next error so AssemblyInfo.vb page is open up, here the problem is related to my registration as i write here <Assembly: AssemblyCompany("IAMLUFFY-PC     ")>
i just remove the space betwwen PC and double quatation and then debug my orignal program and then it's working fine,
But every time i start new project i have to do the same process,
Is there any permanant solution for this friends?
Title: Re: Solution of visual basic debugging error
Post by: xzid on September 09, 2011, 12:15:14 AM
Well, I don't use visual studio.. am also on android atm. But that looks alot like a computer name(or w/e) quick google brought me here:

http://blogs.rawsoft.nl/remco/post/2009/02/12/How-to-change-default-company-name-in-Assembly-information.aspx (http://blogs.rawsoft.nl/remco/post/2009/02/12/How-to-change-default-company-name-in-Assembly-information.aspx)

Perhaps check those registry values to make sure there are no trailing spaces.
Title: Re: Solution of visual basic debugging error
Post by: iAmLuFFy on September 09, 2011, 12:39:16 AM
Well, I have already checked those values and problem doesn't seems to be their, but any way thank you.
Title: Re: Solution of visual basic debugging error
Post by: xzid on September 09, 2011, 01:04:27 AM
What about a solution like one of these:

http://www.codeproject.com/KB/dotnet/Customizing_csproj_files.aspx (http://www.codeproject.com/KB/dotnet/Customizing_csproj_files.aspx)

http://blogs.msdn.com/b/jjameson/archive/2009/04/03/shared-assembly-info-in-visual-studio-projects.aspx (http://blogs.msdn.com/b/jjameson/archive/2009/04/03/shared-assembly-info-in-visual-studio-projects.aspx)

Although find root of problem would be best

Edit: or this:

http://dotnetwithme.blogspot.com/2007/04/visual-studio-tip-how-to-change-default.html (http://dotnetwithme.blogspot.com/2007/04/visual-studio-tip-how-to-change-default.html)
Title: Re: Solution of visual basic debugging error
Post by: iAmLuFFy on September 09, 2011, 01:47:22 AM
Thanks for the link http://dotnetwithme.blogspot.com/2007/04/visual-studio-tip-how-to-change-default.html (http://dotnetwithme.blogspot.com/2007/04/visual-studio-tip-how-to-change-default.html)
Problem is solved.