c# - How to save automatically for the user changes -
how save automatically validation part in windows form,
for example in windows form page have tab control name called validation if user make changes
i.e., checking check box , changing color box changes should save automatically without clicking on save button?
auto save complex operation. because interrupts user activity while auto saving. 1 simple method implementing auto save
create 1 timer , boolean flag variables .
start timer when application started.
set flag if changes done user activity.
call auto save function according timer interval. if flag set complete application changes saved , reset flag.
Comments
Post a Comment