accumold
Posts: 9
|
| Posted: 02/08/2006, 9:56 AM |
|
I hope this is one of those Duh issues that I am just missing.
I have some custom code that runs on a form "After Insert" which works great. I just ran into the issue that if someone hits cancel it also runs. Am I using the wrong event? I thought cancel would no "insert" anything. I have two forms that are the same way. Thoughts?
_________________
Aaron |
 |
 |
mhope
Posts: 37
|
| Posted: 02/08/2006, 1:47 PM |
|
Maybe something like:
If Your_Grid.IsFormSubmitted Then
'your custom code here
Else
'more custome code
End If
|
 |
 |
|