I'm looking to get an image of a Visio page into the clipboard using VBA. I can export an image of the page using the .Export method of the Page object in question. But is there a way to load an image file to the clipboard within VBA?
Or should I just use something like VB6 and make a little command line tool that just loads a jpg or bmp file path into the clipboard using Clipboard.SetData LoadPicture( "picpath" )?