thanx in advance
Pat
PS: that's the code I'm using (I'm using the table module but if you
have a way to do it without I'm interested)
pdf = FPDF.new
pdf.AddPage
pdf.SetFont('helvetica','',10)
data = []
30.times { |i| data << ['mlkmlk','5','2','10' * 10] }
columns = [
{:title => 'Reference'},
{:title => 'Unit Price (Euro)'},
{:title => 'Quantity'},
{:title => 'Total Price (Euro)'}
]
pdf.table(data, columns)
pdf.Output