I Have a database where multipal users are connected. I have code that once a year updates a database between a given date range, it them sets a value to .T., after that date range I set it to .F., my updates to not show till the user leaves the database, my code it below.
How do I make it so the first user in doesnt have to exit the app to set the values
IF VDate_Test = .F. AND config_info.ap_update_complete = .T.
REPLACE config_info.ap_update_complete WITH .F.
ENDIF
How do I make it so the first user in doesnt have to exit the app to set the values
IF VDate_Test = .F. AND config_info.ap_update_complete = .T.
REPLACE config_info.ap_update_complete WITH .F.
ENDIF