S
Sam Learner
Hello everyone,
I am developping an application, I create a thread for the application
because it is about to download a large file, and wanted it to do it inside
of a thread... Now, the function I need the thread to call has a
parameter...
How do I call a function with the addressof(..) with a parameter value?
for example:
public function processData(byval data as arraylist) as boolean....
....
end function
dim thrd as new thread(addressof(processData))
thrd.start( )
I have not be able to find a way to pass a value to data...
Please help...
SJ
I am developping an application, I create a thread for the application
because it is about to download a large file, and wanted it to do it inside
of a thread... Now, the function I need the thread to call has a
parameter...
How do I call a function with the addressof(..) with a parameter value?
for example:
public function processData(byval data as arraylist) as boolean....
....
end function
dim thrd as new thread(addressof(processData))
thrd.start( )
I have not be able to find a way to pass a value to data...
Please help...
SJ