User Profile
Collapse
-
That works just fine! Thanks a lot now i can finally stop wrestling with this issue... -
that was 1 of the things that came to mind, when i was kicking against this problem heres how i do my selection atm:
Code:foreach (DataGridViewRow r in dataGrid.Rows) { if (((String)r.Cells[col].Value).Equals(text)) { r.Selected = true; //rest of the code } }
Leave a comment:
-
C# DataGridView & Scrollbar position setting problem
I'll start off with what i'm trying to do:
i want to search my data programmaticall y and then jump to the row in the datagrid.
My data will almost allways go out of the datagrids bounds so if the found result is not on screen at the time i want to 'scroll' to the result.
sounds simple enough right?
Some things i've tried to get the datagrid to do what i want:
-setting the...
No activity results to display
Show More
Leave a comment: