select record in data report
hello !
im new in data report. im using vb6 and ms access. is it possible that you create a query where in you are going to select which record will be shown in data report then print on runtime. im making a barcode system, barcode number is my primary key.
1 Attachment(s)
Re: select record in data report
Yes you can change the sql source of your report's DataSource. In the sample attached below you can use
Code:
SELECT ID,a,b,c,d FROM test WHERE ID = 51
Re: select record in data report