Developer, Former MVP, now at Microsoft - Best of 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013
' No need to type (s As Object, e As EventArgs)Sub Button1_Click() Handles Button1.Click Dim t = New Thread(AddressOf MyWorkerMethod) t.Start()End SubSub MyWorkerMethod() 'No need to type (o As Object) 'Do sth on worker threadEnd Sub