How to move a control?

  • Thread starter Thread starter H. Martins
  • Start date Start date
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
 
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.
 
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.
 
Back
Top