Welcome to the skill header Forums. You can ask questions, get help, or help other members out. Join our Forum for free.

Coding fix for V12 ...
 
Notifications
Clear all

[Solved] Coding fix for V12 invoice item delete

2 Posts
2 Users
2 Reactions
150 Views
FStetson
Posts: 59
Topic starter
(@fstetson)
Trusted Member
Joined: 8 months ago

I am not finding a solution and it is bogging me down. Has anyone even tried to fix?

I tried several to no avail.  Here is my last attempt:

    If IsNull(Me.Parent.InvAmount) Then
        Nz(Me.txtInvoiceTotal, 0)
1 Reply
Posts: 18
 ursh
Admin
(@ursh)
Member
Joined: 1 year ago

Here is the solution as you might have already observed in the V12 file. It should be helpful for others.

If Me.Form.Recordset.RecordCount <> 0 Then
        Me.Parent!InvAmount = Nz(Me.txtInvoiceTotal, 0)
    Else
        Me.Parent!InvAmount = 0
    End If
Reply
Share: