Click here to Skip to main content
15,886,919 members
Home / Discussions / C#
   

C#

 
QuestionWhat is position of .Net winform developer in developers market? Pin
Abdul Gafoor9-Jun-08 0:13
Abdul Gafoor9-Jun-08 0:13 
AnswerRe: What is position of .Net winform developer in developers market? Pin
Gareth H9-Jun-08 0:24
Gareth H9-Jun-08 0:24 
AnswerRe: What is position of .Net winform developer in developers market? Pin
rah_sin9-Jun-08 0:25
professionalrah_sin9-Jun-08 0:25 
AnswerRe: What is position of .Net winform developer in developers market? Pin
#realJSOP9-Jun-08 2:46
mve#realJSOP9-Jun-08 2:46 
QuestionTimer Controll in Thread Pin
DeepOceans8-Jun-08 23:51
DeepOceans8-Jun-08 23:51 
AnswerRe: Timer Controll in Thread Pin
Gareth H9-Jun-08 1:04
Gareth H9-Jun-08 1:04 
GeneralRe: Timer Controll in Thread Pin
DeepOceans9-Jun-08 1:22
DeepOceans9-Jun-08 1:22 
AnswerRe: Timer Controll in Thread Pin
#realJSOP9-Jun-08 2:51
mve#realJSOP9-Jun-08 2:51 
Your thread function should look something like this:

private void Thrd1()
{
    // just sit and spin
    while (true)
    {
        // sleep for the desired time - this example uses 1 second
        Thread.Sleep(1000);
        
        Calculate();
    }
}

private void Calculate()
{
    // do some work
}


BTW "Thrd1" is a crappy function name.


"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001


AnswerRe: Timer Controll in Thread Pin
PIEBALDconsult9-Jun-08 5:51
mvePIEBALDconsult9-Jun-08 5:51 
GeneralRe: Timer Controll in Thread Pin
#realJSOP9-Jun-08 5:54
mve#realJSOP9-Jun-08 5:54 
GeneralRe: Timer Controll in Thread Pin
PIEBALDconsult9-Jun-08 13:41
mvePIEBALDconsult9-Jun-08 13:41 
GeneralRe: Timer Controll in Thread Pin
#realJSOP10-Jun-08 0:11
mve#realJSOP10-Jun-08 0:11 
Questionserialize atextbox control Pin
Elesh8-Jun-08 23:41
Elesh8-Jun-08 23:41 
GeneralRe: serialize atextbox control Pin
ncjlee9-Jun-08 0:33
ncjlee9-Jun-08 0:33 
QuestionListBox throwing a "Not valid value"-exception Pin
Gadjuka8-Jun-08 23:14
Gadjuka8-Jun-08 23:14 
AnswerRe: ListBox throwing a "Not valid value"-exception Pin
#realJSOP9-Jun-08 2:57
mve#realJSOP9-Jun-08 2:57 
GeneralRe: ListBox throwing a "Not valid value"-exception Pin
Gadjuka9-Jun-08 20:02
Gadjuka9-Jun-08 20:02 
GeneralRe: ListBox throwing a "Not valid value"-exception Pin
#realJSOP10-Jun-08 0:10
mve#realJSOP10-Jun-08 0:10 
QuestionSortedDictionary v.s. Dictionary Pin
George_George8-Jun-08 22:41
George_George8-Jun-08 22:41 
AnswerRe: SortedDictionary v.s. Dictionary Pin
leppie9-Jun-08 3:43
leppie9-Jun-08 3:43 
GeneralRe: SortedDictionary v.s. Dictionary Pin
George_George9-Jun-08 16:57
George_George9-Jun-08 16:57 
QuestionX509Store from file Pin
komadich8-Jun-08 22:40
komadich8-Jun-08 22:40 
GeneralRe: X509Store from file Pin
telha9-Jun-08 0:40
telha9-Jun-08 0:40 
QuestionEncoding problem with string from DLL Pin
steve_rm8-Jun-08 21:46
steve_rm8-Jun-08 21:46 
AnswerRe: Encoding problem with string from DLL Pin
ncjlee8-Jun-08 21:56
ncjlee8-Jun-08 21:56 

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.