Click here to Skip to main content
15,898,373 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Questiondatagridview in tabcontrol! Pin
jeshra27927-Sep-09 18:10
jeshra27927-Sep-09 18:10 
AnswerRe: datagridview in tabcontrol! Pin
Christian Graus27-Sep-09 20:25
protectorChristian Graus27-Sep-09 20:25 
AnswerRe: datagridview in tabcontrol! - REPOST Pin
Mycroft Holmes27-Sep-09 22:06
professionalMycroft Holmes27-Sep-09 22:06 
GeneralRe: datagridview in tabcontrol! - REPOST Pin
Christian Graus27-Sep-09 22:33
protectorChristian Graus27-Sep-09 22:33 
JokeRe: datagridview in tabcontrol! - REPOST Pin
Tom Deketelaere28-Sep-09 3:16
professionalTom Deketelaere28-Sep-09 3:16 
GeneralRe: datagridview in tabcontrol! - REPOST Pin
jeshra27928-Sep-09 4:39
jeshra27928-Sep-09 4:39 
GeneralRe: datagridview in tabcontrol! - REPOST Pin
Henry Minute28-Sep-09 5:13
Henry Minute28-Sep-09 5:13 
GeneralRe: datagridview in tabcontrol! - REPOST Pin
Mycroft Holmes28-Sep-09 11:35
professionalMycroft Holmes28-Sep-09 11:35 
You need to inject a BindingSource between the DataTable and the DataGridView

oBSClient = new BindingSource
oBSClient .DataSource = myDataSet.Tables("client_details").DefaultView
DataGridView1.DataSource = oBSClient 


Then if you are using the same table you can create another BindingSource based on myDataSet.Tables("client_details") and bind that to the second DGV

Never underestimate the power of human stupidity
RAH

GeneralRe: datagridview in tabcontrol! - REPOST Pin
jeshra27929-Sep-09 4:56
jeshra27929-Sep-09 4:56 
GeneralRe: datagridview in tabcontrol! - REPOST Pin
Mycroft Holmes29-Sep-09 13:07
professionalMycroft Holmes29-Sep-09 13:07 
GeneralRe: datagridview in tabcontrol! - REPOST Pin
jeshra2791-Oct-09 5:13
jeshra2791-Oct-09 5:13 
GeneralRe: datagridview in tabcontrol! - REPOST Pin
Mycroft Holmes1-Oct-09 12:27
professionalMycroft Holmes1-Oct-09 12:27 
QuestionI need a crash course on making web forms. Pin
i_kant_spel27-Sep-09 17:19
i_kant_spel27-Sep-09 17:19 
AnswerRe: I need a crash course on making web forms. Pin
Dave Kreskowiak27-Sep-09 18:07
mveDave Kreskowiak27-Sep-09 18:07 
GeneralRe: I need a crash course on making web forms. Pin
nowords4u27-Sep-09 21:03
nowords4u27-Sep-09 21:03 
GeneralRe: I need a crash course on making web forms. Pin
Mycroft Holmes27-Sep-09 22:02
professionalMycroft Holmes27-Sep-09 22:02 
GeneralRe: I need a crash course on making web forms. Pin
nowords4u27-Sep-09 22:36
nowords4u27-Sep-09 22:36 
GeneralRe: I need a crash course on making web forms. Pin
Steven J Jowett28-Sep-09 0:40
Steven J Jowett28-Sep-09 0:40 
GeneralRe: I need a crash course on making web forms. Pin
Christian Graus27-Sep-09 22:35
protectorChristian Graus27-Sep-09 22:35 
GeneralRe: I need a crash course on making web forms. Pin
Dave Kreskowiak28-Sep-09 0:59
mveDave Kreskowiak28-Sep-09 0:59 
AnswerRe: I need a crash course on making web forms. Pin
Christian Graus27-Sep-09 19:43
protectorChristian Graus27-Sep-09 19:43 
GeneralRe: I need a crash course on making web forms. Pin
nowords4u27-Sep-09 21:21
nowords4u27-Sep-09 21:21 
GeneralRe: I need a crash course on making web forms. Pin
Christian Graus27-Sep-09 22:34
protectorChristian Graus27-Sep-09 22:34 
GeneralRe: I need a crash course on making web forms. Pin
nowords4u27-Sep-09 22:57
nowords4u27-Sep-09 22:57 
GeneralRe: I need a crash course on making web forms. Pin
Christian Graus27-Sep-09 23:34
protectorChristian Graus27-Sep-09 23:34 

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.