
jpm
Developers-
Posts
10,367 -
Joined
-
Last visited
-
Days Won
11
jpm last won the day on July 22 2024
jpm had the most liked content!
About jpm

- Birthday 04/04/1946
Profile Information
-
Member Title
a Real GUI/debug lover
-
Location
Hauts de Seine, France
Recent Profile Visitors
4,072 profile views
jpm's Achievements
-
richedit streamtofile adds newline every time
jpm replied to TheAutomator's topic in AutoIt General Help and Support
I agree you do not include it biy at the end it is included -
richedit streamtofile adds newline every time
jpm replied to TheAutomator's topic in AutoIt General Help and Support
WIth your mod a /fs17 is included That was my concern -
richedit streamtofile adds newline every time
jpm replied to TheAutomator's topic in AutoIt General Help and Support
I am wondering if this proposal is complete as I understand the wrong (/par) is replaced at the end by a /fs17 so why it is not coming first ? as I a don't know about .rtf content can you clarify Thanks -
check if any process run as administrator
jpm replied to nacerbaaziz's topic in AutoIt General Help and Support
Ok but still the @extended must be set to $aRet[3] - 1 -
check if any process run as administrator
jpm replied to nacerbaaziz's topic in AutoIt General Help and Support
True I will fix it Thanks -
Melba23 reacted to a post in a topic: ListView strange behavior
-
Hi, As the return can be several values separated by "|" it is normal for me that the return is a string even if only one is returned
-
I agree except 0'Malley your proposal is far more better, even an excution time divide by 3 !!!
-
@jchd #include <Array.au3> #include <String.au3> Local $a = [ _ "Greengrocers’ apostrophes", _ "St James’S Park", _ "ladies’ hats", _ "Le Cléac'H", _ "O'Malley", _ "80's music", _ "Ho, mia kor’! Post longa laborado", _ "John's shoes", _ "doesn'T mean anything ƨƳƭƫƼ'Ɖƃ sorry it's my fault", _ "Διεθνής εβδομάδα χειμερ’ινών αγώνων", _ "Тиждень зимо՚вих видів спорту (насправді 11 днів)", _ " ഇതിൽ അഞ്ചു വളയങ്ങൾ'ആലേഖനം ", _ "μζΣΨϑ'ʤʞʫʀ" _ ] Local $hTimer = TimerInit() For $i = 0 To UBound($a) - 1 $a[$i] = _StringProper_jpm($a[$i]) Next Local $iDiff = TimerDiff($hTimer) ConsoleWrite('@@ Debug(' & @ScriptLineNumber & ') : $iDiff = ' & $iDiff & @CRLF & '>Error code: ' & @error & ' Extended code: ' & @extended & ' (0x' & Hex(@extended) & ')' & @CRLF) ;### Debug Console _ArrayDisplay($a) Func _StringProper_jchd($s) Local Static $sPattern = "(*UCP)\b((?<!['՚‘’“”ʼʾ׳״])[[:lower:]])" Return Execute('"' & StringRegExpReplace(StringLower($s), $sPattern, '" & StringUpper("$1") & "') & '"') EndFunc ;==>_StringProper_jchd Func _StringProper_jpm($sString) Local $bCapNext = True, $sChr = "", $sReturn = "" Local Static $sPattern = '[a-zA-ZÀ-ÿšœžŸ]' Local $iStrLen = StringLen($sString) For $i = 1 To $iStrLen $sChr = StringMid($sString, $i, 1) Select Case $bCapNext = True If StringRegExp($sChr, $sPattern) Then If $i <> $iStrLen And StringMid($sString, $i + 1, 1) <> " " Then $sChr = StringUpper($sChr) Else $sChr = StringLower($sChr) EndIf $bCapNext = False EndIf Case Not StringRegExp($sChr, $sPattern) $bCapNext = True Case Else $sChr = StringLower($sChr) EndSelect $sReturn &= $sChr Next Return $sReturn EndFunc ;==>_StringProper_jpm Unless you have a regexp for O'Malley, What do you think about a slight mod of the current implementation of _StringProper()?
-
Danyfirex reacted to a post in a topic: Struct Notation
-
genius257 reacted to a post in a topic: Struct Notation
-
argumentum reacted to a post in a topic: Struct Notation
-
Andreik reacted to a post in a topic: Struct Notation
-
Musashi reacted to a post in a topic: Struct Notation
-
MattyD reacted to a post in a topic: Struct Notation
-
Hi, already fix for next beta/release
-
The GuiCtrlSetFont is using the MSDN CreateFont so defining $GUI_FONTBOLD = 1 will just be ignored the weigth must be selected to have a bold font as AutoIt is a direct wrapper to MSDN api I will not change this behavior Sorry
-
Help File/Documentation Issues. (Discussion Only)
jpm replied to guinness's topic in AutoIt Technical Discussion
Done for next beta -
DarkMode UDF for AutoIt's Win32GUIs
jpm replied to NoNameCode's topic in AutoIt Technical Discussion
Ok may be @NoNameCode have more ...