Advertisement
Guest User

nu byyybis

a guest
Feb 21st, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. void Search(object obj)
  2. {
  3.  
  4. try
  5. {
  6. foreach (string file in txtFiles)
  7. {
  8. if (file.Contains(textBox1.Text))
  9. {
  10. this.Invoke((MethodInvoker)delegate
  11. {
  12. rastas = file;
  13.  
  14. });
  15.  
  16. }
  17. i++;
  18. }
  19. }
  20. catch (UnauthorizedAccessException uAEx)
  21. {
  22. MessageBox.Show("Nu negalima kai kur ieit. Access denied.");
  23. }
  24.  
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement