![]() | |
![]() |
| | Thread Tools | Search this Thread | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
How can you programmatically scroll thedatagrid? The standard frameworkdatagridhas a protected member called GridVScrolled which can be used to scroll the grid but it is not in the compact version. Any ideas? Thanks Kevin |
#3
| |||
| |||
|
|
On 24 sep, 15:51, "Kev Westwood" <kev... (AT) davrich (DOT) co.uk> wrote: How can you programmatically scroll thedatagrid? The standard frameworkdatagridhas a protected member called GridVScrolled which can be used to scroll the grid but it is not in the compact version. Any ideas? Thanks Kevin Did you find a solution for that problem ? I'm currently facing the same issue, so your help will be appreciated... |
#4
| ||||
| ||||
|
|
On Monday, September 24, 2007 9:51 AM Kev Westwood wrote: How can you programmatically scroll the datagrid? The standard framework datagrid has a protected member called GridVScrolled which can be used to scroll the grid but it is not in the compact version. Any ideas? Thanks Kevin |
|
On Friday, October 12, 2007 7:10 AM Jeje130 wrote: Did you find a solution for that problem ? I am currently facing the same issue, so your help will be appreciated... |
|
On Friday, October 26, 2007 4:14 AM vijay wrote: On Oct 12, 7:10 pm, Jeje1... (AT) gmail (DOT) com wrote: Set the Vertical scroll bar value to required row number. here is the sample code. add validations as you required. Class ScrollDataGrid Inherits DataGrid Dim fi As Reflection.FieldInfo Public Function scrollto(ByVal ivalue As Integer) As Boolean fi = Me.GetType().GetField("m_sbVert", BindingFlags.NonPublic Or BindingFlags.GetField Or BindingFlags.Instance) CType(fi.GetValue(Me), VScrollBar).Value = ivalue Me.CurrentRowIndex = ivalue End Function End Class |
|
Submitted via EggHeadCafe HTML5 And the Case of the Missing Browsers http://www.eggheadcafe.com/tutorials/aspnet/f1d49041-7566-4c3a-9f4f-699513e1b66c/html5-and-the-case-of-the-missing-browsers.aspx |
#5
| |||
| |||
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |