how to change date format

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nirmalsingh
    New Member
    • Sep 2006
    • 218

    how to change date format

    i want to change the date format as dd-mm-yyyy in dtpicker instead of mm-dd-yyyy. wat to do...?
  • albertw
    Contributor
    • Oct 2006
    • 267

    #2
    Originally posted by nirmalsingh
    i want to change the date format as dd-mm-yyyy in dtpicker instead of mm-dd-yyyy. wat to do...?
    hi

    Private Sub MonthView_DateC lick(ByVal DateClicked As Date)
    PickedDate = Format(DateClic ked, "dd-mmm-yyyy")

    or ...

    set your windows datedisplay as dd-mmm-yyyy

    Comment

    Working...