Language-Support!? |
Post Reply |
Author | |
Thoma
Newbie Joined: 12 August 2005 Status: Offline Points: 17 |
Post Options
Thanks(0)
Posted: 12 August 2005 at 1:58pm |
Hello codejock-team, how can i format Dates to another language (i need german). The result of the following format flags is only in english: '%a Abbreviated weekday name I need german outputs! as example: Full weekday name = "Mittwoch" and not "wednesday"! What do i wrong? |
|
Thoma
Newbie Joined: 12 August 2005 Status: Offline Points: 17 |
Post Options
Thanks(0)
|
Is there no help? PLEASE - I´ve only 30 days to test the trial!
|
|
nighthawk
Senior Member Joined: 11 June 2004 Status: Offline Points: 167 |
Post Options
Thanks(0)
|
I don't rely on the ReportControl to format dates. I do the
formatting myself using either the VB function Format() or another one
I wrote myself. Below is a little example:
Dim Record As XtremeReportControl.ReportRecord Dim Item As XtremeReportControl.ReportRecordItem Set Record = ReportControl.Records.add() Set Item = Record.AddItem(CDbl(dteDate)) Item.Caption = Format(dteDate, "c") |
|
Thoma
Newbie Joined: 12 August 2005 Status: Offline Points: 17 |
Post Options
Thanks(0)
|
Thx nighthawk! It works fine! :-) |
|
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 |