Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

ACC2000: How to Embed a Bitmap Object in a Report at Run Time


View products that this article applies to.

This article was previously published under Q198463
Moderate: Requires basic macro, coding, and interoperability skills.

For a Microsoft Access 2002 version of this article, see 286459 (http://support.microsoft.com/kb/286459/EN-US/ ) .

↑ Back to the top


Summary

This article shows you how to use code to embed a bitmap image in a report at run time. The example uses an image control instead of an OLE object frame to store the bitmap.

You can use Visual Basic for Applications code to embed an OLE object into a control on a form at run time. To use this method, however, you have to set the Enabled property of the control to Yes and the Locked property to No. In a report, OLE object controls do not have Enabled or Locked properties. To work around this behavior in reports, you can embed bitmaps and other graphic images in an image control.

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.

↑ Back to the top


More information

CAUTION: If you follow the steps in this example, you modify the sample database Northwind.mdb. You may want to back up the Northwind.mdb file and follow these steps on a copy of the database.

  1. Open the sample database Northwind.mdb.
  2. Open the Alphabetical List Of Products report in Design view.
  3. Add an image control to the detail section of the report, and set its Name property to Image0.

    NOTE: The image control requires that you associate an image with it when you insert it in a form or report.
  4. In the Insert Picture dialog box select any bitmap (.bmp) file, such as C:\Windows\Circles.bmp.
  5. Set the OnFormat property of the detail section to the following event procedure:
    Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
       Me!Image0.Picture = "C:\Windows\Circles.bmp"
    End Sub
    					
  6. Save the report and open it in Print Preview to view the bitmap image.

↑ Back to the top


References

For more information about the image control, click Microsoft Access Help on the Help menu, type image controls, creating in the Office Assistant or the Answer Wizard, and then click Search to view the topic.

For more information about the Format event in reports, click Microsoft Access Help on the Help menu, type OnFormat property in the Office Assistant or the Answer Wizard, and then click Search to view the topic.

↑ Back to the top


Keywords: KB198463, kbhowto

↑ Back to the top

Article Info
Article ID : 198463
Revision : 3
Created on : 6/23/2005
Published on : 6/23/2005
Exists online : False
Views : 327