Click here to Skip to main content
Click here to Skip to main content

VB6 Save Form Image To File

By , 27 Jan 2008
 

Introduction

This is sample code to save image of the VB 6.0 form to a file.

Background

Normally the Form.image property only provides the drawing and printed text in the bitmap image. However if there are image controls, buttons, icons etc on the form then this code pictures those too.

Using the code

There is one single procedure SaveFormImageToFile which is self explainatory. The API BitBlt is used to convert form image to a picture and assign it to picture box. Then the image property of the picture box is used to store the picture using SavePicture methode.

Add a separate Picture box and command button on the form with its properties as given below:

Private Declare Function BitBlt Lib "gdi32" _
(ByVal hDestDC As Long, ByVal x As Long, ByVal y As Long, _
ByVal nWidth As Long, ByVal nHeight As Long, _
ByVal hSrcDC As Long, ByVal xSrc As Long, ByVal ySrc As Long, _
ByVal dwRop As Long) As Long

Public Sub SaveFormImageToFile(ByRef ContainerForm As Form, _
                               ByRef PictureBoxControl As PictureBox, _
                               ByVal ImageFileName As String)
  Dim FormInsideWidth As Long
  Dim FormInsideHeight As Long
  Dim PictureBoxLeft As Long
  Dim PictureBoxTop As Long
  Dim PictureBoxWidth As Long
  Dim PictureBoxHeight As Long
  Dim FormAutoRedrawValue As Boolean
  
  With PictureBoxControl
    'Set PictureBox properties
    .Visible = False
    .AutoRedraw = True
    .Appearance = 0 ' Flat
    .AutoSize = False
    .BorderStyle = 0 'No border
    
    'Store PictureBox Original Size and location Values
    PictureBoxHeight = .Height: PictureBoxWidth = .Width
    PictureBoxLeft = .Left: PictureBoxTop = .Top
    
    'Make PictureBox to size to inside of form.
    .Align = vbAlignTop: .Align = vbAlignLeft
    DoEvents
    
    FormInsideHeight = .Height: FormInsideWidth = .Width
    
    'Restore PictureBox Original Size and location Values
    .Align = vbAlignNone
    .Height = FormInsideHeight: .Width = FormInsideWidth
    .Left = PictureBoxLeft: .Top = PictureBoxTop
    
    FormAutoRedrawValue = ContainerForm.AutoRedraw
    ContainerForm.AutoRedraw = False
    DoEvents
    
    'Copy Form Image to Picture Box
    BitBlt .hDC, 0, 0, _
    FormInsideWidth / Screen.TwipsPerPixelX, _
    FormInsideHeight / Screen.TwipsPerPixelY, _
    ContainerForm.hDC, 0, 0, _
    vbSrcCopy
    
    DoEvents
    SavePicture .Image, ImageFileName
    DoEvents
    
    ContainerForm.AutoRedraw = FormAutoRedrawValue
    DoEvents
  End With
End Sub

Private Sub Command1_Click()
  SaveFormImageToFile frmSaveFormImageToFile, Picture1, "C:\Temp.bmp"
End Sub

        

Otherwise the code will set it.

Points of Interest

Image of the form in VB 6 along with the controls and their images is new.

History

This code is my first upload

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Santosh Visal
India India
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionSave of images if the image falls below the screen bottommemberChristopher Ng 2223 Mar '12 - 5:22 
Dear Sir,
I am writing a vb6 program that can merge several jpg files one below another.
What I did was to put the jpg as image1, image2, image3,... and to put these images in the form one below another.
The end result is that the last image falls far below the form and the screen height.
Using your program to save the image to file, the output stores only those images that are viewable in the screen, not those below the screen.
Please advise if there is a way to store those images below the screen as well.
Thank you.
 
Best regards,
Christopher Ng
GeneralSavePicture FunctionmemberGarry Lowther27 Jan '09 - 5:51 
Mad | :mad: This is missing from your code!
AnswerRe: SavePicture FunctionmemberMember 7283747 May '09 - 1:53 
SavePicture is a standard VB6 function

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 27 Jan 2008
Article Copyright 2008 by Santosh Visal
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid