Click here to Skip to main content
15,902,445 members
Home / Discussions / C#
   

C#

 
QuestionSplash Screen In C# ? :S Pin
Saad Shuja1-Sep-09 23:50
Saad Shuja1-Sep-09 23:50 
AnswerRe: Splash Screen In C# ? :S Pin
Programm3r2-Sep-09 0:07
Programm3r2-Sep-09 0:07 
AnswerRe: Splash Screen In C# ? :S Pin
stancrm2-Sep-09 0:33
stancrm2-Sep-09 0:33 
AnswerRe: Splash Screen In C# ? :S Pin
Swetha Srinivasan3-Sep-09 20:04
Swetha Srinivasan3-Sep-09 20:04 
GeneralRe: Splash Screen In C# ? :S Pin
Saad Shuja3-Sep-09 20:53
Saad Shuja3-Sep-09 20:53 
QuestionDataGridView: Using different fonts in single DataGridViewTextBoxCell Pin
cuker11-Sep-09 23:28
cuker11-Sep-09 23:28 
AnswerRe: DataGridView: Using different fonts in single DataGridViewTextBoxCell Pin
Eddy Vluggen2-Sep-09 1:04
professionalEddy Vluggen2-Sep-09 1:04 
GeneralRe: DataGridView: Using different fonts in single DataGridViewTextBoxCell Pin
cuker16-Sep-09 20:38
cuker16-Sep-09 20:38 
GeneralRe: DataGridView: Using different fonts in single DataGridViewTextBoxCell Pin
Eddy Vluggen6-Sep-09 20:51
professionalEddy Vluggen6-Sep-09 20:51 
Questionhow to show the data in datagrid with dropdownbox Pin
Manish791-Sep-09 23:27
Manish791-Sep-09 23:27 
AnswerRe: how to show the data in datagrid with dropdownbox Pin
Jacobb Michael1-Sep-09 23:48
Jacobb Michael1-Sep-09 23:48 
GeneralRe: how to show the data in datagrid with dropdownbox Pin
Manish792-Sep-09 0:07
Manish792-Sep-09 0:07 
GeneralRe: how to show the data in datagrid with dropdownbox Pin
Jacobb Michael2-Sep-09 5:41
Jacobb Michael2-Sep-09 5:41 
QuestionPlaying for medias using AxMediaPlayer [modified] Pin
Yonathan11111-Sep-09 23:19
professionalYonathan11111-Sep-09 23:19 
AnswerRe: axmediaplayer Pin
stancrm1-Sep-09 23:36
stancrm1-Sep-09 23:36 
QuestionImage Changed in PictureBox Event Question Pin
Programm3r1-Sep-09 23:19
Programm3r1-Sep-09 23:19 
AnswerRe: Image Changed in PictureBox Event Question Pin
Programm3r1-Sep-09 23:28
Programm3r1-Sep-09 23:28 
GeneralRe: Image Changed in PictureBox Event Question Pin
rsbiz20048-Sep-09 23:19
rsbiz20048-Sep-09 23:19 
QuestionPaste Event Pin
cjb1101-Sep-09 21:48
cjb1101-Sep-09 21:48 
AnswerRe: Paste Event Pin
Hristo-Bojilov1-Sep-09 22:25
Hristo-Bojilov1-Sep-09 22:25 
GeneralRe: Paste Event Pin
cjb1102-Sep-09 6:53
cjb1102-Sep-09 6:53 
GeneralRe: Paste Event Pin
Hristo-Bojilov2-Sep-09 9:43
Hristo-Bojilov2-Sep-09 9:43 
GeneralRe: Paste Event Pin
cjb1102-Sep-09 10:40
cjb1102-Sep-09 10:40 
AnswerRe: Paste Event Pin
Jacobb Michael2-Sep-09 6:50
Jacobb Michael2-Sep-09 6:50 
QuestionThe stream does not support concurrent I/O ReadWrite operations Pin
mbyamukama1-Sep-09 20:40
mbyamukama1-Sep-09 20:40 
I am writing a multithreaded application. A download manager to be precise. When downloading one file, everything is quite fine. The thread starts, downloads the file and terminates as expected. When i start another download thread, however, when the first is still running, i get the error above 9in the subject). The problem is on this line of code which is meant to create a new filestream and write the retrieved data to the stream.
strLocal = new FileStream(Application.StartupPath+"\\"+SaveAsTextBox.Text,FileMode.Create, FileAccess.Write,FileShare.ReadWrite);

The download method is called Download(), is void and does not take any arguments.
A thread is started using
DownloadThread[j] = new Thread(new ThreadStart(Download));<br />
DownloadThread[j].Start();



where j has a value incremented per click, so as to start a new thread each time.
What i do not understand is that the exception seems to suggest that 2 write operations are requesting to be handled by the same stream, yet it is actually a different stream because the user changes the SaveAsTextBox.Text on every new download.
Any answers?

BHM

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.