Error Report for my App.

My company created an application in Visual Studios 2005 Beta 1, but since it was expired I updated to beta 2. Now, with beta 2 it can no longer be compiled and build an .exe for my application. It was working fine in Beta 1 but when I try to compile it gives me these warnings and errors:

Warning 1 Could not read state file "obj\Debug\ResolveAssemblyReference.cache". Exception has been thrown by the target of an invocation. C:\WINDOWS\Microsoft.NET\Framework\v2.0.50215\Microsoft.Common.targets 0 0

Error 2 Type 'System.Windows.Forms.WindowsFormsApplicationBase' is not defined. C:\Documents and Settings\ckeener\My Documents\Visual Studio 2005\Projects\VH FORM PRINTING SYSTEM\VH FORM PRINTING SYSTEM\My Project\MyApplication.vb 17 18 VH FORM PRINTING SYSTEM

Error 3 'AuthenticationMode' is not a member of 'Forms'. C:\Documents and Settings\ckeener\My Documents\Visual Studio 2005\Projects\VH FORM PRINTING SYSTEM\VH FORM PRINTING SYSTEM\My Project\MyApplication.vb 20 24 VH FORM PRINTING SYSTEM

Error 4 'ShutdownMode' is not a member of 'Forms'. C:\Documents and Settings\ckeener\My Documents\Visual Studio 2005\Projects\VH FORM PRINTING SYSTEM\VH FORM PRINTING SYSTEM\My Project\MyApplication.vb 23 32 VH FORM PRINTING SYSTEM

Warning 5 XML comment block must immediately precede the language element to which it applies. XML comment will be ignored. C:\Documents and Settings\ckeener\My Documents\Visual Studio 2005\Projects\VH FORM PRINTING SYSTEM\VH FORM PRINTING SYSTEM\My Project\MyResources.vb 20 7 VH FORM PRINTING SYSTEM

Warning 6 'System.Windows.Forms.RaftingContainer' is obsolete: 'This class will be removed after Beta 2, consider using ToolStripContainer/ToolStripPanel instead' C:\Documents and Settings\ckeener\My Documents\Visual Studio 2005\Projects\VH FORM PRINTING SYSTEM\VH FORM PRINTING SYSTEM\Form1.Designer.vb 6699 47 VH FORM PRINTING SYSTEM

Warning 7 'System.Windows.Forms.RaftingContainer' is obsolete: 'This class will be removed after Beta 2, consider using ToolStripContainer/ToolStripPanel instead' C:\Documents and Settings\ckeener\My Documents\Visual Studio 2005\Projects\VH FORM PRINTING SYSTEM\VH FORM PRINTING SYSTEM\Form1.Designer.vb 6700 48 VH FORM PRINTING SYSTEM

Warning 8 'System.Windows.Forms.RaftingContainer' is obsolete: 'This class will be removed after Beta 2, consider using ToolStripContainer/ToolStripPanel instead' C:\Documents and Settings\ckeener\My Documents\Visual Studio 2005\Projects\VH FORM PRINTING SYSTEM\VH FORM PRINTING SYSTEM\Form1.Designer.vb 6701 46 VH FORM PRINTING SYSTEM

Warning 9 'System.Windows.Forms.RaftingContainer' is obsolete: 'This class will be removed after Beta 2, consider using ToolStripContainer/ToolStripPanel instead' C:\Documents and Settings\ckeener\My Documents\Visual Studio 2005\Projects\VH FORM PRINTING SYSTEM\VH FORM PRINTING SYSTEM\Form1.Designer.vb 6702 49 VH FORM PRINTING SYSTEM

Warning 10 'System.Windows.Forms.RaftingContainer' is obsolete: 'This class will be removed after Beta 2, consider using ToolStripContainer/ToolStripPanel instead' C:\Documents and Settings\ckeener\My Documents\Visual Studio 2005\Projects\VH FORM PRINTING SYSTEM\VH FORM PRINTING SYSTEM\Form1.Designer.vb 504 39 VH FORM PRINTING SYSTEM

Warning 11 'System.Windows.Forms.RaftingContainer' is obsolete: 'This class will be removed after Beta 2, consider using ToolStripContainer/ToolStripPanel instead' C:\Documents and Settings\ckeener\My Documents\Visual Studio 2005\Projects\VH FORM PRINTING SYSTEM\VH FORM PRINTING SYSTEM\Form1.Designer.vb 505 40 VH FORM PRINTING SYSTEM

Warning 12 'System.Windows.Forms.RaftingContainer' is obsolete: 'This class will be removed after Beta 2, consider using ToolStripContainer/ToolStripPanel instead' C:\Documents and Settings\ckeener\My Documents\Visual Studio 2005\Projects\VH FORM PRINTING SYSTEM\VH FORM PRINTING SYSTEM\Form1.Designer.vb 506 38 VH FORM PRINTING SYSTEM

Warning 13 'System.Windows.Forms.RaftingContainer' is obsolete: 'This class will be removed after Beta 2, consider using ToolStripContainer/ToolStripPanel instead' C:\Documents and Settings\ckeener\My Documents\Visual Studio 2005\Projects\VH FORM PRINTING SYSTEM\VH FORM PRINTING SYSTEM\Form1.Designer.vb 507 41 VH FORM PRINTING SYSTEM

If anyone can help please e-mail me at kidnappedkid@comcast.net

Thanks,
Chris

[4386 byte] By [kidnapt] at [2007-12-16]
# 1
Chris -

The errors and warnings you are seeing are because there were changes to the .NET Framework between Beta1 and Beta2. Since the products are still in their Beta phase and we are still taking feedback from users like yourself on bugs and feature change requests, there have been, and probably will be some changes needed in your code between versions. We try to keep this to a minimum and make it as painless as possible, but the errors you are seeing are in some sense "intentional" since we want to make sure that we have the right stuff in place in the final version.

Sorry for the inconvenience, and thanks for working with our Beta versions.

Thanks,
Luke Hoban
Visual C# IDE Program Manager

LukeHoban at 2007-9-9 > top of Msdn Tech,Visual Studio Express Editions,Installing and Registering Visual Studio 2005 Express Editions...
# 2
Luke,
Is there any quick fix or something I could do? I really don't want to re-create the application with a beta considering it will be changed again and possibly leave me stuck. So, If there is any quick fix for the app. in the mean time, while I re-write it in Visual Basic 6.0 that would be greatly apprecieted.
Thanks,
Chris
kidnapt at 2007-9-9 > top of Msdn Tech,Visual Studio Express Editions,Installing and Registering Visual Studio 2005 Express Editions...
# 3
I think the following link helps:
http://weblogs.asp.net/wallym/archive/2004/11/25/270457.aspx
HannesThor at 2007-9-9 > top of Msdn Tech,Visual Studio Express Editions,Installing and Registering Visual Studio 2005 Express Editions...
# 4

Error 1 . Operator '&&' cannot be applied to operands of type 'bool?' and 'bool?'

What is alternate of this

if (_cashBox.IsBatchCashBox) this code is working fine in visual studio beta 2 but in prerelease its giving below mention error

Error 2. Cannot implicitly convert type 'bool?' to 'bool'. An explicit conversion exists (are you missing a cast?)

What is alternate of this ?

RiteshGpt at 2007-9-9 > top of Msdn Tech,Visual Studio Express Editions,Installing and Registering Visual Studio 2005 Express Editions...