Click here to Skip to main content
16,006,887 members
Home / Discussions / C#
   

C#

 
AnswerRe: how to pick background color Pin
Christian Graus22-Sep-06 0:57
protectorChristian Graus22-Sep-06 0:57 
GeneralRe: how to pick background color Pin
Parshant Verma22-Sep-06 1:00
Parshant Verma22-Sep-06 1:00 
GeneralRe: how to pick background color Pin
Christian Graus22-Sep-06 1:05
protectorChristian Graus22-Sep-06 1:05 
QuestionThreading Questions :confused: Pin
gvanto21-Sep-06 23:46
gvanto21-Sep-06 23:46 
AnswerRe: Threading Questions :confused: Pin
Nader Elshehabi22-Sep-06 2:33
Nader Elshehabi22-Sep-06 2:33 
QuestionRe: Threading Questions :confused: Pin
gvanto22-Sep-06 5:47
gvanto22-Sep-06 5:47 
AnswerRe: Threading Questions :confused: Pin
Nader Elshehabi22-Sep-06 8:45
Nader Elshehabi22-Sep-06 8:45 
GeneralRe: Threading Questions :confused: Pin
gvanto22-Sep-06 10:24
gvanto22-Sep-06 10:24 
Wow thanks Nader,
Your methods are excellent and have been VERY helpful thanks a million!!

I'm actually doing it like this:
<br />
        <br />
for (int j = 0; j < InList.Length; j++)<br />
{<br />
  AddThread(InList[j]);                    <br />
}  <br />
<br />
   private void AddThread(string threadName)<br />
   {<br />
        ThreadStart threadDelegate = new ThreadStart(ThreadProc);<br />
        Thread t = new Thread(threadDelegate);<br />
        t.Name = threadName;<br />
             <br />
        this.MyThreadList.Add(t);<br />
   }<br />


But Im not sure - it seems to work but is it healthy? Big Grin | :-D

Thanks for the advice on ParameterizedThreadStart - will check it out immediately!

Gerry

Put A Smile On Your Face
http://www.thecrazywebsite.com

GeneralRe: Threading Questions :confused: Pin
Nader Elshehabi22-Sep-06 11:47
Nader Elshehabi22-Sep-06 11:47 
GeneralRe: Threading Questions :confused: Pin
gvanto22-Sep-06 12:06
gvanto22-Sep-06 12:06 
GeneralRe: Threading Questions :confused: Pin
gvanto22-Sep-06 12:08
gvanto22-Sep-06 12:08 
QuestionHelp me in save values in app.config and retrieve it . Pin
hdv21221-Sep-06 23:00
hdv21221-Sep-06 23:00 
AnswerRe: Help me in save values in app.config and retrieve it . Pin
rah_sin21-Sep-06 23:17
professionalrah_sin21-Sep-06 23:17 
GeneralRe: Help me in save values in app.config and retrieve it . Pin
hdv21222-Sep-06 1:17
hdv21222-Sep-06 1:17 
AnswerRe: Help me in save values in app.config and retrieve it . Pin
Alex@UEA22-Sep-06 2:43
Alex@UEA22-Sep-06 2:43 
Questionlanguage localization and pictures Pin
lushgrass21-Sep-06 22:45
lushgrass21-Sep-06 22:45 
AnswerRe: language localization and pictures Pin
lmoelleb22-Sep-06 0:34
lmoelleb22-Sep-06 0:34 
GeneralRe: language localization and pictures Pin
lushgrass25-Sep-06 15:45
lushgrass25-Sep-06 15:45 
Questionsending data over Network [modified] Pin
sanifant21-Sep-06 22:33
sanifant21-Sep-06 22:33 
AnswerRe: sending data over Network Pin
Green Fuze22-Sep-06 23:34
Green Fuze22-Sep-06 23:34 
GeneralRe: sending data over Network Pin
sanifant25-Sep-06 0:20
sanifant25-Sep-06 0:20 
GeneralRe: sending data over Network Pin
Green Fuze25-Sep-06 10:30
Green Fuze25-Sep-06 10:30 
QuestionAuto generated schema Pin
DanB198321-Sep-06 22:27
DanB198321-Sep-06 22:27 
AnswerRe: Auto generated schema Pin
DanB198322-Sep-06 3:56
DanB198322-Sep-06 3:56 
QuestionProblem with IIF() Pin
M Riaz Bashir21-Sep-06 21:45
M Riaz Bashir21-Sep-06 21:45 

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.