Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/17/2016 in Posts

  1. Features: Create modern looking borderless and resizable GUIs with control buttons (Close,Maximize/Restore,Minimize, Fullscreen, Menu) True borderless, resizeable GUI with full support for aerosnap etc. Many color schemes/themes included. See MetroThemes.au3 for more details. 3 type of Windows 8/10 style buttons. Modern checkboxes, radios, toggles and progressbar. All buttons, checkboxes etc. have hover effects! Windows 10 style modern MsgBox. Windows 10/Android style menu that slides in from left. Windows 10 style right click menu Credits: @UEZ, for the function to create buttons with text using GDIPlus. @binhnx for his SSCtrlHover UDF Changelog: Download UDF with example:
    1 point
  2. water

    Problem with drag & drop

    I'm too slow That was exactly what I would have proposed next.
    1 point
  3. i don't need to convert it to "Exanple.au3". I need to remove it from the edit You have wrong idea anyway, thanks for help me
    1 point
  4. This example takes no longer than 1/4 second to inform you when the file has changed. #include <Array.au3> Global $sFileToCheck = "C:\temp\test.txt" Global $bFileChanged = False Global $sFileDateTime = _ArrayToString(FileGetTime($sFileToCheck)) AdlibRegister("_CheckFile", 250) While 1 Sleep(10) If $bFileChanged Then MsgBox(0, "Info", "File has changed") $sFileDateTime = _ArrayToString(FileGetTime($sFileToCheck)) $bFileChanged = False EndIf WEnd Func _CheckFile() If $sFileDateTime <> _ArrayToString(FileGetTime($sFileToCheck)) Then $bFileChanged = True EndFunc ;==>_CheckFile
    1 point
  5. On startup of the script I would read the modification date/time of the file and store it in a variable. Use AdlibRegister to register a function that is called every x seconds or minutes. This function would read the modification date/time of the file and if different to the original date/time popup the MsgBox. But the solution you are looking for depends on how fast the users need to be informed about a change.
    1 point
  6. http://lmgtfy.com/?q=autoit+xmlwrapper# Start reading on Page 38 and end here:
    1 point
  7. I just upload new version of my modified version: try attached XML__Examples_User_coma.au3 example mLipok btw. to the forum.
    1 point
×
×
  • Create New...