N
NotGood@All
I have 2 text boxes, 1 for the number of things I'm ordering, the 2nd to show
the total price for the items. It works the first time, but I get an error
on a new record saying "Invalid use of Null" and I dim TabStop1 as currency
but when I assign 30.00 to it I get 30#
Private Sub TheApplication_Exit(Cancel As Integer)
Dim TabStop1 As Currency
Dim TabStop1Cost As Currency
TabStop1 = 30#
TabStop1Cost = Me.ClerkNo * TabStop1
Me.ApplicationMoney = TabStop1Cost
End Sub
the total price for the items. It works the first time, but I get an error
on a new record saying "Invalid use of Null" and I dim TabStop1 as currency
but when I assign 30.00 to it I get 30#
Private Sub TheApplication_Exit(Cancel As Integer)
Dim TabStop1 As Currency
Dim TabStop1Cost As Currency
TabStop1 = 30#
TabStop1Cost = Me.ClerkNo * TabStop1
Me.ApplicationMoney = TabStop1Cost
End Sub