Click here to Skip to main content
15,892,059 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Serious Problem on Memory Usage Pin
cylix200019-Jan-06 13:57
cylix200019-Jan-06 13:57 
GeneralRe: Serious Problem on Memory Usage Pin
Dave Kreskowiak19-Jan-06 15:02
mveDave Kreskowiak19-Jan-06 15:02 
GeneralRe: Serious Problem on Memory Usage Pin
shiroamachi19-Jan-06 15:40
shiroamachi19-Jan-06 15:40 
GeneralRe: Serious Problem on Memory Usage Pin
Steve Pullan19-Jan-06 17:29
Steve Pullan19-Jan-06 17:29 
QuestionForm Screen becomes blank during processing Pin
mayhem_rules18-Jan-06 21:59
mayhem_rules18-Jan-06 21:59 
AnswerRe: Form Screen becomes blank during processing Pin
Owner drawn18-Jan-06 22:18
Owner drawn18-Jan-06 22:18 
GeneralRe: Form Screen becomes blank during processing Pin
mayhem_rules18-Jan-06 22:26
mayhem_rules18-Jan-06 22:26 
GeneralRe: Form Screen becomes blank during processing Pin
Owner drawn18-Jan-06 22:50
Owner drawn18-Jan-06 22:50 
It's simple.

Create a simple sub procedure that will do the processing. Pass the address of the sub procedure to the thread.

Now start the thread.

Private MyThread as Thread

MyThread = new Thread(AddressOf MyThreadProc)

MyThread.Start()

Sub MyThreadProc()
'write your long task here
'if you have to repeat a task wrap it inside a while loop with a flag 
'controlling it. To stop the loop unset the flag.
End Sub


Simple!

Jesus LovesRose | [Rose]
<marquee direction="up" height="40" scrolldelay="1" step="1" scrollamount="1" style="background:#aabbcc;border-bottom:thin solid 1px #6699cc">
--Owner DrawnRose | [Rose]
--Nothing special
--Defeat is temporary but surrender is permanent
--Never say quits
--Jesus is LordRose | [Rose]

GeneralRe: Form Screen becomes blank during processing Pin
mayhem_rules19-Jan-06 2:05
mayhem_rules19-Jan-06 2:05 
QuestionWhat Object to make image Button ? Pin
cylix200018-Jan-06 21:37
cylix200018-Jan-06 21:37 
AnswerRe: What Object to make image Button ? Pin
Owner drawn18-Jan-06 22:22
Owner drawn18-Jan-06 22:22 
QuestionExport DataGrid Data To Excel Pin
mayhem_rules18-Jan-06 19:27
mayhem_rules18-Jan-06 19:27 
AnswerRe: Export DataGrid Data To Excel Pin
_mubashir18-Jan-06 21:59
_mubashir18-Jan-06 21:59 
GeneralRe: Export DataGrid Data To Excel Pin
mayhem_rules18-Jan-06 22:30
mayhem_rules18-Jan-06 22:30 
AnswerRe: Export DataGrid Data To Excel Pin
abhinish19-Jan-06 1:15
abhinish19-Jan-06 1:15 
GeneralRe: Export DataGrid Data To Excel Pin
mayhem_rules19-Jan-06 2:04
mayhem_rules19-Jan-06 2:04 
GeneralRe: Export DataGrid Data To Excel Pin
abhinish19-Jan-06 18:09
abhinish19-Jan-06 18:09 
QuestionMutiple Selected Listbox Pin
cylix200018-Jan-06 18:53
cylix200018-Jan-06 18:53 
AnswerRe: Mutiple Selected Listbox Pin
Muhammad Javed Khan18-Jan-06 19:03
Muhammad Javed Khan18-Jan-06 19:03 
GeneralRe: Mutiple Selected Listbox Pin
cylix200018-Jan-06 20:48
cylix200018-Jan-06 20:48 
GeneralRe: Mutiple Selected Listbox Pin
Muhammad Javed Khan18-Jan-06 22:05
Muhammad Javed Khan18-Jan-06 22:05 
QuestionInvalid printer specified Pin
misecprj18-Jan-06 18:37
misecprj18-Jan-06 18:37 
AnswerRe: Invalid printer specified Pin
Dave Kreskowiak19-Jan-06 6:08
mveDave Kreskowiak19-Jan-06 6:08 
QuestionForm size Pin
mayhem_rules18-Jan-06 18:10
mayhem_rules18-Jan-06 18:10 
AnswerRe: Form size Pin
Rana Muhammad Javed Khan18-Jan-06 18:44
Rana Muhammad Javed Khan18-Jan-06 18:44 

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.