S
Sagaert Johan
Hi
I created a TCPIP class that implements async callbacks , works good in full
framework, but in CF the delegates seem to block my app.
The callbacks (run under a different thread ID since the are async) are
blocking my app.
the toolbar is onder control of the main form thread ,so i can not change
properties of it from another thread.
How to sove this ?
Strange ,if i create the same application onder the full framework, then
there is no problem.
private void OnConnected(object sender, System.EventArgs e,string ip,string
port)
{
toolBar1.Buttons[3].ImageIndex=1;
}
Johan
I created a TCPIP class that implements async callbacks , works good in full
framework, but in CF the delegates seem to block my app.
The callbacks (run under a different thread ID since the are async) are
blocking my app.
the toolbar is onder control of the main form thread ,so i can not change
properties of it from another thread.
How to sove this ?
Strange ,if i create the same application onder the full framework, then
there is no problem.
private void OnConnected(object sender, System.EventArgs e,string ip,string
port)
{
toolBar1.Buttons[3].ImageIndex=1;
}
Johan