VB9 New thread with multiple parameters - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T19:40:42Z http://stackoverflow.com/feeds/question/884476 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/884476/vb9-new-thread-with-multiple-parameters 0 VB9 New thread with multiple parameters dr. evil 2009-05-19T19:04:45Z 2009-12-09T14:20:34Z <p>I'm trying to create a new thread and send multiple parameters as well as a delegate to report back. </p> <p>In VB8 I always hate to do this because it requires either introducing a new class/structure or a delegate.</p> <p>Is there any better way to do this in VB9 ?</p> <p>I'm looking for a solution something like this :</p> <pre><code> Dim Th As New Thread(AddressOf DoStuff) Th.Start(param1, param2, AddressOf ReportStatus) </code></pre> <p>I'm not good with LINQ and Lambda, so I'm hopping that someone will show me some cool trick to do this.</p> http://stackoverflow.com/questions/884476/vb9-new-thread-with-multiple-parameters/884511#884511 1 Answer by Boo for VB9 New thread with multiple parameters Boo 2009-05-19T19:10:01Z 2009-05-19T19:10:01Z <p>Nope. Nothing new in VB9.</p> http://stackoverflow.com/questions/884476/vb9-new-thread-with-multiple-parameters/884520#884520 0 Answer by hypoxide for VB9 New thread with multiple parameters hypoxide 2009-05-19T19:13:18Z 2009-05-19T19:13:18Z <p>Maybe you're already familiar with this, but depending on your application, using ThreadPool can be useful and easy. I don't know much about sending parameters with ThreadPool.QueueUserWorkItem, but <a href="http://thevalerios.net/matt/2008/05/use-threadpoolqueueuserworkitem-with-anonymous-types/" rel="nofollow">this</a> page seems to give a good tutorial involving lambda expressions and anonymous types. It's in C# but I'm sure it would translate to VB.</p> http://stackoverflow.com/questions/884476/vb9-new-thread-with-multiple-parameters/884522#884522 1 Answer by Dario for VB9 New thread with multiple parameters Dario 2009-05-19T19:14:04Z 2009-05-19T19:14:04Z <p>Hi,</p> <p>You <em>could</em> pass an anonymous function to the thread constructor.</p> <pre><code>Dim Th = New Thread(Sub() DoStuff(param1, param2, AddressOf ReportStatus)) </code></pre> <p>but unfortunately there are no anonymous subs in VB9 (they will be in VB10 - In C# this should already work).</p> http://stackoverflow.com/questions/884476/vb9-new-thread-with-multiple-parameters/1874204#1874204 0 Answer by Droid 73 for VB9 New thread with multiple parameters Droid 73 2009-12-09T14:20:34Z 2009-12-09T14:20:34Z <p>"Shame on MS? It's people like you that give MS a bad name. Microsoft has consistantly improved the VB and C# languages with every single release. Shame on YOU for not giving credit where credit is deserved. &#8211; Boo"</p> <p>...That's a masterpiece. MS have more important things (like giving away their development tools for free to those who want to debvelop MS apps for the MS OS) than trivial nonsense like this. MS would revel in benefits from PD tools to develop software for THEIR platform. Bad press is the least of MS's worries, irrespective of the alleged rubbish they release.</p>