or
GridViewDataRowInfo dataRowInfo =
new
GridViewDataRowInfo(
this
.radGridView1.MasterView);
dataRowInfo.Cells[0].Value =
string
;
dataRowInfo.IsPinned =
true
;
radGridView1.Rows.Insert(0, dataRowInfo);
Private
Sub
txtTickNum_TextChanged(sender
As
Object
, e
As
EventArgs)
Handles
txtTickNum.TextChanged
Try
Me
.TicketTableAdapter.Serial(
Me
.TicketDataSet.ticket,
CType
(txtTickNum.Text,
Decimal
))
Catch
ex
As
System.Exception
System.Windows.Forms.MessageBox.Show(ex.Message)
End
Try
' Select all text in the text box.
txtTickNum.SelectAll()
End
Sub