Click here to Skip to main content
15,913,186 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Making a programming language in VB Pin
Johan Hakkesteegt12-Mar-12 1:56
Johan Hakkesteegt12-Mar-12 1:56 
QuestionMultiple Keys Combination using Select Case Pin
Midnight Ahri8-Mar-12 19:47
Midnight Ahri8-Mar-12 19:47 
AnswerRe: Multiple Keys Combination using Select Case Pin
Richard MacCutchan8-Mar-12 21:34
mveRichard MacCutchan8-Mar-12 21:34 
QuestionSerializer complex class Pin
boagrius8-Mar-12 13:42
boagrius8-Mar-12 13:42 
AnswerRe: Serializer complex class Pin
Bernhard Hiller8-Mar-12 22:17
Bernhard Hiller8-Mar-12 22:17 
QuestionModules don't like Overloading Pin
Clark Kent1237-Mar-12 8:43
professionalClark Kent1237-Mar-12 8:43 
AnswerRe: Modules don't like Overloading Pin
Eddy Vluggen7-Mar-12 11:10
professionalEddy Vluggen7-Mar-12 11:10 
AnswerRe: Modules don't like Overloading Pin
Simon_Whale7-Mar-12 11:28
Simon_Whale7-Mar-12 11:28 
QuestionRe: Modules don't like Overloading Pin
Clark Kent1238-Mar-12 1:35
professionalClark Kent1238-Mar-12 1:35 
AnswerRe: Modules don't like Overloading Pin
Simon_Whale8-Mar-12 1:49
Simon_Whale8-Mar-12 1:49 
GeneralRe: Modules don't like Overloading Pin
Clark Kent1238-Mar-12 3:42
professionalClark Kent1238-Mar-12 3:42 
GeneralRe: Modules don't like Overloading Pin
Simon_Whale8-Mar-12 3:48
Simon_Whale8-Mar-12 3:48 
AnswerRe: Modules don't like Overloading Pin
Dave Kreskowiak7-Mar-12 11:59
mveDave Kreskowiak7-Mar-12 11:59 
QuestionRe: Modules don't like Overloading Pin
Clark Kent1238-Mar-12 1:31
professionalClark Kent1238-Mar-12 1:31 
AnswerRe: Modules don't like Overloading Pin
Dave Kreskowiak8-Mar-12 3:14
mveDave Kreskowiak8-Mar-12 3:14 
QuestionForce the vertical scrollbar down Pin
Brandon-X120007-Mar-12 2:39
Brandon-X120007-Mar-12 2:39 
AnswerRe: Force the vertical scrollbar down Pin
Dave Kreskowiak7-Mar-12 3:37
mveDave Kreskowiak7-Mar-12 3:37 
GeneralRe: Force the vertical scrollbar down Pin
Brandon-X120007-Mar-12 5:35
Brandon-X120007-Mar-12 5:35 
GeneralRe: Force the vertical scrollbar down Pin
Dave Kreskowiak7-Mar-12 7:05
mveDave Kreskowiak7-Mar-12 7:05 
QuestionHow to check the double vaue is "1.#QNAN"? Pin
lavate malllik6-Mar-12 22:03
lavate malllik6-Mar-12 22:03 
AnswerRe: How to check the double vaue is "1.#QNAN"? Pin
Simon_Whale6-Mar-12 22:57
Simon_Whale6-Mar-12 22:57 
GeneralRe: How to check the double vaue is "1.#QNAN"? Pin
lavate malllik6-Mar-12 23:18
lavate malllik6-Mar-12 23:18 
QuestionThread Problem? Pin
Midnight Ahri5-Mar-12 15:29
Midnight Ahri5-Mar-12 15:29 
AnswerRe: Thread Problem? Pin
Dave Kreskowiak5-Mar-12 15:59
mveDave Kreskowiak5-Mar-12 15:59 
AnswerRe: Thread Problem? Pin
Luc Pattyn5-Mar-12 17:02
sitebuilderLuc Pattyn5-Mar-12 17:02 
Your code won't do what you want for the reason Dave explained.

As the delays are there to get some pause in between changes to the user interface, the better approach is to use a "state machine" and a timer, and more particularly a System.Windows.Forms.Timer which will fire its Tick event periodically; the state machine evolves form state 0, to state 1, then state 2, etc until it is done, so you'll need at least one state variable to know how far your state machine has progressed. This may be simpler than adding another thread, as extra threads are easy for scheduling stuff, but not so for accessing Controls.

Smile | :)
Luc Pattyn [My Articles] Nil Volentibus Arduum

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.