Private Sub MyCommandButton_Click()
Me!tbAdditionChargeAmount = Me!tbAdditionChargeAmount + 5
End Sub
If that doesn't work, try:
Private Sub MyCommandButton_Click()
Me!tbAdditionChargeAmount = _
Val(Me!tbAdditionChargeAmount) + 5
End Sub
--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
"Bob V" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>
>
> What would I need for [On Click] in my Control Button that would add 5 to
> [tbAdditionChargeAmount] each time I clicked it?
> Thanks for any Help...........Bob
>