I am having an issue when trying to create a report, I am using the report wizard. The wizard itself works fine but after the report is generated I am getting over 80 or so build error and no report is shown. I attached a screen shot of one of the errors to which takes me to the .Designer.vb code.
What seems to be happening is the classes might not being named correctly. I had to add the 1 at the end of both class names below.
The errors I cannot seem to figure out deals with the line below. The error is with - ds.GetSchemaSerializable.
Would anyone have an idea as to why this might be happening?
Why the report is not naming the class correctly?
Could I be doing something wrong?
thanks
What seems to be happening is the classes might not being named correctly. I had to add the 1 at the end of both class names below.
Partial
Public Class CMSC_WEB2DataSet1
Partial Public Class CMSC_WEB2DataSetTableAdapter1
This took all but 2 errors away.
The errors I cannot seem to figure out deals with the line below. The error is with - ds.GetSchemaSerializable.
<
Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public
Shared Function GetTypedDataSetSchema
Dim dsSchema As Global.System.Xml.Schema.XmlSchema = ((ds.GetSchemaSerializable)) **Error
<
Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public
Shared Function GetTypedTableSchema
Dim
dsSchema As Global.System.Xml.Schema.XmlSchema = ((ds.GetSchemaSerializable)) ** Error
Would anyone have an idea as to why this might be happening?
Why the report is not naming the class correctly?
Could I be doing something wrong?
thanks