Search results for query: *

  1. D

    Regex for case insensitive registry search

    HI, Thank You. Is there anything else i need to add along with 'Option Compare Text' because that alone does not work for me. For ex: If i search for the keyword 'WORD', the search returns only instances of 'WORD', it doesn't return 'word' or 'Word' etc....Please suggest.. Thanks, donjkurian
  2. D

    Regex for case insensitive registry search

    Hi, I've recently learnt that Regex class maybe used to develop case insensitive searches. I have a registry search program that will return only the exact matches from the registry. I need to make it case insensitive. Can you guide me how to do that using regular expressions in vb.net 2005. Im...
  3. D

    implement multithreading

    Hi JohnH, I knew it wasn't the correct approach, but since it got rid of the headache of the moment, i thought of using it. I would definitely not stop here. In fact I've been waiting for something like what you provided. Im so glad that you gave me this project to dig. I hope i will definitely...
  4. D

    Back up Registry

    Hi All, I have a program which will search the entire registry for a keyword and display all the matching keys/values in a listview. The user can then select the desired keys/values and delete them. Since this a program that deals with registry, i want to give the users a way to backup the...
  5. D

    implement multithreading

    Hi, Thank You. Inorder to make my thread restart, i put the variable in the button click event so that everytime the button is clicked a new instance of the thread is started. sthread = New System.Threading.Thread(AddressOf searchallhives) If sthread.ThreadState And...
  6. D

    implement multithreading

    Thank you. Finally I have made some progress and have implemented threading and my Application is very responsive now. I'm still working on it and will post the new code shortly. currently trying to overcome the problem with restarting threads. I'm aborting the threads when user click on the...
  7. D

    implement multithreading

    Hi untamed, Thank you. My confusion is that when you say, t = New System.Threading.Thread(AddressOf Me.Sub1), my sub FullRegSearch(ByVal root As RegistryKey, ByVal searchKey As String) that you see in the code has two parameters to be passed. root and searchkey. Im not able to handle this in...
  8. D

    implement multithreading

    Thanks, I had googled myself and got a lot of similar links which explains multi threading. But i already said, they confuse me a lot and i was unable to implement them in my code since im not very experienced in VB.Net.
  9. D

    implement multithreading

    Hi, Please help me introduce multithreading into my code so that the UI is more responsive. Here is what i've done: I have a program which searches the entire registry for a keyword and adds the matching keys/values into a listview. The UI becomes non responsive if i attempt to move the form or...
Back
Top