Jump to content

Tweaky

Active Members
  • Posts

    79
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Tweaky's Achievements

Wayfarer

Wayfarer (2/7)

1

Reputation

  1. @Jon@jpm Can you provide me with the two files for 3.3.18.0 so that I can create the German help file? Thank you. docs\_build\include\OutputLib.au3 docs\_build\include\UtilityLib.au3
  2. Thanks for this great UDF. I hope this will be integrate in the Standard-UDFs of AutoIt.
  3. I think I found a bug. If I have the word "abcdefxyztg" in the list and I type "a" then only the word "abcdefxy" will be displayed. Everything including the z is truncated. I think you should replace this lines Func _GetItemsArr($sSubString) Return StringRegExp($___nList, "(?sm" & $___C_Sensitive & ")\" & $___sDelimiter & "(\Q" & StringRegExpReplace($sSubString, "\\", "[\1]") & "\E[^\z\" & $___sDelimiter & "]+)" , 3) EndFunc with this lines Func _GetItemsArr($sSubString) Return StringRegExp($___nList, "(?sm" & $___C_Sensitive & ")\" & $___sDelimiter & "(\Q" & StringRegExpReplace($sSubString, "\\", "[\1]") & "\E[^\" & $___sDelimiter & "]+)" , 3) EndFunc
  4. Now I will use the function from DXRW4E. Thanks
  5. @BrewManNH Have yout tested it with my file from post 66? Works it for you?
  6. I have tried to understand the RegExp Pattern. But it`s to difficutly for me Please test it with the file in the attachment. As @error I get -3 #Region ;************ Includes ************ #include <ini_ex.au3> #include <Array.au3> #EndRegion ;************ Includes ************ $welche_ini = @ScriptDir & "\" & "ini_ex.ini" $array_ini = _IniReadSectionex($welche_ini, "Section 1") MsgBox(0,0,@error) _ArrayDisplay($array_ini, 1) $array_ini = _IniReadSectionex($welche_ini, "Section 2") MsgBox(0,0,@error) _ArrayDisplay($array_ini, 2) ini_ex.rar
  7. Does really nobody use this function with 3.3.10.2?
  8. Could you please update the script to 3.3.10.2? Now _IniReadSectionEx works only for the section in line 1. When the section is in line 2 it doesn`t work. Also it doesn`t work for section 2, 3, ... I think the bug is at this lines ; data between sections or till end of file Local $s_datapatt = "(?is)(?:^|\v)(?!;|#)\h*\[\h*\Q" $s_datapatt &= $s_section $s_datapatt &= "\E\h*\]\h*\v+(.*?)(?:\z|\v\h*\[)" Local $a_data = StringRegExp($s_fread, $s_datapatt, 1) If @error Then Return SetError(-3, 0, 0)
  9. Can you please update the script for 3.3.10.2?
  10. Hi, thanks for the new Stable-version. Could someone upload the autoit-docs-v3.3.10.0-src Files? Thanks
  11. Yes I am talking about the colors in the autoit help file. I think the colors are in the file "default.css". But which value I have to change?
  12. What do you mean with "style sheet". I've already set the old color scheme in Scite.
×
×
  • Create New...