Insert vs Undo
-
When we use Insert method of a text box for insert text, why can't we use Undo method of same text box. When using Insert method, is there any other way to use Undo method.
You still struggling with this one? When you say
insert method
presumably you are executing a method to insert the data into the database. If you want to undo that insert it is called a delete. The data has been written to the database, unless you write code in the undo event to delete the record then how do you expect to achieve this. Never having used the undo method I am guessing here but I would assume the undo method implements a short term cache in the local memory with the ability to step through a list of changes, restoring each subsequent change to the text property of the control. Nothing to do with insert!Never underestimate the power of human stupidity RAH