mike-wigan Posted October 18, 2005 Posted October 18, 2005 i am trying to understand a bit of code can someone please explain in detail what this dose? Dim NewThreadStart1 As New ThreadStart(AddressOf Me.ShowFilesInFolder) Dim Newthread As New Thread(NewThreadStart1) Newthread.Start() if i understand this i might beable to carry on with what i am doing Quote
IngisKahn Posted October 18, 2005 Posted October 18, 2005 This dose of code starts a new thread, running the function Me.ShowFilesInFolder at the same time that other code is executing. <Rant Missing="Shift Space Period Dictionary" /> Quote "Who is John Galt?"
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.