T
tom
I'm trying to read in image data using the filesystemobject. I am able
to read the comments field for all file types it seems, except the ones
I want, .gif .jpg and .bmp.
Is it possible to do this?! If so what might I need to do?
Thanks!
here is the script im using to loop through each possible sub field:
Dim arrHeaders(34)
Set objShell = CreateObject("Shell.Application")
Set objFolder = objShell.Namespace("E:\images")
For i = 0 to 33
arrHeaders(i) = objFolder.GetDetailsOf(objFolder.Items, i)
Next
For Each strFileName in objFolder.Items
For i = 0 to 33
Response.Write( i & vbtab & arrHeaders(i) & ": " &
objFolder.GetDetailsOf(strFileName, i) & "<br>")
Next
Next
to read the comments field for all file types it seems, except the ones
I want, .gif .jpg and .bmp.
Is it possible to do this?! If so what might I need to do?
Thanks!
here is the script im using to loop through each possible sub field:
Dim arrHeaders(34)
Set objShell = CreateObject("Shell.Application")
Set objFolder = objShell.Namespace("E:\images")
For i = 0 to 33
arrHeaders(i) = objFolder.GetDetailsOf(objFolder.Items, i)
Next
For Each strFileName in objFolder.Items
For i = 0 to 33
Response.Write( i & vbtab & arrHeaders(i) & ": " &
objFolder.GetDetailsOf(strFileName, i) & "<br>")
Next
Next