T O P I C R E V I E W |
dotnet_nerd |
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
|
3 L A T E S T R E P L I E S (Newest First) |
s.dav |
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 ;-)) |
dotnet_nerd |
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 |
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 |