Search results for query: *

  • Users: frumbert
  • Content: Threads
  • Order by date
  1. F

    invoking on the console thread?

    In a windows forms app, It is my understanding that I can easily invoke on the forms underlying thread like this: Private Delegate Sub DelegateHandlerName(ByVal foo As Object) Sub Main() Dim T As New Thread(AddressOf InvokeDelegate) T.IsBackground = True T.Start() End Sub Sub...
Back
Top