Resizes a control i.e textbox when a form is resized
Resizes a control i.e textbox when a form is resized
Rate Resizes a control i.e textbox when a form is resized
(1(1 Vote))
Private Sub Form_Resize()
Text1.Height = Form1.Height - 1000
Text1.Width = Form1.Width - 1000
'To leave gaps try using ( = Form1.Height - x)
'or for those who dont like maths x = a number such as 1000
End Sub
Resizes a control i.e textbox when a form is resized Comments
No comments yet — be the first to post one!
Post a Comment