.GetSaveAsFilename() ?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I get the application method equivalent of .GetSaveAsFilename(), or
..OpenSaveAsFilename() from within VB for MSOutlook ? Neither seems to exist
in my version.

Is there another way to achieve the same result - ie to open the SaveAs
dialogue box ?

Thanks
David C
 
Am Tue, 31 Jan 2006 08:54:19 -0800 schrieb David C:

David, you could open that dialog by using CommandBar techniques, but the
OOM doesn´t provide you with the value entered by the user like it´s
possible in Word.
 
Thanks - sounds like the old 'DoCommand' thing, and is probably good enough.
Sadly, i must be very dull today, but I cannot get the VB editor to
recognise CommandBar as a valid word / object. Any ideas?
 
Am Wed, 1 Feb 2006 08:51:26 -0800 schrieb David C:

David, please open the Object Browser (F2). There you´ll find the
CommandBar. Both the Inspector and the Explorer have a CommandBars property.

The ID for the SaveAs CommandBarButton is 748. You can use the FindControl
function to get the object.
 
Back
Top