Click here to Skip to main content
15,885,182 members
Home / Discussions / C#
   

C#

 
AnswerRe: File Open Status/Access Pin
Giorgi Dalakishvili19-Jun-07 7:27
mentorGiorgi Dalakishvili19-Jun-07 7:27 
GeneralRe: File Open Status/Access Pin
RussBus19-Jun-07 7:32
RussBus19-Jun-07 7:32 
GeneralRe: File Open Status/Access Pin
RussBus19-Jun-07 10:03
RussBus19-Jun-07 10:03 
GeneralRe: File Open Status/Access Pin
Giorgi Dalakishvili19-Jun-07 10:27
mentorGiorgi Dalakishvili19-Jun-07 10:27 
GeneralRe: File Open Status/Access Pin
RussBus19-Jun-07 10:47
RussBus19-Jun-07 10:47 
GeneralRe: File Open Status/Access Pin
Abisodun19-Jun-07 11:30
Abisodun19-Jun-07 11:30 
GeneralRe: File Open Status/Access Pin
RussBus19-Jun-07 11:42
RussBus19-Jun-07 11:42 
GeneralRe: File Open Status/Access Pin
RussBus19-Jun-07 11:53
RussBus19-Jun-07 11:53 
This is my latest code:

try
{
m_oZipFile = new ZipFile(new FileStream(l_szLocation, FileMode.Open, FileAccess.ReadWrite, FileShare.Read));
}

catch
{
MessageBox.Show("FILE IS ALREADY OPEN", "READ ACCESS ONLY", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
m_oZipFile = new ZipFile(new FileStream(l_szLocation, FileMode.Open, FileAccess.Read, FileShare.Read));
}

I am getting the following error:
The process cannot access the file 'C:\EncryptionTesting\DecryptInput\test-dispatch.config.rld' because it is being used by another process.
GeneralRe: File Open Status/Access Pin
Abisodun19-Jun-07 14:12
Abisodun19-Jun-07 14:12 
Questionhow to call the dll writed by c in c# Pin
anuo0619-Jun-07 6:20
anuo0619-Jun-07 6:20 
AnswerRe: how to call the dll writed by c in c# Pin
Giorgi Dalakishvili19-Jun-07 6:55
mentorGiorgi Dalakishvili19-Jun-07 6:55 
AnswerRe: how to call the dll writed by c in c# Pin
Luc Pattyn19-Jun-07 7:02
sitebuilderLuc Pattyn19-Jun-07 7:02 
GeneralRe: how to call the dll writed by c in c# Pin
anuo0619-Jun-07 8:04
anuo0619-Jun-07 8:04 
GeneralRe: how to call the dll writed by c in c# Pin
Luc Pattyn19-Jun-07 12:18
sitebuilderLuc Pattyn19-Jun-07 12:18 
GeneralRe: how to call the dll writed by c in c# Pin
anuo0619-Jun-07 19:04
anuo0619-Jun-07 19:04 
GeneralRe: how to call the dll writed by c in c# Pin
Luc Pattyn20-Jun-07 1:26
sitebuilderLuc Pattyn20-Jun-07 1:26 
AnswerRe: how to call the dll writed by c in c# Pin
anuo0619-Jun-07 8:10
anuo0619-Jun-07 8:10 
AnswerRe: how to call the dll writed by c in c# Pin
anuo0619-Jun-07 8:13
anuo0619-Jun-07 8:13 
QuestionNeed GUI help, to child or not child? Pin
Skcheng19-Jun-07 6:07
Skcheng19-Jun-07 6:07 
AnswerRe: Need GUI help, to child or not child? Pin
Luc Pattyn19-Jun-07 6:16
sitebuilderLuc Pattyn19-Jun-07 6:16 
QuestionRe: Need GUI help, to child or not child? Pin
Skcheng19-Jun-07 6:59
Skcheng19-Jun-07 6:59 
AnswerRe: Need GUI help, to child or not child? Pin
Luc Pattyn19-Jun-07 7:39
sitebuilderLuc Pattyn19-Jun-07 7:39 
GeneralRe: Need GUI help, to child or not child? Pin
Skcheng19-Jun-07 8:11
Skcheng19-Jun-07 8:11 
AnswerRe: Need GUI help, to child or not child? Pin
Jon Hulatt19-Jun-07 10:18
Jon Hulatt19-Jun-07 10:18 
Questionattach serial command to button [modified] Pin
dirtylarry19-Jun-07 6:06
dirtylarry19-Jun-07 6:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.