Modify ↓
Opened 3 hours ago
Last modified 2 hours ago
#4065 new Bug
Variable $DMW_LOCALE_USER is missing in DateTimeConstants.au3, but is used in help file
| Reported by: | Don.T.Vomit@… | Owned by: | |
|---|---|---|---|
| Milestone: | Component: | AutoIt | |
| Version: | 3.3.18.0 | Severity: | None |
| Keywords: | Cc: |
Description
The variable $DMW_LOCALE_USER is used in the helpfile when getting help for function _DateDayOfWeek. in file DateTimeConstants.au3 there are 2 variables that look similar:
Global Const $DMW_LOCALE_LONGNAME = 2
Global Const $DMW_LOCALE_SHORTNAME = 3
Script:
#include <DateTimeConstants.au3>
MsgBox(0, "", "$DMW_LOCALE_USER=" & $DMW_LOCALE_USER)
MsgBox(0, "", "$DMW_LOCALE_LONGNAME=" & $DMW_LOCALE_LONGNAME)
1st msgbox creates an error
Attachments (0)
Guidelines for posting comments:
- You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
- In-depth discussions should take place on the forum.
For more information see the full version of the ticket guidelines here.
Note: See
TracTickets for help on using
tickets.

Helpfile needs update from $DMW_LOCALE_USER to $DMW_LONGNAME.