adding command button to tab control

  • Thread starter Thread starter Katie
  • Start date Start date
K

Katie

Hello,

I'm creating a form, and I would like to have different
command buttons on each tab in a tab control, but when I
try, it puts the button on each individual tab in the tab
control.

Can you tell me how I put the button on an individual tab?

Sorry, I'm new at this, thanks...
 
You have added the CommandButton *on the Form*, not a TabPage of the
TabControl.

To add a Control on a TabPage, select the Control from the ToolBar, the
click on the destination TabPage to select it. IIRC, the selction handles
(little black squares) will appear on the selected TabPage. When you move
the mouse to the inside of the area enclosed by the selection handles, this
area will become black. At this stage you can draw the outline of your
CommandButton.
 
Back
Top