billthecreator Posted October 27, 2009 Share Posted October 27, 2009 (edited) This is a clock, and it has the flip alarm clock style.-Choose between 24 hour and 12 hour.-Change how the date shows, if you want to show the date.Alarm Clock.rarPrevious DLs: 151 Edited November 18, 2009 by billthecreator [font=Microsoft Sans Serif]My Scripts: From Most recent to least.[/font]Countdown GUI | QLOCK TWO | FlipClock | Slot Machine My UDF:_GenerateRandomNoRepeat | _GuiSnap Link to comment Share on other sites More sharing options...
MrCreatoR Posted October 27, 2009 Share Posted October 27, 2009 Nice idea, but wrong realization of the main loop, try this: $CurrentTime = @HOUR & @MIN While 1 If $CurrentTime <> @HOUR & @MIN Then $CurrentTime = @HOUR & @MIN _SetClock($Format, 100) EndIf Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit Case $SwitchPicture If $Format = 24 Then GUICtrlSetImage($SwitchPicture, "Switch12.bmp") $Format = 12 Else GUICtrlSetImage($SwitchPicture, "Switch24.bmp") $Format = 24 EndIf _SetClock($Format, 100) Case $24 GUICtrlSetImage($SwitchPicture, "Switch24.bmp") $Format = 24 _SetClock($Format, 100) Case $12 GUICtrlSetImage($SwitchPicture, "Switch12.bmp") $Format = 12 _SetClock($Format, 100) EndSwitch WEnd Spoiler Using OS: Win 7 Professional, Using AutoIt Ver(s): 3.3.6.1 / 3.3.8.1 AutoIt Russian Community My Work... Spoiler Projects: ATT - Application Translate Tool {new}| BlockIt - Block files & folders {new}| SIP - Selected Image Preview {new}| SISCABMAN - SciTE Abbreviations Manager {new}| AutoIt Path Switcher | AutoIt Menu for Opera! | YouTube Download Center! | Desktop Icons Restorator | Math Tasks | KeyBoard & Mouse Cleaner | CaptureIt - Capture Images Utility | CheckFileSize ProgramUDFs: OnAutoItErrorRegister - Handle AutoIt critical errors {new}| AutoIt Syntax Highlight {new}| Opera Library! | Winamp Library | GetFolderToMenu | Custom_InputBox()! | _FileRun UDF | _CheckInput() UDF | _GUIInputSetOnlyNumbers() UDF | _FileGetValidName() UDF | _GUICtrlCreateRadioCBox UDF | _GuiCreateGrid() | _PathSplitByRegExp() | _GUICtrlListView_MoveItems - UDF | GUICtrlSetOnHover_UDF! | _ControlTab UDF! | _MouseSetOnEvent() UDF! | _ProcessListEx - UDF | GUICtrl_SetResizing - UDF! | Mod. for _IniString UDFs | _StringStripChars UDF | _ColorIsDarkShade UDF | _ColorConvertValue UDF | _GUICtrlTab_CoverBackground | CUI_App_UDF | _IncludeScripts UDF | _AutoIt3ExecuteCode | _DragList UDF | Mod. for _ListView_Progress | _ListView_SysLink | _GenerateRandomNumbers | _BlockInputEx | _IsPressedEx | OnAutoItExit Handler | _GUICtrlCreateTFLabel UDF | WinControlSetEvent UDF | Mod. for _DirGetSizeEx UDF Examples: ScreenSaver Demo - Matrix included | Gui Drag Without pause the script | _WinAttach()! | Turn Off/On Monitor | ComboBox Handler Example | Mod. for "Thinking Box" | Cool "About" Box | TasksBar Imitation Demo Like the Projects/UDFs/Examples? Please rate the topic (up-right corner of the post header: Rating ) * === My topics === * ================================================== ================================================== AutoIt is simple, subtle, elegant. © AutoIt Team Link to comment Share on other sites More sharing options...
MrCreatoR Posted October 27, 2009 Share Posted October 27, 2009 Oh yes, and the images are not downloaded with «www», add «http://» instead. Spoiler Using OS: Win 7 Professional, Using AutoIt Ver(s): 3.3.6.1 / 3.3.8.1 AutoIt Russian Community My Work... Spoiler Projects: ATT - Application Translate Tool {new}| BlockIt - Block files & folders {new}| SIP - Selected Image Preview {new}| SISCABMAN - SciTE Abbreviations Manager {new}| AutoIt Path Switcher | AutoIt Menu for Opera! | YouTube Download Center! | Desktop Icons Restorator | Math Tasks | KeyBoard & Mouse Cleaner | CaptureIt - Capture Images Utility | CheckFileSize ProgramUDFs: OnAutoItErrorRegister - Handle AutoIt critical errors {new}| AutoIt Syntax Highlight {new}| Opera Library! | Winamp Library | GetFolderToMenu | Custom_InputBox()! | _FileRun UDF | _CheckInput() UDF | _GUIInputSetOnlyNumbers() UDF | _FileGetValidName() UDF | _GUICtrlCreateRadioCBox UDF | _GuiCreateGrid() | _PathSplitByRegExp() | _GUICtrlListView_MoveItems - UDF | GUICtrlSetOnHover_UDF! | _ControlTab UDF! | _MouseSetOnEvent() UDF! | _ProcessListEx - UDF | GUICtrl_SetResizing - UDF! | Mod. for _IniString UDFs | _StringStripChars UDF | _ColorIsDarkShade UDF | _ColorConvertValue UDF | _GUICtrlTab_CoverBackground | CUI_App_UDF | _IncludeScripts UDF | _AutoIt3ExecuteCode | _DragList UDF | Mod. for _ListView_Progress | _ListView_SysLink | _GenerateRandomNumbers | _BlockInputEx | _IsPressedEx | OnAutoItExit Handler | _GUICtrlCreateTFLabel UDF | WinControlSetEvent UDF | Mod. for _DirGetSizeEx UDF Examples: ScreenSaver Demo - Matrix included | Gui Drag Without pause the script | _WinAttach()! | Turn Off/On Monitor | ComboBox Handler Example | Mod. for "Thinking Box" | Cool "About" Box | TasksBar Imitation Demo Like the Projects/UDFs/Examples? Please rate the topic (up-right corner of the post header: Rating ) * === My topics === * ================================================== ================================================== AutoIt is simple, subtle, elegant. © AutoIt Team Link to comment Share on other sites More sharing options...
billthecreator Posted October 27, 2009 Author Share Posted October 27, 2009 Oh yes, and the images are not downloaded with «www», add «http://» instead.Thanks for noticing..With both issues. [font=Microsoft Sans Serif]My Scripts: From Most recent to least.[/font]Countdown GUI | QLOCK TWO | FlipClock | Slot Machine My UDF:_GenerateRandomNoRepeat | _GuiSnap Link to comment Share on other sites More sharing options...
somdcomputerguy Posted October 27, 2009 Share Posted October 27, 2009 Nice. One of the few scripts that I've written (and am still writing..) is a sort of a sleep timer/alarm clock. I would like to integrate this type of display into it, a 'current time/countdown time/alarm time' thing.. - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change. Link to comment Share on other sites More sharing options...
billthecreator Posted October 27, 2009 Author Share Posted October 27, 2009 Nice. One of the few scripts that I've written (and am still writing..) is a sort of a sleep timer/alarm clock. I would like to integrate this type of display into it, a 'current time/countdown time/alarm time' thing..go right ahead.the reason i post here... [font=Microsoft Sans Serif]My Scripts: From Most recent to least.[/font]Countdown GUI | QLOCK TWO | FlipClock | Slot Machine My UDF:_GenerateRandomNoRepeat | _GuiSnap Link to comment Share on other sites More sharing options...
headroom Posted October 27, 2009 Share Posted October 27, 2009 very nice work Link to comment Share on other sites More sharing options...
billthecreator Posted October 27, 2009 Author Share Posted October 27, 2009 (edited) Added update, first post.This includes new images. cleaner and nicer.Also a gear looking thing next to each flip rack.And I added the date.If you have the previous version, the number images wont change. You must delete the existing ones in the ScriptDir and rerun the script. Edited October 27, 2009 by billthecreator [font=Microsoft Sans Serif]My Scripts: From Most recent to least.[/font]Countdown GUI | QLOCK TWO | FlipClock | Slot Machine My UDF:_GenerateRandomNoRepeat | _GuiSnap Link to comment Share on other sites More sharing options...
MrCreatoR Posted October 27, 2009 Share Posted October 27, 2009 My advice to you - don't post scripts like this. Better attach all the needed files together in one archive. In the last version i getting error due to missing Icons.au3. Spoiler Using OS: Win 7 Professional, Using AutoIt Ver(s): 3.3.6.1 / 3.3.8.1 AutoIt Russian Community My Work... Spoiler Projects: ATT - Application Translate Tool {new}| BlockIt - Block files & folders {new}| SIP - Selected Image Preview {new}| SISCABMAN - SciTE Abbreviations Manager {new}| AutoIt Path Switcher | AutoIt Menu for Opera! | YouTube Download Center! | Desktop Icons Restorator | Math Tasks | KeyBoard & Mouse Cleaner | CaptureIt - Capture Images Utility | CheckFileSize ProgramUDFs: OnAutoItErrorRegister - Handle AutoIt critical errors {new}| AutoIt Syntax Highlight {new}| Opera Library! | Winamp Library | GetFolderToMenu | Custom_InputBox()! | _FileRun UDF | _CheckInput() UDF | _GUIInputSetOnlyNumbers() UDF | _FileGetValidName() UDF | _GUICtrlCreateRadioCBox UDF | _GuiCreateGrid() | _PathSplitByRegExp() | _GUICtrlListView_MoveItems - UDF | GUICtrlSetOnHover_UDF! | _ControlTab UDF! | _MouseSetOnEvent() UDF! | _ProcessListEx - UDF | GUICtrl_SetResizing - UDF! | Mod. for _IniString UDFs | _StringStripChars UDF | _ColorIsDarkShade UDF | _ColorConvertValue UDF | _GUICtrlTab_CoverBackground | CUI_App_UDF | _IncludeScripts UDF | _AutoIt3ExecuteCode | _DragList UDF | Mod. for _ListView_Progress | _ListView_SysLink | _GenerateRandomNumbers | _BlockInputEx | _IsPressedEx | OnAutoItExit Handler | _GUICtrlCreateTFLabel UDF | WinControlSetEvent UDF | Mod. for _DirGetSizeEx UDF Examples: ScreenSaver Demo - Matrix included | Gui Drag Without pause the script | _WinAttach()! | Turn Off/On Monitor | ComboBox Handler Example | Mod. for "Thinking Box" | Cool "About" Box | TasksBar Imitation Demo Like the Projects/UDFs/Examples? Please rate the topic (up-right corner of the post header: Rating ) * === My topics === * ================================================== ================================================== AutoIt is simple, subtle, elegant. © AutoIt Team Link to comment Share on other sites More sharing options...
billthecreator Posted October 27, 2009 Author Share Posted October 27, 2009 My advice to you - don't post scripts like this. Better attach all the needed files together in one archive.In the last version i getting error due to missing Icons.au3.Thanks again. I forgot to add and mention that. [font=Microsoft Sans Serif]My Scripts: From Most recent to least.[/font]Countdown GUI | QLOCK TWO | FlipClock | Slot Machine My UDF:_GenerateRandomNoRepeat | _GuiSnap Link to comment Share on other sites More sharing options...
Yashied Posted October 27, 2009 Share Posted October 27, 2009 (edited) I advise you to download a new version Icons.au3.EDIT:And may be better to get rid of the window title?expandcollapse popup#include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #include <Icons.au3> #include <Date.au3> ; ;Created By William Reithmeyer ;Bitmaps done by William Reithmeyer ; ; ProgressOn("Loading...", "") For $File = 0 To 9 While Not FileExists($File & "TOP.bmp") InetGet("http://myautoit.angelfire.com/Clock/AlarmStyle/" & $File & "TOP.bmp", @ScriptDir & "\" & $File & "TOP.bmp") WEnd While Not FileExists($File & "BOT.bmp") InetGet("http://myautoit.angelfire.com/Clock/AlarmStyle/" & $File & "BOT.bmp", @ScriptDir & "\" & $File & "BOT.bmp") WEnd ProgressSet(($File/13)*100) Next While Not FileExists("Switch24.png") InetGet("http://myautoit.angelfire.com/Clock/AlarmStyle/Switch24.png", @ScriptDir & "\Switch24.png") WEnd ProgressSet((11/13)*100) While Not FileExists("Switch12.png") InetGet("http://myautoit.angelfire.com/Clock/AlarmStyle/Switch12.png", @ScriptDir & "\Switch12.png") WEnd ProgressSet((12/13)*100) While Not FileExists("Gear.png") InetGet("http://myautoit.angelfire.com/Clock/AlarmStyle/Gear.png", @ScriptDir & "\Gear.png") WEnd While Not FileExists("Icons.au3") InetGet("http://myautoit.angelfire.com/Clock/AlarmStyle/Icons.au3", @ScriptDir & "\Icons.au3") WEnd ProgressSet((13/13)*100) ProgressOff() ; $Format = 24 $Form1 = GUICreate("Clock", 480, 176, -1, -1, $WS_POPUP) GUISetBkColor(0x000000) GUIRegisterMsg($WM_NCHITTEST, "WM_NCHITTEST") $hRgn = _WinAPI_CreateRoundRectRgn(0, 0, 480, 175, 50, 50) _WinAPI_SetWindowRgn($Form1, $hRgn) For $j = 0 To 1 GUICtrlCreateLabel("", 16 +($j*232), 37, 8, 29) GUICtrlSetBkColor(-1, 0xFFFFFF) GUICtrlCreateLabel("", 16 +($j*232), 68, 8, 40) GUICtrlSetBkColor(-1, 0xFFFFFF) GUICtrlCreateLabel("", 108 +($j*232), 37, 8, 29) GUICtrlSetBkColor(-1, 0xFFFFFF) GUICtrlCreateLabel("", 108 +($j*232), 68, 8, 40) GUICtrlSetBkColor(-1, 0xFFFFFF) GUICtrlCreateLabel("", 120 +($j*232), 37, 8, 29) GUICtrlSetBkColor(-1, 0xFFFFFF) GUICtrlCreateLabel("", 120 +($j*232), 68, 8, 40) GUICtrlSetBkColor(-1, 0xFFFFFF) Next $GearOneLeft = GUICtrlCreatePic("", 8, 38, 16, 65) _SetImage($GearOneLeft, 'Gear.png') $GearOneRight = GUICtrlCreatePic("", 110, 38, 16, 65) _SetImage($GearOneRight, 'Gear.png') $GearTwoLeft = GUICtrlCreatePic("", 240, 38, 16, 65) _SetImage($GearTwoLeft, 'Gear.png') $GearTwoRight = GUICtrlCreatePic("", 342, 38, 16, 65) _SetImage($GearTwoRight, 'Gear.png') $HourOneTop = GUICtrlCreatePic("", 16, 16, 100, 50, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS)) GUICtrlSetState(-1, $GUI_DISABLE) $HourOneBot = GUICtrlCreatePic("", 16, 68, 100, 50, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS)) GUICtrlSetState(-1, $GUI_DISABLE) $HourTwoTop = GUICtrlCreatePic("", 120, 16, 100, 50, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS)) GUICtrlSetState(-1, $GUI_DISABLE) $HourTowBot = GUICtrlCreatePic("", 120, 68, 100, 50, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS)) GUICtrlSetState(-1, $GUI_DISABLE) $MinOneTop = GUICtrlCreatePic("", 248, 16, 100, 50, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS)) GUICtrlSetState(-1, $GUI_DISABLE) $MinOneBot = GUICtrlCreatePic("", 248, 68, 100, 50, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS)) GUICtrlSetState(-1, $GUI_DISABLE) $MinTwoTop = GUICtrlCreatePic("", 352, 16, 100, 50, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS)) GUICtrlSetState(-1, $GUI_DISABLE) $MinTwoBot = GUICtrlCreatePic("", 352, 68, 100, 50, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS)) GUICtrlSetState(-1, $GUI_DISABLE) $TodayLabel = GUICtrlCreateLabel(_DateDayOfWeek(@WDAY) & ", " & _DateToMonth(@MON) & " " & @MDAY & ", " & @YEAR, 0, 134, 480, 14, $SS_CENTER) GUICtrlSetColor(-1, 0xFFFFFF) $HourLabel = GUICtrlCreateLabel("HOURS", 16, 120, 204, 14, $SS_CENTER) GUICtrlSetColor(-1, 0xFFFFFF) $MinLabel = GUICtrlCreateLabel("MINUTES", 248, 120, 204, 14, $SS_CENTER) GUICtrlSetColor(-1, 0xFFFFFF) $PMLabel = GUICtrlCreateLabel("PM", 456, 16, 20, 17) GUICtrlSetColor(-1, 0xFFFFFF) GUICtrlSetState(-1, $GUI_HIDE) $AMLabel = GUICtrlCreateLabel("AM", 456, 35, 20, 17) GUICtrlSetColor(-1, 0xFFFFFF) GUICtrlSetState(-1, $GUI_HIDE) $24 = GUICtrlCreateLabel("24", 10, 152, 36, 21, $SS_RIGHT) GUICtrlSetColor(-1, 0xFFFFFF) $12 = GUICtrlCreateLabel("12", 104, 152, 36, 21) GUICtrlSetColor(-1, 0xFFFFFF) $SwitchPicture = GUICtrlCreatePic("", 50, 147, 52, 24) _SetImage($SwitchPicture, 'Switch24.png') Set_Time(0, 0, $MinOneTop, $MinOneBot, $MinTwoTop, $MinTwoBot, 0) Set_Time(0, 0, $HourOneTop, $HourOneBot, $HourTwoTop, $HourTowBot, 0) GUISetState(@SW_SHOW) ; Sleep(750) Local $del = 65 $Min = StringSplit(@MIN, "") For $u = 0 To $Min[2] Set_Time(0, $u, $MinOneTop, $MinOneBot, $MinTwoTop, $MinTwoBot, $del) Next For $i = 0 To $Min[1] Set_Time($i, $u-1, $MinOneTop, $MinOneBot, $MinTwoTop, $MinTwoBot, $del) Next $Hr = StringSplit(@HOUR, "") For $u = 0 To $Hr[2] Set_Time(0, $u, $HourOneTop, $HourOneBot, $HourTwoTop, $HourTowBot, $del) Next For $i = 0 To $Hr[1] Set_Time($i, $u-1, $HourOneTop, $HourOneBot, $HourTwoTop, $HourTowBot, $del) Next _SetClock($Format, 125) $CurrentTime = @HOUR & @MIN ; While 1 If $CurrentTime <> @HOUR & @MIN Then $CurrentTime = @HOUR & @MIN _SetClock($Format, 100) EndIf Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit Case $SwitchPicture If $Format = 24 Then _SetImage($SwitchPicture, 'Switch12.png') $Format = 12 Else _SetImage($SwitchPicture, 'Switch24.png') $Format = 24 EndIf _SetClock($Format, 50, 1) Case $24 _SetImage($SwitchPicture, 'Switch24.png') $Format = 24 _SetClock($Format, 50, 1) Case $12 _SetImage($SwitchPicture, 'Switch12.png') $Format = 12 _SetClock($Format, 50, 1) EndSwitch WEnd Func WM_NCHITTEST($hWnd, $iMsg, $wParam, $lParam) if ($hWnd = $Form1) and ($iMsg = $WM_NCHITTEST) then Return $HTCAPTION EndFunc Func _SetClock($HHFormat, $Delay, $var = "") $Hour = StringSplit(_Format_Time(@HOUR, $HHFormat), "") $Minute = StringSplit(@MIN, "") If $var = 1 Then $step = 1 $HH = StringSplit(@HOUR, "") $fHH = StringSplit(_Format_Time(@HOUR, $HHFormat), "") If $fHH[2] < $HH[2] Then $step = -1 If $Format = 12 Then For $u = $HH[2] To $fHH[2] Step $step Set_Time($HH[1], $u, $HourOneTop, $HourOneBot, $HourTwoTop, $HourTowBot, $del) Next $step = 1 If $fHH[1] < $HH[1] Then $step = -1 For $i = $fHH[1] To $HH[2] Step $step Set_Time($i, $u-1, $HourOneTop, $HourOneBot, $HourTwoTop, $HourTowBot, $del) Next Else For $u = $fHH[2] To $HH[2] Step $step Set_Time($HH[1], $u, $HourOneTop, $HourOneBot, $HourTwoTop, $HourTowBot, $del) Next $step = 1 If $fHH[1] < $HH[1] Then $step = -1 For $i = $fHH[1] To $HH[1] Step $step Set_Time($i, $u-1, $HourOneTop, $HourOneBot, $HourTwoTop, $HourTowBot, $del) Next EndIf EndIf If $HHFormat = 12 Then Set_12Format(@HOUR) Else Set_12Format() EndIf Set_Time($Minute[1], $Minute[2], $MinOneTop, $MinOneBot, $MinTwoTop, $MinTwoBot, $Delay) Set_Time($Hour[1], $Hour[2], $HourOneTop, $HourOneBot, $HourTwoTop, $HourTowBot, $Delay) EndFunc ; Func Set_Time($FirstNum, $SecNum, $FirstTop, $FirstBot, $SecTop, $SecBot, $Delay) GUICtrlSetImage($SecTop, $SecNum & "TOP.bmp") Sleep($Delay) GUICtrlSetImage($SecBot, $SecNum & "BOT.bmp") ; GUICtrlSetImage($FirstTop, $FirstNum & "TOP.bmp") Sleep($Delay) GUICtrlSetImage($FirstBot, $FirstNum & "BOT.bmp") EndFunc ; Func _Format_Time($Hours, $HH_Format) Switch $HH_Format Case 24 Return $Hours Case 12 Switch $Hours Case 13 To 23 $Hours = $Hours - 12 If StringLen($Hours) = 1 Then $Hours = "0" & $Hours Return $Hours Case 00 Return 12 Case Else Return $Hours EndSwitch Case Else Return $Hours EndSwitch EndFunc ; Func Set_12Format($APHours = "") If $APHours = "" Then GUICtrlSetState($AMLabel, $GUI_HIDE) GUICtrlSetState($PMLabel, $GUI_HIDE) Else If $APHours > 11 Then GUICtrlSetState($AMLabel, $GUI_HIDE) GUICtrlSetState($PMLabel, $GUI_SHOW) Else GUICtrlSetState($AMLabel, $GUI_SHOW) GUICtrlSetState($PMLabel, $GUI_HIDE) EndIf EndIf EndFunc Edited October 27, 2009 by Yashied My UDFs: iKey | FTP Uploader | Battery Checker | Boot Manager | Font Viewer | UDF Keyword Manager | Run Dialog Replacement | USBProtect | 3D Axis | Calculator | Sleep | iSwitcher | TM | NetHelper | File Types Manager | Control Viewer | SynFolders | DLL Helper Animated Tray Icons UDF Library | Hotkeys UDF Library | Hotkeys Input Control UDF Library | Caret Shape UDF Library | Context Help UDF Library | Most Recently Used List UDF Library | Icons UDF Library | FTP UDF Library | Script Communications UDF Library | Color Chooser UDF Library | Color Picker Control UDF Library | IPHelper (Vista/7) UDF Library | WinAPI Extended UDF Library | WinAPIVhd UDF Library | Icon Chooser UDF Library | Copy UDF Library | Restart UDF Library | Event Log UDF Library | NotifyBox UDF Library | Pop-up Windows UDF Library | TVExplorer UDF Library | GuiHotKey UDF Library | GuiSysLink UDF Library | Package UDF Library | Skin UDF Library | AITray UDF Library | RDC UDF Library Appropriate path | Button text color | Gaussian random numbers | Header's styles (Vista/7) | ICON resource enumeration | Menu & INI | Tabbed string size | Tab's skin | Pop-up circular menu | Progress Bar without animation (Vista/7) | Registry export | Registry path jumping | Unique hardware ID | Windows alignment More... Link to comment Share on other sites More sharing options...
mikeeps2 Posted March 13, 2014 Share Posted March 13, 2014 hello i try to run this script but show a error C:Documents and SettingsAUTOMATIONMy DocumentsDownloadsAlarm ClockClock.au3 (8) : ==> Error opening the file.: #Include "GuiCtrlOnChangeRegister.au3" how fix that ? thanks Link to comment Share on other sites More sharing options...
BrewManNH Posted March 14, 2014 Share Posted March 14, 2014 hello i try to run this script but show a error C:Documents and SettingsAUTOMATIONMy DocumentsDownloadsAlarm ClockClock.au3 (8) : ==> Error opening the file.: #Include "GuiCtrlOnChangeRegister.au3" how fix that ? thanks Delete that include line, it's not needed. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
mikeeps2 Posted March 14, 2014 Share Posted March 14, 2014 oh thanks , i test now and work fine , thanks mikee Link to comment Share on other sites More sharing options...
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