Click here to Skip to main content
15,881,812 members
Home / Discussions / C#
   

C#

 
AnswerRe: Distortion Metafile in Clipboard Pin
Christian Graus22-Oct-09 19:19
protectorChristian Graus22-Oct-09 19:19 
GeneralRe: Distortion Metafile in Clipboard Pin
alexcmk22-Oct-09 21:52
alexcmk22-Oct-09 21:52 
GeneralRe: Distortion Metafile in Clipboard Pin
Christian Graus22-Oct-09 22:06
protectorChristian Graus22-Oct-09 22:06 
GeneralRe: Distortion Metafile in Clipboard Pin
alexcmk26-Oct-09 14:35
alexcmk26-Oct-09 14:35 
GeneralRe: Distortion Metafile in Clipboard Pin
alexcmk27-Oct-09 15:56
alexcmk27-Oct-09 15:56 
Questionmultiple socket connection Pin
Ajithevn22-Oct-09 18:22
Ajithevn22-Oct-09 18:22 
AnswerRe: multiple socket connection Pin
Rick van Woudenberg23-Oct-09 1:07
Rick van Woudenberg23-Oct-09 1:07 
AnswerRe: multiple socket connection Pin
Jimmanuel23-Oct-09 3:16
Jimmanuel23-Oct-09 3:16 
You've shown that you have the code to connect from one machine to another. Just duplicate it. Nothing says that you can have only one socket open at a time so it's fine to do something like this:
open Socket A
open Socket B
. . .
read something from A
. . .
write the data to B
. . .
close A
close B

you don't even need to close the sockets for each operation. You can leave them open for the lifetime of the process if you need to instead of opening them and closing them each time that you need them.

Unfortunately I don't have any links to tutorials on multiple socket programming; i doubt that any really exist. There's no real difference between using one socket and using multiple sockets except that in the former you see things like Socket and in the latter you'll see things like List ( Socket ).




Badger | [badger,badger,badger,badger...]

Question[Message Deleted] Pin
Sebastian T Xavier22-Oct-09 18:05
Sebastian T Xavier22-Oct-09 18:05 
AnswerRe: Need to manipulate an excel file using MS Office SDK Pin
Christian Graus22-Oct-09 18:20
protectorChristian Graus22-Oct-09 18:20 
GeneralRe: Need to manipulate an excel file using MS Office SDK Pin
Sebastian T Xavier22-Oct-09 18:44
Sebastian T Xavier22-Oct-09 18:44 
Questionvoice chat Pin
kevinpiper12322-Oct-09 17:30
kevinpiper12322-Oct-09 17:30 
AnswerRe: voice chat Pin
Christian Graus22-Oct-09 17:34
protectorChristian Graus22-Oct-09 17:34 
QuestionAutonumber and refresh form, C sharp Pin
misCafe22-Oct-09 16:54
misCafe22-Oct-09 16:54 
AnswerRe: Autonumber and refresh form, C sharp Pin
Christian Graus22-Oct-09 17:10
protectorChristian Graus22-Oct-09 17:10 
GeneralRe: Autonumber and refresh form, C sharp Pin
misCafe22-Oct-09 18:04
misCafe22-Oct-09 18:04 
QuestionI am coding in C# on Webform, who can show me the way to send SMS from Webform? thanks! Pin
chungdovn22-Oct-09 11:57
chungdovn22-Oct-09 11:57 
AnswerRe: I am coding in C# on Webform, who can show me the way to send SMS from Webform? thanks! Pin
Not Active22-Oct-09 12:05
mentorNot Active22-Oct-09 12:05 
AnswerRe: I am coding in C# on Webform, who can show me the way to send SMS from Webform? thanks! Pin
Christian Graus22-Oct-09 12:09
protectorChristian Graus22-Oct-09 12:09 
GeneralRe: I am coding in C# on Webform, who can show me the way to send SMS from Webform? thanks! Pin
FyreWyrm22-Oct-09 15:28
FyreWyrm22-Oct-09 15:28 
GeneralRe: I am coding in C# on Webform, who can show me the way to send SMS from Webform? thanks! Pin
Christian Graus22-Oct-09 17:09
protectorChristian Graus22-Oct-09 17:09 
GeneralRe: I am coding in C# on Webform, who can show me the way to send SMS from Webform? thanks! Pin
benjymous22-Oct-09 22:28
benjymous22-Oct-09 22:28 
Questionchange win form name Pin
jashimu22-Oct-09 9:53
jashimu22-Oct-09 9:53 
AnswerRe: change win form name Pin
DaveyM6922-Oct-09 10:15
professionalDaveyM6922-Oct-09 10:15 
GeneralRe: change win form name Pin
jashimu22-Oct-09 10:29
jashimu22-Oct-09 10:29 

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.