Delete a record using macros.

S

SA

Hi,

I would like to delete a record based on a user entered string. Here are the
details. I have a txtFind textbox. A string is entered by the user. Based on
that string value it displays that one record in the fields in the
frmDeleteComponent form. There is also a lstDelete listBox which displays all
the record. But for some reason it does not delete that particular record as
requested by the user. I have written the sequence I am following and I am
hoping that someon is able to answer my question. I need help.

Thanks,
SA
'================================
My code in frmDeleteComponent:
'================================
Private Sub cmdDelete_Click()
On Error GoTo Err_cmdDelete_Click

Dim stDocName As String

Dim Msg, Style, Title, response
Msg = "Do you wish to Delete This Component?"
Style = vbYesNo + vbExclamation
Title = "Delete Component Confiramtion"
response = MsgBox(Msg, Style, Title)

If response = vbYes Then
stDocName = "macroDelete"
DoCmd.RunMacro stDocName
End If

Exit_cmdDelete_Click:
Exit Sub

Err_cmdDelete_Click:
MsgBox Err.Description
Resume Exit_cmdDelete_Click

End Sub

'**************************************

Private Sub cmdFind_Click()
On Error GoTo Err_cmdFind_Click

DoCmd.GoToControl txtPartNumber.Name
DoCmd.FindRecord Me.txtFind.Value, acEntire, False, acSearchAll, True,
acCurrent, True

Exit_cmdFind_Click:
Exit Sub

Err_cmdFind_Click:
MsgBox Err.Description
Resume Exit_cmdFind_Click

End Sub


'====================================
Details of macroDelete:

1 SetWarnings
2 OpenQuery
3 RunMacro
4 Close
5 OpenForm

1 SetWarning: is set to No
2 OpenQuery: calls queryDelete ; View: datasheet; dataMode: Edit
Here's the sql statement:
DELETE tblParts.*, "PartNumber" AS Expr1
FROM tblParts
WHERE ((("PartNumber")="txtFind"));


3 runMacro: runs another macro called MacroDeleteDisplay with repeatCount
set to
Action: GoToControl: lstDelete
RunCommand: Refresh
4 Close: Actually closes the frmDeleteComponent (I have included the code
from that form above)
5 OpenForm: frmDeleteComponent; View:Form; Window Mode: Dialog
 
D

Dennis

Silly me perhaps, but why don't you just code the DELETE in VBA? I mean, you
already have code there to do other things; why would you call a MACRO for
the delete?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top