pasan herath

pasan herath

  • NA
  • 21
  • 21.4k

After add new item reload the listbox

Aug 28 2013 4:50 AM
I have a listbox.I need to update(reload) it when add new item by the user.Plz help me

this is listbox data binding

 public void Filllistbox()
        {
            //InitializeComponent();
            listBox1.DataSource = omni.NEWUSERs;
            listBox1.DisplayMember = "FNAME";
            listBox1.ValueMember = "USERID";
           
        }

I need to reload this listbox after add new user
thankz

Answers (3)