Search results for query: *

  1. F

    invoking on the console thread?

    ok thanks - i think. I actually didn't understand too much of that but at least you've given me enough places to start reading.
  2. F

    invoking on the console thread?

    I'm used to windows forms handling and haven't done much console work before, so i'm not sure what the right way of doing this is. I'm also not thread-savvy beyond what I listed above (I know it works and I know what it does, so I use it). I have a socket listening on a background thread (so...
  3. 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