Hi i need a filesystem watcher in a process plugin... and its start with
uses a
but his is not possible
it means at compiling:
how can i get the filesystem watcher in a plugin?
thank you for any help
MoPhat
public class StandbyWatcher : IPlugin, ISetupForm
{
uses a
Code:
private System.IO.FileSystemWatcher fileSystemWatcher1;
but his is not possible
Code:
this.fileSystemWatcher1.SynchronizingObject = this;
it means at compiling:
Error 1 Cannot implicitly convert type 'ProcessPlugins.StandbyWatcher.StandbyWatcher' to 'System.ComponentModel.ISynchronizeInvoke'. An explicit conversion exists (are you missing a cast?) C:\...\StandbyWatcher.cs 105 60 StandbyWatcher
how can i get the filesystem watcher in a plugin?
thank you for any help
MoPhat