Another newbie issue

  • Thread starter Thread starter pdrising
  • Start date Start date
P

pdrising

I want to thank Morten Wennevik for helping me work out an issue.

Another issue has arisen. I have been able to assign a label a string
value but the data displays in this manner:

System.Windows.Forms.TextBox, Text: Paul

I'm thrilled to be able to pass data back and forth, but how do I get
rid of everything before Paul.
 
I want to thank Morten Wennevik for helping me work out an issue.

Another issue has arisen. I have been able to assign a label a string
value but the data displays in this manner:

System.Windows.Forms.TextBox, Text: Paul

I'm thrilled to be able to pass data back and forth, but how do I get
rid of everything before Paul.


Hi,

I don't know what language you use to program but I think you did something
like this:


MyLabel.Text = MyTextBox.ToString;

What you should do is this:

MyLabel.Text = MyTextBox.Text;


But can you post the code you have problems with?

Best Regards,

Jeroen Vandezande
 
Back
Top