This question is locked. New answers and comments are not allowed.
as:
{
listBox.DataSource = m_dtRequisition;
listBox.DisplayMember = "FileName";
listBox.ValueMember = "RequisitionGuid";
}
when i should select the last index for radlistbox, but why the listbox doesn't highlight the selected line?
{
DataTable dt = listBox.DataSource as DataTable;
listBox.selectedindex = dt.Rows.Count;
}
{
listBox.DataSource = m_dtRequisition;
listBox.DisplayMember = "FileName";
listBox.ValueMember = "RequisitionGuid";
}
when i should select the last index for radlistbox, but why the listbox doesn't highlight the selected line?
{
DataTable dt = listBox.DataSource as DataTable;
listBox.selectedindex = dt.Rows.Count;
}