FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index All products support FWString()
Posts: 340
Joined: Thu Jan 25, 2007 03:53 PM
FWString()
Posted: Mon Feb 08, 2016 11:54 AM

Scusate, non ho trovato spiegazione a tale funzione nei manuali di fwin, cosa fa ?

Grazie
(FWH16)

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FWString()
Posted: Mon Feb 08, 2016 01:23 PM
Romeo,

It is explained in whatsnew.txt

* New: We have implemented a new FWH strings API to provide internationalization at runtime,
and that you can also use to provide internationalization to your own apps too:

The Strings API functions are:

1. FWSetLanguage( nNewLanguage ) // sets the language to use at rumtime

2. FWString( "my string" ) // searches for "my string" translation and returns it

3. FWMissingStrings() // generates the source code for the missing strings to translate

By default the language is automatically set to the HB_LangSelect(), if the program has
already set HB_LangSelect() our functions adopt the same language by default

User can add a new language using FWAddLanguage( aTranslates ), for example if you want to
add whatever language (not unicode), you have to build an array with your language translates
for the same words used in strins api and call FWAddLanguage( aTranslates ) then onwards the
system uses the new language translates.

Using the function FWAddString( aString ) you can add your own strings at runtime.
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 340
Joined: Thu Jan 25, 2007 03:53 PM
Re: FWString()
Posted: Wed Feb 10, 2016 03:26 PM

Tks many

Posts: 340
Joined: Thu Jan 25, 2007 03:53 PM
Re: FWString()
Posted: Thu Feb 18, 2016 10:17 AM

tks

Continue the discussion