Why not just use this:
Private Sub cmb_Delete_Profile_Click()
Dim strMsg As String
strMsg = "You are about to delete this Initiative would you like to continue?"
If MsgBox(strMsg, vbYesNo, "Are you sure?")= vbYes Then
Me.Refresh
DoCmd.OpenQuery "QRY_REF_INTEGRITY_BUDGET"
DoCmd.OpenQuery "QRY_REF_INTEGRITY_ATTRIBUTES"
DoCmd.OpenQuery "QRY_REF_INTEGRITY_INITIATIVE_CHANGE"
DoCmd.OpenQuery "QRY_DELETE_INIT_BUDGET"
DoCmd.DoMenuItem acFormBar, acEditMenu, 8, , acMenuVer70
DoCmd.DoMenuItem acFormBar, acEditMenu, 6, , acMenuVer70
End If ' if not already in the code.
mx