HOW TO WRITE SQL USING CRYSTAL REPORTS 9 IN VB6?
Dear Friends,
I designed one INVOICE crystal reports9 using vb6 and connected with access database. It was displaying all the records. Now i want to display particular invoice number. I used below code. but its not executing. default code only executing. Can u plz help me....
Thanks,
Table Name: bill_client
Field Name : bill_INV_No
Private Sub Report_Initialize()
CrystalReport1.SQLQueryString = "Select * from bill_client where bill_INV_No = '5002'"
End Sub