I'm creating a program that creates drawings using shapes. Once I have a drawing I want to copy the part of the screen it occupies as a bitmap and then save that as an external file. The code to capture it as a bitmap is shown below. Once I have the picture it is in the clipboard. How do I save the contents of the clipboard as an external file or how do I paste the picture as an image into the workbook and then save it as an external file? I thought of adding it as the background image to a blank chart and then saving the chart but I'm sure there is a more direct way to do it.
Range("A6:CT11").Select
Selection.Copy
Application.CutCopyMode = False
Selection.CopyPicture Appearance:=xlScreen, Format:=xlBitmap
Bookmarks