D
DS
I have a Command Button that reduces a Textbox by 1.
Once the Textbox = 0 I need the Command Button to stop reducing by 1.
This is what I have:
Me.Text18 = Me.Text18 - 1
If Me.Text18 = 0 Then
End If
Thanks
DS
Once the Textbox = 0 I need the Command Button to stop reducing by 1.
This is what I have:
Me.Text18 = Me.Text18 - 1
If Me.Text18 = 0 Then
End If
Thanks
DS