-
I am creating a one form application which will have multiple orders for a product. The form will be as follows:
College Code
Subject Name Subject Number
Student Number Student Result
Student Number Student Result
Student Number Student Result
Student Number Student Result
Student Number Student Result
Insert(button)
As you can see from the above it looks very simple or it might mbe for professionals like yourselves but it's not easy for a begginer like me.
For each subject there could be thousand students so I have enter their Student Number and Student Result 1000 times and finally I will insert all this data into a file.
Please help me with this that what component should I use or do I have to get any new addon I am using VB6 enterprise edition.
Thanks
Saqi
-
One of the Grid controls sounds to me like what you should use. There are a couple that comes with VB6. MSFlexGrid, DataGrid or even the ListView control could fit.
-
thank u
Joacim
Thanks a lot man for your help.
Tahir
-
I would use a DataBase to store the information ..
Even Access will do the trick, if you don't have access/sql server, then you can use a text file as your DataBase, but this might be tricky, you can make 2 text files, one to store a student number and a second to store the dtudent result.
if it helps, but if you are not sure about something, just ask :-)
-
If you want the data to be edited, then use the DBGrid, otherwise use the MSFlexGrid.