Fonts on reports

  • Thread starter Thread starter Silvester
  • Start date Start date
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 !
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top