Hey guys,
I've got a multithreaded application done in C# but the label on one of my forms won't update! It doesn't do anything
public IndividualPCSpec(AllKnownDevicesFrm parent)
{
m_Parent = parent;
InitializeComponent();
m_IPAddressLbl.Text = "HELLO";
}
public void showInformation(ComputerHardware dto)
{
m_IPAddressLbl.Text = "HELLO WORLD";
this.Refresh();
this.m_IPAddressLbl.Refresh();
Application.DoEvents();
}
I don't get why.... it doesn't even get set to "Hello" :S