Click here to Skip to main content
15,911,531 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Questionprocess Pin
heiro_me9-Jun-07 8:34
heiro_me9-Jun-07 8:34 
AnswerRe: process Pin
Christian Graus9-Jun-07 14:40
protectorChristian Graus9-Jun-07 14:40 
Questionquestion about datagrids Pin
Harshi_9-Jun-07 7:06
Harshi_9-Jun-07 7:06 
AnswerRe: question about datagrids Pin
Christian Graus9-Jun-07 14:43
protectorChristian Graus9-Jun-07 14:43 
Questionthreading Pin
balakpn9-Jun-07 2:25
balakpn9-Jun-07 2:25 
AnswerRe: threading Pin
Christian Graus9-Jun-07 14:59
protectorChristian Graus9-Jun-07 14:59 
GeneralRe: threading Pin
balakpn10-Jun-07 18:53
balakpn10-Jun-07 18:53 
GeneralRe: threading Pin
MidwestLimey11-Jun-07 10:55
professionalMidwestLimey11-Jun-07 10:55 
As Mr. Graus pointed out, adding more threads will not speed up a uni-cored machine and has no guarentee of working on more then one core of a multi-cored machine (that's up to the OS).
Adding more threads then cores WILL slow down the machine since each thread's context (the various registers, caches etc) will have to copied to the CPU and then taken from the CPU on each swap. It's called a context switch.
20 threads on 1 core means 20 context switches which adds overhead.
Threads just guarentee that some of your code gets a time-slice and isn't frozen until another thread completes. Such uses are typically for the UI (users hate frozen interfaces) and server apps.

I'm also baffled as to why you're using telnet protocol for data transfers??

Felt the need to post something today Wink | ;)

[sorry, mispelled your name!]
Questionhow do i display the name starting with any letter(A-Z,a-z) in textbox using vb.net? Pin
sathyan_82949-Jun-07 2:08
sathyan_82949-Jun-07 2:08 
AnswerRe: how do i display the name starting with any letter(A-Z,a-z) in textbox using vb.net? Pin
MohammadAmiry10-Jun-07 3:09
MohammadAmiry10-Jun-07 3:09 
Questionpass the name of the form as a variable Pin
tonypitwood9-Jun-07 1:43
tonypitwood9-Jun-07 1:43 
AnswerRe: pass the name of the form as a variable Pin
MohammadAmiry10-Jun-07 3:18
MohammadAmiry10-Jun-07 3:18 
GeneralRe: pass the name of the form as a variable Pin
tonypitwood10-Jun-07 6:55
tonypitwood10-Jun-07 6:55 
GeneralRe: pass the name of the form as a variable Pin
MohammadAmiry10-Jun-07 20:50
MohammadAmiry10-Jun-07 20:50 
QuestionProblem in Binding datagrid control to Arraylist Pin
V.G9-Jun-07 1:25
V.G9-Jun-07 1:25 
AnswerRe: Problem in Binding datagrid control to Arraylist Pin
Dave Kreskowiak10-Jun-07 10:30
mveDave Kreskowiak10-Jun-07 10:30 
GeneralRe: Problem in Binding datagrid control to Arraylist Pin
V.G10-Jun-07 18:51
V.G10-Jun-07 18:51 
QuestionHow to upload files to server? Pin
.NetRams8-Jun-07 22:39
.NetRams8-Jun-07 22:39 
AnswerRe: How to upload files to server? Pin
Christian Graus9-Jun-07 0:20
protectorChristian Graus9-Jun-07 0:20 
GeneralRe: How to upload files to server? Pin
.NetRams9-Jun-07 0:48
.NetRams9-Jun-07 0:48 
GeneralRe: How to upload files to server? Pin
Christian Graus9-Jun-07 0:53
protectorChristian Graus9-Jun-07 0:53 
QuestionNeed help for .Net Project Pin
Balagurunathan S8-Jun-07 21:39
Balagurunathan S8-Jun-07 21:39 
AnswerRe: Need help for .Net Project Pin
Sonia Gupta8-Jun-07 21:43
Sonia Gupta8-Jun-07 21:43 
GeneralRe: Need help for .Net Project Pin
Balagurunathan S8-Jun-07 21:51
Balagurunathan S8-Jun-07 21:51 
GeneralRe: Need help for .Net Project Pin
Sonia Gupta8-Jun-07 22:01
Sonia Gupta8-Jun-07 22: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.