Hi,
I have successfully added three controls in radgridview, Textbox,Combobox and button in winform page load.
Here the code i used.
After i click and add values inside gird view, i want to manipulate values in grid view like check duplicate value, remove row and get values for store in database.
1.How to restrict duplicate entry in textbox ?
2.How to delete row using button ?
3.Is it possible to add running number which is not visible in interface and used for delete row. ?
Pls replay asap in vb language.
Regards
Aravind
I have successfully added three controls in radgridview, Textbox,Combobox and button in winform page load.
Here the code i used.
Dim grdTextBox As New GridViewTextBoxColumn
grdTextBox.Width = 140
grdTextBox.FieldName = "Index Name"
RadGridView1.Columns.Add(grdTextBox)
Dim comboColumn As New GridViewComboBoxColumn("Type")
comboColumn.DataSource = New [String]() {"Text", "Number", "Deciaml", "Notes", "Date", "Option"}
comboColumn.FieldName = "Type"
comboColumn.Width = 200
RadGridView1.Columns.Add(comboColumn)
Dim btn As New GridViewCommandColumn
btn.Image = My.Resources.close
btn.Width = 25
RadGridView1.Columns.Add(btn)1.How to restrict duplicate entry in textbox ?
2.How to delete row using button ?
3.Is it possible to add running number which is not visible in interface and used for delete row. ?
Pls replay asap in vb language.
Regards
Aravind
