Click here to Skip to main content
15,921,542 members
Home / Discussions / C#
   

C#

 
AnswerRe: Hiding query string in the url and how to make webiste which runs on https Pin
Expert Coming17-Dec-08 17:25
Expert Coming17-Dec-08 17:25 
GeneralRe: Hiding query string in the url and how to make webiste which runs on https Pin
tauras8117-Dec-08 17:32
tauras8117-Dec-08 17:32 
GeneralRe: Hiding query string in the url and how to make webiste which runs on https Pin
N a v a n e e t h17-Dec-08 17:35
N a v a n e e t h17-Dec-08 17:35 
GeneralRe: Hiding query string in the url and how to make webiste which runs on https Pin
Expert Coming17-Dec-08 17:36
Expert Coming17-Dec-08 17:36 
AnswerRe: Hiding query string in the url and how to make webiste which runs on https Pin
Christian Graus17-Dec-08 17:53
protectorChristian Graus17-Dec-08 17:53 
Questionmatching just single specified character with regular expression. Pin
Member 232448317-Dec-08 14:49
Member 232448317-Dec-08 14:49 
AnswerRe: matching just single specified character with regular expression. Pin
Christian Graus17-Dec-08 16:58
protectorChristian Graus17-Dec-08 16:58 
QuestionProblem with Datagrid Pin
Ain't me babe17-Dec-08 14:49
Ain't me babe17-Dec-08 14:49 
AnswerRe: Problem with Datagrid Pin
Mycroft Holmes17-Dec-08 15:16
professionalMycroft Holmes17-Dec-08 15:16 
QuestionExperimenting with Multithreading Pin
CrimeanTurtle200817-Dec-08 13:56
CrimeanTurtle200817-Dec-08 13:56 
AnswerRe: Experimenting with Multithreading Pin
Expert Coming17-Dec-08 14:02
Expert Coming17-Dec-08 14:02 
GeneralRe: Experimenting with Multithreading Pin
CrimeanTurtle200817-Dec-08 14:08
CrimeanTurtle200817-Dec-08 14:08 
GeneralRe: Experimenting with Multithreading Pin
Expert Coming17-Dec-08 14:16
Expert Coming17-Dec-08 14:16 
GeneralRe: Experimenting with Multithreading Pin
Expert Coming17-Dec-08 14:20
Expert Coming17-Dec-08 14:20 
AnswerRe: Experimenting with Multithreading Pin
CrimeanTurtle200817-Dec-08 14:37
CrimeanTurtle200817-Dec-08 14:37 
GeneralRe: Experimenting with Multithreading Pin
Expert Coming17-Dec-08 14:43
Expert Coming17-Dec-08 14:43 
GeneralRe: Experimenting with Multithreading Pin
Luc Pattyn17-Dec-08 14:48
sitebuilderLuc Pattyn17-Dec-08 14:48 
Hi,

two or more threads will execute their code at their own pace; the exact sequence of things overall cannot be predicted unless you enforce some ordering by synchronizing the threads.

Their independence is their biggest advantage, one thread could be searching a disk while another is crawling the web, all have their own unpredictable delays.

If you must protect a shared data structure against inconsistencies, or if your overall logic requires sequential access for some reason, you need synchronization (with locks, mutexes, whatever).

Smile | :)
GeneralRe: Experimenting with Multithreading Pin
CrimeanTurtle200817-Dec-08 15:10
CrimeanTurtle200817-Dec-08 15:10 
GeneralRe: Experimenting with Multithreading Pin
Luc Pattyn17-Dec-08 16:28
sitebuilderLuc Pattyn17-Dec-08 16:28 
AnswerRe: Experimenting with Multithreading Pin
N a v a n e e t h17-Dec-08 16:29
N a v a n e e t h17-Dec-08 16:29 
QuestionCannot use AddNew method for CurrencyManager with databound checkbox Pin
Vloops17-Dec-08 11:50
Vloops17-Dec-08 11:50 
QuestionHow to change MenuStrip default icon when child is maximized Pin
bcryner17-Dec-08 11:03
bcryner17-Dec-08 11:03 
AnswerRe: How to change MenuStrip default icon when child is maximized Pin
Eddy Vluggen18-Dec-08 4:47
professionalEddy Vluggen18-Dec-08 4:47 
GeneralRe: How to change MenuStrip default icon when child is maximized Pin
bcryner18-Dec-08 5:06
bcryner18-Dec-08 5:06 
QuestionAdd Table to XML file using Dataset... Pin
Greg Cetti17-Dec-08 10:11
Greg Cetti17-Dec-08 10:11 

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.