SQL Object
 
Syntax
 
SQL.CreateBMPfile(GraphicImage, FileSaveAs)
 
Description
Converts a graphic file to a standard format. If the GraphicImage type is a bitamp, icon, metafile or enhanced metafile, the target file is saved in the same format. If the type is JPEG or GIF, it is saved as a bitmap file.
 
Parameter
Description
GraphiceImage
Name of the source file, including path.
FileSaveAs
Name of the new file to be created.
 
See Also
Example
 
Sub Main
 
   If SQL.CreateBMPfile("c:\demo.gif", "c:\demo.bmp") Then
     Debug.Print "Succesvol geconverteerd!"
   End If
 
End Sub