Thread ID

C

Chad

Is there a way to retrieve the thread ID in Visual
Basic.NET after you have started the thread?
 
T

Tom Spink

There isn't a managed way of doing this, so, use the following API:

Public Declare Function GetCurrentThreadId Lib "kernel32.dll" () As Integer

And call it inside your Thread Proc:

Public Sub MyThreadProc()

Dim intThreadID As Integer = GetCurrentThreadId()
 

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


Top