Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/14/2021 in all areas

  1. Here are a few small suggestions -- Standardize capitalization of acronyms. Is it "JSON" or "Json"? My recommendation is all caps, including "API" instead of "Api" Develop a consistent naming convention. You have a tendency to throw in extra underscores in some instances. For example, __WD_Capabilities_Switch_Parameters should be __WD_Capabilities_SwitchParameters so that it matches the format of __WD_Capabilities_CreateObject. Removing the underscore after _WD_Capabilities would better match the naming convention used in the main WD UDF 😉
    1 point
  2. Skysnake, Suitable text added to Help file. M23
    1 point
  3. _StringBetween returns an array.... MsgBox(0, "Title", $data[0])
    1 point
  4. Welcome to AutoIt and the forum! There is no "hidden" property for a WorkSheet. Just a "Visible" property to not show this Sheet. _Excel_SheetList returns a 2D array with two properties for each WorkSheet (please see the help file for details). Loop through the array and check the Visible property. If True ignore the WorkSheet. $For $i = 0 to UBound($aWorkSheets) - 1 If $aWorkSheets[$i][1].Visible = False Then ; Do what you want to do with a WorkSheet you have to ignore like write to a log file Else ; Process the Worksheet EndIf Next
    1 point
  5. Gianni

    Adb problem

    even apologies? do not overdo it, non need to aplogize, we are glad to be of help ...
    1 point
×
×
  • Create New...