Microsoft KB Archive/222699

From BetaArchive Wiki

Article ID: 222699

Article Last Modified on 10/11/2006



APPLIES TO

  • Microsoft PowerPoint 2000 Standard Edition



This article was previously published under Q222699




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. 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. NOTE: The following macro examples work only in PowerPoint. Visual Basic for Applications macros are not supported by the Microsoft PowerPoint Viewer. For additional information, click the following article number to view the article in the Microsoft Knowledge Base:

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 how to use the sample code in this article, click the article number below to view the article in the Microsoft Knowledge Base:

212536 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 kbdtacode kbhowto kbprogramming KB222699