I have a movie manager database ( use a datagridview to display a user's database) and I need an event handler for when a row is added, but AFTER its first column is entered (which is the Film Name, which I need to call some other methods).
I've tried RowsAdded, but it occurs when I first start typing in a new, blank row before column 1 is added (which is film name and I need the film name). I've also tried making a double event handler sub (RowsAdded + CellLeave), but they do not share the same parameters so I think this is why they did not work, tho I've never used to handlers before so I could've done it wrong.
Does anybody know an event that will fit my scenario, so its raised when a new row is added but after its first column is entered? Here's a pic of my program in case you want a visual: Film Manager
Thanks for your help in advance.
I've tried RowsAdded, but it occurs when I first start typing in a new, blank row before column 1 is added (which is film name and I need the film name). I've also tried making a double event handler sub (RowsAdded + CellLeave), but they do not share the same parameters so I think this is why they did not work, tho I've never used to handlers before so I could've done it wrong.
Does anybody know an event that will fit my scenario, so its raised when a new row is added but after its first column is entered? Here's a pic of my program in case you want a visual: Film Manager
Thanks for your help in advance.