An implementation of Visual Basic that is built into Microsoft products.
Hi @Alan Sears ,
Thanks for reaching out.
This comes down to the context in the VBA editor rather than a change in VBA itself. The key is to make sure you’re editing the control from the UserForm designer. Open the editor with Alt + F11, then in Project Explorer double-click the UserForm so it’s open in design view. Click the specific control once so only that control is selected, and then either press F4 or go to View -> Properties Window.
When the correct object is selected, the Properties window should show entries like (Name) and Caption. (Name) is what you reference in code, while Caption is the text displayed on the control. If what opens doesn’t look like that, it’s often because the code window is active instead of the form, the form itself is selected, or multiple controls are selected at once.
If you’re working with a control placed directly on a worksheet rather than inside a UserForm, switch on Design Mode from the Developer tab first, then access Properties from there or by right-clicking the control.
If the Properties window still doesn’t appear at all, it may simply be hidden or off-screen. In that case, reopening the VBA editor or trying in a new workbook usually brings it back into view.
The Trust Center and ActiveX settings generally affect whether controls can run, not whether you can edit their properties in the designer, so they’re unlikely to be the cause here.
Hope this helps! If my answer was helpful, I would greatly appreciate it if you could follow the instructions here so others with the same problem can benefit as well.