Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Crystal and Multilingual approach 1

Status
Not open for further replies.

smsaji

Programmer
Jun 26, 2005
91
CA
Hi All,

Have reports in place with data from a specific database, say ‘db’.

Now want to display the texts which appear only on the reports' header column (like ‘Name’, ‘, ‘Address’ etc) in different languages without disturbing the existing database. These are web reports displayed via Crystal Enterprise 10. Used Crystal reports 10 to design.

What would be a good approach ? Any links, ways of doing this appreciated..

thanks
 
Hi,
If you mean static text then use a formula based on some input parameter that specifies the language to be used and then have it display the text in that language:

@SayHelloFormula
Code:
Select {?LangWanted}
   Case "French":
      "Bonjour"
   Case "Spanish" :
      "Hola"
   Case "Italian" :
      "Ciao"
  Default :
      "Hello";

Something like that...



[profile]

To Paraphrase:"The Help you get is proportional to the Help you give.."
 
I very much appreciate your respone.

Thatpeople use a resource file for multilingual, Is resource file something to be used with Crystal report.

There are some 50 reports. Should the 'Case formula' be applied to each static text in each report.

Working with multilingual at the crystal report, will it take effect at the browser level.

'Case formula' looks a good approach except it needs each report some time. If you think there's no other suggestion, then probably would go with it.

Expecting your suggestion...

thanks

 
thank you very much, Turkbear. Tried and it works great. Was able use it with repository and use it with other report. Not not yet started real changes. Based on this, would be starting. Thanks for a good start!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top