Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

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
66 Views
FStetson
Posts: 50
Topic starter
(@fstetson)
Trusted Member
Joined: 3 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: 17
 ursh
Admin
(@ursh)
Member
Joined: 9 months 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: