How to Export Button Image

  • Thread starter Thread starter Michael Hyatt
  • Start date Start date
M

Michael Hyatt

I have created a custom button image for the Outlook toolbar. When pressed,
this runs a macro. Is there a way to export this button image, so that I can
give it to users who use the macro?
 
How did you create the image, from a BMP file? Or did you edit an image when
customizing the toolbar button? The file Outcmd.dat has all your menu
customizations in it, you can try overwriting a user's version of that file
with your own. That would also remove any customizations that user has made
however.

Other than that you'd have to use a BMP image and use code to set your
button image to that BMP by using code to put the image on the Clipboard and
using PasteFace to put it in your button (or for Outlook 2002 and later you
can use the Picture and Mask properties of a CommandBarButton).
 
Back
Top