Threading

  • Thread starter Thread starter Adriano
  • Start date Start date
A

Adriano

hello,

how can I make "timer" run in a separate thread using vb.net 2005???

thanks in advance
Adriano
 
Adriano said:
how can I make "timer" run in a separate thread using vb.net 2005???

System.Threading.Timer

When you get callbacks, they'll be coming in on a different thread.
 
Hello Chris, thanks for the answer!

can you please give an example? I'm not an advaned programmer/

thanks
Adriano
 
Adriano said:
Hello Chris, thanks for the answer!

can you please give an example? I'm not an advaned programmer/

thanks
Adriano

Adriano,

The MSDN documentation has an example. Also, the System.Timers.Timer
will execute the event handler in a separate thread.

Brian
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Load html (Newbie) 4
Timer Control query 3
Sockets and Byte Array 1
GDI+ question 2
Help sending hex data through SerialPort 3
Open form in a separate thread 3
Sending mail 4
Help calculate checksum (newbie) 3

Back
Top