How to add Values from TextEdit to GridView(XtragridView from DevExpress) in vb.net

169 views Asked by At

Can someone share an example of a source code in vb.net that can load value in xtragridview from textedit value?
It seems that the syntax is not the same as Datagridview. That's why I am asking here if someone knows DevExpress xtragrid.

I used below code to display the value in the xtragrid view from textEdit value. But it won't work for me.

Private Sub AddtoTableSimpleButton_Click(sender As Object, e As EventArgs) Handles AddtoTableSimpleButton.Click
        GridView.Columns.View.SetRowCellValue(0, "Date", DateTextEdit.Text)
    End Sub
0

There are 0 answers