Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Set Location in CRS ver 7 using VB

Status
Not open for further replies.

kaligula

Technical User
Oct 12, 2003
2
UA
I designed a report using data file (DBF File) but now I want to change the directory of my data. Can I programmatically control the location of my data in VB for my Crystal Report?

Thanks in Advance

kaligula
 
if you're using ODBC driver, it would look like:

Set crpTable = crpReport.Database.Tables.Item(1)
crpTable.SetLogOnInfo "ODBC Datasource name", "Database", "User ID", "Password"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top