E Earl Partridge Apr 24, 2008 #1 Where do I set the property of a Label to fill the screen (or fill form)? Earl
T Timo Apr 24, 2008 #2 Earl said: Where do I set the property of a Label to fill the screen (or fill form)? Earl Click to expand... Labels have Dock-property: Dim aLabel As New Label aLabel.Dock = DockStyle.Fill - Timo
Earl said: Where do I set the property of a Label to fill the screen (or fill form)? Earl Click to expand... Labels have Dock-property: Dim aLabel As New Label aLabel.Dock = DockStyle.Fill - Timo
K kimiraikkonen Apr 24, 2008 #3 Labels have Dock-property: Dim aLabel As New Label aLabel.Dock = DockStyle.Fill - Timo Click to expand... 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
Labels have Dock-property: Dim aLabel As New Label aLabel.Dock = DockStyle.Fill - Timo Click to expand... 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
E Earl Partridge Apr 24, 2008 #4 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
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