Jump to content

mLipok

MVPs
  • 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
    ¯\_(ツ)_/¯

Recent Profile Visitors

27,827 profile views

mLipok's Achievements

  1. 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.
  2. 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
  3. 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"
  4. 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"
  5. 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
  6. Some description please
  7. 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.
  8. May you release it on github.com ? Then we be able to look over enttire udf and have a better look
  9. Yes just hide the window, or do not show them at all.
  10. @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
  11. 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.
×
×
  • Create New...