Jump to content

Melba23

Moderators
  • Posts

    31,118
  • Joined

  • Days Won

    308

Melba23 last won the day on February 26

Melba23 had the most liked content!

About Melba23

Profile Information

  • Member Title
    I'm old, what's your excuse?
  • Location
    Where never lark or even eagle flew

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Melba23's Achievements

  1. Moved to the appropriate AutoIt General Help and Support forum, as the AutoIt Example Scripts forum very clearly states: Moderation Team
  2. Chazg, I cannot help with the Win 11 problem, but using my Notify UDF (the link is in my sig) will offer you an alternative method of displaying the results from your exe. M23
  3. LAteNightSpecial, I have an even better idea - you press your "neck retract" button very firmly and start acting like the neophyte AutoIt scripter that you are, rather that posting AI-generated wordwalls on complex subjects about which you are (by your own admission) completely unqualified to comment. Your future as part of this community has been under discussion for some days and we have shown considerable forbearance in not banning you already. Continuing as you have been will make any future such decision extremely easy. So it would be to your advantage to start acting like the "newbie" you are and limit your posts to questions which help your understanding of AutoIt rather the obviously untested rubbish code with which you have been polluting the forum over the past few days. Up to you - choose wisely. And now - in the immortal style of Jos - <click> M23
  4. Hicham_777, Use StringReplace: $sString = "3,14" $sNewString = StringReplace($sString, ",", "") ConsoleWrite($sNewString & @CRLF) M23
  5. [NEW VERSION] - 26 Feb 24 Added: A column re-order event is now indicated by _EventMonitor setting @extended to 6. Changed: Event 4 (drag/drop) now returns a 4 element array [from index, to index, dragged row, inserted row] Parameters for editing with combos have been altered/expanded Fixed: ListViews with custom function on editing (Mode 9) will now save correctly - although the function must be reassigned after reloading. Colours work when using _InsertSpec functions. Checkboxes and selected rows play nicely together. Thanks to those who pointed out the bugs and asked for new functionalities. New UDF in the first post. M23
  6. LAteNightSpecial, Er, no! If you read the OP, (s)he wants to concatenate the 2 variables - not perform arithmetic addition. The use of the "&" operator is entirely correct in this case. M23
  7. I am sure all members will wish to join me in welcoming our new MVPs: argumentum and gianni. It has been a while since the last promotions, but it goes to show that helping out around here does get noticed! M23
  8. Abraham, You need to initialise the ListViews so that the UDF knows that it needs to follow them. Add these lines before returning from function gui2: $iLV_Tom = _GUIListViewEx_Init($cLV_Tom,$aTom) $iLV_Dick = _GUIListViewEx_Init($cLV_Dick,$aDick) $iLV_Harry = _GUIListViewEx_Init($cLV_Harry,$aHarry) $iLV_Fred = _GUIListViewEx_Init($cLV_Fred,$aFred) $iLV_Dora = _GUIListViewEx_Init($cLV_Dora,$aDora) And do remember to _Close the ListViews when you delete the GUI which holds them to free up the UDF ready for the next time you create the GUI. M23
  9. Moved to the appropriate AutoIt General Help and Support forum, as the AutoIt Example Scripts forum very clearly states: Moderation Team
  10. hemanth4, This is a forum for AutoIt scripting - I suggest you post your question on a site which specialises in Collibra. M23
  11. Champak, Glad you found your error. As to the Examples demonstrating every functionality of the UDF. I am afraid you are asking way too much as it has become so complex that it is no longer possible. Especially when it involves complex user interaction such as inserting columns and setting their edit status. M23
  12. Champak, The UDF cannot read your mind - if you insert a column you will need to use the _SetEditStatus function to tell the UDF what you want to happen on a double click. If that does not work then post a simple reprocucer script and I will investigate further. M23
  13. [NEW VERSION] 16 Feb 24 Changed: Some additional functionality added to the "TimeOut" parameter of _ExtMsgBox: - A positive integer sets the EMB timeout as before. - A negative integer will double the size of the countdown timer if it is used. - A colon-delimited string (eg: "10:5") will set the normal EMB timeout (first integer) and will also initially disable the EMB buttons for the required period (second integer). New UDF and examples in the first post. M23
×
×
  • Create New...