I have a datagrid on a C# WinForm displaying a dataset. One of the columns in the datagrid needs to show a mid-size thumbnail image at Column 1, the other columns will show more attendant data, vis-a-vis the image.

PLUS, I'll loop iteratively (every 10 secs) thru the dataset and be able to fire an event handler, accessing the current item object, if one of the thumbnails is clicked. Sorta like:

private void MethodX(object sender, DataGridItemEventArgs e)
{
for(int i=0; i<e.Item.Cells.Count; i++)
{
//Do funky stuff here...
}
}

Try to imagine a WinForm rotating thumbnail images in a datagrid, much like an advertising billboard would (like those in New Kingston or Portmore), but with just a static .gif or .jpg, until the end user clicks on then moving on in the execution process.

How do I do this? Any ideas?

HELP!!