Results 1 to 3 of 3

Thread: Resizing problemm.. need help plz

  1. #1

    Thread Starter
    Lively Member mrdarkwarez's Avatar
    Join Date
    Feb 2000
    Location
    Australia
    Posts
    113

    Unhappy

    I have text box that is the size of a form...

    i want the textbox to still be the full size of the form when i resize the form... maximize the for etc...

    please can anyone show me how...

    much appreciated.. thanks


  2. #2
    Frenzied Member Jop's Avatar
    Join Date
    Mar 2000
    Location
    Amsterdam, the Netherlands
    Posts
    1,986
    Code:
    Private Sub Form_Resize()
    If Me.WindowState <> 1 Then
    Text1.Left = Me.Left
    Text1.Top = Me.Top
    Text1.Width = Me.ScaleWidth
    Text1.Height = Me.ScaleHeight
    End If
    End Sub
    Have FuN!
    Jop - validweb.nl

    Alcohol doesn't solve any problems, but then again, neither does milk.

  3. #3

    Thread Starter
    Lively Member mrdarkwarez's Avatar
    Join Date
    Feb 2000
    Location
    Australia
    Posts
    113

    Wink fanks

    thanks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width