Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > ActiveX COM > Report Control
  New Posts New Posts RSS Feed - Language-Support!?
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Language-Support!?

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


Joined: 12 August 2005
Status: Offline
Points: 17
Post Options Post Options   Thanks (0) Thanks(0)   Quote Thoma Quote  Post ReplyReply Direct Link To This Post Topic: Language-Support!?
    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
    '%A Full weekday name
    '%b Abbreviated month name
    '%B Full month name
    '%c Date and time representation appropriate for locale

I need german outputs!

as example:

Full weekday name = "Mittwoch" and not "wednesday"!

What do i wrong?

Back to Top
Thoma View Drop Down
Newbie
Newbie


Joined: 12 August 2005
Status: Offline
Points: 17
Post Options Post Options   Thanks (0) Thanks(0)   Quote Thoma Quote  Post ReplyReply Direct Link To This Post Posted: 16 August 2005 at 12:53pm

Is there no help?

PLEASE - I´ve only 30 days to test the trial!

 

Back to Top
nighthawk View Drop Down
Senior Member
Senior Member
Avatar

Joined: 11 June 2004
Status: Offline
Points: 167
Post Options Post Options   Thanks (0) Thanks(0)   Quote nighthawk Quote  Post ReplyReply Direct Link To This Post Posted: 16 August 2005 at 2:24pm
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")
Back to Top
Thoma View Drop Down
Newbie
Newbie


Joined: 12 August 2005
Status: Offline
Points: 17
Post Options Post Options   Thanks (0) Thanks(0)   Quote Thoma Quote  Post ReplyReply Direct Link To This Post Posted: 16 August 2005 at 5:38pm

Thx nighthawk!

It works fine! :-)

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.