Fast Report dynamic Barcode with margin
I have a report, but with the band master data with many records, I need to change the margins with its own set of barcode.
with the provisions of the following settings: (setting his own)
Rows, Columns, Space_Rows, Space_Columns, Margin_Left, Margin_Top, margin_right, margin_bottom.
example : (own input from the editbox at Delphi)
var
Rows, Columns, Space_Rows, Space_Columns, Margin_Left, Margin_Top,margin_right, margin_bottom : integer;
begin
Rows := editRow.text;
Columns := editColumn.text;
Space_Rows := editSpaceRow.text;
Space_Columns := editSpaceColumn.text;
Margin_Left := editLeft.text;
Margin_Top := editTop.text;
Margin_right:= editright.text;
Margin_bottom:= editbottom.text;
end.
thank you for your help
with the provisions of the following settings: (setting his own)
Rows, Columns, Space_Rows, Space_Columns, Margin_Left, Margin_Top, margin_right, margin_bottom.
example : (own input from the editbox at Delphi)
var
Rows, Columns, Space_Rows, Space_Columns, Margin_Left, Margin_Top,margin_right, margin_bottom : integer;
begin
Rows := editRow.text;
Columns := editColumn.text;
Space_Rows := editSpaceRow.text;
Space_Columns := editSpaceColumn.text;
Margin_Left := editLeft.text;
Margin_Top := editTop.text;
Margin_right:= editright.text;
Margin_bottom:= editbottom.text;
end.
thank you for your help
Comments
I really can't guess what rows, columns, space_rows, space_colulmns mean.
One can manipulate only position (top, left) of TfrxBarCodeView within a band and its height.
If you must resize (horizontaly) TfrxBarCodeView then use its properties: Zoom and WideBarRatio.
Mick
Mick
so I make the example as above so what is true.
for example I make a page so "2 " column means staying put "2 " on the entry in Delphi.
so did the top of the top margin column.
so did the bottom of the bottom margin column.
so did the right of the right column.
so did the left of the left column.
Maybe you find it helpfull.
your explanation help the problem that I experienced. thanks for your help.........