Hi ,
I am using Visual WebGui 1.1(Build 6.2.1).In my application I have used Crystal report , It works fine
But when I am using Visual WebGui 1.1(Build 6.2.3), it doesnot support crystal report.
The reason for this is that i have used following method
Protected Overloads Overrides Function GetHostedControl(ByVal objASPPage As Page) As Control
Dim objContainer As System.Web.UI.HtmlControls.HtmlGenericControl = New System.Web.UI.HtmlControls.HtmlGenericControl("div")
' create container
objContainer.Style.Add("width", "100%")
objContainer.Style.Add("height", "100%")
objContainer.Style.Add("overflow", "hidden")
'objContainer.Style.Add("position", "absolute")
' Add report viewer to container
objContainer.Controls.Add(InternalReportViewer)
' Reset cached report viewer after using it
mobjReportViewer = Nothing
Return objContainer
End Function
So in ver 6.2.3 .This method gives me error as-Function ‘GetHostedControl’ cannot be declared ‘Overrides’ because it doesnot override a function in a base class.
Please Suggest
Thanks & Regards
Shailesh