Setting the Location of a Tab Page

  • Thread starter Thread starter Newbie!
  • Start date Start date
N

Newbie!

Hey Group,

I carn`t find this anywhere:(

Anybody know how I could set the location of a TaB Page by codes?

Ta
Si
 
To set the left/Top Position of a TabPage makes no sense.......

A TabPage is always in a TabControl and the TabControl has a position.

What exactly do you mean with "location" ?

If you mean the Tab Control then it's:
Me.TabControl1.Location = New System.Drawing.Point(40, 144)
 
Hi,

The tabpage will fill the tabcontrol it is on. You can not change
its location. Here is how to change a tabcontrols location.


TabControl1.Location = New Point(10, 10)



If you make the tab appear on the bottom.

TabControl1.Alignment = TabAlignment.Bottom



Ken
 
Sometimes helpfull:

Have a look at the Code the VB Designer Produces automaticly
if you insert a Control.

It's in the "#" Code Part.

There you see all the Code too.
 
* "Newbie! said:
I carn`t find this anywhere:(

Anybody know how I could set the location of a TaB Page by codes?

Are you referring to the /order/ of the tabpages? What exactly do you
mean by "location of a tabpage"?
 
Back
Top