Andreik Posted June 23, 2010 Posted June 23, 2010 (edited) Check this code. It should change the time from control after 5 seconds but isn't change anything. What is wrong here?$MAIN = GUICreate("Test",300,186) GUISetBkColor(0xC0E0FF,$MAIN) $TIME = GUICtrlCreateDate("",40,30,150,30,BitOR(0x20,0x09,0x01)) GUISetState() Sleep(5000) GUICtrlSetData($TIME,"18:05:11") Sleep(5000) Edited June 23, 2010 by Andreik
kaotkbliss Posted June 23, 2010 Posted June 23, 2010 Let's step through the code... You create your gui You set your time variable you sleep for 5 seconds then display the variable you set 5 seconds ago 010101000110100001101001011100110010000001101001011100110010000 001101101011110010010000001110011011010010110011100100001 My Android cat and mouse gamehttps://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueek We're gonna need another Timmy!
somdcomputerguy Posted June 23, 2010 Posted June 23, 2010 Change this GUICtrlSetData($TIME,"18:05:11") to GUICtrlSetData($TIME, @YEAR & "/" & @MON & "/" & @MDAY & " 18:05:11") - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change.
Andreik Posted June 23, 2010 Author Posted June 23, 2010 Change this GUICtrlSetData($TIME,"18:05:11") to GUICtrlSetData($TIME, @YEAR & "/" & @MON & "/" & @MDAY & " 18:05:11")Thanks, it works.
somdcomputerguy Posted June 23, 2010 Posted June 23, 2010 Thanks, it works.You bet. - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now