Hi guys

I have previously asked a questions regarding DataGridView control: http://www.vbforums.com/showthread.php?t=661859

Now I'm trying to make the first column to include an autosuggestion. ie. when a user types an ID(say, "12") then all the records that starts with it(ie. "12*") will be displayed as suggestion.

And upon clicking an ID, the corresponding product_name will be displayed on the next column. I think, I could do this using Validating() event of DataGridView.

But how would I add the autosuggestion for the first column ?

Thanks