Click here to Skip to main content
15,899,825 members
Home / Discussions / C#
   

C#

 
GeneralRe: Image position in other image c# ? Pin
sodevrom19-Sep-09 14:06
sodevrom19-Sep-09 14:06 
GeneralRe: Image position in other image c# ? Pin
Dave Kreskowiak19-Sep-09 14:13
mveDave Kreskowiak19-Sep-09 14:13 
GeneralRe: Image position in other image c# ? Pin
Alan Balkany21-Sep-09 10:12
Alan Balkany21-Sep-09 10:12 
AnswerRe: Image position in other image c# ? Pin
Albond22-May-10 10:27
Albond22-May-10 10:27 
QuestionHow to monitor key pressed? Pin
p3rson19-Sep-09 11:06
p3rson19-Sep-09 11:06 
AnswerRe: How to monitor key pressed? Pin
Christian Graus19-Sep-09 11:19
protectorChristian Graus19-Sep-09 11:19 
GeneralRe: How to monitor key pressed? Pin
p3rson19-Sep-09 11:40
p3rson19-Sep-09 11:40 
GeneralRe: How to monitor key pressed? Pin
Christian Graus19-Sep-09 11:45
protectorChristian Graus19-Sep-09 11:45 
QuestionMouting Drive through Serial Communication Pin
Paul Krueger19-Sep-09 10:49
Paul Krueger19-Sep-09 10:49 
AnswerRe: Mouting Drive through Serial Communication Pin
Luc Pattyn19-Sep-09 10:59
sitebuilderLuc Pattyn19-Sep-09 10:59 
GeneralRe: Mouting Drive through Serial Communication Pin
Sindicoro19-Sep-09 20:36
Sindicoro19-Sep-09 20:36 
GeneralRe: Mouting Drive through Serial Communication Pin
Luc Pattyn20-Sep-09 2:29
sitebuilderLuc Pattyn20-Sep-09 2:29 
JokeRe: Mouting Drive through Serial Communication Pin
Sindicoro20-Sep-09 7:50
Sindicoro20-Sep-09 7:50 
AnswerRe: Mouting Drive through Serial Communication Pin
Sindicoro19-Sep-09 20:34
Sindicoro19-Sep-09 20:34 
QuestionC# question regarding controls (textbox) and events Pin
gjx_junxian198919-Sep-09 7:20
gjx_junxian198919-Sep-09 7:20 
AnswerRe: C# question regarding controls (textbox) and events Pin
Richard MacCutchan19-Sep-09 7:32
mveRichard MacCutchan19-Sep-09 7:32 
QuestionConfigure Data Source Pin
AndreFratelli19-Sep-09 6:54
AndreFratelli19-Sep-09 6:54 
AnswerRe: Configure Data Source Pin
AndreFratelli19-Sep-09 8:36
AndreFratelli19-Sep-09 8:36 
QuestionPolyline or curved progress bar Pin
LinCorJDE19-Sep-09 6:47
LinCorJDE19-Sep-09 6:47 
AnswerRe: Polyline or curved progress bar Pin
dan!sh 19-Sep-09 7:40
professional dan!sh 19-Sep-09 7:40 
AnswerRe: Polyline or curved progress bar Pin
Henry Minute19-Sep-09 7:46
Henry Minute19-Sep-09 7:46 
GeneralRe: Polyline or curved progress bar Pin
LinCorJDE19-Sep-09 10:41
LinCorJDE19-Sep-09 10:41 
Questionconsume webservice to copy data from crm. Pin
saahil.mohammed19-Sep-09 6:11
saahil.mohammed19-Sep-09 6:11 
AnswerRe: consume webservice to copy data from crm. Pin
Christian Graus19-Sep-09 11:30
protectorChristian Graus19-Sep-09 11:30 
Questiontcp communication between PDA and laptop Pin
hande5419-Sep-09 5:32
hande5419-Sep-09 5:32 
Hi!
I am new to c# mobile application programming subject. I want to implement simple client(on PDA)/server(on Laptop) application that converts lowercase letters that are sent by the client to uppercase letters and sends back to the client by the server.


socketForServer = new TcpClient();
socketForServer.Connect("ip address of laptop",port number);
textBox1.Text = "connected ";

socketForServer.SendTimeout = 50000;

networkStream = socketForServer.GetStream();
streamReader = new StreamReader(networkStream);
streamWriter = new StreamWriter(networkStream);

according to the given code the network stream stays null so I can not read or write anything to/from the server. could you help me how can I solve this problem ? or could you recommend me better solutions ?

thanks a lot.

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.