tc3596
Technical User
- Mar 16, 2001
- 283
Is it possible for me to read a crystal file and have it tell me the tables and/or database involved within VB6?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim CrApp1 As Application
Dim CrRep As Report
Dim CrDB As Database
Dim CrTables As DatabaseTables
Dim CrTable As DatabaseTable
Set crApp1 = New Application
Set CrRep = CrApp1.OpenReport("c:\crystal\myreport.rpt")
Set CrDB = CrRep.Database
Set CrTables = CrDB.Tables
Set CrTable = CrTables.Item(1)
Dim CrApp1 As CRAXDRT.Application
Dim CrRep As CRAXDRT.Report
Dim CrDB As CRAXDRT.Database
Dim CrTables As CRAXDRT.DatabaseTables
Dim CrTable As CRAXDRT.DatabaseTable