Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Crystal Report X Error

Status
Not open for further replies.

VBMan10

Technical User
Jun 23, 2010
5
US
Hi everyone.

I am using Crystal Reports X that is inside Visual Studio 2005. I am getting an error that is caused from the autogenerated code on the TechnicianCalls.vb.

The error:

Property "New Generator" cannot be declared "overrides" becuase it does not override a property in a base class.

Property "FullResourceName" cannot be declared "overrides" becuase it does not override a property in a base class.

The Coding on my TechnicianCalls.vb automatically generated
Public Overrides Property ResourceName() As String
Get
Return "TechnicianCalls.rpt"
End Get
Set
'Do nothing
End Set
End Property

Public Overrides Property NewGenerator() As Boolean
Get
Return true
End Get
Set
'Do nothing
End Set
End Property

Public Overrides Property FullResourceName() As String
Get
Return "ABCLogIn.TechnicianCalls.rpt"
End Get
Set
'Do nothing
End Set
End Property

What is causing these errors? When I comment out the errors and debug the applicaton runs and my Crystal Report pulls up. When I try to make a change on the TechnicianCall.rpt and re-build the errors return


Any help is appreciated.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top