Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dimension arrHeaders(35)
objShell=CreateObject("Shell.Application")
objFolder=objShell.Namespace("c:\tmp")
* Array of possible file properties (35)
For i = 0 to 34
arrHeaders(i+1) = objFolder.GetDetailsOf(objFolder.Items, i)
Next
* create object of an existing file
objFolderItem=objFolder.ParseName('Image3.jpg')
* print all 35 properties
For i = 0 to 34
? i ,arrHeaders(i+1), ": " , objFolder.GetDetailsOf(objFolderItem, i)
Next