CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 2006
    Posts
    141

    Pop Up when mouse over.

    Hi,
    I would like to have a pop up when mouse over a gridview.The pop up will show the detail of every row in grid view.I have search online but no soluiton on this.Does anyone has any idea on this? Does vb 2005 able to do this?

  2. #2
    Join Date
    Jul 2008
    Posts
    10

    Re: Pop Up when mouse over.

    Hi,

    Assuming you are talking about a datagridview, this should do the trick:
    Code:
    DataGridView1.CurrentCell.ToolTipText = "Hi, there"
    BTW, I found this by searching for "gridview tooltip". (Just in case you need to search some more...)

    Hope this helped. Would be my first contribution!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured