Click here to Skip to main content
15,899,474 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Textbox Problem Pin
Dave Kreskowiak11-Jul-07 10:02
mveDave Kreskowiak11-Jul-07 10:02 
AnswerRe: Textbox Problem Pin
Tarakeshwar Reddy11-Jul-07 10:19
professionalTarakeshwar Reddy11-Jul-07 10:19 
GeneralRe: Textbox Problem Pin
Dave Kreskowiak11-Jul-07 10:24
mveDave Kreskowiak11-Jul-07 10:24 
GeneralRe: Textbox Problem Pin
Tarakeshwar Reddy11-Jul-07 10:40
professionalTarakeshwar Reddy11-Jul-07 10:40 
QuestionRetrieving data in selected row of datagrid Pin
Cory Kimble11-Jul-07 8:00
Cory Kimble11-Jul-07 8:00 
AnswerRe: Retrieving data in selected row of datagrid Pin
nlarson1111-Jul-07 9:35
nlarson1111-Jul-07 9:35 
GeneralRe: Retrieving data in selected row of datagrid Pin
Cory Kimble11-Jul-07 9:49
Cory Kimble11-Jul-07 9:49 
GeneralRe: Retrieving data in selected row of datagrid Pin
nlarson1111-Jul-07 10:13
nlarson1111-Jul-07 10:13 
No...

Do this to get the column count....

Dim iColCount As Int16 = 0

If TypeOf (Me.DataGrid1.DataSource) Is DataSet Then
iColCount = CType(Me.DataGrid1.DataSource, DataSet).Tables(0).Columns.Count
ElseIf TypeOf (Me.DataGrid1.DataSource) Is DataTable Then
iColCount = CType(Me.DataGrid1.DataSource, DataTable).Columns.Count
End If

GeneralRe: Retrieving data in selected row of datagrid Pin
Cory Kimble16-Jul-07 7:10
Cory Kimble16-Jul-07 7:10 
GeneralRe: Retrieving data in selected row of datagrid Pin
nlarson1116-Jul-07 7:56
nlarson1116-Jul-07 7:56 
GeneralRe: Retrieving data in selected row of datagrid Pin
Cory Kimble28-Aug-07 6:29
Cory Kimble28-Aug-07 6:29 
QuestionTwo problems with a thread project Pin
Zero-G.11-Jul-07 4:29
Zero-G.11-Jul-07 4:29 
AnswerRe: Two problems with a thread project Pin
Colin Angus Mackay11-Jul-07 5:30
Colin Angus Mackay11-Jul-07 5:30 
GeneralRe: Two problems with a thread project Pin
Paul Conrad11-Jul-07 7:18
professionalPaul Conrad11-Jul-07 7:18 
AnswerRe: Two problems with a thread project [modified] Pin
TwoFaced11-Jul-07 8:23
TwoFaced11-Jul-07 8:23 
GeneralRe: Two problems with a thread project Pin
Zero-G.11-Jul-07 20:23
Zero-G.11-Jul-07 20:23 
Questionhash Pin
boyindie11-Jul-07 4:25
boyindie11-Jul-07 4:25 
AnswerRe: hash Pin
Dave Kreskowiak11-Jul-07 6:02
mveDave Kreskowiak11-Jul-07 6:02 
GeneralRe: hash Pin
Paul Conrad11-Jul-07 7:02
professionalPaul Conrad11-Jul-07 7:02 
QuestionVideo Player with different formats Pin
Zero-G.11-Jul-07 4:22
Zero-G.11-Jul-07 4:22 
AnswerRe: Video Player with different formats Pin
Dave Kreskowiak11-Jul-07 5:59
mveDave Kreskowiak11-Jul-07 5:59 
GeneralRe: Video Player with different formats Pin
Zero-G.11-Jul-07 20:26
Zero-G.11-Jul-07 20:26 
GeneralRe: Video Player with different formats Pin
Dave Kreskowiak12-Jul-07 1:40
mveDave Kreskowiak12-Jul-07 1:40 
QuestionHaving trouble updating form Pin
Cory Kimble11-Jul-07 4:09
Cory Kimble11-Jul-07 4:09 
AnswerRe: Having trouble updating form Pin
Luc Pattyn11-Jul-07 5:32
sitebuilderLuc Pattyn11-Jul-07 5:32 

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.