Language |
Post Reply |
Author | |
cmpxchg
Newbie Joined: 11 January 2006 Location: Germany Status: Offline Points: 1 |
Post Options
Thanks(0)
Posted: 11 January 2006 at 2:47am |
Hello,
I want to change the language of the ReportControl (in VB6). How can I do this? Is there a way to change the values of "Sort by" and "Drag of column header here to group by that column" to the german equivalents? Thank you for your help |
|
There are only 10 type of people. Those who understand binary and thos who don't
|
|
Oleg
Admin Group Joined: 21 May 2003 Location: United States Status: Offline Points: 11234 |
Post Options
Thanks(0)
|
You can set these strings in code: .PaintManager.SortByText = "..." .PaintManager.NoGroupByText = "..." .PaintManager.NoItemsText = "..."
|
|
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS |
|
Staffan V
Newbie Joined: 29 March 2007 Location: Sweden Status: Offline Points: 8 |
Post Options
Thanks(0)
|
In C++ you do
m_ReportCtrl.GetPaintManager()->m_strSortBy = "..."; m_ReportCtrl.GetPaintManager()->m_strNoGroupBy = "..."; m_ReportCtrl.GetPaintManager()->m_strNoItems = "..."; |
|
Post Reply | |
Tweet
|
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |