[RESOLVED] Writing to a "Sequential Access File" & Printing a Report
Can someone please take a look at my code and get me back on track here is what I'm trying to accomplish.
I want an application that will allow the user to enter the inventory number, quantity, and price of each item in inventory. The application should allow the user to record this information in a sequential access file named la3.dat
In addition, the application should allow the user to print a report showing the inventory number, quantity, and price of each inventory item, as well as the average price.
I want an application that will allow the user to enter the inventory number, quantity, and price of each item in inventory.
You could use a list or a Msflexgrid to show the Items to the user.
Then he can add, modify or delete items.
For that you could simply use 4 textboxes, and 3 buttons(add, modify, delete)
The application should allow the user to record this information in a sequential access file named la3.dat
Having your list or flexgrid with the items, the user could select "SAVE" and the entire thing will be saved to file.
In addition, the application should allow the user to print a report showing the inventory number, quantity, and price of each inventory item, as well as the average price.
A Print button then. (or Menu, if you like) that would print the whole list,
you should add at the end: