View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Grd Grd is offline
external usenet poster
 
Posts: 118
Default How to show to a form in excel vba?

That worked for me

Thanks

Grd

"sebastienm" wrote:

Hi,
Try
SalesForm1.Show
from a macro and run that macro.
If in xl 2k or above you decide to show the form in modal or modeless mode.
SalesForm1.Show vbModal '<-- default
SalesForm1.Show vbModeless

--
Regards,
Sébastien


"Grd" wrote:

Hi,

I need to show a form on the screen that I have created in excel vba. The
form is called SalesForm1.

What lines of code do I need? I can't seem to figure it out.

Any help appreciated.

Thanks in advance

Grd