Click here to Skip to main content
15,896,522 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: String concat slow despite Stringbuilder Pin
Chinners28-Jul-08 5:33
Chinners28-Jul-08 5:33 
GeneralRe: String concat slow despite Stringbuilder Pin
frylord28-Jul-08 6:01
frylord28-Jul-08 6:01 
AnswerRe: String concat slow despite Stringbuilder Pin
Paul Conrad28-Jul-08 5:52
professionalPaul Conrad28-Jul-08 5:52 
GeneralRe: String concat slow despite Stringbuilder Pin
frylord28-Jul-08 6:08
frylord28-Jul-08 6:08 
GeneralRe: String concat slow despite Stringbuilder Pin
Paul Conrad28-Jul-08 6:12
professionalPaul Conrad28-Jul-08 6:12 
GeneralRe: String concat slow despite Stringbuilder Pin
Luc Pattyn28-Jul-08 6:21
sitebuilderLuc Pattyn28-Jul-08 6:21 
GeneralRe: String concat slow despite Stringbuilder Pin
frylord28-Jul-08 6:52
frylord28-Jul-08 6:52 
GeneralRe: String concat slow despite Stringbuilder Pin
Luc Pattyn28-Jul-08 7:07
sitebuilderLuc Pattyn28-Jul-08 7:07 
Hi,

if you have a lot of work that needs to be done but is not urgent, then you should organize things
in such a way that other, possibly more urgent things, can be done first. This is accomplished
either by using a thread with lower priority (recommended when available, it is on Windows),
or by "throttling" yourself, i.e. forcing the OS to try and do something else from time to time.

Now giving away the CPU after copying 8 characters is not a good idea, since a thread switch would
cost anywhere between 10 and 1000 times as much as the work you are doing. So the reduction by
255 as suggested by one reply is appropriate.

But as I said before, it only takes some 40 msec althogether, so don't bother; just don't do it
in your own GUI thread!

BTW: GUI threads have a slightly higher priority than other threads at "normal priority" anyway.

And yes, it would be different on simpler operating systems, as well as on real-time environments,
as could be found in embedded systems.

Smile | :)

Luc Pattyn [Forum Guidelines] [My Articles]

Voting for dummies? No thanks. Dead | X|


AnswerRe: String concat slow despite Stringbuilder Pin
Luc Pattyn28-Jul-08 6:11
sitebuilderLuc Pattyn28-Jul-08 6:11 
GeneralRe: String concat slow despite Stringbuilder Pin
frylord28-Jul-08 6:27
frylord28-Jul-08 6:27 
GeneralRe: String concat slow despite Stringbuilder Pin
Luc Pattyn28-Jul-08 6:43
sitebuilderLuc Pattyn28-Jul-08 6:43 
GeneralRe: String concat slow despite Stringbuilder Pin
frylord28-Jul-08 7:02
frylord28-Jul-08 7:02 
GeneralRe: String concat slow despite Stringbuilder Pin
Luc Pattyn28-Jul-08 7:10
sitebuilderLuc Pattyn28-Jul-08 7:10 
GeneralRe: String concat slow despite Stringbuilder Pin
frylord28-Jul-08 7:25
frylord28-Jul-08 7:25 
QuestionList Box item coloring Pin
Saam_cse28-Jul-08 1:02
Saam_cse28-Jul-08 1:02 
AnswerRe: List Box item coloring Pin
Luc Pattyn28-Jul-08 1:14
sitebuilderLuc Pattyn28-Jul-08 1:14 
GeneralMenustrip & Selection Pin
Member 425919228-Jul-08 0:19
Member 425919228-Jul-08 0:19 
GeneralRe: Menustrip & Selection Pin
Thomas Stockwell29-Jul-08 9:06
professionalThomas Stockwell29-Jul-08 9:06 
QuestionCreate an excel 2003 add in with vb2008 Pin
JR21227-Jul-08 22:32
JR21227-Jul-08 22:32 
AnswerRe: Create an excel 2003 add in with vb2008 Pin
John_Adams28-Jul-08 8:56
John_Adams28-Jul-08 8:56 
AnswerRe: Create an excel 2003 add in with vb2008 Pin
rprateek6-Aug-08 19:11
rprateek6-Aug-08 19:11 
QuestionSelect the sender in outlook mail Pin
~Khatri Mitesh~27-Jul-08 21:29
~Khatri Mitesh~27-Jul-08 21:29 
QuestionPositioning the image in Excel 2007 [modified] Pin
klaydze27-Jul-08 21:06
klaydze27-Jul-08 21:06 
QuestionThere are not enough concurrent access licenses to log you on. [Crystal report] Pin
AJAYWVK8727-Jul-08 20:44
AJAYWVK8727-Jul-08 20:44 
AnswerRe: There are not enough concurrent access licenses to log you on. [Crystal report] Pin
Christian Graus27-Jul-08 21:17
protectorChristian Graus27-Jul-08 21:17 

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.