Click here to Skip to main content
15,902,447 members
Home / Discussions / C#
   

C#

 
QuestionHow to implement a VC++ toolbar like control in C#? Pin
TinyTin26-Oct-05 2:01
TinyTin26-Oct-05 2:01 
AnswerRe: How to implement a VC++ toolbar like control in C#? Pin
Suelinda_W31-Oct-05 3:11
Suelinda_W31-Oct-05 3:11 
QuestionDLL or Component for RFID KITS Pin
Tyler4526-Oct-05 1:57
Tyler4526-Oct-05 1:57 
AnswerRe: DLL or Component for RFID KITS Pin
Dave Kreskowiak26-Oct-05 3:27
mveDave Kreskowiak26-Oct-05 3:27 
GeneralRe: DLL or Component for RFID KITS Pin
Tyler4510-Nov-05 13:46
Tyler4510-Nov-05 13:46 
QuestionThrad problem Pin
hg270526-Oct-05 1:04
hg270526-Oct-05 1:04 
AnswerRe: Thrad problem Pin
S. Senthil Kumar26-Oct-05 5:27
S. Senthil Kumar26-Oct-05 5:27 
GeneralRe: Thrad problem Pin
hg270527-Oct-05 20:13
hg270527-Oct-05 20:13 
Thing is that i create a smal app that starts 10 threads, start them and suspend them at once. The processor is bosted to 100%. The maschine im using is an campaq notebook 600mz. 10 threds thar are suspended should not bee so har do handle...
<br />
public app()<br />
{<br />
	mRun = true;<br />
	mThreads = new ArrayList();<br />
	for(int i = 0; i<10; i++)<br />
	{<br />
	        Thread t = new Thread(new ThreadStart(this.go));<br />
		t.Name = i.ToString();<br />
		t.Start();<br />
		t.Suspend();<br />
		mThreads.Add(t);<br />
	}<br />
}<br />
private void go()<br />
{<br />
	while(mRun)<br />
	{<br />
	        listBox1.Items.Add("run");<br />
		Thread.Sleep(10000);<br />
	}<br />
}<br />



-- modified at 2:14 Friday 28th October, 2005
GeneralRe: Thrad problem Pin
S. Senthil Kumar27-Oct-05 21:11
S. Senthil Kumar27-Oct-05 21:11 
QuestionSlow Query on 2nd query of the same command Pin
AesopTurtle26-Oct-05 0:06
AesopTurtle26-Oct-05 0:06 
AnswerRe: Slow Query on 2nd query of the same command Pin
leppie26-Oct-05 4:12
leppie26-Oct-05 4:12 
AnswerRe: Slow Query on 2nd query of the same command Pin
Rob Graham26-Oct-05 6:20
Rob Graham26-Oct-05 6:20 
GeneralRe: Slow Query on 2nd query of the same command Pin
AesopTurtle26-Oct-05 15:18
AesopTurtle26-Oct-05 15:18 
QuestionPlease help - How to un-install a Windows Service? Pin
Tigger9925-Oct-05 23:53
Tigger9925-Oct-05 23:53 
AnswerRe: Please help - How to un-install a Windows Service? Pin
seee sharp26-Oct-05 0:15
seee sharp26-Oct-05 0:15 
Questionhow do you create a dbf file? Pin
Anonymous25-Oct-05 23:09
Anonymous25-Oct-05 23:09 
QuestionList box Pin
User 58385225-Oct-05 20:24
User 58385225-Oct-05 20:24 
AnswerRe: List box Pin
User 58385225-Oct-05 20:34
User 58385225-Oct-05 20:34 
GeneralRe: List box Pin
technomanceraus25-Oct-05 21:08
technomanceraus25-Oct-05 21:08 
GeneralRe: List box Pin
User 58385225-Oct-05 21:14
User 58385225-Oct-05 21:14 
QuestionDataReader Pin
Brendan Vogt25-Oct-05 20:16
Brendan Vogt25-Oct-05 20:16 
AnswerRe: DataReader Pin
leppie25-Oct-05 22:03
leppie25-Oct-05 22:03 
QuestionRe: DataReader Pin
Brendan Vogt25-Oct-05 22:33
Brendan Vogt25-Oct-05 22:33 
AnswerRe: DataReader Pin
Colin Angus Mackay25-Oct-05 22:42
Colin Angus Mackay25-Oct-05 22:42 
QuestionEditing Pin
momoo25-Oct-05 19:45
momoo25-Oct-05 19: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.