Jump to content

Search the Community

Showing results for tags '_DateTimeSplit Bug'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • Forum FAQ
  • AutoIt

Calendars

  • Community Calendar

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. Is the following an issue or the desired results? When using _DateTimeSplit() 2 digit days or months are given but the return is a single digit. This can be seen in the help example for _DateTimeSplit. #include <Date.au3> Local $MyDate, $MyTime _DateTimeSplit("2005/01/01 14:30", $MyDate, $MyTime) For $x = 1 To $MyDate[0] MsgBox(0, $x, $MyDate[$x]) Next For $x = 1 To $MyTime[0] MsgBox(0, $x, $MyTime[$x]) Next The return shows: Month = 1 and Day = 1 I would expect it to show: Month = 01 and Day = 01. This is keeping with the format of most the other date functions and the more importantly the input. Thanks for your response. FYI - I searched the forum and the Bug reports but did not see this issue.
×
×
  • Create New...