I want the controlls to be in a reltive posission when resizing the form
please help me with the code, it's very urgent
Printable View
I want the controlls to be in a reltive posission when resizing the form
please help me with the code, it's very urgent
You need use the Resize event of your forms. For sample, if you have a TextBox Control on your form then you need copy follow code to form declaration section:
Private Sub Form_Resize ()
Text1.Move 0,0, ScaleWidth, ScaleHeight
End Sub
[email protected]
http://vbcode.webhostme.com/
if you need to resize the form just use this code
form1.width = #whatever number
form1.height = #whatever number
PanasonicSubz