Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/05/2017 in all areas

  1. water

    VCF Files parser

    Seems there are a lot of free VCF to CSV converters available on the net. Doing mass changes in CSV files should be much easier. Then convert them to VCF again. http://vcardgrid.lima-city.de/ https://sourceforge.net/projects/bulkvcftocsv/
    1 point
  2. In many examples in zip file in bottom of first post _ArrayDisplayEx is used to display array data. Often the listview columns are too narrow to view the entire cell text. Because ArrayDisplayEx.au3 UDF is updated with a new parameter to set minimum column widths, it's easy to do something about it. Examples updated. And because ArrayDisplayEx.au3 is now divided into a set of smaller files only a minor part of the entire UDF is included. Minor issues in some of the examples are corrected. Updated zip file in bottom of first post.
    1 point
  3. Subz

    IE.au3 ComboBox control.

    The problem filling in the fields is that it doesn't trigger the required action you can try: #include <IE.au3> $sUrl = "https://www.supermakler.pkobp.pl/plus/demo/main.html?id=FZ&fz=true&tytul=Nowe%20zlecenie" $oIE = _IECreate($sUrl, 1) _IELoadWait($oIE) $oNowe_zlecenie = _IEGetObjById($oIE, "x-auto-31") $oNowe_zlecenie.Click $oNowe_zlecenie = _IEGetObjById($oIE, "x-auto-37-input") $oNowe_zlecenie.NextSibling.Click() $oNowe_zlecenie.Value = "P" $oNowe_zlecenie.NextSibling.Click() $oNowe_zlecenie = _IEGetObjById ($oIE, "x-auto-40-input") $oNowe_zlecenie.NextSibling.Click() $oNowe_zlecenie.Value = "ACLP" $oNowe_zlecenie.NextSibling.Click() $oNowe_zlecenie = _IEGetObjById ($oIE, "x-auto-51-input") $oNowe_zlecenie.Click() Or for the main page use: #include <IE.au3> $sUrl = "https://www.supermakler.pkobp.pl/plus/demo/" $oIE = _IECreate($sUrl, 1) _IELoadWait($oIE) $oNowe_zlecenie = _IEGetObjById($oIE, "x-auto-264") $oNowe_zlecenie.Click $oNowe_zlecenie = _IEGetObjById($oIE, "x-auto-270-input") $oNowe_zlecenie.NextSibling.Click() $oNowe_zlecenie.Value = "P" $oNowe_zlecenie.NextSibling.Click() $oNowe_zlecenie = _IEGetObjById ($oIE, "x-auto-273-input") $oNowe_zlecenie.NextSibling.Click() $oNowe_zlecenie.Value = "ACLP" $oNowe_zlecenie.NextSibling.Click() $oNowe_zlecenie = _IEGetObjById ($oIE, "x-auto-284-input") $oNowe_zlecenie.Click()
    1 point
  4. Updated! 1) Versions and Directories will now put the version numbers of either individual programs or all of the programs into the clipboard for easy pasting into the AutoIt3 help forum. 2) The update checker for AutoIt production, beta, and SciTE4Au3 has been fixed and improved. 3) Credits and changelog are now available as a file menu item.
    1 point
  5. Generally, minor fixes / enhancements. I'd be happy to work with you to identify the changes.
    1 point
  6. When a new mail is created the signature is added to the empty body. Unfortunately _OL_ItemCreate using "HTMLBody=.." overwrites the signature. So you need to use this approach: ; Create the item Global $oOutlook = _OL_Open() Global $oItem = _OL_ItemCreate($oOutlook, $olMailItem, "*", "", "BodyFormat=" & $olFormatHTML) If @error <> 0 Then Exit MsgBox(16, "Outlook", "Error creating the mail item. @error = " & @error & ", @extended = " & @extended) $oItem.GetInspector $sSignature = $oItem.HTMLBody $oItem.HTMLBody = $sBody & $sSignature $oItem.Display
    1 point
  7. Skysnake

    Run binary

    There is a problem with page 9 of this thread. Page 8 works, and page 10 works. Page 9 does not load.
    1 point
×
×
  • Create New...