views:

14

answers:

1

alt text

CourseID, ProfessorId and StudentID are foreign keys, i want to print CourseName, ProfessorName, StudentName instead of ID's.

I'm using the wizard (typed dataset).

Note: the three id's are of composite pk as well fk, so no duplicate records will appear.

What can i do?

A: 

Just make another table where each id = his name. from there you can invoke all the matching names. Not sure if this is what you are looking for but I hope it helps.

Olee Dee
I had to choose DataGridViewComboCell ...
Beginner_Pal