Error with VB.Net PocketPC Application
Under VS.Net Beta 2, I am developing a small test PocketPC application. On my Form1 I dropped a button and double-click the button to get to the event handler where I added a MessageBox.Show("Hello World") statement. When I build the application, I get an error...
Error 2 Type 'Microsoft.VisualBasic.CompilerServices.DesignerGenerated' is not defined. C:\Documents and Settings\jwalker\my documents\visual studio\Projects\DeviceApplication2\DeviceApplication2\Form1.Designer.vb 1 2
In the Form1.Designer.vb file, at the top of the class is an attribute,
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _ that is the source of the error. Seems the DesignerGenerated() is not found. Any ideas as to the cause of this and any work-arounds? Thanks for any assistance. John

