Click here to Skip to main content
15,894,630 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: api Pin
Sonia Gupta30-May-07 2:36
Sonia Gupta30-May-07 2:36 
QuestionDetecting Internect connection in VBS Pin
Dyog30-May-07 0:32
Dyog30-May-07 0:32 
QuestionInserting image(s) into a sql db Pin
justicet@sassa.gov.za29-May-07 23:47
justicet@sassa.gov.za29-May-07 23:47 
Questionproblem with SQL connection Pin
shahid_isb8529-May-07 22:57
shahid_isb8529-May-07 22:57 
Questiontext box validation in vb.net Pin
sreenivas197729-May-07 22:53
sreenivas197729-May-07 22:53 
AnswerRe: text box validation in vb.net Pin
Christian Graus29-May-07 23:11
protectorChristian Graus29-May-07 23:11 
QuestionDataGridView checkbox column problem Pin
paukiPkk29-May-07 22:28
paukiPkk29-May-07 22:28 
AnswerRe: DataGridView checkbox column problem Pin
shally_7930-May-07 3:12
shally_7930-May-07 3:12 
i cannot understand your requirement fully pauki.the event CellValueChanged is fired after a checkbox is checked.but before handling that event u have to handle one more even ie CurrentCellDirtyStateChanged.i have given that code below
Private Sub DataGridView1_CurrentCellDirtyStateChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles DataGridView1.CurrentCellDirtyStateChanged
Try
If DataGridView1.IsCurrentCellDirty Then
DataGridView1.CommitEdit(DataGridViewDataErrorContexts.Commit)
End If
Catch ex As Exception
End Try
End Sub
after that handle the event CellValueChanged like this
If e.RowIndex > 0 Then
If DataGridView1.Item(0, e.RowIndex).Value Then
MsgBox("hello")

End If
End If
if u need more explantion replyRose | [Rose]

shally

GeneralRe: DataGridView checkbox column problem Pin
paukiPkk30-May-07 5:12
paukiPkk30-May-07 5:12 
QuestionMS-Access Database Pin
Sonia Gupta29-May-07 18:32
Sonia Gupta29-May-07 18:32 
AnswerRe: MS-Access Database Pin
Christian Graus29-May-07 18:36
protectorChristian Graus29-May-07 18:36 
GeneralRe: MS-Access Database Pin
Sonia Gupta29-May-07 19:01
Sonia Gupta29-May-07 19:01 
GeneralRe: MS-Access Database Pin
Dave Sexton29-May-07 22:07
Dave Sexton29-May-07 22:07 
Questionhow get columns value from listview [modified] Pin
carsell29-May-07 18:30
carsell29-May-07 18:30 
AnswerRe: how get columns value from listview Pin
Sonia Gupta29-May-07 18:35
Sonia Gupta29-May-07 18:35 
Questiontrouble with login Pin
Hakmeh Mohannad29-May-07 13:09
Hakmeh Mohannad29-May-07 13:09 
AnswerRe: trouble with login Pin
Christian Graus29-May-07 13:44
protectorChristian Graus29-May-07 13:44 
GeneralRe: trouble with login Pin
Hakmeh Mohannad29-May-07 14:02
Hakmeh Mohannad29-May-07 14:02 
GeneralRe: trouble with login Pin
Christian Graus29-May-07 14:30
protectorChristian Graus29-May-07 14:30 
GeneralRe: trouble with login Pin
Paul Conrad29-May-07 17:03
professionalPaul Conrad29-May-07 17:03 
GeneralRe: trouble with login Pin
Christian Graus29-May-07 18:32
protectorChristian Graus29-May-07 18:32 
GeneralRe: trouble with login Pin
Paul Conrad29-May-07 17:05
professionalPaul Conrad29-May-07 17:05 
AnswerRe: trouble with login [modified] Pin
Dave Kreskowiak29-May-07 14:19
mveDave Kreskowiak29-May-07 14:19 
GeneralRe: trouble with login Pin
Colin Angus Mackay29-May-07 21:48
Colin Angus Mackay29-May-07 21:48 
GeneralRe: trouble with login Pin
Dave Kreskowiak30-May-07 3:05
mveDave Kreskowiak30-May-07 3:05 

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.