chrisjames25
Registered User.
- Local time
- Today, 03:00
- Joined
- Dec 1, 2014
- Messages
- 404
Hi
I have an invoice form with a subform. When i press a cmd on the main form it runs the following code to cancel the new cancel and delete any entries that that been made to the recordset set contained in the subform.
This works but was worried about this getting slow if i am forever having to loop through all invoices details from every invoice ever entered until find the invoice in question.
SO my idea was to have a qry that is based on the current invoice_ID and then delete the data from the qry. So i set the qry up and changed the following bit of code to reflect the qry:
My problem is it doesnt seem to work. I set the recordset and then it jumps back up to the me.undo part of code.
Any ideas why. Cheers
I have an invoice form with a subform. When i press a cmd on the main form it runs the following code to cancel the new cancel and delete any entries that that been made to the recordset set contained in the subform.
Code:
Private Sub Cmd_Close_Click()
'On Error GoTo cmd_close_Click_Err
On Error Resume Next
If (Not Form.NewRecord) Then
DeleteSubInvoice
DoCmd.RunCommand acCmdDeleteRecord
' ResetData
Me.Frm_ChildInvoiceForm.Requery
End If
If (Form.NewRecord And Not Form.Dirty) Then
Beep
End If
If (Form.NewRecord And Form.Dirty) Then
DeleteSubInvoice
Me.Undo
' ResetData
Me.Frm_ChildInvoiceForm.Requery
End If
ResetData
Me.Cbo_Customer.SetFocus
End Sub
Private Sub DeleteSubInvoice()
Dim db As Database
Dim rs As Recordset
Set db = CurrentDb
Set rs = db.OpenRecordset("Tbl_InvoiceDetails", dbOpenDynaset, dbSeeChanges)
rs.MoveFirst
Do Until rs.EOF
If rs!Invoice_ID = Me.Txt_Invoice_ID Then
rs.Delete
End If
rs.MoveNext
Loop
rs.MoveFirst
End Sub
This works but was worried about this getting slow if i am forever having to loop through all invoices details from every invoice ever entered until find the invoice in question.
SO my idea was to have a qry that is based on the current invoice_ID and then delete the data from the qry. So i set the qry up and changed the following bit of code to reflect the qry:
Code:
Private Sub Cmd_Close_Click()
'On Error GoTo cmd_close_Click_Err
On Error Resume Next
If (Not Form.NewRecord) Then
DeleteSubInvoice
DoCmd.RunCommand acCmdDeleteRecord
' ResetData
Me.Frm_ChildInvoiceForm.Requery
End If
If (Form.NewRecord And Not Form.Dirty) Then
Beep
End If
If (Form.NewRecord And Form.Dirty) Then
DeleteSubInvoice
Me.Undo
' ResetData
Me.Frm_ChildInvoiceForm.Requery
End If
ResetData
Me.Cbo_Customer.SetFocus
End Sub
Private Sub DeleteSubInvoice()
Dim db As Database
Dim rs As Recordset
Set db = CurrentDb
Set rs = db.OpenRecordset("Qry_InvoiceDetails", dbOpenDynaset, dbSeeChanges)
rs.MoveFirst
Do Until rs.EOF
If rs!Invoice_ID = Me.Txt_Invoice_ID Then
rs.Delete
End If
rs.MoveNext
Loop
rs.MoveFirst
End Sub
My problem is it doesnt seem to work. I set the recordset and then it jumps back up to the me.undo part of code.
Any ideas why. Cheers