How do you get the File System watcher to watch a path selected at run time e.g. the user can enter C:\Users\User\Desktop\
I have tried using a text box and a button which on click sets the path
fileWatcher.Path = Convert.ToString(txtFileWatcherPath);
This builds and runs but any path entered crashes the program (once the button is clicked)
Please note at this early stage am not concerned with error handling.

txtFileWatcherPathis a textbox control, you should be doing this instead:fileWatcher.Path = txtFileWatcherPath.Text;– Icarus Dec 19 '11 at 15:26txtFileWatcherPathmust be a textbox control, given thetxtprefix. – Cody Gray Dec 19 '11 at 15:29...). At least, that's how it should be designed; that's the standard Windows convention. – Cody Gray Dec 19 '11 at 15:34