Hello everybody,

I need to add a barcode in a report using Reporting Services.
I saw there are a lot of commercial components, but I was aiming at
something more... "cheaper".
Any recomendation of where to start?

Thanks a lot.

--
____________________________
Carlos Sosa Albert

Re: Barcode in a report by Steve

Steve
Wed Jul 23 11:23:58 CDT 2008

A table control is pretty easy, the matrix takes a bit more work. Chris
Hays shows a technique for the matrix:
http://blogs.msdn.com/chrishays/archive/2004/08/30/GreenBarMatrix.aspx

For a table, set the table row background color with something like this:
=iif(RowNumber(Nothing) Mod 2,"LightSteelBlue","White")

Thanks,
Steve MunLeeuw



Re: Barcode in a report by betun

betun
Thu Jul 24 12:03:01 CDT 2008

Hi Steve, thanks for your reply!

I found an easier way to achieve it, through a True Type Font.

--
____________________________
Carlos Sosa Albert


"Steve MunLeeuw" wrote:

> A table control is pretty easy, the matrix takes a bit more work. Chris
> Hays shows a technique for the matrix:
> http://blogs.msdn.com/chrishays/archive/2004/08/30/GreenBarMatrix.aspx
>
> For a table, set the table row background color with something like this:
> =iif(RowNumber(Nothing) Mod 2,"LightSteelBlue","White")
>
> Thanks,
> Steve MunLeeuw
>
>
>

Re: Barcode in a report by Steve

Steve
Fri Jul 25 12:35:28 CDT 2008

Please post your solution

Thanks,
Steve MunLeeuw