Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Checking DatagridViewvalues in vb.net

  • 22-12-2008 4:51pm
    #1
    Closed Accounts Posts: 2,268 ✭✭✭


    I am programming in vb.net

    I want to get a value from a datagridview by checking if the value of a column is null and if it is null moving up one cell checking if that's null and so on.
    
    If Not (dgvTestDataGrid.Item("myColumn", thisrow).Value) Is DBNull.Value Then
    
    gColValue= (dgvTestDataGrid.Item("myColumn", thisrow).Value)
    
    End If
    
    

    So that if the value in mycolumn is null I look up one cell , if that's null 2 cells etc.

    MM


Comments

  • Registered Users, Registered Users 2 Posts: 2,793 ✭✭✭John_Mc


    I am programming in vb.net

    I want to get a value from a datagridview by checking if the value of a column is null and if it is null moving up one cell checking if that's null and so on.
    
    If Not (dgvTestDataGrid.Item("myColumn", thisrow).Value) Is DBNull.Value Then
    
    gColValue= (dgvTestDataGrid.Item("myColumn", thisrow).Value)
    
    End If
    
    

    So that if the value in mycolumn is null I look up one cell , if that's null 2 cells etc.

    MM

    Add an Else condition to obtain the column index using the column name. Subtract one and then access the Column value using the index instead of the column name.


Advertisement