Jump to content

Tiotua

Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by Tiotua

  1. Wonderful. Exactly what I needed. With Global $frmRealGUI = GUICreate("Real GUI", 200, 100, -1, -1, $WS_SYSMENU, -1, $frmFakeGUI) you'll get a GUI with only a close button (like a dialog box).
  2. Nice tool, well done At least with AutoIt 3.3.12.0 a little patch is necessary: ; Search: Global Const $CC_WM_SYSCOMMAND = 0x0112 ; Insert below: Global Const $ghGDIPDll = @SystemDir & '\GdiPlus.dll'
  3. I love this nice tool! Thanks a lot
  4. In German I use this: #Include <String.au3> IniWrite("umlauts.ini", "Umlauts", "Example1", _StringToHex("Ich genieße öfter üblen Käse.")) $Result = _HexToString(IniRead("umlauts.ini", "Umlauts", "Example1", "")) msgbox(64,"Umlauts in INI", $Result) Exit Works perfectly. It should also work with Russian, Thai etc. chars. The only "handicap" is: you cannot read the values directly in the INI file.
  5. After searching the forum, downloading & testing examples for days I finally ended up here. Wow! This awesome piece of code seems to be fallen from heaven Thank you! Now I'm able to play around with (and learn) RegEx, which bumped my ass before However, to run it I had to include something additional: #include <ComboConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GuiTab.au3> Maybe my AutoIt installation is broken? I use version 3.3.0.0
×
×
  • Create New...