Search Results

0
votes

Cross-thread operation not valid: Control accessed from a thread other than the thread it was created on.

I have had this problem with the FileSystemWatcher and found that the following code solved the problem: fsw.SynchronizingObject = this The control then uses the curren …