Changeset 85814 in vbox for trunk/tools/win
- Timestamp:
- Aug 18, 2020 11:07:55 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139971
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/win/vbscript/helpers.vbs
r85809 r85814 252 252 ' Returns a reverse version sorted array of subfolder names that starts with the given string. 253 253 function GetSubdirsStartingWithRVerSorted(strFolder, strStartingWith) 254 GetSubdirsStartingWithR SortedVersion= ArrayRVerSortStrings(GetSubdirsStartingWith(strFolder, strStartingWith))254 GetSubdirsStartingWithRVerSorted = ArrayRVerSortStrings(GetSubdirsStartingWith(strFolder, strStartingWith)) 255 255 end function 256 256 … … 782 782 set OutParms = g_objReg.ExecMethod_("GetStringValue", InParms, , g_objRegCtx) 783 783 if OutParms.ReturnValue = 0 then 784 if OutParms.sValue <> Nullthen784 if not IsNull(OutParms.sValue) then 785 785 RegGetString = OutParms.sValue 786 786 end if
Note:
See TracChangeset
for help on using the changeset viewer.