Link to home
Start Free TrialLog in
Avatar of NevSoFly
NevSoFly

asked on

setting tag info for datagridviewrows

I am trying to set the tag info for each row in my datagridview.  The problem is that when I place my mouse over the row no tag appears.  Even if I don't try and set the tag value the tag still doesn't appear when I place my mouse over it.  What am I doing wrong?  Here is my code.

        For Each row In Me.DataGridView1.Rows
             row.tag="some info"
        Next
Avatar of Bob Learned
Bob Learned
Flag of United States of America image

Are you trying to display a tool tip for each row?  If so, you need to use a ToolTip extender provider to allow you to display tool tip text.

The .Tag property is a generic property for storing information.

Bob
Avatar of NevSoFly
NevSoFly

ASKER

I am trying to display extra data about the record in the datagridview.  So yes I guess I am trying to display a tool tip.
ASKER CERTIFIED SOLUTION
Avatar of Bob Learned
Bob Learned
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Once agian, thanks.