Jump to content

GUICtrlSetData not update the control


hezi
 Share

Recommended Posts

Hello All,

Im trying to update the date control using "GUICtrlSetData (-1,"19:00:00")" (line 10)

but somehow it ignore and not updating the control data.

what im doing wrong?

Thanks in advance.

#include <GUIConstantsEx.au3>
#include <DateTimeConstants.au3>
Opt('MustDeclareVars', 1)

Example4()
Func Example4()
Local $n, $msg ,$gui ,  $y
$gui= GUICreate("My GUI get time", 200, 200, 800, 200)
$n = GUICtrlCreateDate("20:20:21", 20, 20, 100, 20, $DTS_TIMEFORMAT)
$y = GUICtrlSetData (-1,"19:00:00")
MsgBox(0,@error,$y) ; Debug
GUISetState()
; Run the GUI until the dialog is closed
Do
  $msg = GUIGetMsg()
Until $msg = $GUI_EVENT_CLOSE
MsgBox(0, "Time", GUICtrlRead($n))
GUIDelete()
EndFunc   ;==>Example4
Edited by hezi
Link to comment
Share on other sites

You have to specify date AND time:

#include <GUIConstantsEx.au3>
#include <DateTimeConstants.au3>
Opt('MustDeclareVars', 1)

Example4()
Func Example4()
    Local $n, $msg, $gui, $y
    $gui = GUICreate("My GUI get time", 200, 200, 800, 200)
    $n = GUICtrlCreateDate("20:20:01", 20, 20, 100, 20, $DTS_TIMEFORMAT)
    $y = GUICtrlSetData($n, "2011/11/30 19:00:00")
    GUISetState()
    ; Run the GUI until the dialog is closed
    Do
        $msg = GUIGetMsg()
    Until $msg = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>Example4
Edited by water

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

Maybe because the style ($DTS_TIMEFORMAT) only applies to the way the data is displayed and returned but internally the control works with date AND time and the update function has to update the internal representation.

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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