Full Screen

  • Thread starter Thread starter Earl Partridge
  • Start date Start date
Earl said:
Where do I set the property of a Label to fill the screen (or fill form)?
Earl

Labels have Dock-property:

Dim aLabel As New Label
aLabel.Dock = DockStyle.Fill

- Timo
 
Labels have Dock-property:

Dim aLabel As New Label
aLabel.Dock = DockStyle.Fill

- Timo

Hi,
Note that using docking with fill property makes label place up-left
corner on the form based on the label's size.

Thanks,

Onur
 
This is a label I've added to the form from the Toolbox. I have set its
Dock
property to Fill, but it does not fill the form.
Can text be added directly onto the form?
Where does console.write appear?
Earl
 
Back
Top