VB9 New thread with multiple parameters - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T19:40:42Zhttp://stackoverflow.com/feeds/question/884476http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/884476/vb9-new-thread-with-multiple-parameters0VB9 New thread with multiple parametersdr. evil2009-05-19T19:04:45Z2009-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#8845111Answer by Boo for VB9 New thread with multiple parametersBoo2009-05-19T19:10:01Z2009-05-19T19:10:01Z<p>Nope. Nothing new in VB9.</p>
http://stackoverflow.com/questions/884476/vb9-new-thread-with-multiple-parameters/884520#8845200Answer by hypoxide for VB9 New thread with multiple parametershypoxide2009-05-19T19:13:18Z2009-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#8845221Answer by Dario for VB9 New thread with multiple parametersDario2009-05-19T19:14:04Z2009-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#18742040Answer by Droid 73 for VB9 New thread with multiple parametersDroid 732009-12-09T14:20:34Z2009-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. – 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>