+ Reply to Thread
Results 1 to 5 of 5

Close application if...

  1. #1
    Registered User
    Join Date
    08-17-2005
    Posts
    7

    Close application if...

    I wanted to find a way to check if user has any other open workbook, other case when user press close button is userform scritp could close whole excel.

    I got problem if user has open workbook and I use method:

    Private Sub Workbook_Open()
    Application.Visible = false
    laskuri.Show
    End Sub

    ...program...

    Private Sub CBsulje_Click()
    laskuri.Hide
    ActiveWindow.Close
    Application.Visible = True
    End Sub

    Workbook which was open is hided (I can see taskmanager that excel.exe is running), if user try to open it again coming message that workbook is already open....

    I have some mistake here, but didn't find where. So a bit help will be great.

    Maba

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259
    Hello Maba,

    I am not sure if you want to quit Excel when you close the Workbook. You can uncomment that line to close Excel if you want.

    Please Login or Register  to view this content.
    Sincerely,
    Leith Ross

  3. #3
    Registered User
    Join Date
    08-17-2005
    Posts
    7
    Quote Originally Posted by Leith Ross
    Hello Maba,

    I am not sure if you want to quit Excel when you close the Workbook. You can uncomment that line to close Excel if you want.

    Please Login or Register  to view this content.
    Sincerely,
    Leith Ross
    Thanks Leith,

    I want to close Excel if Excel wasn't open before that.
    I need to know what is coming after if, who to check is there any other open window?

    [code]Private Sub CBsulje_Click()
    laskuri.Hide
    ActiveWorbook.Close
    Application.Visible = True

    if...(there is other windows open) then
    ActiveWorbook.Close
    else
    Application.Quit

    'Uncomment the next line to close Excel
    'Application.Quit
    End Sub

    Regards,
    maba

  4. #4
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259
    Hello Maba,

    If I understand your post, you want to check if there are any other open workbooks when you close the workbook you have open.

    Please Login or Register  to view this content.
    This macro will check if anyother workbooks other than yours are still open and list them in a message box.

    Sincerely,
    Leith Ross

  5. #5
    Registered User
    Join Date
    08-17-2005
    Posts
    7
    Quote Originally Posted by Leith Ross
    Hello Maba,

    If I understand your post, you want to check if there are any other open workbooks when you close the workbook you have open.
    Please Login or Register  to view this content.
    This macro will check if anyother workbooks other than yours are still open and list them in a message box.

    Sincerely,
    Leith Ross
    Thanks Leith,

    That looks exactly what I need, I just have to check that is working.

    BR
    maba

+ 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