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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Table language

Status
Not open for further replies.

Mojster

Programmer
Sep 26, 2001
18
SI
How can I change table language of existing table with code.

Thx!
 
In Pdx8 onwards the script below restructures the customer table to Paradox 'intl' 850. See help for 'restructure' to get the internal language driver names.

method run(var eventInfo Event)
var
tbl Table
dynNewStru DynArray[] Anytype
endvar
dynNewStru["languageDriver"] = "INTL850"
tbl.attach( "CUSTOMER.DB" )
tbl.restructure( dynNewStru )
endMethod
 
Further to the above, a more comprehensive list of the internal language driver names is in the BDE32.HLP file, i.e. the help file for the BDE.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top