Landmarkwings
New member
- Jan 29, 2016
- 2
I currently have a problem when I try to update my Text Box. I'm able to update it once but not again.
For example in my Start method:
But I'm trying to add text to it every time a new message comes up.
Example of that is this:
It will not show anything at all.
Just want to say, I'm used to using Java. I was stuck with an API that only works for c#.
For example in my Start method:
Code:
//This will work
public void Start()
{
richTextBox1.Text = "Chat Logs:" + Environment.NewLine;
richTextBox1.AppendText("Test" + Environment.NewLine);
}
Example of that is this:
Code:
//Does not work?
public void Logs(String Chat)
{
richTextBox1.AppendText(Chat + Environment.NewLine);
}
Just want to say, I'm used to using Java. I was stuck with an API that only works for c#.