Click here to Skip to main content
6,634,665 members and growing! (15,716 online)
Email Password   helpLost your password?
Languages » VB.NET » General     Intermediate

Multithreading with VB.NET - A beginner's choice

By Rakesh Mehta

Multithreading is a technique by which you can increase the efficiency of your program by 100%. Everybody wants to apply multi-threading in their own applications. But for beginners, it's a bit difficult to apply multi-threading properly. But it's quite easy with VB.NET.
VB.NET 1.1, .NET 2.0, Win2K, WinXPVS.NET2003, VS2005, Dev
Posted:9 Aug 2006
Views:61,894
Bookmarked:62 times
Unedited contribution
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
28 votes for this article.
Popularity: 4.21 Rating: 2.91 out of 5
7 votes, 25.0%
1
1 vote, 3.6%
2
2 votes, 7.1%
3
4 votes, 14.3%
4
14 votes, 50.0%
5

Sample Image - mutithreading_for_beginer.gif

Introduction

Hi friends,

This is my first article on Code-Project on the topic Multithreading in VB.NET.

Multithreading is a technique, by which you can increase efficiency of your program by 100%. Every body wants to apply multi threading in their own application. But for beginner it's a bit difficult to apply multi threading properly. I had the same problem, when I was going to use it in my application. That's why I am writing this article, that beginner can easily apply multi threading in their application. I am trying to make it as simple as possible.

I am not writing this article against some ones request. Rather than, I am writing this article, as I personally faced a big problem on this topic. It was so hard to find out a good solution or help on "How to apply threading on application".

After so much study, search on google and on other forums at last I was able to apply multi threading in my application.

Multi Threading is not a critical or complex thing to do. But many people don't now how to apply it. They can get sample code, but can't implement it on their own project. Or they face trouble, when they try to apply the code in their application.

I am not writing much code here. Because, if you download the source code, provided with this article, you will find comment through out each line of coding. So I am not repeating them again here

The heart of this project is the following line of coding

'The main mother class in .NET Framework to work with threading. 

Imports System.Threading  

'Creating Thread 
Dim objThreadClass As New clsThread(2, Me)
Dim objNewThread As New Thread(AddressOf objThreadClass.StartThread)
objNewThread.IsBackground = True
objNewThread.Start()
m_ThreadList.Item(1) = objNewThread 

'Receiving Message from thread
Public Sub ReceiveThreadMessage(ByVal ThreadIndex As Integer, _
                                ByVal Counter As Integer) 
    'do your work here depending on the return variables from the thread. 
End Sub 


'Sending Message from thread to the main application.
'First create a delegate (For details plz see the comments inside the codes) 

Private Delegate Sub NotifyMainWindow(ByVal ThreadIndex As Integer, _
                                      ByVal Counter As Integer)
'We need an object of this deletegate
Private m_NotifyMainWindow As NotifyMainWindow  

'Assign the pointer to the method of the main window to the delegate
m_NotifyMainWindow = AddressOf MainWindow.ReceiveThreadMessage 

'Create Argument List

ReDim m_Args(1)
m_Args(0) = m_ThreadIndex
m_Args(1) = m_Counter

'Call the notificaiton method on the main window by the delegate
m_MainWindow.Invoke(m_NotifyMainWindow, m_Args)

If this helps you, I'll be so happy

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Rakesh Mehta


Member
Hi,
This is Rakesh Mehta from India.
I am very very fond of programming (in any field).
I like to work on new technologies. Sometime, I face troubles, while looking for a new thing.
I am working as a Project Manager in Silicon Valley Infomedia Pvt Ltd. (India).
I'ld like to share all my new findings and solutions of problems with code project.
Occupation: Web Developer
Location: India India

Other popular VB.NET articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 63 (Total in Forum: 63) (Refresh)FirstPrevNext
Generalmultihread using ado.net Pinmembergunasundari3:53 16 Nov '09  
GeneralRe: multihread using ado.net PinmemberRakesh Mehta4:49 16 Nov '09  
Generalmultihread using ado.net Pinmembergunasundari0:15 16 Nov '09  
GeneralRe: multihread using ado.net PinmemberRakesh Mehta0:39 16 Nov '09  
GeneralRe: multihread using ado.net Pinmembergunasundari2:23 16 Nov '09  
GeneralRe: multihread using ado.net PinmemberRakesh Mehta2:40 16 Nov '09  
GeneralWell done! PinmemberEl_Charles_The_Awesome11:53 21 Jul '09  
GeneralPassing String instead of a Counter Pinmemberchrissequeira22:11 24 May '09  
GeneralRe: Passing String instead of a Counter PinmemberRakesh Mehta22:23 24 May '09  
GeneralRe: Passing String instead of a Counter Pinmemberchrissequeira22:48 24 May '09  
GeneralRe: Passing String instead of a Counter PinmemberRakesh Mehta23:16 24 May '09  
GeneralRe: Passing String instead of a Counter Pinmemberchrissequeira0:29 25 May '09  
GeneralRe: Passing String instead of a Counter PinmemberRakesh Mehta0:33 25 May '09  
GeneralRe: Passing String instead of a Counter Pinmemberchrissequeira0:56 25 May '09  
GeneralRe: Passing String instead of a Counter Pinmemberchrissequeira6:30 25 May '09  
GeneralRe: Passing String instead of a Counter PinmemberRakesh Mehta8:55 25 May '09  
GeneralGetting an Exception in visual studio2008 when your code is executed. Pinmemberrajath888819:28 13 Feb '09  
GeneralRe: Getting an Exception in visual studio2008 when your code is executed. PinmemberRakesh Mehta19:46 13 Feb '09  
GeneralRe: Getting an Exception in visual studio2008 when your code is executed. Pinmemberrajath888819:50 13 Feb '09  
GeneralRe: Getting an Exception in visual studio2008 when your code is executed. Pinmemberrajath888820:38 13 Feb '09  
GeneralRe: Getting an Exception in visual studio2008 when your code is executed. PinmemberRakesh Mehta20:42 13 Feb '09  
GeneralA doubt in the concept of passing parameters in multithreading Pinmemberkrithika Subramanian22:59 15 Dec '08  
GeneralRe: A doubt in the concept of passing parameters in multithreading PinmemberRakesh Mehta3:37 16 Dec '08  
GeneralRe: A doubt in the concept of passing parameters in multithreading Pinmemberkrithika Subramanian18:58 16 Dec '08  
GeneralRe: A doubt in the concept of passing parameters in multithreading Pinmemberkrithika Subramanian21:39 17 Dec '08  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 9 Aug 2006
Editor:
Copyright 2006 by Rakesh Mehta
Everything else Copyright © CodeProject, 1999-2009
Web22 | Advertise on the Code Project