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

C#

 
QuestionReading a DLL information Pin
TJS4u21-Dec-08 19:59
TJS4u21-Dec-08 19:59 
QuestionProblem Regarding Dataset Pin
ais0721-Dec-08 19:51
ais0721-Dec-08 19:51 
AnswerRe: Problem Regarding Dataset Pin
dan!sh 21-Dec-08 20:02
professional dan!sh 21-Dec-08 20:02 
AnswerRe: Problem Regarding Dataset Pin
Vimalsoft(Pty) Ltd21-Dec-08 20:33
professionalVimalsoft(Pty) Ltd21-Dec-08 20:33 
QuestionC#.net Reading a word document Pin
ashok104221-Dec-08 18:18
ashok104221-Dec-08 18:18 
AnswerRe: C#.net Reading a word document Pin
Christian Graus21-Dec-08 20:00
protectorChristian Graus21-Dec-08 20:00 
Questionproblem with thread Pin
prasadbuddhika21-Dec-08 16:57
prasadbuddhika21-Dec-08 16:57 
AnswerRe: problem with thread Pin
N a v a n e e t h21-Dec-08 17:07
N a v a n e e t h21-Dec-08 17:07 
prasadbuddhika wrote:
but the the taskmgr show a process is still running with the name of the application.with in the connectedThrd i aborted the chldthrd, at formclosing event i aboted the connectedThrd.what might be the problem .


Your thread is not aborting properly. This makes the application to run until all threads finishes. You need to re-work on your thread abort code and make sure it aborts correctly when application ends.

Run the new thread as background. This will abort the thread when main thread ends. You set IsBackground property of thread to make it as background.
Thread t = new Thread(..);
t.IsBackground = true;
You can also use a ThreadPool instead of creating your own thread. ThreadPool threads are background thread by default.


QuestionBinary Searlization On Dot Net Webservice Pin
Dipty90021-Dec-08 14:51
Dipty90021-Dec-08 14:51 
AnswerRe: Binary Searlization On Dot Net Webservice Pin
N a v a n e e t h21-Dec-08 17:00
N a v a n e e t h21-Dec-08 17:00 
AnswerRe: Binary Searlization On Dot Net Webservice Pin
Brij21-Dec-08 17:16
mentorBrij21-Dec-08 17:16 
Questionxml - repeated values Pin
arkiboys21-Dec-08 11:46
arkiboys21-Dec-08 11:46 
AnswerRe: xml - repeated values Pin
Christian Graus21-Dec-08 11:49
protectorChristian Graus21-Dec-08 11:49 
GeneralRe: xml - repeated values Pin
arkiboys21-Dec-08 21:29
arkiboys21-Dec-08 21:29 
GeneralRe: xml - repeated values Pin
Christian Graus21-Dec-08 22:52
protectorChristian Graus21-Dec-08 22:52 
GeneralRe: xml - repeated values Pin
arkiboys21-Dec-08 23:20
arkiboys21-Dec-08 23:20 
QuestionCreating Custom Windows Form Pin
mailtorakib21-Dec-08 9:21
mailtorakib21-Dec-08 9:21 
AnswerRe: Creating Custom Windows Form Pin
Christian Graus21-Dec-08 11:23
protectorChristian Graus21-Dec-08 11:23 
QuestionC# GUI Look Pin
willpv221-Dec-08 9:11
willpv221-Dec-08 9:11 
AnswerRe: C# GUI Look Pin
Christian Graus21-Dec-08 9:19
protectorChristian Graus21-Dec-08 9:19 
GeneralRe: C# GUI Look Pin
willpv221-Dec-08 9:22
willpv221-Dec-08 9:22 
GeneralRe: C# GUI Look Pin
Christian Graus21-Dec-08 11:22
protectorChristian Graus21-Dec-08 11:22 
Questionadding lables to ListBox Pin
Sabry190521-Dec-08 6:44
Sabry190521-Dec-08 6:44 
AnswerRe: adding lables to ListBox Pin
Dave Kreskowiak21-Dec-08 7:08
mveDave Kreskowiak21-Dec-08 7:08 
AnswerRe: adding lables to ListBox Pin
#realJSOP21-Dec-08 8:03
mve#realJSOP21-Dec-08 8:03 

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.