PPT2000: Sample VBA Code to Insert an Image Full Size and Centered

ID: Q222699




The information in this article applies to:
  • Microsoft PowerPoint 2000


SUMMARY

Although you can use the AddPicture method in a Visual Basic macro to insert an image on a PowerPoint slide, the AddPicture method requires you to specify the point size of the image. This article provides a sample Microsoft Visual Basic for Applications macro (Sub procedure) that imports an image in the correct size. This method does not require you to know the point size of the image in advance.


MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft Support professionals 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 needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

http://www.microsoft.com/support/supportnet/overview/overview.asp
NOTE: The following macro examples only work from within the PowerPoint application. Visual Basic for Applications macros are not supported by the Microsoft PowerPoint Viewer. For additional information, please see the following article in the Microsoft Knowledge Base:
Q230746 PPT: Viewer: Presentation Macros Don't Run

Sample Visual Basic Procedure


   Sub ImportPictureAtSize()

      Dim oSlide As Slide
      Dim oPicture As Shape

      ' Set oSlide to the first slide in the presentation.
      Set oSlide = ActiveWindow.Presentation.Slides(1)

      ' Set oPicture to the picture file on your computer. Set Link To
      ' File to false, Save With Document to true, and place it in the
      ' upper left-hand corner of the slide, sized to 1 by 1 points.
      '
      ' NOTE: Before you run this code replace this text string:
      '   "Put image path here!"
      ' with the path to the image you want to import. For example:
      '   "c:\MyImage.bmp"
      Set oPicture = oSlide.Shapes.AddPicture("C:\mcp.bmp", _
         msoFalse, msoTrue, 1, 2, 3, 4)

      ' Now scale the picture to full size, with "Relative to original
      ' picture size" set to true for both height and width.
      oPicture.ScaleHeight 1, msoTrue
      oPicture.ScaleWidth 1, msoTrue

      ' Make sure that slide 1 is the active slide
      ActiveWindow.View.GotoSlide Index:=1
      
      ' Move the picture to the center of the slide. Select it.     
      With ActivePresentation.PageSetup
         oPicture.Left = (.SlideWidth \ 2) - (oPicture.Width \ 2)
         oPicture.Top = (.SlideHeight \ 2) - (oPicture.Height \ 2)
         oPicture.Select
      End With

   End Sub 


REFERENCES

For more information about using the sample code in this article, please see the following article in the Microsoft Knowledge Base:

Q212536 OFF2000: How to Run Sample Code from Knowledge Base Articles

Additional query words: 9.00 ppt9 vba vbe ppt2k powerpt vba2k ppt9.0 ppt2000 program programming

Keywords : kbcode kbprg kbdta kbdtacode kbpptvba
Version : WINDOWS:2000
Platform : WINDOWS
Issue type : kbhowto


Last Reviewed: July 14, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.