ToolTip control and DataGridView

I have a tooltip control on my form. The tool tip pops up great for all the other controls on the form except for the DataGridView control. Any idea what could be the problem?
[175 byte] By [Ragas] at [2007-12-25]
# 1

The DataGridView implements it's own tooltips for cells by default.

You'll have to set DataGridView.ShowCellToolTips to False before a tooltip control you've added will work.

rkimble at 2007-9-3 > top of Msdn Tech,Visual Basic,Visual Basic General...
# 2
Sorry, I should have told you before, I did try that option. Does not work.
Ragas at 2007-9-3 > top of Msdn Tech,Visual Basic,Visual Basic General...
# 3

Well, it works fine for me...

So you've added a tooltip control to your form (lets say "ToolTip1"). And then you set the dynamic property on the datagridview: DataGridView1.ToolTip on ToolTip1 = "some text"

And then you set DataGridView1.ShowCellToolTips = False

And then when you run the program and mouse over the DataGridView and wait, no tooltip displays?

That sounds odd... Is there anything else going on when the DataGridView has a MouseOver or MouseEnter event? Anything changing focus?

rkimble at 2007-9-3 > top of Msdn Tech,Visual Basic,Visual Basic General...
# 4
Precisely.

I set all properties at Design time. The tooltip shows for all the other controls except for this grid.

Not sure if it matters, The grid is "DataBound" , and it is placed on a panel.

Ragas at 2007-9-3 > top of Msdn Tech,Visual Basic,Visual Basic General...