vb equivalent of 'insert picture new photoalbum

  • Thread starter Thread starter Mark Benavides
  • Start date Start date
M

Mark Benavides

SIGH.

I've figured out how to ADD the control

Application.CommandBars("AnyActiveToolbar").Controls.Add
Type:=msoControlButton, Id:=7063, Before:=xx

But what's the macro equivalent of simply runnnig the photoalbum
wizard?

Thanks in advance,
Mark
(e-mail address removed)
 
Mark,
This will launch the photo album in 2002/2003
CommandBars.FindControl(Id:=7063).Execute
 
Shyam,
A very nice elegant solution, THANKS!

BTW, I was flying from Seattle to Chicago struggling with this, and it
was all I could do to keep from grabbing the microphone from the
stewardess and ask if there was a vb programmer on board <G>.

Regards,
Mark
 
Back
Top