Jump to content

Search the Community

Showing results for tags '_guictrldtp_setformat'.

  • 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

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 2 results

  1. Hi I know how to set Date Formats to my preference. However, I want a DTP that shows ONLY months, annually. The idea is that the user selects the relevant month, then I can use start / end date from there. Avoid multiple date selections for 1 July 20xx & 31 July 20xx. Just one click -> July 20xx. Problem is that the Selector drills down to the day level. How do I stop it from going that level lower? I only want the month (to be available for selection), not individual days. Advice, please? ; Script Start - Add your code below here #include <GUIConstantsEx.au3> #include <GuiDateTimePicker.au3> Example() Func Example() Local $hDTP ; Create GUI GUICreate("DateTimePick Set Format", 400, 300) $hDTP = GUICtrlGetHandle(GUICtrlCreateDate("", 2, 6, 220)) $hDTP2 = GUICtrlGetHandle(GUICtrlCreateDate("", 2, 40, 220)) GUISetState(@SW_SHOW) ; Set the display format _GUICtrlDTP_SetFormat($hDTP, "ddd MMM dd, yyyy hh:mm ttt") _GUICtrlDTP_SetFormat($hDTP2, "MMM") ; <<<< my attempt ; Loop until the user exits. Do Until GUIGetMsg() = $GUI_EVENT_CLOSE GUIDelete() EndFunc ;==>Example That "Today: 2019-07-31" could simply become "Current Month: July" I need current month and year only. Thanks Skysnake
  2. Hi This is a request to streamline various Date and Time functions. (PS My ability to log a ticket appears to be limited by an uncooperative server). Let met start by saying these functions all work. This is not an error report. The documentation appears accurate. My problem started here: page autoit.chm::/html/libfunctions/_DateAdd.htm contains "$sDate Initial date in the format YYYY/MM/DD[ HH:MM:SS]" This is in stark contrast to eg _DateIsValid "This function takes a date input in one of the following formats: "yyyy/mm/dd[ hh:mm[:ss]]" or "yyyy/mm/dd[Thh:mm[:ss]]" "yyyy-mm-dd[ hh:mm[:ss]]" or "yyyy-mm-dd[Thh:mm[:ss]]" "yyyy.mm.dd[ hh:mm[:ss]]" or "yyyy.mm.dd[Thh:mm[:ss]]"" or my own personal, do-anything option _GUICtrlDTP_SetFormat I understand that DTP and DateTime is not exactly the same. That is not the issue. My problem is with being able to create and TEST a valid date in at least 3 different formats, but not being able to use additional functions on such a valid date. Assume my format is yyyy-mm-dd based on the "yyyy-mm-dd[ hh:mm[:ss]]" or "yyyy-mm-dd[Thh:mm[:ss]]" _DateIsValid() function. I now have a valid function, but cannot readily use it with any of the internal DateTime functions. Would it be possible to consider modifying the existing functions to work with the standard formats. Put simply, if a format is accepted by _DateIsValid(), all other DateTime formats should work with same date (format) directly. Once I have an accepted date, I want to use all internal functions on it. Thank you for your kind attention. Skysnake
×
×
  • Create New...