Search results for query: *

  1. V

    Recursive file searching

    I FIXED IT!!! :) :D I thought about what you had said and I now see what you meant. It works great. Thanks!!
  2. V

    Recursive file searching

    The code that initializes it is: CheckForIllegalCrossThreadCalls = False getDir = New Thread(Sub() Me.RecursiveSearch("C:\", "*.*", ListBox1)) getDir.IsBackground = True getDir.Start() scannerthread = New Thread(AddressOf filescanner)...
  3. V

    Recursive file searching

    Yes, but this won't work when it's being ran with threads in the background... At the start it starts on a thread, then another thread is initialized. The boolean would set to True straight away when it's on threads. And it has to be on threads to work quickly...
  4. V

    Recursive file searching

    The code is being worked on a thread in the background. At the same time another thread is "processing" information about the files added into the listbox. After that has finished I check if a boolean is finished or not to see if I need to use GoTo to the top to go down the missed items, if it...
  5. V

    Recursive file searching

    Any examples of this? Thanks :)
  6. V

    Recursive file searching

    Hi. I have some code which recursively searches for files on a folder. The problem is I want it to change a boolean value once it has completed. I don't mean once it gets to the end of the sub, I mean once it's literally finished. I had to code it the way it is otherwise I would have gotten...
Back
Top