Link to home
Start Free TrialLog in
Avatar of aaxen
aaxen

asked on

generate drop down list using array

hi experts,

lets say i wanna give grades for students, i need to generate a row of dropdown lists probably a,b,c,d, in each list. how do i do that? assume that student numbers of students are not fixed...

i was thinking alogrithm might be:
1) load names from data
2) place names into array
3) generate drop down lists on each name on each array

but how am i gonna generate the lists... with ,a,b,c,d in it?
 
Avatar of Yiogi
Yiogi

All you need is a combo box and specify the items collection adding there abcd. no need for any arrays.
Avatar of aaxen

ASKER

no i mean i need a number of students..... with a number of lists in each row of individual student.... the number of student isnt fixed....
Can you be a bit more specific on what exactly you want to do? It's still kind of vague to me. This is what I understand. You want to view some sort of a grid with a master detail relation. The individual students being the master records and the courses with their respective grades being the detail ones?

Or do you want to be able to select a student and then assign grades to him to the various courses he is taking?
Avatar of aaxen

ASKER

i want the program to generates a table with dropdown list in each cell. the table should be name/subject table. and each dropdown list has a,b,c,d.
ASKER CERTIFIED SOLUTION
Avatar of Yiogi
Yiogi

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial