Todumb4u Posted March 3, 2007 Posted March 3, 2007 Quick question: #MsgBox(64, "Add New", "Time and Date?") InputBox ( "Date", "Date/Month/Year", "29/07/2007") #include <GUIConstants.au3> $hGUI = GUICreate("EventLog", 400, 300) $iMemo = GUICtrlCreateEdit("", 2, 2, 396, 296) GUICtrlSetFont($iMemo, 9, 400, 0, "Courier New") GUISetState() MemoWrite("29/07/2007") do until GUIGetMsg() = $GUI_EVENT_CLOSE Func MemoWrite($sMessage) GUICtrlSetData($iMemo, $sMessage & @CRLF, 1) EndFunc Thats what ive got at the moment im trying to make a Alarm clock where you enter a date and time and then on that date and time it will make a pop up message like msn. Is that possible? Anyway thats what ive done so far im only new to this. Erm how can i make it so that when someone enters the time and date here: InputBox ( "Date", "Date/Month/Year", "29/07/2007") How can i make it so that when it reaches here: MemoWrite("29/07/2007") That is writes the date from the input box? Thanks alot. TD4U
Moderators SmOke_N Posted March 3, 2007 Moderators Posted March 3, 2007 $var = InputBox(blahblah) MemoWrite($var) Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
Todumb4u Posted March 3, 2007 Author Posted March 3, 2007 Awesome thanks alot. So would you say its possible to make this? thanks alot /td4u
Valuater Posted March 3, 2007 Posted March 3, 2007 ...So would you say its possible to make this?...yes!! you can Make this with Autoit8)
Todumb4u Posted March 3, 2007 Author Posted March 3, 2007 Thanks alot. I will post if i ever finish it:P
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