i have ultraGridview
when i create 4 column with code :
If Not grid_step4.DisplayLayout.Bands(0).Columns.Contains("ManufacturerID") Then
'Dim column_name As UltraGridColumn
Dim column_name As String
column_name = "ManufacturerID"
grid_step4.DisplayLayout.Bands(0).Columns.Insert(0, column_name)
End If
If Not grid_step4.DisplayLayout.Bands(0).Columns.Contains("ManufacturerPart") Then
column_name = "ManufacturerPart"
If Not grid_step4.DisplayLayout.Bands(0).Columns.Contains("INC") Then
column_name = "INC"
If Not grid_step4.DisplayLayout.Bands(0).Columns.Contains("NSN") Then
column_name = "NSN"
but location of 4 column not location
thank
I answered your other thread on this matter.
-Matt