So I am trying to use the following:
but it's not working like I would expect.
I want my results to look like:
[tt]
Joe Blow $100.25 $36.23 $136.48
Jane Doe $81.50 $6.40 $87.90
Leslie Andrews $105.36 $0.00 $105.36[/tt]
I have tried taking out the -; that didn't work. I've tried adding a .; that didn't work either!
What do I need to have in the format fuction to get it to line up???
Thanks!
leslie
Code:
Format('%-55s%-25m%-25m%-25m', [FieldByname('Fullname').AsString, FieldByName('HourPay').AsFloat, FieldByName('MilePay').AsFloat, FieldByName('TotalPay').AsFloat]));
but it's not working like I would expect.
I want my results to look like:
[tt]
Joe Blow $100.25 $36.23 $136.48
Jane Doe $81.50 $6.40 $87.90
Leslie Andrews $105.36 $0.00 $105.36[/tt]
I have tried taking out the -; that didn't work. I've tried adding a .; that didn't work either!
What do I need to have in the format fuction to get it to line up???
Thanks!
leslie