Re: VB6 and Crystal reports
What level of CR are you using?
Re: VB6 and Crystal reports
I M using Crystal report 8, VB6 And Access Database
Re: VB6 and Crystal reports
I could give you some sample code if you were using CR9. It has been too long since I upgraded from 8. I don't have any VB6/CR8 code around anymore. The coding changed between the 2 versions. Sorry.
Re: VB6 and Crystal reports
Re: VB6 and Crystal reports
I am quite new to this , so please can you explain me what is that TTX?
Re: VB6 and Crystal reports
For the same report in data report i am using
strSQL = "select * from inv1 where invno='" & cboInvNo.Text & "'"
rsInv.Open strSQL, cnnInv, adOpenKeyset
If rsInv.EOF And rsInv.BOF Then
MsgBox "Invoice No Not Found !!!!!!"
rsInv.Close
Exit Sub
End If
Set DEVat.rscmdInv1.DataSource = rsInv
DRInvFP.Show
rsInv.Close
where DEVat is dataenvironment and DRInvFP is Data Report
Re: VB6 and Crystal reports
Moved to reporting section