Click here to Skip to main content
15,893,588 members
Home / Discussions / C#
   

C#

 
GeneralRe: WebBrowser control Pin
hung_ngole31-May-06 1:01
hung_ngole31-May-06 1:01 
QuestionMMF in c# Pin
liqnit30-May-06 18:26
liqnit30-May-06 18:26 
QuestionCrystal Reports Pin
aby.m.a30-May-06 18:18
aby.m.a30-May-06 18:18 
QuestionBlueTooth Pin
ah_jiang_930-May-06 18:14
ah_jiang_930-May-06 18:14 
AnswerRe: BlueTooth Pin
Rey999931-May-06 2:27
Rey999931-May-06 2:27 
QuestionProblems using graphic object to display text on tabPage Pin
printscreen1234530-May-06 18:05
printscreen1234530-May-06 18:05 
QuestionChanging DataGrid Data Pin
Dan Neilsen30-May-06 15:43
Dan Neilsen30-May-06 15:43 
QuestionNavigation help. Pin
tongueless30-May-06 14:48
tongueless30-May-06 14:48 
AnswerRe: Navigation help. Pin
tongueless30-May-06 15:19
tongueless30-May-06 15:19 
QuestionInvoke problem Pin
teejayem30-May-06 14:32
teejayem30-May-06 14:32 
AnswerRe: Invoke problem [modified] Pin
Robert Rohde30-May-06 20:22
Robert Rohde30-May-06 20:22 
Questioncombobox with datagridview Pin
kjosh30-May-06 12:16
kjosh30-May-06 12:16 
QuestiontabPage class Pin
rcwoods30-May-06 12:06
rcwoods30-May-06 12:06 
AnswerRe: tabPage class Pin
likefood30-May-06 13:09
likefood30-May-06 13:09 
QuestionHow to display text from the bottom up in a textBox. Pin
nicknotyet30-May-06 11:34
nicknotyet30-May-06 11:34 
AnswerRe: How to display text from the bottom up in a textBox. Pin
V.30-May-06 11:44
professionalV.30-May-06 11:44 
GeneralRe: How to display text from the bottom up in a textBox. Pin
nicknotyet30-May-06 12:10
nicknotyet30-May-06 12:10 
GeneralRe: How to display text from the bottom up in a textBox. Pin
likefood30-May-06 13:05
likefood30-May-06 13:05 
AnswerRe: How to display text from the bottom up in a textBox. Pin
Shajeel30-May-06 19:24
Shajeel30-May-06 19:24 
GeneralRe: How to display text from the bottom up in a textBox. Pin
nicknotyet31-May-06 3:55
nicknotyet31-May-06 3:55 
QuestionMultithreading problem Pin
thepersonof30-May-06 11:07
thepersonof30-May-06 11:07 
Hi I know multithrading is explained in several tutorials, but I can't figure out how to terminate another thread gracefully. This is my current code. In thread1 when I dispose s I get an error... I realised this would happen with sychronisation etc. What can I do?

public class Loader<br />
    {<br />
        PNG.SplashScreen s;<br />
        Form1 f;<br />
        Thread first;<br />
        Thread second;<br />
        public Loader()<br />
        {<br />
            first = new Thread(new ThreadStart(thread1));<br />
            second = new Thread(new ThreadStart(thread2));<br />
            first.Start();<br />
            second.Start();<br />
        }<br />
        void thread1()<br />
        {<br />
            f = new Form1();<br />
            s.Dispose();            <br />
            f.ShowDialog();<br />
        }<br />
        void thread2()<br />
        {<br />
            s = new PNG.SplashScreen();<br />
            s.ShowDialog();<br />
        }<br />
    }



cheers
AnswerRe: Multithreading problem Pin
Judah Gabriel Himango30-May-06 11:13
sponsorJudah Gabriel Himango30-May-06 11:13 
AnswerRe: Multithreading problem Pin
Robert Rohde30-May-06 20:16
Robert Rohde30-May-06 20:16 
Questionadvice learn visual C# Pin
gds0930-May-06 10:56
gds0930-May-06 10:56 
AnswerRe: advice learn visual C# Pin
V.30-May-06 11:38
professionalV.30-May-06 11:38 

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.