View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Kevin Kevin is offline
external usenet poster
 
Posts: 134
Default How do I open a Form in Excel XP

Thanks! That helps a lot!
-----Original Message-----
Hi Kevin

You can use a event to open the userform

Read Chip Pearson's site about Events
http://www.cpearson.com/excel/events.htm

Copy this in the thisworkbook module

Private Sub Workbook_Open()
userform1.Show
End Sub

See also
How to use Visual Basic for Applications examples to

control UserForms in Microsoft Excel
http://support.microsoft.com/default.aspx?scid=kb;EN-

US;829070


--
Regards Ron de Bruin
http://www.rondebruin.nl


"Kevin" wrote in

message ...
How do I open a form using VBA in Excel XP? Help is of
little help? I want to load the form on startup of the
workbook.

TIA

Kevin



.