Jump to content

mLipok

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

Recent Profile Visitors

31,708 profile views

mLipok's Achievements

  1. Starting today, you can check out the new AI-generated documentation https://github.com/mlipok/XML.au3/blob/main/docs/README.md
  2. 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
  3. 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.
  4. https://github.com/mlipok/XML.au3/releases#release-XML_1.1.1.13
  5. A new era is coming: https://github.com/mlipok/XML.au3 Integrated with AI ChatGPT
  6. 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.
  7. 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?
  8. 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.
  9. Using _GUICtrlEdit_Create() seems to help.
  10. 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
  11. I'm actually on vacation. Will check ASAP
  12. 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
  13. "Language Reference - Directives" doesn't mention about: #Region #EndRegion Why?
  14. 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 ?
×
×
  • Create New...