If you can read the file into your app already, why not just spawn a watcher
thread in your app that checks the files last updated property and have the
thread tell your app it needs to refresh its data. This will help you get
the files properties - plenty of threading examples around.
http://www.samspublishing.com/librar...eqNum=179&rl=1
or use a filewatcher that works over the network
http://www.codersource.net/published...g_file_in.aspx
Regards
John Timney (MVP)
"venky" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hello,
>
> I have a C# program in which i need to read the data from the excel
> file which is in network folder. The openign the excel file and reading
> the data everything works fine with Excel class and other objects. Only
> thing is there way to notify my application if the Excel files get
> modified by any other user , if its modified i would know i need to
> pick up the new data from excel file. Can .Net remoting be of any help
> here?
>
> Anyone has any idea let me know .
>