Search the Community
Showing results for tags 'guictrlcreatedate'.
-
Hi, I created a gui with date field but formatted as time in HH:mm. It always shows "now-time". Even if I try to set it with GUICtrlSetData. #include <DateTimeConstants.au3> #include <GUIConstantsEx.au3> #include <MsgBoxConstants.au3> Example() Func Example() GUICreate("My GUI get date", 2...
- 4 replies
-
- guictrlcreatedate
- time
-
(and 3 more)
Tagged with:
-
Issue: If either date picker controls receive focus, then use arrow keys to change date in edit portion, flags do not set to True until mouse move or mouse click. I have used this exact method in the past & it works perfectly. I just can't figure out what I am doing wrong here. The only thing differ...
- 2 replies
-
- guictrlcreatedate
- wm_notify
-
(and 1 more)
Tagged with:
-
I have been trying to figure out a way to make a box in an autoit gui that can capture both date and time. I tried using both of these: $idStart = GUICtrlCreateDate("2015/07/03 12:13:3", 72, 15, 186, 21, $DTS_SHORTDATEFORMAT) $idStart = GUICtrlCreateDate("2015/07/03 12:13:3", 72, 15, 186, 21, $DTS...
-
Hi All, I've run into an issue in one of my scripts using the GUICtrlCreateDate function with the $DTS_TIMEFORMAT flag. Basically, after the creation of the Date tool, I seem to be unable to set the data in the box; And after reading the function reference for GuiCtrlSetData, This does seem to b...
- 3 replies
-
- GuiCtrlCreateDate
- GUICtrlSetData
-
(and 1 more)
Tagged with:
-
If you use the command GUICtrlCreateDate("",89, 280, 201, 21) it creates a date box and defaults to today's date. Is there a way to make it so the default value is actually blank? I've already tried putting in Null, default, 0, and "0" but it doesn't seem to blank out the date. I did find this...
-
I'd really like to change the background color of a Date control and GUICtrlSetBkColor does not do it, help #include <DateTimeConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreat...