Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am trying to open the SaveAs dialogbox when the user clicks on a
commandbutton. Has anybody managed to do this any help would be much appreciated. Regards Charles |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Application.Dialogs(xlDialogSaveAs).Show
Steve "vqthomf" wrote in message ... I am trying to open the SaveAs dialogbox when the user clicks on a commandbutton. Has anybody managed to do this any help would be much appreciated. Regards Charles |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I hope this helps. Call one of the built in dialogs.
Sub ShowSaveAsDialog() Dim myDialog As Dialog Set myDialog = Application.Dialogs(xlDialogSaveAs) myDialog.Show End Sub Similarly, if you want to use the other 100+ dialog collection, have a look at the list of dialog collection at : http://www.sockofiles.350.com/dialoglist.txt I hope this helps Selva V Pasupathy For more on Excel, VBA, and other resources Please visit: http://socko.wordpress.com |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Cannot open the DBF created from the SaveAs option of Excel | Excel Programming | |||
Open Excel with a XML file and SaveAs XLS | Excel Programming | |||
Open DialogBox in VBA | Excel Programming | |||
Keep original wkbk open after SaveAs? | Excel Programming | |||
how to detect if user has a dialogbox open | Excel Programming |