Click here to Skip to main content
15,891,769 members
Home / Discussions / C#
   

C#

 
AnswerRe: topmost form to the application only? Pin
Luis Alonso Ramos13-Oct-05 17:22
Luis Alonso Ramos13-Oct-05 17:22 
AnswerRe: topmost form to the application only? Pin
zhyluopro14-Oct-05 5:35
zhyluopro14-Oct-05 5:35 
QuestionCan you change the system volume? (as in sound) Pin
Anthony Mushrow13-Oct-05 12:49
professionalAnthony Mushrow13-Oct-05 12:49 
QuestionC# Threading Pin
budidharma13-Oct-05 12:05
budidharma13-Oct-05 12:05 
AnswerRe: C# Threading Pin
budidharma13-Oct-05 12:08
budidharma13-Oct-05 12:08 
GeneralRe: C# Threading Pin
Heks13-Oct-05 12:14
Heks13-Oct-05 12:14 
GeneralRe: C# Threading Pin
budidharma13-Oct-05 13:22
budidharma13-Oct-05 13:22 
GeneralRe: C# Threading Pin
Guffa13-Oct-05 20:13
Guffa13-Oct-05 20:13 
If you use a timer, it will be using a single thread. That means that the timer will only be triggered when your program is not busy doing anything else.

If you use a separate thread, it will be running even if your program is busy. The drawback is that the code has to be thread safe, meaning that if you are using any variables from both threads, you will have to take special precausions to make sure that only one thread at a time is using the variables.

---
b { font-weight: normal; }

GeneralRe: C# Threading Pin
eggie513-Oct-05 20:24
eggie513-Oct-05 20:24 
GeneralRe: C# Threading Pin
Stefan Troschuetz13-Oct-05 22:06
Stefan Troschuetz13-Oct-05 22:06 
QuestionWinForm design question Pin
ben213-Oct-05 11:55
ben213-Oct-05 11:55 
AnswerRe: WinForm design question Pin
Heks13-Oct-05 12:00
Heks13-Oct-05 12:00 
GeneralRe: WinForm design question Pin
ben213-Oct-05 12:31
ben213-Oct-05 12:31 
AnswerRe: WinForm design question Pin
Dave Kreskowiak13-Oct-05 13:53
mveDave Kreskowiak13-Oct-05 13:53 
AnswerRe: WinForm design question Pin
Scott Serl14-Oct-05 6:12
Scott Serl14-Oct-05 6:12 
QuestionSerialization problem Pin
Kyoun13-Oct-05 10:59
Kyoun13-Oct-05 10:59 
AnswerRe: Serialization problem Pin
Matt Gerrans13-Oct-05 11:25
Matt Gerrans13-Oct-05 11:25 
GeneralRe: Serialization problem Pin
Heks13-Oct-05 11:38
Heks13-Oct-05 11:38 
QuestionValidation in Business Layer Pin
tsramkumar13-Oct-05 10:08
tsramkumar13-Oct-05 10:08 
AnswerRe: Validation in Business Layer Pin
facorreia13-Oct-05 11:08
facorreia13-Oct-05 11:08 
QuestionRichTextBox save as HTML Pin
jeweladdict13-Oct-05 8:55
jeweladdict13-Oct-05 8:55 
AnswerRe: RichTextBox save as HTML Pin
Daniel Grunwald13-Oct-05 9:47
Daniel Grunwald13-Oct-05 9:47 
GeneralRe: RichTextBox save as HTML Pin
jeweladdict13-Oct-05 12:09
jeweladdict13-Oct-05 12:09 
GeneralRe: RichTextBox save as HTML Pin
Judah Gabriel Himango13-Oct-05 15:28
sponsorJudah Gabriel Himango13-Oct-05 15:28 
QuestionEnableViewState question Pin
kani9813-Oct-05 8:27
kani9813-Oct-05 8:27 

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.