Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 313
Default Hide Excel Window

I have small application which ask user for enty on the form, processes text
file, created output files and closes. All works fine but I would like to
hide Excel so that after clicking on shortcut user will only see the entry
form and after running the process confirmation of completion. I can not
figure out on how to hide Excel and still have the entry form visible. How it
can be done.

Thanks for advise.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 206
Default Hide Excel Window

On Feb 17, 5:41*pm, Tony wrote:
I have small application which ask user for enty on the form, processes text
file, created output files and closes. All works fine but I would like to
hide Excel so that after clicking on shortcut user will only see the entry
form and after running the process confirmation of completion. I can not
figure out on how to hide Excel and still have the entry form visible. How it
can be done.

Thanks for advise.

Try these command in the UserForm


Private Sub CommandButton1_Click()
'makes excel visible and closes unloads the workbook
Application.Visible = True
Unload Me
End Sub

Private Sub UserForm_Initialize()
'makes excel invisible
Application.Visible = False
End Sub
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Hide macro List from Alt+F8 window. Shazi Excel Programming 9 July 22nd 08 08:00 PM
Hide Window Caption Bar Mats Nilsson Excel Programming 4 August 28th 06 07:02 PM
Practical use of Window Hide Tetsuya Oguma[_4_] Excel Programming 1 August 5th 04 06:50 AM
How to hide Excel window when activating a Shape object Yi[_2_] Excel Programming 4 October 8th 03 02:36 PM
How to hide Excel window when activating a Shape object Bob Kilmer Excel Programming 0 September 27th 03 03:51 PM


All times are GMT +1. The time now is 10:09 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"