outllook addin threading issues

Posted by Sanju on Stack Overflow See other posts from Stack Overflow or by Sanju
Published on 2010-05-28T10:02:55Z Indexed on 2010/05/28 13:01 UTC
Read the original article Hit count: 155

Filed under:
|
|
|

hi i am having threading issues in my vsto project

    // code for function
var threadUpdate = new Thread(_fun){IsBackgroud = true};
threadUpdate.Start();
threadList.add(threadUpdate);

// code for progressbar
Progressbar pb = new Prgressbar(){Title =@"abc"}
pb.Show()

it was working in perfect condition before i add wpf progress bar. as the plugin has been running as single thread

can i ask how can running multi threading in outlook

thanks

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET