Which version of Excel?
Please try this test.
1. New workbook.
2. ALT+F11
3. Insert a userform with a label control.
4. New module.
5. Insert the following text into the module.
Sub Test()
UserForm1.Show
End Sub
6. Run the Test macro.
What happens? If this works, how is this test different from your scenario?
Thanks,
--
Greg Mansius [MSFT]
This posting is provided "AS IS" with no warranties, and confers no rights.
ABC said:
How can I launch a user form from a maco?
I tried formname.Show and that doesn't work.
Thanks
ABC