Rez Extractor Error
im trying to make a rez extractor
But this code gives error
Thread is underlined
Thread(New ThreadStart(AddressOf threadd.Extract)).Start()
But this code gives error
Code:
Private Sub ExtractRezFiles(ByVal FileName As String)
Dim threadd As New ExtractThread With { _
.FileName = FileName _
}
Thread(New ThreadStart(AddressOf threadd.Extract)).Start()
End Sub
Thread(New ThreadStart(AddressOf threadd.Extract)).Start()
Code:
Error : Error 1 'Thread' is a type and cannot be used as an expression. C:\Users\Deicide\documents\visual studio 2010\Projects\WindowsApplication1\WindowsApplication1\Form1.vb 17 9 WindowsApplication1
