Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/29/2023 in all areas

  1. Nope... I made several changes to make it work properly, but there where logic issues. Not sure whether it will now also find udfs which Arent really included yet, which is something i do not really want, so will test that.
    2 points
  2. based on https://www.autoitscript.com/autoit3/docs/functions/StringReplace.htm we either fix the code or fix the help.
    1 point
  3. Why do you need @extended to report 1 when you ask to change 1 char (or string) with another based on position ? Check @error instead !
    1 point
  4. Get your data sorted with usedrange.sort or https://www.autoitscript.com/autoit3/docs/libfunctions/_Excel_RangeSort.htm Excel will quickly sort it for you Then it's just a loop on biggest array something like below i=0 j=0 While I <= ubound mydata If Mydata[i] = mydata2[j] then ...   i=i +1 Else   j=j+1 Endif
    1 point
  5. ControlGetHandle ( "title", "text", controlID ) => var controlHandle1= AutoItX.ControlGetHandle(winHandle, "", "[CLASS:WindowsForms10.EDIT.app.0.329445b_r7_ad1; INSTANCE:1]");
    1 point
  6. Well ... I suddenly remembered we had this sort of discussion before earlier this year and I did make some changed to try and use the Dynamic tables when activated. ...so had a look at the code and it indeed is in there but there were still some quirks in it to make it fail. Try the latest uploaded version of AutoItGotoDefinition.lua to see if that makes any difference.
    1 point
  7. _GUICtrlEdit_SetCueBanner(-1, "placeholder", True) ; placeholder How about it?
    1 point
  8. @argumentum gave you a pertinent direction to deal with in AutoIt. Load your data in a database and do your processing way more faster than in a loop.
    1 point
  9. Hi So I have a bit of a challenge. I use a multimonitor setup, and I'm trying to accomplish the following: After login launch Outlook in two windows Pin one of the windows to my top screen and customize the view: Change to calendar Change to month view Hide ribbon Hide navigator pane Maximize windows Change to the other Outlook window and customize the view: Show ribbon Show navigator pane Return ribbon to default position Maximize window Minimize Window Everything works as intended! I'm quite proud actually - as this is my first AutoIT-script ever. But - I still need one thing: I would really like my month view to only include this week and the next 2 (total 3 weeks). This seems to be impossible using either VBA or keyboard shortcuts. The only way to do accomplish this is by using a mouse to mark / drag the number of weeks in the mini-calendar in the navigator pane. And this mini-calendar is dynamic, which means todays date changes is place every day. I really need a good idea - or maybe even a solution? I've included my script as it looks right now. Thanks in advance. Ronni StartOutlookAtLogon.au3
    1 point
×
×
  • Create New...