Hi everybody,
This is probably going to sound unorthodox, but I have to log records that are deleted...I know, go figure.
Anyway, I have a form with a (continuous) subform, and on the subform I have a command button, called cmdDelete, that launches a dialog form, called frmDeleteCurrentRecord, where the user has to enter their name and a reason.
I have managed, through a ton of trial and tribulation, found a way to delete the current record on the subform from the query, qryEpisodeDetail, using SQL. I had to pass parameters to the dialog form in order to create the delete query.
The problem I'm having, is that after the delete query runs and I'm returned to the subform, it says "#Deleted" in each of the controls on the subform. I have tried to refresh/requery in what feels like 100 different ways, but I keep getting error messages about how I need to save the current record.
Here's the code for the cmdDelete: -
Private Sub cmdDelete_Click()
-
-
Dim strConfirmDelete As String, strConfirmDeleteTitle As String
-
Dim strCancelDelete As String, strCancelDeleteTitle As String
-
Dim strNullDelete As String, strNullDeleteTitle As String
-
Dim varParameter
-
Dim varWhere As String
-
-
'Parameters to be passed 0-8
-
Dim strEpisodeDetailID, strPatientDetailIDFK, strFormIDFK, strDeficiencyIDFK
-
Dim strProgressNoteIDFK, strDeficiencyDate, strQuantity, strEmployeeIDFK
-
Dim strCorrectedDate
-
-
strConfirmDelete = "Are you sure you want to delete this record?" + Chr(13) + Chr(13) + "You will be required to log the deletion."
-
strConfirmDeleteTitle = "Confirm Delete"
-
strCancelDelete = "The delete operation has been cancelled."
-
strCancelDeleteTitle = "Delete Cancelled"
-
strNullDelete = "The record you are trying to delete does not exist."
-
strNullDeleteTitle = "Delete Failed: No Record"
-
-
varWhere = "[EpisodeDetailID] = " & Me.EpisodeDetailID
-
-
strEpisodeDetailID = Me.EpisodeDetailID
-
strPatientDetailIDFK = Me.PatientDetailIDFK
-
strFormIDFK = Me.FormIDFK
-
strDeficiencyIDFK = Me.DeficiencyIDFK
-
strProgressNoteIDFK = Me.ProgressNoteIDFK
-
strDeficiencyDate = Me.DeficiencyDate
-
strQuantity = Me.Quantity
-
strEmployeeIDFK = Me.EmployeeIDFK
-
strCorrectedDate = Me.CorrectedDate
-
-
varParameter = strEpisodeDetailID & ";" & strPatientDetailIDFK & ";" & strFormIDFK
-
varParameter = varParameter & ";" & strDeficiencyIDFK & ";" & strProgressNoteIDFK
-
varParameter = varParameter & ";" & strDeficiencyDate & ";" & strQuantity
-
varParameter = varParameter & ";" & strEmployeeIDFK & ";" & strCorrectedDate
-
-
If vbYes = MsgBox(strConfirmDelete, vbExclamation + vbYesNo, strConfirmDeleteTitle) Then
-
Forms!frmDeficiency.Visible = False
-
If IsNull(DLookup("EpisodeDetailID", "qryEpisodeDetail", strWhere)) Then
-
MsgBox strNullDelete, vbInformation + vbOKOnly, strNullDeleteTitle
-
Me.FormIDFK.SetFocus
-
Exit Sub
-
Else
-
DoCmd.OpenForm "frmDeleteCurrentRecord", DataMode:=acFormAdd, _
-
WindowMode:=acDialog, openArgs:=varParameter
-
End If
-
Else
-
MsgBox strCancelDelete, vbInformation + vbOKOnly, strCancelDeleteTitle
-
Me.FormIDFK.SetFocus
-
Exit Sub
-
End If
-
-
End Sub
-
And here's the code for the cmdSubmit on the frmDeleteCurrentRecord: -
Private Sub cmdSubmit_Click()
-
-
Dim varEpisodeDetailID As String, varPatientDetailIDFK As String, _
-
varFormIDFK As String, varDeficiencyIDFK As String, _
-
varProgressNoteIDFK As String, varDeficiencyDate As String, _
-
varQuantity As String, varEmployeeIDFK As String, _
-
varCorrectedDate As String, varAuditorFName As String, _
-
varAuditorLName As String, varReason As String, varDateDeleted As String
-
Dim nullErrorTitle As String, nullErrorMessage As String
-
Dim strConfirmDelete As String, strConfirmDeleteTitle As String
-
Dim strCancelDelete As String, strCancelDeleteTitle As String
-
Dim ctl As Control
-
Dim strDeleteRecordSQL As String, strLogDeletionSQL As String
-
Dim strDeleteReasonSQL As String
-
-
'Title for fields with null values
-
'------------------------------------
-
nullErrorTitle = ": Null Value"
-
-
'String for null values
-
'------------------------
-
nullErrorMessage = " cannot be blank. Please enter a value in this field."
-
-
'Test for null values
-
'-----------------------
-
For Each ctl In Me.Controls
-
If IsNull(ctl) And Not IsNothing(ctl.Tag) Then
-
ctlName = ctl.Tag
-
MsgBox ctlName + nullErrorMessage, vbExclamation, ctlName + nullErrorTitle
-
ctl.SetFocus
-
Exit Sub
-
End If
-
Next ctl ' End of null value test
-
-
varAuditorFName = Me.AuditorFirstName
-
varAuditorLName = Me.AuditorLastName
-
varReason = Me.ReasonDeleted
-
varDateDeleted = Me.DateDeleted
-
varEpisodeDetailID = Me.EpisodeDetailIDFK
-
varPatientDetailIDFK = Me.PatientDetailIDFK
-
varFormIDFK = Me.FormIDFK
-
varDeficiencyIDFK = Me.DeficiencyIDFK
-
varProgressNoteIDFK = Me.ProgressNoteIDFK
-
varDeficiencyDate = Me.DeficiencyDate
-
varQuantity = Me.Quantity
-
varEmployeeIDFK = Me.EmployeeIDFK
-
varCorrectedDate = Me.CorrectedDate
-
-
strLogDeletionSQL = "INSERT INTO qryDeletedRecordsLog ( PatientDetailIDFK, EpisodeDetailID, FormIDFK, ProgressNoteIDFK, DeficiencyIDFK, DeficiencyDate, Quantity, EmployeeIDFK, CorrectedDate ) " & _
-
"SELECT qryEpisodeDetail.PatientDetailIDFK, qryEpisodeDetail.EpisodeDetailID, qryEpisodeDetail.FormIDFK, qryEpisodeDetail.ProgressNoteIDFK, qryEpisodeDetail.DeficiencyIDFK, qryEpisodeDetail.DeficiencyDate, qryEpisodeDetail.Quantity, qryEpisodeDetail.EmployeeIDFK, qryEpisodeDetail.CorrectedDate " & _
-
"FROM qryEpisodeDetail " & _
-
"WHERE (((qryEpisodeDetail.EpisodeDetailID)= " & varEpisodeDetailID & "));"
-
-
strDeleteReasonSQL = "UPDATE qryDeletedRecordsLog " & _
-
"SET AuditorFirstName ='" & varAuditorFName & "', " & _
-
"AuditorLastName ='" & varAuditorLName & "', " & _
-
"ReasonDeleted = '" & varReason & "', " & _
-
"DateDeleted = #" & varDateDeleted & "# " & _
-
"WHERE (((qryDeletedRecordsLog.EpisodeDetailID)= " & varEpisodeDetailID & "));"
-
-
strConfirmDelete = "Are you sure you want to delete this record?" + Chr(13) + Chr(13) + "Warning: The action cannot be undone."
-
strConfirmDeleteTitle = "Confirm Delete"
-
strCancelDelete = "The delete operation has been cancelled."
-
strCancelDeleteTitle = "Delete Cancelled"
-
-
strDeleteRecordSQL = "DELETE * FROM tblEpisodeDetail " & _
-
"WHERE tblEpisodeDetail.EpisodeDetailID = " & varEpisodeDetailID & ";"
-
-
If vbYes = MsgBox(strConfirmDelete, vbExclamation + vbYesNo, strConfirmDeleteTitle) Then
-
DoCmd.RunSQL strLogDeletionSQL
-
DoCmd.RunSQL strDeleteReasonSQL
-
DoCmd.RunSQL strDeleteRecordSQL
-
CloseMe
-
'THIS IS WHERE IT WON'T UPDATE - Sorry for the all caps, just an attention-getter.
-
Forms![frmDeficiency]![fSubEpisodeDetail].Refresh
-
Forms!frmDeficiency.Visible = True
-
Else
-
Exit Sub
-
End If
-
-
End Sub
-
My intention is to have the delete command function just like the delete command on the toolbar, except for the fact that I need to go to another form real quick, have the user jot down some info, and then return to the updated subform.
It's late, so if this is unclear, please forgive me. I'll be happy to clarify if anything doesn't make sense.
10 7005
You are opening the frmDeleteCurrentRecord form in Dialog mode so the code in the 1st form has stopped. Simply do Me.Requery in the line after the OpenForm. Refresh will not get rid of *deleted* records. It takes a Requery.
Hi Rural,
I want to make sure I understand, so forgive me if I'm just re-stating what you said. (I'm one of those weirdos that has to repeat things to make sure I can envision what I'm being told)
So I need to put Me.Requery on the subform, right after I open the frmDeleteCurrentRecord?
And if I do this, when I choose my submit command on the dialog that effectively deletes the record, I'll be returned to the requeried subform?
You are correct. There is no reason to attempt to Requery the 1st form from the other form. The code will return *only* after you close the 2nd form or make it invisible.
Thanks Rural.
After I made the main form visible again, I had to set the focus to a different location in order to get the requery to work.
I ended up just setting the focus to the tab control that the subform is on and it accepted the event.
Again, thanks for your help. I worked on this issue for at least 2 hours last night...I didn't realize exactly where control went when I opened the dialog.
Cheers!
Excellent! Glad you got it sorted.
I have an unusual design that Microsoft Access 2003/2007 won't cooperate with... I have forced cooperation on everything except one issue - record deletion.
My form design involves a recursively nested form. In other words, the form, m_settings_menueditor has a subform, m_settings_menueditor. It contains code invoked on the Form_Open event that modifies the form's recordset (so that the root form only displays root nodes in the tree, and nested forms only display the child nodes of their parent.) The forms are displayed as data-sheets. This implements a tree structure, fully editable as a Microsoft Access datasheet, with open/close tree branch buttons in the form of open/close subdatasheet. In the table, "ui_modes_lkp", the menu elements (and submenu elements, and subsubmenu elements etc.) are specified. Root nodes are indicated with Null entries in the parent_mode
With or without database relationships (enforcing referential integrity), the standard MS Access DELETE events just don't seem to work... When I delete a record from the root form, it works fine... But when I delete records from child subforms, they appear to have been deleted (they disappear from the form) but I see a funny symbol in the record selector of the parent forms, all the way back to the root node... It's like a "no entry" road-sign but in black instead of red. When I close the forms completely and reopen them, I see that the deleted record is back there again. I have tried to trace the problem and it seems like some of my other events may be messing with the normal operation of Access's record deletion routines, AFTER the FORM_DELETE event and BEFORE the BEFORE_DELETE_CONFIRM event...
So to work around this problem, I thought I'd manually implement the DELETE function when the FORM_DELETE event is invoked, and cancel the event using
DoCmd.CancelEvent
This leaves a row in the subdatasheet with "Deleted" in place of all the fields. I have attempted to shift the focus away and run DoCmd.Requery, and various VBA based Requery methods (all from within the relevant subform), but it just won't get rid of the "Deleted" record... The VBA-based methods just give error messages saying "The record has been deleted."
This technique currently looks messy but at least it actually deletes the record...
I know my design is a little weird in some respects but I'd be VERY grateful for anyone who can help me with this.
You will get better response if you start a new thread rather than tagging on to an existing one.
OK - I'm going out now... I'll do that later.
Not sure if you guys got this resolved, but here's the solution: - Me.RecordSource = Me.RecordSource
-
Me.Requery
Sign in to post your reply or Sign up for a free account.
Similar topics
by: Steve |
last post by:
I have several pairs of synchronized subforms in an application. I have a Delete
button for each pair that uses the following code or similar to delete a record
in the second subform:
...
|
by: Uwe Range |
last post by:
Hi to all,
I am displaying a list of records in a subform which is embedded in a
popup main form (in order to ensure that users close the form when
leaving it).
It seems to be impossible to...
|
by: Maria |
last post by:
Is there another way to delete the current record in a subform from the main
form, another subform or a sub-subform other than setting focus on a field
in the subform and using run command...
|
by: David Altemir |
last post by:
I have a button on "Form A" in the right margin of every record in my
recordset. When you click on a button, a dialog box ("Form B") pops
up that gives more details about that particular record.
...
|
by: MartinR |
last post by:
I would like to know the code that i should use to delete a record
without the message box saying "You are about to delete a record, are
you sure..." poping up.
At the moment i am using the...
|
by: Steven |
last post by:
Hi,
Would need some thought about using a button of the existing form to search
record before deleting it.
Any quick help is very appreciated.
Steve
|
by: Phil Stanton |
last post by:
Deleting a record on a membership form. Does some VB checks to see if the
family are still in the list. Warns me there is no going back if I delete
the record, so I say OK and it appears to delete...
|
by: Constantine AI |
last post by:
Hi i am trying to DELETE a Record if the details do not exist within a table. Here is my code below;
Dim strSQL As String
Dim strSQL2 As String
Dim Reply As String
Dim db As...
|
by: matthewslyman |
last post by:
I have an unusual design and some very unusual issues with my code... I have forced Access to cooperate on everything except one issue - record deletion.
My form design involves a recursively...
|
by: linyimin |
last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
|
by: kcodez |
last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 6 Sept 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: DJRhino1175 |
last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this -
If...
|
by: Rina0 |
last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
|
by: DJRhino |
last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer)
If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _
310030356 Or 310030359 Or 310030362 Or...
|
by: lllomh |
last post by:
How does React native implement an English player?
|
by: Mushico |
last post by:
How to calculate date of retirement from date of birth
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
| |