G
Goobz
Hey all...
First off, thanx for the help that you all tend to give from this
forum. I have captured a lot of good stuff, and for the 1st time, am
posting asking myself for your help... Here's what I have going on...
I have a form that has approx. 13 field in it. Fields 1-12 are user
inputable via Combo Boxes, or straight typing. Box 13 is locked, and I
would like to have it update when someone changes ***ANY*** of the
other 12 boxes. I **DO NOT** want to track simple record pull-ups...
I cleaned up the Events page, and here is the latest... The only thing
that is an [Event Procedure] is the current "search" button I have
embedded on the page... Please let me know what I need to change to
include the record save.
-------------------------------
Option Compare Database
Private Sub Search_Button_Click()
On Error GoTo Err_Search_Button_Click
Screen.PreviousControl.SetFocus
DoCmd.DoMenuItem acFormBar, acEditMenu, 10, , acMenuVer70
Exit_Search_Button_Click:
Exit Sub
Err_Search_Button_Click:
MsgBox Err.Description
Resume Exit_Search_Button_Click
End Sub
-------------------------------------------
First off, thanx for the help that you all tend to give from this
forum. I have captured a lot of good stuff, and for the 1st time, am
posting asking myself for your help... Here's what I have going on...
I have a form that has approx. 13 field in it. Fields 1-12 are user
inputable via Combo Boxes, or straight typing. Box 13 is locked, and I
would like to have it update when someone changes ***ANY*** of the
other 12 boxes. I **DO NOT** want to track simple record pull-ups...
I cleaned up the Events page, and here is the latest... The only thing
that is an [Event Procedure] is the current "search" button I have
embedded on the page... Please let me know what I need to change to
include the record save.
-------------------------------
Option Compare Database
Private Sub Search_Button_Click()
On Error GoTo Err_Search_Button_Click
Screen.PreviousControl.SetFocus
DoCmd.DoMenuItem acFormBar, acEditMenu, 10, , acMenuVer70
Exit_Search_Button_Click:
Exit Sub
Err_Search_Button_Click:
MsgBox Err.Description
Resume Exit_Search_Button_Click
End Sub
-------------------------------------------