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

C#

 
AnswerRe: Blackhole string! Pin
musefan12-Mar-09 2:54
musefan12-Mar-09 2:54 
GeneralRe: Blackhole string! Pin
musefan12-Mar-09 3:09
musefan12-Mar-09 3:09 
GeneralRe: Blackhole string! Pin
Member 349379912-Mar-09 3:11
Member 349379912-Mar-09 3:11 
GeneralRe: Blackhole string! Pin
musefan12-Mar-09 3:13
musefan12-Mar-09 3:13 
AnswerRe: Blackhole string! Pin
Luc Pattyn12-Mar-09 3:12
sitebuilderLuc Pattyn12-Mar-09 3:12 
GeneralRe: Blackhole string! Pin
Member 349379912-Mar-09 3:20
Member 349379912-Mar-09 3:20 
GeneralRe: Blackhole string! Pin
Luc Pattyn12-Mar-09 4:26
sitebuilderLuc Pattyn12-Mar-09 4:26 
AnswerRe: Blackhole string! Pin
Nagy Vilmos12-Mar-09 3:19
professionalNagy Vilmos12-Mar-09 3:19 
Running it within the IDE, put some breakpoints in on the entry to each of your methods.
Step through and see what the values are that are being received.
Maybe instead of:

chatView.Text = chatView.Text + Environment.NewLine + myName + ": "+ myText;


Try:

String newText = chatView.Text + Environment.NewLine + myName + ": "+ myText;
chatView.Text = newText;


Then after newText has been created you can be sure the correct value is going ito the RHS of the expession.
This is debug problem, you just need to establish the values at every step of the process.



Panic, Chaos, Destruction.
My work here is done.

GeneralRe: Blackhole string! Pin
Member 349379912-Mar-09 3:30
Member 349379912-Mar-09 3:30 
GeneralRe: Blackhole string! Pin
Nagy Vilmos12-Mar-09 3:35
professionalNagy Vilmos12-Mar-09 3:35 
GeneralRe: Blackhole string! Pin
Member 349379912-Mar-09 3:36
Member 349379912-Mar-09 3:36 
GeneralRe: Blackhole string! Pin
Nagy Vilmos12-Mar-09 3:42
professionalNagy Vilmos12-Mar-09 3:42 
GeneralRe: Blackhole string! Pin
Member 349379912-Mar-09 3:45
Member 349379912-Mar-09 3:45 
QuestionMulti-Threading Question Pin
Programm3r12-Mar-09 2:01
Programm3r12-Mar-09 2:01 
AnswerRe: Multi-Threading Question Pin
musefan12-Mar-09 2:11
musefan12-Mar-09 2:11 
GeneralRe: Multi-Threading Question Pin
Programm3r12-Mar-09 2:42
Programm3r12-Mar-09 2:42 
GeneralRe: Multi-Threading Question Pin
Member 349379912-Mar-09 2:44
Member 349379912-Mar-09 2:44 
GeneralRe: Multi-Threading Question Pin
musefan12-Mar-09 2:47
musefan12-Mar-09 2:47 
QuestionRe: Multi-Threading Question Pin
Programm3r12-Mar-09 2:59
Programm3r12-Mar-09 2:59 
AnswerRe: Multi-Threading Question Pin
musefan12-Mar-09 3:08
musefan12-Mar-09 3:08 
GeneralRe: Multi-Threading Question Pin
Programm3r12-Mar-09 3:28
Programm3r12-Mar-09 3:28 
AnswerRe: Multi-Threading Question Pin
Luc Pattyn12-Mar-09 3:19
sitebuilderLuc Pattyn12-Mar-09 3:19 
GeneralRe: Multi-Threading Question Pin
Programm3r12-Mar-09 4:16
Programm3r12-Mar-09 4:16 
GeneralRe: Multi-Threading Question Pin
Luc Pattyn12-Mar-09 4:28
sitebuilderLuc Pattyn12-Mar-09 4:28 
QuestionMethod Error [modified] Pin
Goobashi12-Mar-09 1:34
Goobashi12-Mar-09 1:34 

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.