-
Posts
12,010 -
Joined
-
Last visited
-
Days Won
68
mLipok last won the day on May 11
mLipok had the most liked content!
About mLipok

- Birthday 07/19/1978
Profile Information
-
Member Title
Sometimes... even usually I'm nitpicky.
-
Location
Europe, Poland, Upper Silesia, Zabrze
-
Interests
¯\_(ツ)_/¯
mLipok's Achievements
-
XML.au3 - BETA - Support Topic
mLipok replied to mLipok's topic in AutoIt Projects and Collaboration
Starting today, you can check out the new AI-generated documentation https://github.com/mlipok/XML.au3/blob/main/docs/README.md -
ADO.au3 UDF - BETA - Support Topic
mLipok replied to mLipok's topic in AutoIt Projects and Collaboration
From now on you can follow the changes on: https://github.com/mlipok/ADO.au3 There is also a newer version there. I'm currently working extensively with AI. You can see the results in terms of documentation here: https://github.com/mlipok/ADO.au3/blob/main/docs/README.md- 612 replies
-
- ado
- connection
-
(and 3 more)
Tagged with:
-
WebDriver UDF (W3C compliant version) - 2025/09/01
mLipok replied to Danp2's topic in AutoIt Example Scripts
I just published changes to my subproject https://github.com/mlipok/Au3WebDriver-testing/releases/tag/v1.0.0 For those looking for examples of how to use this UDF, I encourage you to take a look. -
XML.au3 - BETA - Support Topic
mLipok replied to mLipok's topic in AutoIt Projects and Collaboration
https://github.com/mlipok/XML.au3/releases#release-XML_1.1.1.13 -
WildByDesign reacted to a post in a topic:
XML.au3 - BETA - Support Topic
-
XML.au3 - BETA - Support Topic
mLipok replied to mLipok's topic in AutoIt Projects and Collaboration
A new era is coming: https://github.com/mlipok/XML.au3 Integrated with AI ChatGPT -
Danyfirex reacted to a post in a topic:
TeamViewer.au3 UDF
-
argumentum reacted to a post in a topic:
TeamViewer.au3 UDF
-
btw. Last month, we had a cumulative total of 352 working hours across 1,227 connections. This translates to an average of 17 minutes per connection. That's approximately 61 connection per day, theoretically for four people, which translates to approximately 4:20 hours of connections per day per person. In practice, of these four people, at least one person is often away from the office, i.e. visits the client's office in person, on average every other day. The actual average number of calls per person per day is therefore higher. When you have a busy daily schedule, even renaming and regrouping contacts can cause problems, especially when it's usually the entire group that needs to be changed, not just a single contact or device on the list. Not to mention the ongoing reporting of work completed, especially across multiple systems. From this point of view, I finally decided to start working again on this UDF as it was worth my time.
-
argumentum reacted to a post in a topic:
TeamViewer.au3 UDF
-
Do you maintain 200 servers? Do you maintain 2,000 stations? How do you keep notes about what you did during each session to document/account for the connection?
-
donnyh13 reacted to a post in a topic:
TeamViewer.au3 UDF
-
I'm currently working with ChatGPT AI to improve this UDF, as a lot has changed and I haven't been able to get around to it for several years. And as it turns out, it's finally time to start using this UDF daily in my company.
-
Using _GUICtrlEdit_Create() seems to help.
-
I tried to use _GUICtrlEdit_SetCueBanner() on EDIT control unfortunately, HelpFile says: Can this be made to work? my repro script: #include <GUIConstantsEx.au3> #include <GuiEdit.au3> #include <MsgBoxConstants.au3> Example() Func Example() Local $hGUI = GUICreate('Example', 300, 150) GUISetFont(9, 400, 0, 'Segoe UI') Local $idInp_Username = GUICtrlCreateInput('', 10, 10, 125, 25) _GUICtrlEdit_SetCueBanner($idInp_Username, "Search folder") Local $idEdit_Password = GUICtrlCreateEdit('', 10, 40, 125, 25) _GUICtrlEdit_SetCueBanner($idEdit_Password, "Search...") Local $idButton_Close = GUICtrlCreateButton("Close", 210, 120, 85, 25) ControlFocus($hGUI, "", $idButton_Close) GUISetState(@SW_SHOW, $hGUI) MsgBox($MB_SYSTEMMODAL, "", _GUICtrlEdit_GetCueBanner($idEdit_Password)) While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE, $idButton_Close ExitLoop EndSwitch WEnd GUIDelete($hGUI) EndFunc ;==>Example
-
mLipok reacted to a post in a topic:
How to determine which version of comctrl32.dll on XP
-
donnyh13 reacted to a post in a topic:
Help File/Documentation Issues. (Discussion Only)
-
mLipok reacted to a post in a topic:
[UDF] AutoIt CDP UDF — A Modern, Playwright‑Style Chrome Automation Library
-
MattyD reacted to a post in a topic:
_GUICtrlListView_CreateDragImage.au3 example flickers
-
_GUICtrlListView_CreateDragImage.au3 example flickers
mLipok replied to mLipok's topic in AutoIt GUI Help and Support
I'm actually on vacation. Will check ASAP -
mLipok reacted to a post in a topic:
_GUICtrlListView_CreateDragImage.au3 example flickers
-
mLipok reacted to a post in a topic:
Help File/Documentation Issues. (Discussion Only)
-
mLipok reacted to a post in a topic:
Help File/Documentation Issues. (Discussion Only)
-
Help File/Documentation Issues. (Discussion Only)
mLipok replied to guinness's topic in AutoIt Technical Discussion
Where exactly it is mentioned ? -
mLipok reacted to a post in a topic:
How to get SIZENWSE cursor to show on Statusbar sizegrip?
-
mLipok reacted to a post in a topic:
How to get SIZENWSE cursor to show on Statusbar sizegrip?
-
Help File/Documentation Issues. (Discussion Only)
mLipok replied to guinness's topic in AutoIt Technical Discussion
Perhaps a general note would be helpful. Something like: I was looking for an explanation in the help file that would describe how AutoIt interprets such lines. And all of this is due to an error I encountered today: https://www.autoitscript.com/trac/autoit/ticket/4105 -
Help File/Documentation Issues. (Discussion Only)
mLipok replied to guinness's topic in AutoIt Technical Discussion
"Language Reference - Directives" doesn't mention about: #Region #EndRegion Why? -
I have such example: #include <Array.au3> _Example() Func _Example() Local $sTest = _ "1a" & @CRLF & _ "1b" & @CRLF & _ "2" & @CRLF & _ "1c" & @CRLF & _ "1d" & @CRLF & _ "2" & @CRLF & _ "1e" & @CRLF & _ "1f" & @CRLF & _ "1g" & @CRLF & _ "2" & @CRLF & _ "" Local $aResult = StringRegExp($sTest, '(?is)1.*?2', $STR_REGEXPARRAYGLOBALMATCH) ConsoleWrite(_ArrayToString($aResult, @CRLF & @CRLF & @CRLF) & @CRLF ) EndFunc ;==>_Example Could somebody be so nice and explain 2 things: Why the result is: 1a 1b 2 1c 1d 2 1e 1f 1g 2 I expected to get the following results. How to get: 1b 2 1d 2 1g 2 ?