Question Inventory Application Problem

witecloner

Well-known member
Joined
Feb 12, 2009
Messages
45
Programming Experience
Beginner
Greetings all, I'm making an Inventory Application. I have some questions need to ask. Here above is my simple case.
1. In the inventory program I have a form that serves to fill the data item.
2. Field of data item are item code, item name, and item description.
3. Form can be used to add to the data, change data, delete data, and display data.

Here is my question:
Do I need to use a class to manage the data item?
Can all told me that the good class structure for the inventory application?
Thanks

Here above the source...Where i have added some class at this project. But i think my class is wrong way. Please tell me the correct way.

Download
 
You shouldn't need a class, I have a similar program, using a dataGridView(DGV) to display my table, you can have textboxes that are bound to the fields and as you go select rows in the DGV they will change with field items that are in the table, then say you edit something in a textbox - have an UPDATE button that updates the database the refresh the dataset the changes will show up in the DGV, same thing for the ADD button. You don't have to use a DGV, but they work realy well.
 

Latest posts

Back
Top