Ok thanks for the help so far...

Error:
Invalid TLV Record:

VB Code:
  1. Option Explicit
  2. Private Sub Form_Load()
  3. Dim rs As ADODB.Recordset
  4. Dim cn As ADODB.Connection
  5. Set rs = New ADODB.Recordset
  6. Set cn = New ADODB.Connection
  7. cn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & App.Path & "\TractPro.mdb; Persist Security Info=False"
  8.   Dim oApp As CRAXDRT.Application
  9.     Dim oReport As CRAXDRT.Report
  10.     Dim sSQL As String
  11.     sSQL = "SELECT * FROM Permits"
  12.     cn.Open
  13.     Set rs = cn.Execute(sSQL)
  14.     Set oApp = New CRAXDRT.Application
  15.     Set oReport = oApp.OpenReport(App.Path & "\Surface.rpt", 1)
  16.     oReport.Database.SetDataSource rs, 3, 1
  17.     crvMyCRViewer.ReportSource = oReport
  18.     crvMyCRViewer.ViewReport
  19. End Sub
Anyone have any ideas... while you guys try and work this out with me, im going to google and find out what a TLV record is