Pinting Table differs with Screen Resolution
Posted: Tue Apr 05, 2011 9:07 am
				
				I have created a 8 fil by 3 col thaat fill a Din A-4 paper on a PC at 800x600 resolution pixels.  I've a image and text on each cell.
When I print table, it perfectly fills a Din A-4 page. All Right.
But when I try to print on another PC with 1280x800 there are two problems:
1.- Width is well, but Height is small.
2.- Images are too smallst.
I'm using 1.9.48 version.
There is a Solution for this?
Many Thanks
			When I print table, it perfectly fills a Din A-4 page. All Right.
But when I try to print on another PC with 1280x800 there are two problems:
1.- Width is well, but Height is small.
2.- Images are too smallst.
Code: Select all
for r := 0 to table.Rows.Count-1 do
    for c := 0 to table.Rows[r].Count-1
    do begin
       table.Cells[r,c].BestWidth := AnchCols;
       table.Cells[r,c].BestHeight := AltFilas;
       table.SetCellVisibleBorders(False, False, False, False,r,c);
       table.SetCellVAlign(rvcMiddle,r,c); ///(rvcTop,  rvcMiddle, rvcBottom)
       end;
There is a Solution for this?
Many Thanks