G
Guest
Hi!
How i pass variables into threads?
For example:
Dim t1 As New Thread(AddressOf CfgInject)
Dim t2 As New Thread(AddressOf CfgInject)
t1.start
t2.start
Cfginject, can be called n times, i need to now inside the function what is
the current thread...
How i pass variables into threads?
For example:
Dim t1 As New Thread(AddressOf CfgInject)
Dim t2 As New Thread(AddressOf CfgInject)
t1.start
t2.start
Cfginject, can be called n times, i need to now inside the function what is
the current thread...