private void Discogs_NewStatusMessage(object sender, NewStatusMessageEventArgs e)
{
textBox1.Text += e.Message() + "\r\n";
}
I have the above event handler on my form and am trying to update a textbox on the form to show messages that occur at different points in code from a class to show progress.
All the messages appear on the textbox, but not until after the class code has finished.
What am I doing wrong?