cell change event
There is no cell change event that i'm aware of. Based on your question I'm going to assume a couple of things. First, I'll assume you're connected to a backend database - be it, MS Access, SS2K, Oracle or something else. And secondly, I'm going to assume you want to perform some data validation on the contents of the cell. If this is the case then the best place to perform data validation is at the database level. Therefore, create a constraint/trigger on the field in question to check for your business rules. If the rules are not met, raise an event w/in the trigger to issue an error. Through your dataadapter in your program you can trap the error in the update/insert method and deal with it there.
Good luck.
Ed.