Click here to Skip to main content
15,891,253 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: How to create a window handle. Pin
RJGCarey6-Sep-07 8:04
RJGCarey6-Sep-07 8:04 
GeneralRe: How to create a window handle. Pin
Luc Pattyn6-Sep-07 8:10
sitebuilderLuc Pattyn6-Sep-07 8:10 
GeneralRe: How to create a window handle. Pin
RJGCarey6-Sep-07 9:44
RJGCarey6-Sep-07 9:44 
GeneralRe: How to create a window handle. Pin
Luc Pattyn6-Sep-07 9:53
sitebuilderLuc Pattyn6-Sep-07 9:53 
GeneralRe: How to create a window handle. Pin
RJGCarey6-Sep-07 11:46
RJGCarey6-Sep-07 11:46 
QuestionHow to call a procidure requiring arguments with new thread Pin
Amer Rehman6-Sep-07 6:50
Amer Rehman6-Sep-07 6:50 
AnswerRe: How to call a procidure requiring arguments with new thread Pin
Dave Kreskowiak6-Sep-07 7:37
mveDave Kreskowiak6-Sep-07 7:37 
AnswerRe: How to call a procidure requiring arguments with new thread Pin
RJGCarey6-Sep-07 7:47
RJGCarey6-Sep-07 7:47 
Create a new instance of a class passing parameters.
Create a new thread pointed at the sub in that class that does the work.
Name and start the thread. If you want you can wait till the thread finishes(Join) and then dispose of the instance of the class.
Here is a code snippet.

SQL.B.setDay = New SQL.clsSetUpAnyDay(Now.Date) 'new class
thdWorker = New Thread(AddressOf SQL.B.setDay.DoIt)'new thread
thdWorker.Name = "setDay" 'name it
thdWorker.Start() 'start
thdWorker.Join 'wait till it finishes
SQL.B.setDay = Nothing 'dispose

Hope that helps.
RCarey



RCarey

QuestionCrystalReportviewer and Pagesetup Pin
dcode256-Sep-07 4:56
dcode256-Sep-07 4:56 
AnswerRe: CrystalReportviewer and Pagesetup Pin
Lucky Sheikh6-Sep-07 20:17
Lucky Sheikh6-Sep-07 20:17 
QuestionBackups with Volume Shadow Copy Service (VSS) under vb.net Pin
wtfia2k6-Sep-07 4:07
wtfia2k6-Sep-07 4:07 
AnswerRe: Backups with Volume Shadow Copy Service (VSS) under vb.net Pin
Dave Kreskowiak6-Sep-07 4:42
mveDave Kreskowiak6-Sep-07 4:42 
GeneralRe: Backups with Volume Shadow Copy Service (VSS) under vb.net Pin
wtfia2k6-Sep-07 5:10
wtfia2k6-Sep-07 5:10 
AnswerRe: Backups with Volume Shadow Copy Service (VSS) under vb.net Pin
wtfia2k7-Sep-07 5:15
wtfia2k7-Sep-07 5:15 
GeneralRe: Backups with Volume Shadow Copy Service (VSS) under vb.net Pin
Dave Kreskowiak7-Sep-07 6:46
mveDave Kreskowiak7-Sep-07 6:46 
QuestionDataGridView.CellValueChanged - value not firing until out of the combobox cell Pin
Marcus J. Smith6-Sep-07 3:13
professionalMarcus J. Smith6-Sep-07 3:13 
AnswerRe: DataGridView.CellValueChanged - value not firing until out of the combobox cell Pin
Dave Kreskowiak7-Sep-07 4:47
mveDave Kreskowiak7-Sep-07 4:47 
QuestionLight and Mirrors Pin
Yasin7866-Sep-07 2:14
Yasin7866-Sep-07 2:14 
AnswerRe: Light and Mirrors Pin
Christian Graus6-Sep-07 2:23
protectorChristian Graus6-Sep-07 2:23 
AnswerRe: Light and Mirrors Pin
Dave Kreskowiak6-Sep-07 4:10
mveDave Kreskowiak6-Sep-07 4:10 
AnswerRe: Light and Mirrors Pin
GuyThiebaut6-Sep-07 4:18
professionalGuyThiebaut6-Sep-07 4:18 
AnswerRe: Light and Mirrors Pin
Luc Pattyn6-Sep-07 7:03
sitebuilderLuc Pattyn6-Sep-07 7:03 
GeneralBase addresses of multiple instances Pin
Simon P Stevens5-Sep-07 22:01
Simon P Stevens5-Sep-07 22:01 
GeneralRe: Base addresses of multiple instances Pin
Dave Kreskowiak6-Sep-07 3:53
mveDave Kreskowiak6-Sep-07 3:53 
GeneralRe: Base addresses of multiple instances Pin
Simon P Stevens6-Sep-07 4:01
Simon P Stevens6-Sep-07 4:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.