Feb 29, 2008 #1 BGumm MIS Feb 26, 2008 12 US I'm lost trying to figure out how to require the user to save a workbook as something else when a certain event occurs (e.g.: Code: Private Sub cmdConfirmNewData_Click() 'NEED TO BRING UP THE SAVE AS DIALOG BOX End Sub ) Help is very appreciated! ::Bryan
I'm lost trying to figure out how to require the user to save a workbook as something else when a certain event occurs (e.g.: Code: Private Sub cmdConfirmNewData_Click() 'NEED TO BRING UP THE SAVE AS DIALOG BOX End Sub ) Help is very appreciated! ::Bryan
Feb 29, 2008 #2 AnotherHiggins Technical User Nov 25, 2003 6,259 US ->when a certain event occurs what events, exactly? Right click on the sheet tab where you want this to happen. You'll notice that you are now in the Sheet Object, not a regular Module. At the top left corner of the Editing window, change the drop-down from (General) to Worksheet. Now look at the options in the top right drop-down. There are different options if you double click the Workbook Object (Below the Sheet Objects, above the Modules). [tt]_____ [blue]-John[/blue][/tt] [tab][red]The plural of anecdote is not data[/red] Help us help you. Please read FAQ 181-2886 before posting. Upvote 0 Downvote
->when a certain event occurs what events, exactly? Right click on the sheet tab where you want this to happen. You'll notice that you are now in the Sheet Object, not a regular Module. At the top left corner of the Editing window, change the drop-down from (General) to Worksheet. Now look at the options in the top right drop-down. There are different options if you double click the Workbook Object (Below the Sheet Objects, above the Modules). [tt]_____ [blue]-John[/blue][/tt] [tab][red]The plural of anecdote is not data[/red] Help us help you. Please read FAQ 181-2886 before posting.
Feb 29, 2008 Thread starter #3 BGumm MIS Feb 26, 2008 12 US what events, exactly? This will happen in a form when a button is clicked. Upvote 0 Downvote
Feb 29, 2008 #4 ck1999 Technical User Dec 2, 2004 784 US Try this line Application.Dialogs(xlDialogSaveAs).Show ck1999 Upvote 0 Downvote