Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > Visual C++ MFC > Report Control
  New Posts New Posts RSS Feed - Language
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Language

 Post Reply Post Reply
Author
Message
cmpxchg View Drop Down
Newbie
Newbie


Joined: 11 January 2006
Location: Germany
Status: Offline
Points: 1
Post Options Post Options   Thanks (0) Thanks(0)   Quote cmpxchg Quote  Post ReplyReply Direct Link To This Post Topic: Language
    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
Back to Top
Oleg View Drop Down
Admin Group
Admin Group


Joined: 21 May 2003
Location: United States
Status: Offline
Points: 11234
Post Options Post Options   Thanks (0) Thanks(0)   Quote Oleg Quote  Post ReplyReply Direct Link To This Post Posted: 11 January 2006 at 11:23am

You can set these strings in code:

.PaintManager.SortByText = "..."

.PaintManager.NoGroupByText = "..."

.PaintManager.NoItemsText = "..."

 

 

Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS
Back to Top
Staffan V View Drop Down
Newbie
Newbie
Avatar

Joined: 29 March 2007
Location: Sweden
Status: Offline
Points: 8
Post Options Post Options   Thanks (0) Thanks(0)   Quote Staffan V Quote  Post ReplyReply Direct Link To This Post Posted: 02 October 2007 at 9:58am
In C++ you do
m_ReportCtrl.GetPaintManager()->m_strSortBy = "...";
m_ReportCtrl.GetPaintManager()->m_strNoGroupBy = "...";
m_ReportCtrl.GetPaintManager()->m_strNoItems = "...";
Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.141 seconds.