WarriorMCB
Registered User.
- Local time
- Today, 15:53
- Joined
- Jul 20, 2004
- Messages
- 27
Hello,
I currently creating a DB to sum fields and place them in a db field. Which is working kinda fine until..
Private Sub VIP_Pcs_AfterUpdate()
Me.Total_Pcs.Value = Me.PcsTot
Me.Tax_Amt.Value = Me.TaxSum
Me.Bling_Total.Value = Me.BlgTot
Me.Refresh
End Sub
I have 3 other afterupdate fields which do the same thing after an enter is made. However, it doesn't always update in those fields unless I re-enter a vaue in a field that does work. I'd like it to update/refresh or whatever it needs to do in order for the given field to update (add/take) the sum after each entry. I hoped this is clear.
Thank you
I currently creating a DB to sum fields and place them in a db field. Which is working kinda fine until..
Private Sub VIP_Pcs_AfterUpdate()
Me.Total_Pcs.Value = Me.PcsTot
Me.Tax_Amt.Value = Me.TaxSum
Me.Bling_Total.Value = Me.BlgTot
Me.Refresh
End Sub
I have 3 other afterupdate fields which do the same thing after an enter is made. However, it doesn't always update in those fields unless I re-enter a vaue in a field that does work. I'd like it to update/refresh or whatever it needs to do in order for the given field to update (add/take) the sum after each entry. I hoped this is clear.
Thank you