Can anyone offer any practical steps in updating and deleting records in a binary file? I'm writing a simple app (console application) that updates, deletes, and inserts records in a binary inventory file. All of the records are entered as structs.
My main conundrum is what the series of events is in each of the functions.
update: How can I allow the user to pull up the requested file and be able to edit it while in the window, meaning jump from field to field and then save it?
delete: Deletes are accomplished with a logical delete, i.e. a delete flag.
Thanks for any insight.
My main conundrum is what the series of events is in each of the functions.
update: How can I allow the user to pull up the requested file and be able to edit it while in the window, meaning jump from field to field and then save it?
delete: Deletes are accomplished with a logical delete, i.e. a delete flag.
Thanks for any insight.