Weird result and don't know why

  • Thread starter Thread starter Angi
  • Start date Start date
A

Angi

This should be real simple but I don't understand the result so I can't
figure out the answer.

Three text fields: Height, Width and Size

The afterupdate event for Width is:

me.size = me.height & " X " & me.width

Height=54
Width=30 (doesn't seem to matter what # this is, result the same)
Size= 54 X 4020 (should obviously be 54 x 30)

Can someone tell me why it's doing this??

TIA!
 
Width is already a property of the form. Your form is 4020 pixels wide.
You'd be better off just using different control names (Height is also a
property of the section so you're probably going to be better off changing
that as well.
 
Rob,
DUH! I knew that was going to cause a problem when I did it and I did
it anyway. Thanks for the quick reply!

Ang
 
Back
Top