I'm developing a script using VBScript and I need to validate the input file as a 16-Bits BMP.
At the time my script is like this:
Const OverwriteExisting = TRUE
Set objFSO = CreateObject("Scripting.FileSystemObject")
objFSO.CopyFile "C:\16bmp.bmp" , "D:\test.bmp", OverwriteExisting
But How can I validate the input file as a 16-Bits BMP?
PS: Remember that I need this to be compatible with my site and Windows CE(I will develop a program for it using NSBasic).