using CR 9.1 bundled with vb.net 2003.
Created a report using a xml file as the datasource and calling the report via code in vb.

VB Code:
  1. Dim ds As DataSet
  2.         ds = New DataSet
  3.         Dim crReportDocument As New Labels
  4.  
  5.         ds.ReadXml(Application.StartupPath & "\Labels.xml")
  6.  
  7.         crReportDocument.Database.Tables.Item("Label1").SetDataSource(ds)
  8.  
  9.         CReportViewer.ReportSource = crReportDocument
  10.         crReportDocument.Refresh()

The report works fine on my development pc but installing it onto a client pc then as soon i call the report as above, CR viewer would present the user with a form that requests database logon information to the above table.(Label1 which resides in the xml file).

Any Suggestions of the cause/fix?
Thanks