Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

enable excel workbooks when userform is open

I have a workbook that opens a user-form when the workbook is opened. This has caused a problem because it then disables all open excel workbooks so users cant make changes to other workbooks

Is there a way i can let users still edit/open other open workbooks and still keep the user-form open?

Thanks in advance

like image 463
Peter Mogford Avatar asked Dec 22 '15 09:12

Peter Mogford


Video Answer


2 Answers

You need to open user form with Modal parameter set to vbModeless:

Call UserForm.Show(vbModeless)
like image 111
mielk Avatar answered Oct 17 '22 07:10

mielk


On the properties of the user form change ShowModal to false.

like image 28
Darren Bartrup-Cook Avatar answered Oct 17 '22 08:10

Darren Bartrup-Cook