Author |
Topic |
|
dotnet_nerd
Practical
Canada
15 Posts |
Posted - 08 Feb 2013 : 15:05:19
|
Hi Davide. I'm very impressed so far with the Unicode controls.
My project has a lot of tabstrips and listviews that require translating. (I'm substituting grids for listviews for now)
How do I specify the columns and tabs in the translation INI file (using the clsMultiLngSupport class)
I've tried [frmMyForm] grdMyGrid.col(1)=Column 1 grdMyGrid.col(2)=Column 2 grdMyGrid.col(3)=Column 3
(doesn't work)
Also for the ctlUniTabbedXP, how do I specify the tabcaptions?
Thanks! Rob
|
Edited by - dotnet_nerd on 08 Feb 2013 15:07:52 |
|
s.dav
Site Admin
Italy
3364 Posts |
Posted - 11 Feb 2013 : 08:54:32
|
As they are pure code, I assigned manually the translation writing a file similar to yours and using the:
clsMultiLngsupport.GFS(Me, "grdMyGrid.col(1)", "Column 1")
if you are in "frmMyForm" or
clsMultiLngsupport.GGS("frmMyForm", "grdMyGrid.col(1)", "Column 1")
Let me know |
Regards, Davide |
|
|
dotnet_nerd
Practical
Canada
15 Posts |
Posted - 12 Feb 2013 : 00:09:32
|
Ok, thanks for the response Davide. I was hoping the ApplyToForm method would automate this but I'll do it manually.
Regards, Rob |
|
|
s.dav
Site Admin
Italy
3364 Posts |
Posted - 12 Feb 2013 : 09:42:47
|
This cannot be automatic because you need to add Columns manually (we actually don't provide a Property Page for this ;-)) |
Regards, Davide |
|
|
|
Topic |
|