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"?
 

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

Similar Threads

SQL & ADO.NET 2
DataGrid Question 2
AxWindowsMediaPlayer control help 3
Think i`ve made a blob somewhere 2
libmp4v2.dll help 6
SQL query Lookup for Newbie 1
Print Forms 4
Sorry i know i`ve asked this before 4

Back
Top