Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

FileSystemObject in server

Hi,

The below macro works fine in desktop app  but when i'm opens the same app in IE plugin not working fine.

In Desktop if image present in that path display messge "Image Exist" but in IE plugin it display message "Image Not Exist"

Any ideas on this ?

Sub Test

Set oFSO = CreateObject("Scripting.FileSystemObject")

if oFSO.fileExists("C:\VQD EAT\Images\2011_1129_162607_015.bmp") then

Msgbox("Image Exist")

else

Msgbox("Image Not Exist")

end if

End Sub

Thanks in advance.

2 Replies
Not applicable
Author

Hi,

you can check if  the user that runs QV Server service can access mentioned bmp file.

regards

Not applicable
Author

hi, thanks for reply.

Where can i check that whether user has permission for bmp file ?

Please if possible can you provide the screenshot.

Thanks in advance.