Powerbasic Museum 2020-B

Legacy Software (PBWIN 9.0+/PBCC 5.0+) => Source Code => Scripting => Windows Script Host => Topic started by: José Roca on July 14, 2008, 10:53:33 PM

Title: IWshCollection.Item Method
Post by: José Roca on July 14, 2008, 10:53:33 PM


The following code illustrates the use of the Item method:


#INCLUDE "WSHOM.INC"

DIM pWsh AS IWshShell
DIM pSpecialFolders AS IWshCollection
DIM nCount AS LONG
DIM i AS LONG
DIM vItem AS VARIANT
DIM vValue AS VARIANT

pWsh = NEWCOM "WScript.Shell"
' Get a reference to the special folders collection
pSpecialFolders = pWsh.SpecialFolders

' Get the number of objects in the collection
nCount = pSpecialFolders.Count

' Enumerates the collection
FOR i = 0 TO nCount - 1
   vItem = i AS LONG
   vValue = pSpecialFolders.Item(vItem)
   IF OBJRESULT THEN EXIT FOR
   STDOUT VARIANT$(vValue)
NEXT