Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/17/2024 in all areas

  1. It has been discussed in this thread, good luck.
    2 points
  2. Interesting discussion, hi @mLipok 👋 . I looked into the GuiRichEdit.au3 file (in the default AutoIt include folder) and it's based on "OLE32.DLL" as I can tell. This means, as far as I understand, nothing will change when VBScript is banned from the systems (Win11 or even Win10). The rich text format (.rtf) will remain, only VBScript is no longer available as a scripting language than. Best regards Sven
    2 points
  3. https://superuser.com/a/1859074/1049106 Finally I use: @page {size: a4 portrait !important;} with add0n.com/stylus.html and this works fine. Now I have to add this to my WebDriver CSS injector.
    1 point
  4. navigate to https://www.autoitscript.com/forum/forum/2-autoit-general-help-and-support/ press button "Start new topic" add your title and description of your question(s) / topic Then @samibb you probably will get helped. Best regards Sven
    1 point
  5. Jos

    find string on webpage

    Ditto...
    1 point
  6. Thanks for the explanation. So they only remove the application but not all the components/libraries.
    1 point
  7. @extended contains the Returncode (GetLastError) from DeleteFileW function ( https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-deletefilew)
    1 point
  8. Yashied

    Restart UDF

    LAST VERSION - 1.0 07-Mar-10 This is my very simple and small UDF. Allows you to restart the script from any location with full restoration of the original command line parameters. I use this library in several of my programs, and I was not disappointed. I hope this UDF will be useful for many as for me. I will be glad to any feedback and suggestions. Restart UDF Library v1.0 Previous downloads: 943 Restart.au3 Example #NoTrayIcon #Include <Misc.au3> #Include <Restart.au3> _Singleton('MyProgram') If MsgBox(36, 'Restarting...', 'Press OK to restart this script.') = 6 Then _ScriptRestart() EndIf
    1 point
  9. Nine

    Restart UDF

    @boat_58 Here without the UDF : #include <GUIConstants.au3> HotKeySet("{F1}", Restart) GUICreate("Test", 150, 70) GUICtrlCreateLabel(@SEC, 40, 30, 50, 20) GUISetState() Do Until GUIGetMsg() = $GUI_EVENT_CLOSE Func Restart() ShellExecute(@ScriptFullPath, "", @ScriptDir, @compiled ? "" : "run") Exit EndFunc
    1 point
  10. StringIsDigit for stringregexp i dono
    1 point
×
×
  • Create New...