R
raylopez99
What event should I use to check values entered into a new record on a
form? The easiest one for me is "On Click" for a particular textbox,
but it requires user input. For the form itself, from "AfterUpdate",
On Current and "Before Update" are candidate--which one? Or are there
others?
Also I plan to use this structure: (StockSymbol is a field in the
table bound to the form)
If Me.NewRecord Then <--When will this condition trigger?
ElseIf IsNull(Me.StockSymbol) Then
'STUFF TO CHECK HERE
Else
'OTHER STUFF
End If
Thanks!
RL
(BT--you're fired. And you won't get a favorable recommendation from
me for your next job).
form? The easiest one for me is "On Click" for a particular textbox,
but it requires user input. For the form itself, from "AfterUpdate",
On Current and "Before Update" are candidate--which one? Or are there
others?
Also I plan to use this structure: (StockSymbol is a field in the
table bound to the form)
If Me.NewRecord Then <--When will this condition trigger?
ElseIf IsNull(Me.StockSymbol) Then
'STUFF TO CHECK HERE
Else
'OTHER STUFF
End If
Thanks!
RL
(BT--you're fired. And you won't get a favorable recommendation from
me for your next job).