CF 1 / C# how to invoke with arguments?

  • Thread starter Thread starter James levertopf
  • Start date Start date
J

James levertopf

Hello

Can anyone give me an example with CF 1 / C#, how I can invoke with
arguments?

I can do it in CF 2.0, but not in CF 1

Thanks
 
Invoke what? You mean call Control.Invoke? The only option is to pass an
EventArgs. It's all that is supported.


--

Chris Tacke, Embedded MVP
OpenNETCF Consulting
Giving back to the embedded community
http://community.OpenNETCF.com
 
Chris Tacke is correct.
Invocation some method with parameters on another thread is not supported.
You can do only different workarrounds
 
Back
Top