Imports Infragistics.Win.UltraWinGrid
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
' Create a new instance of a proxy
Dim proxy As New UltraGridCellProxy()
' Set the ColumnKey property to the name of a column of a band that the
' associated RowEditTemplate is bound to
proxy.ColumnKey = "Column 1"
' Add the proxy to the RowEditTemplate's Controls collection
Me.UltraGridRowEditTemplate1.Controls.Add(proxy)
End Sub