D
Devin
Obviously there is a way to do this but I have been unsuccessful in my
searching. I'm not sure what exactly I should be searching for.
Sub handleThread()
Me.Invoke(New EventHandler(AddressOf login))
End Sub
Is there a way I can get it so login returns a value?
I would expect this to work:
Sub handleThread()
dim val as integer
val = Me.Invoke(New EventHandler(AddressOf login))
End Sub
function login()
return 8
end function
I'm not sure how to do it or if I have been doing something wrong from
the get-go. Advise?
searching. I'm not sure what exactly I should be searching for.
Sub handleThread()
Me.Invoke(New EventHandler(AddressOf login))
End Sub
Is there a way I can get it so login returns a value?
I would expect this to work:
Sub handleThread()
dim val as integer
val = Me.Invoke(New EventHandler(AddressOf login))
End Sub
function login()
return 8
end function
I'm not sure how to do it or if I have been doing something wrong from
the get-go. Advise?