5
Answers

design help

hi everyone i am new to c# i just want some advice no code i want to do the code myself. i want to design a simple program that  displays stock that i have and if i book something out it must automaticly subtract it from the stock and display the selected stock on a page that i can print  and i must aLSO BE ABLE TO print the stock that is still left . i must also be able to add new stock items and qty's . Can someone please tell me whati need and how to do it any help will be appreciated

Answers (5)
0
Sam Hobbs

Sam Hobbs

NA 28.7k 1.3m 14y

As the others suggest one of the first things to do is to define your database. You need to define what tables you need and what fields you need in each table. It is not easy to explain how to decide what tables you need; it would help if you buy a book or some books that explain all that. A good beginner book that includes databases would help.
 
Something you can do without a book is to look at the articles in this site about database programming. I suggest reading my article Database Table Update in a DataGridView without Writing Code.
0
Mc Derek

Mc Derek

NA 2 0 14y
Hi

I think you have concentrate on designing part first as what items you want to display like Stock. Stockbooked,Stock Left and Quantity on the webpage. Then design the database based on the objects available .It's a good programming to display required objects only on the  screen what you need from the database.

[SPAM REMOVED]
0
PJ Martins

PJ Martins

NA 3.8k 27.2k 14y

I'd suggest using SQL if you want to store your database on a server, SQL Compact Edition or SQLite if you're only interested in storing the database on the local drive that the app will be running on.
 
Please remember to mark as answer if you found this helpful.
0
DIVAN DU PIESANIE

DIVAN DU PIESANIE

NA 16 0 14y

Hi tanks for your help
 yes i think i want to store it in an data base or in a file of some sorts but i think a data base should be the right thing to do
0
PJ Martins

PJ Martins

NA 3.8k 27.2k 14y
Are you wanting to store this information in a database?