Consulting

Results 1 to 5 of 5

Thread: Excel Visible/Invisible

  1. #1
    VBAX Regular
    Joined
    May 2006
    Posts
    67
    Location

    Excel Visible/Invisible

    I want to display a userform and make the underlying excel file invisible which I have managed. However in the windows task manager and the windows menu bar no instance of excel appears. Is there anyway of displaying that the application is open (as the userform is displayed) but not the worksheet?

  2. #2
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    [vba]

    Application.Visible = False
    [/vba]
    Last edited by Bob Phillips; 05-08-2009 at 06:48 AM.
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

  3. #3
    VBAX Regular
    Joined
    May 2006
    Posts
    67
    Location
    Thats what I have done however as per the initial post when you go into task manager it appears that excel is not running but it is in the background. The solution I am trying to work out is how to hide the open spreadsheet but still be aware that excel is running.

  4. #4
    Knowledge Base Approver VBAX Guru GTO's Avatar
    Joined
    Sep 2008
    Posts
    3,368
    Location
    I do not believe you are going to hde this in task manager, leastwise not under processes tab.

    I do believe it is there so that amongst other things, you can spot junk you downloaded w/o knowledge; as well as to spot what IS running in the background...

    Hope this helps,

    Mark

  5. #5
    Moderator VBAX Master georgiboy's Avatar
    Joined
    Mar 2008
    Location
    Kent, England
    Posts
    1,211
    Location
    Something like this maybe...

    [VBA]Application.WindowState = xlMinimized[/VBA]

    Hope this helps
    Click here for a guide on how to add code tags
    Click here for a guide on how to mark a thread as solved
    Click here for a guide on how to upload a file with your post

    Excel 365, Version 2404, Build 17531.20128

Posting Permissions

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