Search results for query: *

  1. -Wing-

    DataGridView Issue

    A solution was gracefully offered here and it works for anyone that needs it. http://www.vbcity.com/forums/topic.asp?tid=132712&#RID429776
  2. -Wing-

    bound Datagrid update

    If you really want to go your route, try this For Each Row As DataGridViewRow In DataGridView.Rows If Row.Index = e.RowIndex Then strID = Row.Cells(0).Value.ToString Exit For End If Next I...
  3. -Wing-

    DataGridView Issue

    I am having a problem with all the columns in a DGV where if the Grid is reloaded I lose one of the columns until only one column is left. But if I remove a section of the code, it works as expected. Here is the code. The portion that is commented out is the section that affects the...
Back
Top