Is there a way to formant a textbox to make a number a negitive amout?
Wondering if there is some code or a simpler way to do that. Any
suggetions?
Thanks....
Your message is not really clear.
A control's Format only effects what is displayed, not the control's
actual value.
Set the Format property of the control to:
-#;-#;0
Or.. do you mean you want to have every number entered into the
control actually become a negative value?
I so, code the control's AfterUpdate event:
If Me![ControlName]>0 Then
Me![ControlName]= Me![ControlName]*-1
End If
If you meant something else, I suggest you re-post with more
information.