Help with deleting Frames or checkboxes from a user form

  • Thread starter Thread starter jc
  • Start date Start date
J

jc

Can someone help me understand if and how to delete/remove things like a
frame or Checkbox or command button from a user form?
 
You mean in code or manually?

If in code, I wouldn't bother. I'd just hide it.

me.checkbox1.visible = false
(in code)

Manually, you can just select it and then hit the delete key on the keyboard.
 
i meant with code.
--
CroceJC


Dave Peterson said:
You mean in code or manually?

If in code, I wouldn't bother. I'd just hide it.

me.checkbox1.visible = false
(in code)

Manually, you can just select it and then hit the delete key on the keyboard.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top