How to move a control?

H

H. Martins

How do I move a control, say a CheckBox, from a form (itself) to a
TabControl moving all properties (events, etc) it it?

Thanks
Henry
 
R

Rick Brandt

H. Martins said:
How do I move a control, say a CheckBox, from a form (itself) to a
TabControl moving all properties (events, etc) it it?

Thanks
Henry

Cut to the clipboard. Select the desired TabPage, then Paste. You will
have to re-enter all of the [Event Procedure] property settings, but
after doing that the code they point to is still there and will still
work.
 
J

John W. Vinson

How do I move a control, say a CheckBox, from a form (itself) to a
TabControl moving all properties (events, etc) it it?

Thanks
Henry

Select the control on the form (in form design mode of course). Type Ctrl-X to
cut it to the clipboard; click the desired tab on the tab control (the page
should highlight); Ctrl-V to paste it onto the page.
 

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

Top