-
Posts
11,526 -
Joined
-
Last visited
-
Days Won
61
mLipok last won the day on September 13
mLipok had the most liked content!
About mLipok

- Birthday 07/19/1978
Profile Information
-
Member Title
I'm nitpicky sometimes.
-
Location
Europe, Poland, Upper Silesia, Zabrze
-
Interests
¯\_(ツ)_/¯
mLipok's Achievements
-
donnyh13 reacted to a post in a topic:
[Solved] Complex UDF simplification?
-
[Solved] Complex UDF simplification?
mLipok replied to donnyh13's topic in AutoIt General Help and Support
me ? I don't have an account on German-language websites - I simply don't speak this language, although I'm ashamed to admit I also have German citizenship, but I don't know the language. -
donnyh13 reacted to a post in a topic:
[Solved] Complex UDF simplification?
-
[Solved] Complex UDF simplification?
mLipok replied to donnyh13's topic in AutoIt General Help and Support
No. In first place just user should ask how to do some task he wanted. Best in your support topic. Then you/me or other user will be able to explain and show an example. Eventually in the end it can lead us to some kind of helper/wrapper function aka "lite" version, but this still should be based on the default UDF you already created. ps. sorry for the many edits - I feel bad today -
Help with solving Windows 11 save lag - SCITe and AutoIT
mLipok replied to g0gcd's topic in AutoIt General Help and Support
I have i5-8350U nad NVME Samsung 980 Wondering ... do you use SSD thumb drive / pendrive for au3 files - I had such issue in the past. Is it DeskTop or Notebook ? What is your "ENERGY PLAN" or "POWER SCHEME" in windows. try also: powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61 and then choose the "highest performance" -
Help with solving Windows 11 save lag - SCITe and AutoIT
mLipok replied to g0gcd's topic in AutoIt General Help and Support
My first tip: In the task manager, run the resource monitor, check what files are modified by SciTE and when you save yours Au3 file. Questions: 1. Which ScTE version you are using ? (default from AutoIt instalation ? full current Jos version ? Beta Jos version ? 2. Are you using BETA version with Dynamic LUA feature ? 3. On what kind of drive all yours au3 files are stored ? HDD, SSD, NVME ? 4. What kind of CPU you have and how much RAM ? (it is important when you migrate from Win10 to Win11) 5. Can you share to us results from "AS SSD Benchmark 2.0" -
mLipok reacted to a post in a topic:
Native win8+ toast notifications
-
mLipok reacted to a post in a topic:
Native win8+ toast notifications
-
mLipok reacted to a post in a topic:
Native win8+ toast notifications
-
Me too and also
- 8 replies
-
- guibuilder
- koda
-
(and 3 more)
Tagged with:
-
mLipok reacted to a post in a topic:
User Interface Builder - GUI Designer
-
AutoIt Extension for Visual Studio Code
mLipok replied to LoganCH's topic in AutoIt Projects and Collaboration
Normally I would use directives: #AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w 5 -w 6 -w 7 instead #AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6 -w 7 just omnit -w 4 parameter But how to do this with VSC ? do not know -
donnyh13 reacted to a post in a topic:
Autoit v3.3.18 release includes Scite.exe that crashes
-
Autoit v3.3.18 release includes Scite.exe that crashes
mLipok replied to RangerX's topic in AutoIt General Help and Support
oops , my fault. -
Some description please
-
Autoit v3.3.18 release includes Scite.exe that crashes
mLipok replied to RangerX's topic in AutoIt General Help and Support
EDIT OFF TOPIC - sorry -
_GUICtrlTreeView_ClickItem issues
mLipok replied to FordsFinest's topic in AutoIt General Help and Support
I start using new AutoIt 3.3.18.0 in all of my projects. And I notice that this modified _GUICtrlTreeView_ClickItem64() will no longer work because GuiTreeView.au3 does not use $__g_hTVLastWnd from version 3.3.18.0, where some changes were made, and my dirty/failed solution no longer works. Will check if current _GUICtrlTreeView_ClickItem() implementation also solves the issue with 64bit systems. -
mLipok reacted to a post in a topic:
AutoIt v3.3.18.0 Released
-
mLipok reacted to a post in a topic:
Did You Know How AutoIt Evaluates Logical Expressions?
-
SOLVE-SMART reacted to a post in a topic:
Microsoft Edge - WebView2, embed web code in your native application
-
quymao2 reacted to a post in a topic:
Microsoft Edge - WebView2, embed web code in your native application
-
May you release it on github.com ? Then we be able to look over enttire udf and have a better look
-
mLipok reacted to a post in a topic:
Microsoft Edge - WebView2, embed web code in your native application
-
quymao2 reacted to a post in a topic:
Microsoft Edge - WebView2, embed web code in your native application
-
argumentum reacted to a post in a topic:
Microsoft Edge - WebView2, embed web code in your native application
-
mLipok reacted to a post in a topic:
WebDriver UDF (W3C compliant version) - 2025/09/01
-
@maniootek there was a change in the API, you can use officiall API: https://viesapi.eu/vies-rest-api-documentation/ or just simply use the REST API as web site: https://ec.europa.eu/taxation_customs/vies/#/vat-validation is using all the time. Just try this: #include <InetConstants.au3> #include <MsgBoxConstants.au3> #include <StringConstants.au3> _Example() Func _Example() Local $sData $sData = _VIES_REST_API('NL', '815605468B01', 'DE', '245838579') MsgBox($MB_SYSTEMMODAL, "", "The number of bytes read: " & @extended & @CRLF & @CRLF & $sData) $sData = _VIES_REST_API('NL', '815605468B02', 'DE', '245838579') MsgBox($MB_SYSTEMMODAL, "", "The number of bytes read: " & @extended & @CRLF & @CRLF & $sData) $sData = _VIES_REST_API('DE', '245838579', 'NL', '815605468B01') MsgBox($MB_SYSTEMMODAL, "", "The number of bytes read: " & @extended & @CRLF & @CRLF & $sData) $sData = _VIES_REST_API('DE', '245838579', 'NL', '815605468B012') MsgBox($MB_SYSTEMMODAL, "", "The number of bytes read: " & @extended & @CRLF & @CRLF & $sData) EndFunc ;==>_Example Func _VIES_REST_API($s_Country, $s_VatNumber, $s_requesterCountry, $s_requesterVat) ; Read the file without downloading to a folder. The option of 'get the file from the local cache' has been selected. Local $dData = InetRead('https://ec.europa.eu/taxation_customs/vies/rest-api/ms/' & $s_Country & '/vat/' & $s_VatNumber & '?requesterMemberStateCode=' & $s_requesterCountry & '&requesterNumber=' & $s_requesterVat, $INET_FORCERELOAD) ; The number of bytes read is returned using the @extended macro. Local $iBytesRead = @extended ; Convert the ANSI compatible binary string back into a string. Local $sData = BinaryToString($dData, $SB_UTF8) ; Display the results. Return SetExtended($iBytesRead, $sData) EndFunc ;==>_VIES_REST_API
-
WebDriver + AntiVirus = blocking the profile directory
mLipok replied to mLipok's topic in AutoIt General Help and Support
My further experience with this issue has led me to rule out the issue being related to WebDriver. This problem only affects the browser startup itself, during which a new profile directory is created. Using such commands after closing FF there is a problem with deleting entire directory created by FF. Maybe someone else is having the same problem with their AV software? Of course, adding exceptions to the AV doesn't help.