Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/21/2018 in all areas

  1. Question 2: #include <Excel.au3> Global $oExcel = _Excel_Open() Global $oWorkbook = _Excel_BookNew($oExcel) ; Set a comment With $oWorkbook.Worksheets(1).Range("E5").AddComment .Text("reviewed") .Visible = True EndWith ; Retrieve the comment MsgBox(0, "Comment", $oWorkbook.Worksheets(1).Range("E5").Comment.Text)
    2 points
  2. @caramen why did you report yourself??
    2 points
  3. water

    OutlookEX

    Version 1.7.0.1

    10,054 downloads

    Extensive library to control and manipulate Microsoft Outlook. This UDF holds the functions to automate items (folders, mails, contacts ...) in the background. Can be seen like an API. There are other UDFs available to automate Outlook: OutlookEX_GUI: This UDF holds the functions to automate the Outlook GUI. OutlookTools: Allows to import/export contacts and events to VCF/ICS files and much more. Threads: Development - General Help & Support - Example Scripts - Wiki BTW: If you like this UDF please click the "I like this" button. This tells me where to next put my development effort KNOWN BUGS (last changed: 2020-02-09) None
    1 point
  4. Don't understand your question, what do you want to happen to changes in the clipboard, you had already shown how to respond to any changes in the clipboard, here is a slightly modified version. Global $sClip, $sCurClip While 1 $sClip = ClipGet() If $sClip <> $sCurClip Then If IsString($sClip) Then MsgBox(4096, "Clip Info", $sClip) $sCurClip = $sClip EndIf EndIf Sleep(250) WEnd
    1 point
  5. @Daemante2018 I am going to up the ante and give you 3 days to think it over before you are able to post again, since we had a pretty lengthy conversation via PM and I expressly told you NOT to try this.
    1 point
  6. Constantly seem to be asking you to engage the gray matter before you post... If you think there is a bug, you can use that great big Bug Tracker button at the top of the forum But as it sounds throughout this thread like you simply are not comprehending how the function works, don't be shocked if the reply is brief.
    1 point
  7. Danp2

    Click Combo Box

    Take a look at _IEFormElementOptionSelect
    1 point
  8. I think now is the perfect time to rethink your data design. Maybe multiple arrays, maybe a database ...... would avoid complex scripting and hence reduce the risk of hard to diagnose errors. Just my 2 cents worth
    1 point
  9. Dog ate your help file? The function is named something like "attach"
    1 point
  10. isn't it used when you want to mark that in that point a part of the original message has been removed?.... or maybe it's <snip>... ???
    1 point
  11. LxP

    Find Classes by Text (v1.2)

    Sometimes it can be difficult to automate some software for one of a few reasons: Perhaps different fields share a common control ID. Perhaps the GUI designer overlapped many controls, so AutoIt Window Info won't show you the one that you actually have your mouse over. This script aims to provide a solution. The idea is for you to populate such a GUI with different values in each field, and then allow this script to 'capture' that window. It will then group controls sharing the same text values and display their ClassNameNNs, which is generally** an excellent way to reliably differentiate between controls. Download: FindClassesByText.au3 Operation: Prepare the window that you wish to automate. Start this script. Click the Capture button. Activate the other window by clicking on it. Return to the script's window and browse the assembled TreeView. ** Proven not to work with .NET applications; _ControlGetHandleByPos() may be your only hope there. v1.2 (29/May/2013): Add "Copy Item" and "Copy All" buttons to copy information from the TreeView to the clipboard (thanks to the idea) Show control text as an AutoIt string definition (with macros as appropriate) instead of just naively wrapping it in single quotes v1.1 (27/May/2013): Adjust for script-breaking changes in AutoIt v3.2.12.0 (thanks to ) v1.0 (4/Mar/2006): Initial release
    1 point
×
×
  • Create New...