Fonts on reports

S

Silvester

I store data in various languages in a table memo field by having a textbox
on a linked form and a language combobox that just changes the form textbox
font according to the language chosen.

The challenge I'm facing is when generating a report with combined data. I'd
like to have muliple languages supported on a report.

That means, on a single page of a report, all the data should appear in the
various languages chosen.
eg:

English Data
English Data

Polish Data

Hungarian Data

Russian Data

French Data

Can anyone point me in the right direction on how this can be achieved ?

Thanks in advance !
 
W

Wayne Morgan

If you have something that will tell you which language the data is in, it
is possible to change fonts in the Format event of the report's section.

Example:
If Field1 < 20 Then
Me.txtText3.FontName = "Wingdings 2"
Else
Me.txtText3.FontName = "Arial"
End If
 
Top