Label

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?dHJhY2t0b3I=?=

    Label

    I have put a label control on my form and the size property is supposed to
    be: 192,16. However, the default size is 0,13 and I cannot change it. What
    the control is doing is resizing to the size of the text entered into the
    Text property of the control. I want to be able to center this label under a
    textbox where the labels text changes upon another event happening. How can I
    make the size of the control 192,16 and remain static?
  • Paul E Collins

    #2
    Re: Label

    "tracktor" <tracktor@discu ssions.microsof t.comwrote:
    I have put a label control on my form and the size property is supposed to
    be: 192,16. However, the default size is 0,13 and I cannot change it.
    Set the label's AutoSize property to false.

    Eq.


    Comment

    • =?Utf-8?B?dHJhY2t0b3I=?=

      #3
      Re: Label

      That did it! Thanks

      "Paul E Collins" wrote:
      "tracktor" <tracktor@discu ssions.microsof t.comwrote:
      >
      I have put a label control on my form and the size property is supposed to
      be: 192,16. However, the default size is 0,13 and I cannot change it.
      >
      Set the label's AutoSize property to false.
      >
      Eq.
      >
      >
      >

      Comment

      Working...