Trent L. Taylor (04/28/2008)
MyBo.CurrentRow.Item("MyFieldname") = MyBo.CurrentRow.Item("MyFieldName",DataRowVersion.Original)
Hi trent, using the DataRowVersion.Original give me what I wanted, also I found that the TextBoxBase control has an Undo() method which will also provide this need.
Even though you have not have this need, in VFP I have make a lot of use of the functions CURVAL() & OLVAL() for this type of scenarios and I think it would be a good idea to have a more direct access to the DataRowVersion.Original and maybe it could be an enhancement to add a property to the BO which will return this value for easy use by the developer. Again, this is just a though
Thanks for the recommendations!