Invoke() as I understand (with my Win32 API programming background) posts message to the message queue associated with a window (i.e. a form).
So instead of invoking on txtOutput, try the form object:
Code:
frmObject.BeginInvoke(new InvokeDelegate(AddressOf updateText))
Leave a comment: