+ Reply to Thread
Results 1 to 5 of 5

message box on startup

Hybrid View

stewart1 message box on startup 03-23-2011, 07:12 AM
Domski Re: message box on startup 03-23-2011, 07:21 AM
royUK Re: message box on startup 03-23-2011, 07:22 AM
stewart1 Re: message box on startup 03-23-2011, 07:30 AM
royUK Re: message box on startup 03-23-2011, 07:32 AM
  1. #1
    Registered User
    Join Date
    06-22-2010
    Location
    England
    MS-Off Ver
    Excel 2003
    Posts
    46

    message box on startup

    Hi again to all,

    I have this code that upon startup a messagebox opens and says, "do you want to continue?" with a yes or no button.
    Private Sub Workbook_Open()
    Answer = MsgBox("Do you want to continue ?", _
        vbYesNo, "My Title")
    If Answer = vbYes Then
    Exit Sub
    ElseIf Answer = vbNo Then
    ThisWorkbook.Close savechanges:=True
    End If
    End Sub
    Trouble is, I need the workbook to totally shut down if "no" is pressed. at the moment the workbook disappears but excel just sits there blank.

    Could someone tell me what the trouble is please?


    Thanks,


    Stewart.
    Last edited by stewart1; 03-23-2011 at 07:38 AM.

  2. #2
    Forum Expert Domski's Avatar
    Join Date
    12-14-2009
    Location
    A galaxy far, far away
    MS-Off Ver
    Darth Office 2010
    Posts
    3,950

    Re: message box on startup

    Assuming they won't have made any changes if they say no then there will be no need to save the document you could use:

    Private Sub Workbook_Open()
    
    Dim Answer As VbMsgBoxResult
    Answer = MsgBox("Do you want to continue ?", _
        vbYesNo, "My Title")
    If Answer = vbNo Then
        Application.Quit
    End If
    
    End Sub

    What about if they have other workbooks open though?

    Dom
    "May the fleas of a thousand camels infest the crotch of the person who screws up your day and may their arms be too short to scratch..."

    Use code tags when posting your VBA code: [code] Your code here [/code]

    Remember, saying thanks only takes a second or two. Click the little star to give some Rep if you think an answer deserves it.

  3. #3
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: message box on startup

    Your code is closing the workbook not the application. If you close the application then all open workbooks will be closed. You don't want to save changes.
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  4. #4
    Registered User
    Join Date
    06-22-2010
    Location
    England
    MS-Off Ver
    Excel 2003
    Posts
    46

    Re: message box on startup

    Yes!

    I am a sad man that puches the air when I get the working result. I just thought you's should know the kind of reactions you get when you give the help!

    Ah! I sat there for about two hours trying to make that work on my own!

    Thanks Domski for the code and RoyUk for the words of wisdom.

    (is there a solved button here?)

  5. #5
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: message box on startup

    If you are satisfied with the solution(s) provided, please mark your thread as Solved.

    How to mark a thread Solved
    Go to the first post
    Click edit
    Click Go Advanced
    Just below the word Title you will see a dropdown with the word No prefix.
    Change to Solved
    Click Save

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1