Userform in Personal

Roderick_E

Well-known Member
Joined
Oct 13, 2007
Messages
2,051
Excel 2016
Trying to simply use a Userform in Personal.xlsb (binary) Personal workbook but when I run the personal macro to show the form, it throws up popup, "Object Required"

Code I'm using is simple:
Code:
Sub showxlst()
UserForm1.Show
End Sub

Yes, the form is called UserForm1 So what am I missing to make this work? Thanks
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
changed code for testing to:

Code:
Sub showxlst()
     Dim objLoop As Object
     
    For Each objLoop In VBA.UserForms
     MsgBox objLoop.Name
    Next objLoop
   
End Sub

But it returns nothing (no msgbox) which would seem that the object/form doesn't exist, though I can see it in the editor.
 
Upvote 0
Is there any code in the Initialize or Activate events of the userform?
 
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,286
Members
452,631
Latest member
a_potato

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top