Changing Path property on FileSystemWatcher

  • Thread starter Thread starter Mike Johnson
  • Start date Start date
M

Mike Johnson

I have a Form named Form1 which I added a FileSystemWatcher component, I
need to change the Path property on this component. I've read the Article
Working with forms which I got from this News group, but I don't understand
it well enough to get this to work. I know I'm missing something but it
eludes me. Please Help. Thanks
 
Hi Mike,

There where no answers, probably we miss something in your question, show us
a piece of code?

Cor
 
* "Mike Johnson said:
I have a Form named Form1 which I added a FileSystemWatcher component, I
need to change the Path property on this component. I've read the Article
Working with forms which I got from this News group, but I don't understand
it well enough to get this to work.

Did you try this?

\\\
Me.FileSystemWatcher1.Path = "C:\Foo"
///
 
Back
Top