The report name is TSFinalPrint.vb and the vb code looks like this:
Try
Me.TSfinalprintDataSetTableAdapter1.Fill(Me.TSfinalprintDataSet.TSfinalprintDataSetTable)
Catch ex As System.Exception
'An error has occurred while filling the data set. Please check the exception for more information.
System.Diagnostics.Debug.WriteLine(ex.Message)
End Try
The TSfinalprintDataSet.xsd
shows the connection as TSfinalconnection(Mysettings) with the correct values (other features are using the same connection string and are working), It shows the adapter as TSfinalprintDataSetTableAdapter and the dataset table as TSFinalprintDataSetTable. Note that in the TSFinalPrint.vb InitializeComponent section it lists TSfinalprintDataSetTableAdapter1. Is this correct?
The Web application runs fine and displays the report in the viewer but the form is empty.
I have gone over many of the videos and documentation and am not able to resolve this problem.
If anyone can offer some assistance I would be thankful.
Cliff