Click here to Skip to main content
15,905,004 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: EXCEL - Hooking Excel VTABLE Pin
Dave Kreskowiak3-Apr-15 19:12
mveDave Kreskowiak3-Apr-15 19:12 
AnswerRe: EXCEL - Hooking Excel VTABLE Pin
jaafar tribak17-Apr-15 13:56
jaafar tribak17-Apr-15 13:56 
QuestionModify the number of rows that a datagridview can show instantly , on runtime Pin
dilkonika2-Apr-15 18:19
dilkonika2-Apr-15 18:19 
AnswerRe: Modify the number of rows that a datagridview can show instantly , on runtime Pin
Sascha Lefèvre2-Apr-15 18:54
professionalSascha Lefèvre2-Apr-15 18:54 
GeneralRe: Modify the number of rows that a datagridview can show instantly , on runtime Pin
dilkonika2-Apr-15 18:57
dilkonika2-Apr-15 18:57 
GeneralRe: Modify the number of rows that a datagridview can show instantly , on runtime Pin
Sascha Lefèvre2-Apr-15 19:14
professionalSascha Lefèvre2-Apr-15 19:14 
GeneralRe: Modify the number of rows that a datagridview can show instantly , on runtime Pin
dilkonika2-Apr-15 19:22
dilkonika2-Apr-15 19:22 
GeneralRe: Modify the number of rows that a datagridview can show instantly , on runtime Pin
Sascha Lefèvre2-Apr-15 19:52
professionalSascha Lefèvre2-Apr-15 19:52 
If you want to restrict the amount of rows in databound-mode then you have to restrict the amount of rows in the datasource.

If your datasource is a DataView of a DataTable with some integer as primary key (or just any unique integer column) you could use the .RowFilter-property of the DataView to filter from the total rows the rows that should currently be displayed, e.g.:
VB
dataView.RowFilter = "idColumn >= 10 AND idColumn < 20"
If the values of that column aren't consecutive you would have to scan the rows before and determine the actual value of that column at the position that should be the last on the page.
GeneralRe: Modify the number of rows that a datagridview can show instantly , on runtime Pin
dilkonika3-Apr-15 6:20
dilkonika3-Apr-15 6:20 
GeneralRe: Modify the number of rows that a datagridview can show instantly , on runtime Pin
Sascha Lefèvre3-Apr-15 6:25
professionalSascha Lefèvre3-Apr-15 6:25 
GeneralRe: Modify the number of rows that a datagridview can show instantly , on runtime Pin
dilkonika3-Apr-15 6:33
dilkonika3-Apr-15 6:33 
GeneralRe: Modify the number of rows that a datagridview can show instantly , on runtime Pin
Sascha Lefèvre3-Apr-15 6:40
professionalSascha Lefèvre3-Apr-15 6:40 
GeneralRe: Modify the number of rows that a datagridview can show instantly , on runtime Pin
dilkonika3-Apr-15 6:46
dilkonika3-Apr-15 6:46 
GeneralRe: Modify the number of rows that a datagridview can show instantly , on runtime Pin
Sascha Lefèvre3-Apr-15 7:09
professionalSascha Lefèvre3-Apr-15 7:09 
GeneralRe: Modify the number of rows that a datagridview can show instantly , on runtime Pin
Eddy Vluggen3-Apr-15 7:19
professionalEddy Vluggen3-Apr-15 7:19 
QuestionTrying to insert encrypt/decrypt code to form project Pin
Member 115745091-Apr-15 17:10
Member 115745091-Apr-15 17:10 
AnswerRe: Trying to insert encrypt/decrypt code to form project Pin
Sascha Lefèvre1-Apr-15 17:30
professionalSascha Lefèvre1-Apr-15 17:30 
GeneralRe: Trying to insert encrypt/decrypt code to form project Pin
Member 115745091-Apr-15 17:35
Member 115745091-Apr-15 17:35 
GeneralRe: Trying to insert encrypt/decrypt code to form project Pin
Member 1157450910-Jul-15 7:06
Member 1157450910-Jul-15 7:06 
AnswerRe: Trying to insert encrypt/decrypt code to form project Pin
Richard MacCutchan1-Apr-15 21:20
mveRichard MacCutchan1-Apr-15 21:20 
GeneralRe: Trying to insert encrypt/decrypt code to form project Pin
den2k881-Apr-15 21:29
professionalden2k881-Apr-15 21:29 
GeneralRe: Trying to insert encrypt/decrypt code to form project Pin
Richard MacCutchan1-Apr-15 22:20
mveRichard MacCutchan1-Apr-15 22:20 
GeneralRe: Trying to insert encrypt/decrypt code to form project Pin
Member 115745091-Apr-15 23:08
Member 115745091-Apr-15 23:08 
QuestionBuild a navigation area for a Datagridview Pin
dilkonika1-Apr-15 16:22
dilkonika1-Apr-15 16:22 
AnswerRe: Build a navigation area for a Datagridview Pin
Sascha Lefèvre1-Apr-15 17:25
professionalSascha Lefèvre1-Apr-15 17:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.