Recent content by Karim Hyatt

  1. Karim Hyatt

    Code Help: Subdirectory Search C#

    Just in case you need extra information, here is a sample you can tweak. private void OnFormLoad(object sender, EventArgs e) { FolderBrowserDialog fbd = new FolderBrowserDialog(); if (fbd.ShowDialog() == DialogResult.OK) { GetAllFiles(fbd.SelectedPath); } lbFiles.Sorted = true; }...
  2. Karim Hyatt

    IBindingList and CollectionBase

    Do you still need help on this? Sorry. Ive just found this site so I figure you may have found the answer or given up.
Back
Top