johnhodgson
Programmer
I need to find a way to review and authorise changes to data. New data is submitted by a large group of users, and the database controller needs to see what changes have been made and authorise them. The only, somewhat inelegant, solution I can think of is to have two tables 'original' and 'newupdates', users have access to 'newupdates' and make changes there. When the changes are submitted I take each field in turn, write each 'original' and 'newupdate' value to an 'original' text file and a 'newupdate' text file, create a Word object, open the 'original' text file in Word, do a document compare with the 'newupdate' text file in the Word object, save the 'compared' document as an RTF file, load the RTF file into a Rich Text box, where the database controller can see and edit the changes and then save the authorised text back to the both databases. This seems a very cumbersome way of acheiving the result. Can anyone suggest a more straightforward method of doing this?