Click here to Skip to main content
15,887,175 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionUsing dual processor machine for vb.net apps Pin
msali26-Aug-05 23:43
msali26-Aug-05 23:43 
AnswerRe: Using dual processor machine for vb.net apps Pin
Dave Kreskowiak27-Aug-05 6:02
mveDave Kreskowiak27-Aug-05 6:02 
QuestionGetting USB unique ID Pin
Dinakara K26-Aug-05 23:12
Dinakara K26-Aug-05 23:12 
AnswerRe: Getting USB unique ID Pin
Dave Kreskowiak27-Aug-05 6:00
mveDave Kreskowiak27-Aug-05 6:00 
GeneralRe: Getting USB unique ID Pin
Dinakara K28-Aug-05 20:10
Dinakara K28-Aug-05 20:10 
GeneralRe: Getting USB unique ID Pin
Dave Kreskowiak29-Aug-05 0:53
mveDave Kreskowiak29-Aug-05 0:53 
QuestionDataGrid...? Pin
_mubashir26-Aug-05 22:14
_mubashir26-Aug-05 22:14 
AnswerRe: DataGrid...? Pin
Sarvesvara (BVKS) Dasa27-Aug-05 1:53
Sarvesvara (BVKS) Dasa27-Aug-05 1:53 
The idea is....

When the cell gets focus... depending on the conditions (in your case - rowNum) you can set the datarow column's ReadOnly property accordingly
<br />
    Private Sub dg_RowChanged(ByVal sender As System.Object, ByVal e As System.EventArgs)<br />
        Try<br />
            Me.Cursor = System.Windows.Forms.Cursors.WaitCursor<br />
            idCol.ReadOnly = True<br />
            If "condition" Then<br />
                idCol.ReadOnly = False<br />
            End If<br />
        Catch ex As Exception<br />
            MessageHandler.HandleError(ex)<br />
        Finally<br />
            Me.Cursor = System.Windows.Forms.Cursors.Default<br />
        End Try<br />
    End Sub<br />


P.S. idCol - will be a column which will be made readOnly in this case

"He that is good with a hammer tends to think everything is a nail."
- Abraham Maslow

QuestionCrystal Report 9 Pin
Jeeva Jose26-Aug-05 20:39
Jeeva Jose26-Aug-05 20:39 
AnswerRe: Crystal Report 9 Pin
Rizwan Bashir26-Aug-05 23:26
Rizwan Bashir26-Aug-05 23:26 
QuestionProgress Bar Pin
kenexcelon26-Aug-05 18:57
kenexcelon26-Aug-05 18:57 
AnswerRe: Progress Bar Pin
_mubashir26-Aug-05 20:15
_mubashir26-Aug-05 20:15 
GeneralRe: Progress Bar Pin
kenexcelon26-Aug-05 20:32
kenexcelon26-Aug-05 20:32 
GeneralRe: Progress Bar Pin
rwestgraham26-Aug-05 21:35
rwestgraham26-Aug-05 21:35 
GeneralRe: Progress Bar Pin
kenexcelon27-Aug-05 5:00
kenexcelon27-Aug-05 5:00 
GeneralRe: Progress Bar Pin
Dave Kreskowiak27-Aug-05 5:56
mveDave Kreskowiak27-Aug-05 5:56 
GeneralRe: Progress Bar Pin
kenexcelon27-Aug-05 13:04
kenexcelon27-Aug-05 13:04 
GeneralRe: Progress Bar Pin
_mubashir26-Aug-05 22:00
_mubashir26-Aug-05 22:00 
QuestionHow to .....Winsocket ActiveX Pin
safran6626-Aug-05 18:18
safran6626-Aug-05 18:18 
AnswerRe: How to .....Winsocket ActiveX Pin
Dave Kreskowiak27-Aug-05 5:49
mveDave Kreskowiak27-Aug-05 5:49 
GeneralRe: How to .....Winsocket ActiveX Pin
safran6622-Sep-05 17:26
safran6622-Sep-05 17:26 
GeneralRe: How to .....Winsocket ActiveX Pin
Dave Kreskowiak23-Sep-05 1:23
mveDave Kreskowiak23-Sep-05 1:23 
Question&quot;Open With&quot; from Windows Explorer Pin
Member 88441126-Aug-05 17:45
Member 88441126-Aug-05 17:45 
QuestionRealTime Workstations Map Statistic Pin
kevinator0526-Aug-05 16:42
kevinator0526-Aug-05 16:42 
AnswerRe: RealTime Workstations Map Statistic Pin
Dave Kreskowiak26-Aug-05 17:04
mveDave Kreskowiak26-Aug-05 17:04 

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.