mirroring report

  • Thread starter Thread starter Roy Goldhammer
  • Start date Start date
R

Roy Goldhammer

Hello there

I have report that i've transfare it to multi-language report

By having all the labels in table and getting them on the report_open event.

Now i have some problem of mirroring the report.

Some of the languages are Right-to-left and many other are Left-to-right

is there a code or a way to mirror the report from left-to-right to Right to
left?

for example

UserID UserName Entry Date Description
will be
Description Entry Date
UserName UserID
 
Hello there

I have report that i've transfare it to multi-language report

By having all the labels in table and getting them on the report_open event.

Now i have some problem of mirroring the report.

Some of the languages are Right-to-left and many other are Left-to-right

is there a code or a way to mirror the report from left-to-right to Right to
left?

for example

UserID UserName Entry Date Description
will be
Description Entry Date
UserName UserID

You could move the controls on the page, but the actual text within
the controls will still be whatever the regional settings are.

Code the Report's Report Header format event:

If [PositionControls] = "LeftToRight" Then
Me![ UserID].Left = 0
Me![UserName].Left = 1 * 1440
Me![EntryDate].Left = 3 * 1440
Me![Desription].Left = 3.5 * 1440
Else
Me![ UserID].Left = 6.5 * 1440
Me![UserName].Left = 4.5* 1440
Me![EntryDate].Left = 3 * 1440
Me![Desription].Left = 0
End If
 
Back
Top