Jump to content

Date Range Picker


Go to solution Solved by Nine,

Recommended Posts

Posted (edited)

Please consider to change returned values to return them in _Date*() formats.

 

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted (edited)

Why I always get 2 the same date ?

 

 

I suppose/expect to get Range.. I mean "StartDate" .... "EndDate"

 

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted (edited)

Polish translation:

; Polish translation
Global Const $MONTHS = ["Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień"]
Global Const $DAYS = ["Pn", "Wt", "Śr", "Cz", "Pt", "So", "Ni"]

 

EDIT:

Better solution:

Global Const $MONTHS = [_DateToMonth(1, $DMW_LOCALE_LONGNAME), _DateToMonth(2, $DMW_LOCALE_LONGNAME), _DateToMonth(3, $DMW_LOCALE_LONGNAME), _DateToMonth(4, $DMW_LOCALE_LONGNAME), _DateToMonth(5, $DMW_LOCALE_LONGNAME), _DateToMonth(6, $DMW_LOCALE_LONGNAME), _DateToMonth(7, $DMW_LOCALE_LONGNAME), _DateToMonth(8, $DMW_LOCALE_LONGNAME), _DateToMonth(9, $DMW_LOCALE_LONGNAME), _DateToMonth(10, $DMW_LOCALE_LONGNAME), _DateToMonth(11, $DMW_LOCALE_LONGNAME), _DateToMonth(12, $DMW_LOCALE_LONGNAME)]
Global Const $DAYS = [_DateDayOfWeek(2, $DMW_LOCALE_SHORTNAME), _DateDayOfWeek(3, $DMW_LOCALE_SHORTNAME), _DateDayOfWeek(4, $DMW_LOCALE_SHORTNAME), _DateDayOfWeek(5, $DMW_LOCALE_SHORTNAME), _DateDayOfWeek(6, $DMW_LOCALE_SHORTNAME), _DateDayOfWeek(7, $DMW_LOCALE_SHORTNAME), _DateDayOfWeek(1, $DMW_LOCALE_SHORTNAME)]

 

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

Something is wrong ... 01-11-2020 is not monday, at least in my country ;)

image.png.780cd1412c3226bfe7b215e0548c41d2.png


 

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

Here is my small modification.

Hope it can became good UDF.

#include <GUIConstants.au3>
#include <Constants.au3>
#include <FontConstants.au3>
#include <Date.au3>
#include <Misc.au3>
#include <Array.au3>

Global Const $DATERANGE_MONTHS = [_DateToMonth(1, $DMW_LOCALE_LONGNAME), _DateToMonth(2, $DMW_LOCALE_LONGNAME), _DateToMonth(3, $DMW_LOCALE_LONGNAME), _DateToMonth(4, $DMW_LOCALE_LONGNAME), _DateToMonth(5, $DMW_LOCALE_LONGNAME), _DateToMonth(6, $DMW_LOCALE_LONGNAME), _DateToMonth(7, $DMW_LOCALE_LONGNAME), _DateToMonth(8, $DMW_LOCALE_LONGNAME), _DateToMonth(9, $DMW_LOCALE_LONGNAME), _DateToMonth(10, $DMW_LOCALE_LONGNAME), _DateToMonth(11, $DMW_LOCALE_LONGNAME), _DateToMonth(12, $DMW_LOCALE_LONGNAME)]
Global Const $DATERANGE_DAYS = [_DateDayOfWeek(2, $DMW_LOCALE_SHORTNAME), _DateDayOfWeek(3, $DMW_LOCALE_SHORTNAME), _DateDayOfWeek(4, $DMW_LOCALE_SHORTNAME), _DateDayOfWeek(5, $DMW_LOCALE_SHORTNAME), _DateDayOfWeek(6, $DMW_LOCALE_SHORTNAME), _DateDayOfWeek(7, $DMW_LOCALE_SHORTNAME), _DateDayOfWeek(1, $DMW_LOCALE_SHORTNAME)]

; English version
;~ Global Const $DATERANGE_MONTHS = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]
;~ Global Const $DATERANGE_DAYS = ["Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"]

_Example()
Func _Example()
    Local $aReturn = _DateRange_Picker()
    If IsArray($aReturn) Then _ArrayDisplay($aReturn)
EndFunc   ;==>_Example

Func _DateRange_Picker($sTitle = '')

    Local $iMonth1 = Number(@MON)
    Local $iYear1 = Number(@YEAR)
    Local $iMonth2 = Mod($iMonth1, 12) + 1
    Local $iYear2 = $iYear1 + Floor($iMonth1 / 12)

    Local $hGUI = GUICreate($sTitle, 600, 310, -1, -1, $WS_POPUP + $WS_BORDER)
    GUISetBkColor(0xC0C0C0)

    Local $aDay1[42], $aDay2[42], $idMonth1, $idMonth2
    __DateRange_CreateMonth(35, 20, $aDay1, $iMonth1, $iYear1, $idMonth1)
    __DateRange_CreateMonth(315, 20, $aDay2, $iMonth2, $iYear2, $idMonth2)

    Local $idLeft = GUICtrlCreateLabel(ChrW(0x276C), 5, 115, 20, 50, $SS_CENTER + $SS_CENTERIMAGE)
    GUICtrlSetFont(-1, 40, $FW_NORMAL, $GUI_FONTNORMAL, "Segoe UI Symbol")
    Local $idRight = GUICtrlCreateLabel(ChrW(0x276D), 575, 115, 20, 50, $SS_CENTER + $SS_CENTERIMAGE)
    GUICtrlSetFont(-1, 40, $FW_NORMAL, $GUI_FONTNORMAL, "Segoe UI Symbol")

    Local $idSelect = GUICtrlCreateButton(" Terminer", 250, 265, 100, 35)
    GUICtrlSetImage(-1, "Shell32.dll", 253, 0)

    GUISetState()

    Local $nMsg, $iStart, $iEnd, $aReturn[2][3], $aPos

    While True
        $aPos = GUIGetCursorInfo($hGUI)
        If $aPos[4] = $idMonth1 Or $aPos[4] = $idMonth2 Then
            GUISetCursor(9, $GUI_CURSOR_OVERRIDE)
        Else
            GUISetCursor()
        EndIf
        $nMsg = GUIGetMsg()
        Switch $nMsg
            Case $GUI_EVENT_CLOSE
                $aReturn = 0
                ExitLoop
            Case $idLeft
                If $iStart Then
                    __DateRange_SelectDate($aDay1, $aDay2, $iStart, $iEnd, False)
                    $iStart = 0
                EndIf
                If $iMonth1 = 1 Then
                    $iMonth1 = 12
                    $iYear1 -= 1
                Else
                    $iMonth1 -= 1
                EndIf
                $iMonth2 = Mod($iMonth1, 12) + 1
                $iYear2 = $iYear1 + Floor($iMonth1 / 12)
                __DateRange_ShowMonth($aDay1, $iMonth1, $iYear1, $idMonth1)
                __DateRange_ShowMonth($aDay2, $iMonth2, $iYear2, $idMonth2)
            Case $idRight
                If $iStart Then
                    __DateRange_SelectDate($aDay1, $aDay2, $iStart, $iEnd, False)
                    $iStart = 0
                EndIf
                If $iMonth1 = 12 Then
                    $iMonth1 = 1
                    $iYear1 += 1
                Else
                    $iMonth1 += 1
                EndIf
                $iMonth2 = Mod($iMonth1, 12) + 1
                $iYear2 = $iYear1 + Floor($iMonth1 / 12)
                __DateRange_ShowMonth($aDay1, $iMonth1, $iYear1, $idMonth1)
                __DateRange_ShowMonth($aDay2, $iMonth2, $iYear2, $idMonth2)
            Case $aDay1[0] To $aDay1[UBound($aDay1) - 1], $aDay2[0] To $aDay2[UBound($aDay2) - 1]
                If _IsPressed("10") Then
                    If $iStart And $nMsg > $iStart Then
                        $iEnd = $nMsg
                        __DateRange_SelectDate($aDay1, $aDay2, $iStart, $iEnd, True)
                        ContinueLoop
                    EndIf
                EndIf
                If $iStart Then __DateRange_SelectDate($aDay1, $aDay2, $iStart, $iEnd, False)
                $iStart = $nMsg
                $iEnd = 0
                __DateRange_SelectDate($aDay1, $aDay2, $iStart, $iEnd, True)
            Case $idSelect
                If Not $iStart Then
                    $aReturn = 0
                    ExitLoop
                EndIf
                $aReturn[0][0] = $iStart < $aDay2[0] ? $iYear1 : $iYear2
                $aReturn[0][1] = $iStart < $aDay2[0] ? $iMonth1 : $iMonth2
                $aReturn[0][2] = GUICtrlRead($iStart)
                If Not $iEnd Then $iEnd = $iStart
                $aReturn[1][0] = $iEnd < $aDay2[0] ? $iYear1 : $iYear2
                $aReturn[1][1] = $iEnd < $aDay2[0] ? $iMonth1 : $iMonth2
                $aReturn[1][2] = GUICtrlRead($iEnd)
                ExitLoop
        EndSwitch
    WEnd
    GUIDelete()
    Return $aReturn
EndFunc   ;==>_DateRange_Picker

Func __DateRange_CreateMonth($iPosX, $iPosY, ByRef $aDays, $iMonth, $iYear, ByRef $idMonth)
    Local $iFirst = _DateToDayOfWeek(String($iYear), StringFormat("%02i", $iMonth), "01")
    Local $iNumDays = _DateDaysInMonth($iYear, $iMonth)

    $idMonth = GUICtrlCreateLabel($DATERANGE_MONTHS[$iMonth - 1] & " " & $iYear, $iPosX, $iPosY, 250, 30, $SS_CENTER + $SS_CENTERIMAGE, $GUI_WS_EX_PARENTDRAG)
    GUICtrlSetFont(-1, 18, $FW_BOLD, $GUI_FONTNORMAL, "Comic Sans MS")
    GUICtrlSetBkColor(-1, 0xCE04BA)
    For $i = 0 To UBound($DATERANGE_DAYS) - 1
        GUICtrlCreateLabel($DATERANGE_DAYS[$i], $iPosX + 5 + 35 * $i, $iPosY + 35, 30, 25, $SS_CENTER + $SS_CENTERIMAGE)
        GUICtrlSetFont(-1, 12, $FW_NORMAL, $GUI_FONTNORMAL, "Comic Sans MS")
        GUICtrlSetBkColor(-1, 0x808080)
    Next
    For $i = 0 To UBound($aDays) - 1
        $aDays[$i] = GUICtrlCreateLabel("", $iPosX + 5 + Mod($i, 7) * 35, $iPosY + 65 + Floor($i / 7) * 30, 30, 25, $SS_CENTER + $SS_CENTERIMAGE)
        GUICtrlSetFont(-1, 10, $FW_NORMAL, $GUI_FONTNORMAL, "Comic Sans MS")
        If Mod($i, 7) < 5 Then
            GUICtrlSetBkColor(-1, 0xFFFFFF)
        Else
            GUICtrlSetBkColor(-1, 0xA0A0A0)
        EndIf
    Next

    For $i = 0 To $iFirst - 2
        GUICtrlSetState($aDays[$i], $GUI_HIDE)
    Next
    For $i = 0 To $iNumDays - 1
        GUICtrlSetData($aDays[$i + $iFirst - 1], $i + 1)
    Next
    For $i = $iFirst + $iNumDays - 1 To UBound($aDays) - 1
        GUICtrlSetState($aDays[$i], $GUI_HIDE)
    Next

EndFunc   ;==>__DateRange_CreateMonth

Func __DateRange_ShowMonth(ByRef $aDays, $iMonth, $iYear, $idMonth)
    Local $iFirst = _DateToDayOfWeek(String($iYear), StringFormat("%02i", $iMonth), "01")
    Local $iNumDays = _DateDaysInMonth($iYear, $iMonth)

    GUICtrlSetData($idMonth, $DATERANGE_MONTHS[$iMonth - 1] & " " & $iYear)
    For $i = 0 To $iFirst - 2
        GUICtrlSetState($aDays[$i], $GUI_HIDE)
    Next
    For $i = 0 To $iNumDays - 1
        GUICtrlSetData($aDays[$i + $iFirst - 1], $i + 1)
        GUICtrlSetState($aDays[$i + $iFirst - 1], $GUI_SHOW)
    Next
    For $i = $iFirst + $iNumDays - 1 To UBound($aDays) - 1
        GUICtrlSetState($aDays[$i], $GUI_HIDE)
    Next
EndFunc   ;==>__DateRange_ShowMonth

Func __DateRange_SelectDate(ByRef $aDay1, ByRef $aDay2, $iStart, $iEnd, $bSelect)
    Local $iDay
    If Not $iEnd Then $iEnd = $iStart
    For $i = $iStart To $iEnd
        If ($i >= $aDay1[0] And $i <= $aDay1[UBound($aDay1) - 1]) Or ($i >= $aDay2[0] And $i <= $aDay2[UBound($aDay2) - 1]) Then
            If $bSelect Then
                GUICtrlSetBkColor($i, 0xFF0000)
            Else
                $iDay = $i < $aDay2[0] ? Mod($i - $aDay1[0], 7) : Mod($i - $aDay2[0], 7)
                If $iDay < 5 Then
                    GUICtrlSetBkColor($i, 0xFFFFFF)
                Else
                    GUICtrlSetBkColor($i, 0xA0A0A0)
                EndIf
            EndIf
        EndIf
    Next
EndFunc   ;==>__DateRange_SelectDate

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted
  On 11/3/2020 at 11:28 PM, mLipok said:

Something is wrong ... 01-11-2020 is not monday

Expand  

Corrected

  On 11/3/2020 at 11:02 PM, mLipok said:

Better solution:

Expand  

Implemented and using capital first letter (both months and days)

  On 11/3/2020 at 10:59 PM, mLipok said:

Why I always get 2 the same date ?

Expand  

You need to select a range by using Shift Click for end date ?

  On 11/3/2020 at 10:55 PM, mLipok said:

Please consider to change returned values to return them in _Date*() formats.

Expand  

Not sure the value of that.

@mLipok Thank you very much for all the tests you made :)

Posted
  On 11/4/2020 at 3:04 AM, Nine said:

Not sure the value of that.

Expand  

I mean that you return two dimentionall array where columns are COL0=Year  COL1=Month COL2=Day

But I think better will be 1D Array each row should contain date in format "YYYY/MM/DD" to be fit with _DateIsValid()

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted (edited)
  On 11/4/2020 at 3:04 AM, Nine said:

Implemented and using capital first letter (both months and days)

Expand  

Small issue:

image.png.e8edd468dc4a80401390651864371a16.png

 

This abbreviation is from "Środa"

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted
  On 11/4/2020 at 3:04 AM, Nine said:

You need to select a range by using Shift Click for end date ?

Expand  

Nicely done.

But not work when I try to select right to left , I mean from End to Start date.


 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

For comparison... a long time ago I did such a function :

#include <AutoItConstants.au3>
#include <ButtonConstants.au3>
#include <Date.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>

_Data_OD_DO('Wybierz zakres dat')

Func _Data_OD_DO($s_info, $data_od = Default, $data_do = Default, $bSQLDateFormat = False, $h_parent_windows = -1) ; Wynik to tablica IDX_0=OD DNIA 'YYYYMMDD 00:00:00.001'   IDX_1=DO DNIA 'YYYYMMDD 23:59:59.990'
    #forceref $h_parent_windows
    If $data_od = Default Then $data_od = _Now()
    If $data_do = Default Then $data_do = _Now()
    $s_info &= @CRLF & @CRLF & 'UWAGA:' & @CRLF & 'Klawisz ESC lub zamknięcie okna jest równoznaczne z naciśnięciem przycisku [ANULUJ]'
    Local $v_GUIOnEventMode = AutoItSetOption("GUIOnEventMode", 0)
    Local $Form_date_from_to = GUICreate("Data od ... do ....", 630, 392, 254, 114)
    GUISetFont(8.5 )
    GUISetBkColor(0xA6CAF0)
    Local $MonthCal_FROM = GUICtrlCreateMonthCal($data_od, 10, 144, 300, 190)
    GUICtrlSetResizing(-1, $GUI_DOCKAUTO)
    Local $MonthCal_TO = GUICtrlCreateMonthCal($data_do, 320, 144, 300, 190)
    GUICtrlSetResizing(-1, $GUI_DOCKAUTO)
    Local $idButton_Wybierz = GUICtrlCreateButton("&Wybierz wskazny zakres dat", 70, 352, 190, 25, $BS_DEFPUSHBUTTON)
    GUICtrlSetBkColor(-1, 0x00FF00)
    GUICtrlSetResizing(-1, $GUI_DOCKAUTO)
    Local $idButton_Anuluj = GUICtrlCreateButton("&Anuluj", 380, 352, 190, 25)
    GUICtrlSetBkColor(-1, 0xFF0000)
    GUICtrlSetResizing(-1, $GUI_DOCKAUTO)
    Local $Label_DATA_OD = GUICtrlCreateLabel("OD DNIA :", 10, 126, 64, 17)
    GUICtrlSetFont(-1, 8, 800, 0, "MS Sans Serif")
    GUICtrlSetResizing(-1, $GUI_DOCKAUTO)
    Local $Label_DATA_DO = GUICtrlCreateLabel("DO DNIA :", 320, 126, 64, 17)
    GUICtrlSetFont(-1, 8, 800, 0, "MS Sans Serif")
    GUICtrlSetResizing(-1, $GUI_DOCKAUTO)
    GUICtrlCreateLabel($s_info, 10, 10, 610, 110, $WS_BORDER, $WS_EX_CLIENTEDGE)
    GUICtrlSetBkColor(-1, 0xFFFBF0)
    GUICtrlSetResizing(-1, $GUI_DOCKAUTO)
    GUISetState(@SW_SHOW)
    Local $nMsg
    Local $vReturnValue = ''
    WinSetOnTop("Data od ... do ....", $s_info, $WINDOWS_ONTOP)
    Local $Days_between
    WinSetOnTop($Form_date_from_to, '', $WINDOWS_ONTOP)
    While 1
        $nMsg = GUIGetMsg()
        Switch $nMsg
            Case $GUI_EVENT_CLOSE
                $vReturnValue = False
                ExitLoop
            Case $idButton_Wybierz
                $Days_between = _DateDiff('D', GUICtrlRead($MonthCal_FROM), GUICtrlRead($MonthCal_TO))
                If $Days_between < 0 Then
                    GUICtrlSetData($Label_DATA_OD, '!!! DO DNIA :')
                    GUICtrlSetBkColor($Label_DATA_OD, 0xFF0000)
                    GUICtrlSetData($Label_DATA_DO, '!!! DO DNIA :')
                    GUICtrlSetBkColor($Label_DATA_DO, 0xFF0000)
                Else
                    GUICtrlSetData($Label_DATA_OD, 'DO DNIA :')
                    GUICtrlSetBkColor($Label_DATA_OD, 0x000000)
                    GUICtrlSetData($Label_DATA_DO, 'DO DNIA :')
                    GUICtrlSetBkColor($Label_DATA_DO, 0x000000)
                    Local $a_wynik[2] = [GUICtrlRead($MonthCal_FROM), GUICtrlRead($MonthCal_TO)]
                    If $bSQLDateFormat Then
                        $a_wynik[0] = StringReplace($a_wynik[0], '/', '') & ' 00:00:00.001'
                        $a_wynik[1] = StringReplace($a_wynik[1], '/', '') & ' 23:59:59.990'
                    EndIf
                    $vReturnValue = $a_wynik ; 2013/01/01  |   2013/11/08
                    ExitLoop
                EndIf
            Case $idButton_Anuluj
                $vReturnValue = False
                ExitLoop
        EndSwitch
    WEnd
    GUIDelete($Form_date_from_to)
    AutoItSetOption("GUIOnEventMode", $v_GUIOnEventMode)

    If $vReturnValue = False Then _
            Return SetError(1, 0, $vReturnValue)
    Return $vReturnValue
EndFunc   ;==>_Data_OD_DO

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

The idea is that the left and right calendars are independently changeable so that you can set the date range you like.

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted
  On 11/4/2020 at 9:29 AM, mLipok said:

This abbreviation is from "Środa"

Expand  

Problem comes from  _StringTitleCase function.

  On 11/4/2020 at 9:25 AM, mLipok said:

I think better will be 1D Array each row should contain date in format "YYYY/MM/DD" to be fit with _DateIsValid()

Expand  

Done

  On 11/4/2020 at 9:32 AM, mLipok said:

But not work when I try to select right to left

Expand  

I know, lets call it a design choice ;)

Posted
Posted

sounds cool ;)

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...