Click here to Skip to main content
15,920,503 members
Home / Discussions / C#
   

C#

 
AnswerRe: drag drop with treeview? Pin
Stu Richardson25-Feb-08 2:09
Stu Richardson25-Feb-08 2:09 
GeneralRe: drag drop with treeview? Pin
avtar11126-Feb-08 17:16
avtar11126-Feb-08 17:16 
GeneralHelp with RowState and Transactions. Pin
RichardContact-124-Feb-08 23:40
RichardContact-124-Feb-08 23:40 
Generalrefreshing a form on closing of another form Pin
Miss Maheshwari24-Feb-08 23:36
Miss Maheshwari24-Feb-08 23:36 
GeneralRe: refreshing a form on closing of another form Pin
Harvey Saayman25-Feb-08 0:04
Harvey Saayman25-Feb-08 0:04 
GeneralRe: refreshing a form on closing of another form Pin
Miss Maheshwari25-Feb-08 17:18
Miss Maheshwari25-Feb-08 17:18 
GeneralRe: refreshing a form on closing of another form Pin
Harvey Saayman25-Feb-08 19:02
Harvey Saayman25-Feb-08 19:02 
NewsGood Tip for C# Threading in Windows Service Pin
Malcolm Smart24-Feb-08 23:35
Malcolm Smart24-Feb-08 23:35 
using System.Threading;
Thread myThread = new Thread(new ThreadStart(_listener.Prepare));
myThread.Start();
The Start call on myThread is quite important. Without it, the thread doesn't start, and no amount of debug code in the 'Prepare' method will get called and you look a complete arse when you ask a colleague for help. If you call Start on your thread, your thread starts and everything is really good.

It's gonna be one of those weeks.

Knowledge is hereditary, it will find its way up or down. - Luc Pattyn


so you answer don't be scared of failure
The only failure is never to try
Things You've Never Done - Passenger -2008


QuestionRedefine module in assembly Pin
Maruf Maniruzzaman24-Feb-08 23:29
Maruf Maniruzzaman24-Feb-08 23:29 
GeneralRe: Redefine module in assembly Pin
Christian Graus24-Feb-08 23:38
protectorChristian Graus24-Feb-08 23:38 
JokeRe: Redefine module in assembly Pin
Maruf Maniruzzaman25-Feb-08 0:12
Maruf Maniruzzaman25-Feb-08 0:12 
GeneralRe: Redefine module in assembly Pin
Pete O'Hanlon25-Feb-08 1:49
mvePete O'Hanlon25-Feb-08 1:49 
GeneralCopy text from control Pin
D i x y24-Feb-08 22:56
D i x y24-Feb-08 22:56 
GeneralRe: Copy text from control Pin
Arjun Marwaha25-Feb-08 1:04
Arjun Marwaha25-Feb-08 1:04 
GeneralRe: Copy text from control Pin
D i x y25-Feb-08 1:45
D i x y25-Feb-08 1:45 
GeneralRe: Copy text from control Pin
Subrat Ranjan Pal25-Feb-08 1:16
Subrat Ranjan Pal25-Feb-08 1:16 
GeneralHelp Graph Excel Pin
JeremH24-Feb-08 22:52
JeremH24-Feb-08 22:52 
Generalregarding the memory handling Pin
karthikeyan198324-Feb-08 22:39
karthikeyan198324-Feb-08 22:39 
GeneralRe: regarding the memory handling Pin
N a v a n e e t h24-Feb-08 22:45
N a v a n e e t h24-Feb-08 22:45 
GeneralRe: regarding the memory handling Pin
karthikeyan198324-Feb-08 23:08
karthikeyan198324-Feb-08 23:08 
AnswerRe: regarding the memory handling Pin
Martin#24-Feb-08 22:52
Martin#24-Feb-08 22:52 
GeneralRe: regarding the memory handling Pin
Christian Graus24-Feb-08 22:56
protectorChristian Graus24-Feb-08 22:56 
GeneralRe: regarding the memory handling Pin
karthikeyan198324-Feb-08 23:37
karthikeyan198324-Feb-08 23:37 
GeneralRe: regarding the memory handling Pin
Scott Dorman25-Feb-08 18:24
professionalScott Dorman25-Feb-08 18:24 
Generalfactorial calculation in c# Pin
ashutosh kumar jha24-Feb-08 22:20
ashutosh kumar jha24-Feb-08 22:20 

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.