D.Mair
David
- Local time
- Today, 04:41
- Joined
- Jun 1, 2001
- Messages
- 33
I have a date that inserts automatically and for speed users thought using + and - to increase and decrease the date by one day would be handy. I tried
Private Sub Received_Change()
If Me.[Received].Text = "+" Then
Me.[Received].Value = Me.[Received].Value + 1
ElseIf Me.[Received].Text = "-" Then
Me.[Received].Value = Me.[Received].Value - 1
End If
But this didn't work I think it is this part ("+" Then) I think i need something before the + sign
Thanks in anticipation.
[This message has been edited by D.Mair (edited 06-25-2001).]
Private Sub Received_Change()
If Me.[Received].Text = "+" Then
Me.[Received].Value = Me.[Received].Value + 1
ElseIf Me.[Received].Text = "-" Then
Me.[Received].Value = Me.[Received].Value - 1
End If
But this didn't work I think it is this part ("+" Then) I think i need something before the + sign
Thanks in anticipation.
[This message has been edited by D.Mair (edited 06-25-2001).]