













































































































{
if (this.lblist.InvokeRequired)
{
SetTextCallback d = new SetTextCallback(SetText);
this.Invoke(d, new object[] { text });
}
else
{
this.lblist.Items.Add(text);
}
}
private void ThreadProcSafe()
{
this.SetText(s);
}

}
}
}
{
this.SetText(s);
}



