You have not mentioned which barcode type that you want to print. In general, a barcode is just another font type (like 'courier new'). You need to download the barcode font (search internet for it) and place it in your system font directory where all your other .fnt files are. Then just print...
Are you using the columns that you are grouping by in your selection query? The query should like this:
Select EmpNum, PayWeek, sum(PayrollAmt) From PayrollTable
Where ...
Group by EmpNum, PayWeek;
What is in the group-by clause should match the selection columns (other than the aggregate fns...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.