...and how would I do that? ...I'm just learning.
Maybe I'm approaching the problem wrong to begin with.
What I'm trying to do is to allow a manager to assign Applicants to JobTitles.
I have a table for JobTitles and another table for the Applicants. Each JobTitle can have more than one Applicant. There is PK_JobTitleID in tblJobTitles and FK_JobTitleID in tblApplicants.
It should be a simple matter, but I started out with the two DataGridViews and have not gotten anywhere.
Main Topics
Browse All Topics





by: SanclerPosted on 2007-04-09 at 15:47:03ID: 18879187
Although (I assume) your ExecuteNonQuery with dbo.spUpdate_JobTitles_Pos itionsAvai lable will be updating the database table, that update will have no automatic effect on the appplication's local datatable which is the ultimate datasource (via JobTitlesBindingSource) for your JobTitlesDataGridView. That datatable was (again, I assume) filled by some sort of .Fill command from a tableadapter or dataadapter originally and it will remain like that unless and until you make changes to it in the application or you use the original .Fill command on it again.
Roger