moving form objects

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to move some form objects in an access 2000 database application. I am
new to vba. I have been trying to set the Top property but that doesn't seem
to work. Any suggestions on what method/property will work?
TIA
Steve DeWott
 
Hi Steve

Check out the MoveSize method in the online help.

Things you need to be aware of are:
- it operates on the window (usually form) that is currently active
- the unit of measurement is the "twip". There are 1440 twips in one
inch
(or approx 567 in one centimetre)
 
Back
Top