Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/23/2017 in all areas

  1. This wild guess is not as wild as I stated! This is a pretty common issue for many. So please let's wait for the OP to come back and read through all these replies in the hope he will see mine and does what should be done in this case: Simply run SciTEConfig select tools/RunAutoIt3/SciTE check and post the result or do as suggested which is to delete a Registry key in case somebody has done the "Open with" thing. Jos
    1 point
  2. Please stop making these kind of suggestions without being explicit please! I have clearly explained the OP (or others for that matter) what the appropriate steps are and am convinced it will work when you do them. Where did it go wrong for you as I haven't seen you posting the results here from this step: This report indeed will suggest to remove a key from the registry in case a manual override was done. Jos
    1 point
  3. Jos

    run script from command line

    SciTEConfig is your friend. Tab "General 1" the very first option. Jos
    1 point
  4. The forum search is your friend: Here I suggest away to enumerate everything but updates; you could easily swap that out. PsaltyDS shows how to enumerate all PnP signed drivers, but again you could easily modify to your needs.
    1 point
  5. Welcome to AutoIt and the forum! Doesn't this software provide a silent installation option? Please have a look at the help file for InstallShield.
    1 point
  6. Well, try what was posted and it works fine for me when I have Open set to Run in stead of Edit. Jos
    1 point
  7. Example code: #include <Excel.au3> Global $aData1[][] = [[11, 12], [21, 22], [31, 32]] Global $aData2[][] = [["A", "B"], ["C", "D"]] Global $iCurrentRow = 1 Global $oExcel = _Excel_Open() Global $oWBIn[2] $oWBIn[0] = _Excel_BookNew($oExcel) $oWBIn[1] = _Excel_BookNew($oExcel) Global $oWBOut = _Excel_BookNew($oExcel) _Excel_RangeWrite($oWBIn[0], 1, $aData1) _Excel_RangeWrite($oWBIn[1], 1, $aData2) For $i = 0 To UBound($oWBIn) - 1 _Excel_RangeCopyPaste($oWBIn[$i].Worksheets(1), $oWBIn[$i].Worksheets(1).Usedrange, $oWBOut.Worksheets(1).Range("A" & $iCurrentRow)) $iCurrentRow = $iCurrentRow + $oWBIn[$i].Worksheets(1).Usedrange.Rows.Count Next
    1 point
×
×
  • Create New...