A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Links and Linking
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

show user form



 
 
Thread Tools Display Modes
  #1  
Old February 26th, 2008, 08:18 PM posted to microsoft.public.excel.links
Joanne
external usenet poster
 
Posts: 51
Default show user form

I have created this nifty little user input/calc form and now I would
like to let the user use it.
Problem is, I don't know how to show the form.

I want to show the form (hopefully without an excel worksheet showing
behind it) by clicking on an icon on the desktop.

Could someone please tell me how to show the form - I believe I know how
to do the shortcut icon - but without showing the excel workbook in the
background?
Thank you so much for your help
Joanne
  #2  
Old February 27th, 2008, 07:52 AM posted to microsoft.public.excel.links
Nick Hodge[_2_]
external usenet poster
 
Posts: 154
Default show user form

Joanne

If this is a UserForm built in Excel then you will need the application to
open as it is the 'container' for the UserForm, although you can hide most
bits of Excel (This is called a dictator application if you want to search
the groups for this).

To show the form you will need code like that below and it could be fired
when the workbook opens from a shortcut. Using a Workbook_Open() event, but
in a standard module this will show it

Sub FormShow()
Form1.Show
End Sub

Change Form1 to whatever name you have on your form.

If you wish a stand-alone fore this will need to be in a language such as
Visual Basic, C#, etc.

--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
DTHIS
web:
www.excelusergroup.org
web: www.nickhodge.co.uk





"Joanne" wrote in message
...
I have created this nifty little user input/calc form and now I would
like to let the user use it.
Problem is, I don't know how to show the form.

I want to show the form (hopefully without an excel worksheet showing
behind it) by clicking on an icon on the desktop.

Could someone please tell me how to show the form - I believe I know how
to do the shortcut icon - but without showing the excel workbook in the
background?
Thank you so much for your help
Joanne


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 01:13 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.