Here is the situation:
VB 6 app, ORACLE database, and I have an update Form. On the Form I have combo boxes, text boxes, option buttons, tab, grid, etc.
User wants to be notified when he/she makes any changes and wants to move to another record / move away from the Form - with a note “Do you want to save your changes?” if he/she did not hit the Update button.
Sounds simple, have a switch in all change events for text boxes, click of combo boxes, etc. but those events fire when I populate them from my database as well. And I don’t want to have another blnSkip As Boolean for every event just to set it when data is coming from DB and re-set it when I am ready for user input.
How do you do it in your application?
Have fun.
---- Andy