I want to set all forms left and top, width, height position and size in same place.
For this in module i worte
public T, L, W, H as integer
T=2000
L=2000
W=5000
H=5000
and then in form
Form_Load()
me.top=t
me.left=l
me.width=w
me.height=h
End sub
but the form is not set accordingly
Would you please help me
For this in module i worte
public T, L, W, H as integer
T=2000
L=2000
W=5000
H=5000
and then in form
Form_Load()
me.top=t
me.left=l
me.width=w
me.height=h
End sub
but the form is not set accordingly
Would you please help me
Comment