paulpmeier
Active Members-
Posts
26 -
Joined
-
Last visited
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
paulpmeier's Achievements
Seeker (1/7)
7
Reputation
-
paulpmeier reacted to a post in a topic:
Google Translation with GUI
-
Not always, but in some cases, e.g. with "AutoIt Help (v3.3.16.1)". Why? #include <GuiTreeView.au3> Local $hTreeView = ControlGetHandle("AutoIt Help (v3.3.16.1)", "", "SysTreeView321") ;Local $hTreeView = ControlGetHandle("SciTE4AutoIt3", "", "SysTreeView321") ; works correctly Local $hFirstItem = _GUICtrlTreeView_GetFirstItem($hTreeView) ConsoleWrite(_GUICtrlTreeView_GetText($hTreeView, $hFirstItem) & @CRLF)
-
Danyfirex reacted to a post in a topic:
Inline C Source In AutoIt
-
pixelsearch reacted to a post in a topic:
Inline C Source In AutoIt
-
Werty reacted to a post in a topic:
Inline C Source In AutoIt
-
Andreik reacted to a post in a topic:
Inline C Source In AutoIt
-
LibTCC.zip
-
Hi AspirinJunkie, Thank you for your Json-Udf. I use it for evaluating my Discogs queries. Attached is a recursive dump script for my maps. #include "Json.au3" #include <String.au3> Local $sJson = FileRead("..\Discogs-Abfragen\The Beatles - Lovely Rita.json") Local $mDiscogsQuery = _JSON_Parse($sJson) Global $iIndent = 0, $sIndent = " " ConsoleWrite("Map $mDiscogsQuery" & @CRLF) _DumpMap($mDiscogsQuery) Func _DumpMap(ByRef $mMap) For $Key In MapKeys($mMap) _WriteElement($Key, $mMap[$Key]) Next EndFunc Func _DumpArray(ByRef $aArray, $Key) For $i = 0 To UBound($aArray) - 1 _WriteElement($Key & "[" & $i & "]", $aArray[$i]) Next EndFunc Func _WriteElement($Key, ByRef $vValue) $iIndent += 1 Local $sInd = _StringRepeat($sIndent, $iIndent) Local $sType = VarGetType($vValue) If $sType = "String" Then $vValue = StringReplace($vValue, @LF, @CRLF & $sInd & $sIndent) ; Indent for multi-line strings If $sType = "Keyword" And IsKeyword($vValue) = 2 Then $vValue = "NULL" ; NULL ConsoleWrite($sInd & $Key & " (" & $sType & "): " & $vValue & @CRLF) If $sType = "Map" Then _DumpMap($vValue) If $sType = "Array" Then _DumpArray($vValue, $Key) $iIndent -= 1 EndFunc Paul
-
Alan72104 reacted to a post in a topic:
Create a .net class and run it as object from your AutoIt script
-
cURL UDF - a UDF for transferring data with URL syntax
paulpmeier replied to seangriffin's topic in AutoIt Example Scripts
MatzeP, look at the libcurl programming tutorial, Passwords ; protocol://user:password@example.com/path/ Local $aResponse = cURL_easy("http://myusername:mypassword@www.xyz.com/logs/") Paul -
cURL UDF - a UDF for transferring data with URL syntax
paulpmeier replied to seangriffin's topic in AutoIt Example Scripts
MatzeP, Copy the files libcrypto-1_1-x64.dll, libssl-1_1-x64.dll and libcurl-x64.dll into your cURL.au3 directory. In cURL.au3 replace in line 125 libcurl.dll with libcurl-x64.dll. Paul -
paulpmeier reacted to a post in a topic:
cURL UDF - a UDF for transferring data with URL syntax
-
cURL UDF - a UDF for transferring data with URL syntax
paulpmeier replied to seangriffin's topic in AutoIt Example Scripts
Latest DLLs on https://curl.se/windows/ (09.12.2020) libcurl-x64.dll https://curl.se/windows/dl-7.74.0_2/curl-7.74.0_2-win64-mingw.zip libcrypto-1_1-x64.dll and libssl-1_1-x64.dll https://curl.se/windows/dl-7.74.0_2/openssl-1.1.1i_2-win64-mingw.zip Thank you for this UDF. Paul -
pixelsearch reacted to a post in a topic:
_ArrayDisplay: pointers or handles are not sorted correctly by clicking on a column header
-
paulpmeier reacted to a post in a topic:
_ArrayDisplay: pointers or handles are not sorted correctly by clicking on a column header
-
paulpmeier reacted to a post in a topic:
_ArrayDisplay: pointers or handles are not sorted correctly by clicking on a column header
-
Ascend4nt reacted to a post in a topic:
Internet Shortcut Sanitizer (.URL and .website files)
-
Internet Shortcut Sanitizer (.URL and .website files)
paulpmeier replied to Ascend4nt's topic in AutoIt Example Scripts
For Firefox look also: http://support.mozilla.org/en-US/questions/942316?page=4 tenbucks posted 5/15/13 3:13 AM "Finally. It's here with FF 21. You need to add the browser.shell.shortcutFavicons entry in about:config. It doesn't come with it. Make it boolean and set it to false. Restart FF." Paul -
Hallo BugFix, danke für Ihre schöne Funktion, sie macht die Einbindung von .Net-DLLs in AutoIt-Skripte einfacher und eleganter. Ich bin nicht der große .Net-Experte und da im Mai keiner auf diesen Post hier reagierte, habe ich das Thema auch nicht weiterverfolgt. Was den Zugriff auf vorhandene .Net-Klassen angeht, habe ich noch versucht die Ideen von Robert Giseke umzusetzen. Giseke hat ein C# Project Template for Unmanaged Exports geschrieben, mit dem ich eine .Net-DLL erzeugt habe, die auf die DateTime.AddDays-Methode zugreift. http://sites.google.com/site/robertgiesecke/Home/uploads/unmanagedexports Anbei meine ungeordneten Experimente incl. Links. Ich hoffe, das hilft Ihnen etwas weiter. Für tiefergehende Informationen müsste ich mich leider erst selbst wieder in die Thematik einarbeiten. Viele Grüße Paul UnmanagedExports.zip