Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi, I've created a VBA-userform from where users can insert values int
an Excel-sheet. Now the user only uses the Userform but see's in the background th database. Is it possible to Hide the whole Excel-file and only show th Userform? ![]() GreetZ from Stif -- Message posted from http://www.ExcelForum.com |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
Don't hide Excel, it can be used for other things than this <g. The common way to do this is 1) make the "userform.show" macro available as an Excel menu item or a toolbar button (see http://www.dicks-blog.com/excel/2004..._commandb.html for one way) 2) save your file as an addin (xla file). That's a workbook without visible sheets. HTH. Best wishes Harald "Stift " skrev i melding ... Hi, I've created a VBA-userform from where users can insert values into an Excel-sheet. Now the user only uses the Userform but see's in the background the database. Is it possible to Hide the whole Excel-file and only show the Userform? ![]() GreetZ from Stift --- Message posted from http://www.ExcelForum.com/ |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Something like : Application.Hide won't work?????
or Application.Minimize -- Message posted from http://www.ExcelForum.com |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try code like
Application.Visible = False UserForm1.Show Be sure to make Excel visible when you close the form: Application.Visible = True -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Stift " wrote in message ... Hi, I've created a VBA-userform from where users can insert values into an Excel-sheet. Now the user only uses the Userform but see's in the background the database. Is it possible to Hide the whole Excel-file and only show the Userform? ![]() GreetZ from Stift --- Message posted from http://www.ExcelForum.com/ |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
It might. What I was trying to say was that it's very common to have at
least two jobs open at the same time in Excel, she's built for that, and some of us really hate files that hijack the whole application, or worse, the whole computer. Best wishes Harald "Stift " skrev i melding ... Something like : Application.Hide won't work????? or Application.Minimize ? --- Message posted from http://www.ExcelForum.com/ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I set the show/hide default for comments in Excel? | Excel Discussion (Misc queries) | |||
Show or Hide control characters in a cell (using Excel 2007)... | Excel Discussion (Misc queries) | |||
Allow show/hide option for Excel graph series | Charts and Charting in Excel | |||
how do I conditionally hide or show a column in Excel | Excel Discussion (Misc queries) | |||
SHORT CUT KEY(S) TO SHOW OR HIDE SEETS IN EXCEL | Excel Worksheet Functions |