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

C#

 
AnswerRe: "pipe" messages to a windows textbox (or other windows pane) Pin
Luc Pattyn19-Apr-07 7:53
sitebuilderLuc Pattyn19-Apr-07 7:53 
QuestionFile transfer Pin
Niiiissssshhhhhuuuuu19-Apr-07 3:57
Niiiissssshhhhhuuuuu19-Apr-07 3:57 
AnswerRe: File transfer Pin
Dave Kreskowiak19-Apr-07 4:30
mveDave Kreskowiak19-Apr-07 4:30 
AnswerRe: File transfer Pin
Judah Gabriel Himango19-Apr-07 4:46
sponsorJudah Gabriel Himango19-Apr-07 4:46 
AnswerRe: File transfer Pin
pbraun19-Apr-07 5:04
pbraun19-Apr-07 5:04 
GeneralRe: File transfer Pin
Dave Kreskowiak19-Apr-07 5:07
mveDave Kreskowiak19-Apr-07 5:07 
GeneralRe: File transfer Pin
Niiiissssshhhhhuuuuu19-Apr-07 17:44
Niiiissssshhhhhuuuuu19-Apr-07 17:44 
GeneralRe: File transfer Pin
Niiiissssshhhhhuuuuu19-Apr-07 17:46
Niiiissssshhhhhuuuuu19-Apr-07 17:46 
sorry I forgot to write but The above is sending data ....

stream=client.GetStream();

reader = new System.IO.StreamReader(stream);
filename = reader.ReadLine();
length = long.Parse(reader.ReadLine());


byte [] buffer = new byte[length];
stream.Read(buffer, 0,(int) length);

fwriter = new System.IO.FileStream(@"d:\new.jpg", System.IO.FileMode.CreateNew);
fwriter.Write(buffer, 0,(int) length);
MessageBox.Show("write to file done");


Regards Rose | [Rose] ,

nishu
QuestionExport Single MS Access Data Table Pin
polishprogrammer19-Apr-07 3:45
polishprogrammer19-Apr-07 3:45 
Questionwho can teach me hacker id games..?? Pin
katak9119-Apr-07 3:35
katak9119-Apr-07 3:35 
AnswerRe: who can teach me hacker id games..?? Pin
Dave Kreskowiak19-Apr-07 4:15
mveDave Kreskowiak19-Apr-07 4:15 
AnswerRe: who can teach me hacker id games..?? Pin
Colin Angus Mackay19-Apr-07 5:14
Colin Angus Mackay19-Apr-07 5:14 
QuestionMicrosoft Interop Office Word Pin
g1b19-Apr-07 3:24
g1b19-Apr-07 3:24 
AnswerRe: Microsoft Interop Office Word Pin
kubben19-Apr-07 6:26
kubben19-Apr-07 6:26 
GeneralRe: Microsoft Interop Office Word Pin
g1b19-Apr-07 7:16
g1b19-Apr-07 7:16 
GeneralRe: Microsoft Interop Office Word Pin
kubben19-Apr-07 7:43
kubben19-Apr-07 7:43 
QuestionImplementing "CANCEL" action while copying large files Pin
manustone19-Apr-07 3:04
manustone19-Apr-07 3:04 
AnswerRe: Implementing "CANCEL" action while copying large files Pin
manustone19-Apr-07 6:31
manustone19-Apr-07 6:31 
QuestionCopying a file from windows share Pin
clint198219-Apr-07 3:04
clint198219-Apr-07 3:04 
AnswerRe: Copying a file from windows share Pin
kubben19-Apr-07 6:27
kubben19-Apr-07 6:27 
QuestionExceptions in catch blocks... Pin
Shy Agam19-Apr-07 2:39
Shy Agam19-Apr-07 2:39 
AnswerRe: Exceptions in catch blocks... Pin
Colin Angus Mackay19-Apr-07 3:01
Colin Angus Mackay19-Apr-07 3:01 
GeneralRe: Exceptions in catch blocks... Pin
Shy Agam19-Apr-07 3:06
Shy Agam19-Apr-07 3:06 
GeneralRe: Exceptions in catch blocks... Pin
Dan Neely19-Apr-07 3:11
Dan Neely19-Apr-07 3:11 
QuestionBuilding Desktop apps with C# and WinForms Pin
Jerry Evans19-Apr-07 2:33
Jerry Evans19-Apr-07 2:33 

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.