Re: [DOTNET] Open file

2002-05-10 Thread Willy Denoyette
No, but Word, which is an advanced application, neither doesn't support shared write access ;-). Willy. - Original Message - From: "Andreas Häber" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 10, 2002 11:26 AM Subject: Re: [DOTNET] Open fil

Re: [DOTNET] Open file

2002-05-10 Thread Andreas Häber
Friday, May 10, 2002 10:47 AM Subject: Re: [DOTNET] Open file > The problem is with Notepad that opens the file in exclusive mode when saving. > Simply put there is no (easy) way to share a file with notepad, when you open a file in notepad, the file contents is > read into an interna

Re: [DOTNET] Open file

2002-05-10 Thread Pierre Greborio
From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf Of Willy Denoyette Sent: Friday, May 10, 2002 10:48 AM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] Open file The problem is with Notepad that opens the file in exclusive mode when saving. Simply put there is no (easy) way to share a file

Re: [DOTNET] Open file

2002-05-10 Thread Willy Denoyette
> To: <[EMAIL PROTECTED]> Sent: Friday, May 10, 2002 8:31 AM Subject: [DOTNET] Open file > Hi, > How to open a file in a non exclusive manner ? I need to read a file > that is edited (and saved) with notepad at the same time. The following > construct does'n work: &g

[DOTNET] Open file

2002-05-09 Thread Pierre Greborio
Hi, How to open a file in a non exclusive manner ? I need to read a file that is edited (and saved) with notepad at the same time. The following construct does'n work: fs = File.Open(logFile, FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite); Thank you Pierre ---