So I see that you can do many things with ADOs.One of the features is the 'BeforePost' where I can validate things before I move onto the next record. There is also the onColExit feature, where I can validate things before I move onto the next column. But there is NO onCellExit feature!
This would be nice, because then it would validate the current cell each time, before moving on. In my current program, I have to either click out of the current record or column for it to work. I guess I can put my code into both the colexit and beforepost, but then I would be duplicating my code, kinda inefficient.
Just asking, :P
Thanks
Just a question
Started by 2710, Mar 24 2010 10:53 AM
1 reply to this topic
#1
Posted 24 March 2010 - 10:53 AM
|
|
|
#2
Posted 19 April 2010 - 04:08 AM
myform.mytable1colexit(...); begin myvalidate end;
myform.mytable1beforepost(...); begin myvalidate end;
procedure myform.myvalidate; begin {validation here, only once} end;
Just copy-paste this into your scrapbook and it'll compile with no modification at all whatsoever.


Sign In
Create Account


Back to top









