View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
xalbador xalbador is offline
external usenet poster
 
Posts: 2
Default paste as device indep. bmp in powerpoint

I have a table in excel that I want to copy in a
powerpoint presentation. Due to some special
characteristics of this table, e.g. size, I want to paste
it as "device independent bitmap" in powerpoint.

Until now, I have been doing something similar copying and
pasting as an image, as it is explained in Jon Peltier's
webpage:
............................

Selection.CopyPicture Appearance:=xlScreen, _
Format:=xlPicture
PPPres.Application.ActiveWindow.View.Paste
'(where PPPres is the active presentation)
............................

Is there something similar to paste the image as a "Device
Independent Bitmap"?

Thanks!