Tooltip for datagridview
-
I'm using VS2005. I designed a form with a datagridview, after that I add a tooltip control. In form_load : Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load ToolTip1.SetToolTip(DataGridView1, "DataGridView1") End Sub But when I runned my form, the tooltip "DataGridView1" didn't appear. Why?
-
I'm using VS2005. I designed a form with a datagridview, after that I add a tooltip control. In form_load : Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load ToolTip1.SetToolTip(DataGridView1, "DataGridView1") End Sub But when I runned my form, the tooltip "DataGridView1" didn't appear. Why?
check if it's active property to be true.and set intial delay as 100. try to be the best... whereever you go,
-
check if it's active property to be true.and set intial delay as 100. try to be the best... whereever you go,
I set active property to be true, and set intial delay as 100. But it still doesn't work.