Click here to Skip to main content
15,922,533 members
Home / Discussions / C#
   

C#

 
QuestionCapturing Text using Global mouse event Pin
CSharpBeginer12-Feb-07 22:57
CSharpBeginer12-Feb-07 22:57 
AnswerRe: Capturing Text using Global mouse event Pin
Christian Graus12-Feb-07 23:08
protectorChristian Graus12-Feb-07 23:08 
QuestionOverride background in TextBox? Pin
Gywox12-Feb-07 22:44
Gywox12-Feb-07 22:44 
AnswerRe: Override background in TextBox? Pin
Christian Graus12-Feb-07 23:11
protectorChristian Graus12-Feb-07 23:11 
Questionhow to list network computer name, Ip in C# Pin
Sanjib Raj12-Feb-07 22:41
Sanjib Raj12-Feb-07 22:41 
AnswerRe: how to list network computer name, Ip in C# Pin
Michael Sync13-Feb-07 0:02
Michael Sync13-Feb-07 0:02 
QuestionHow to preserve Globally Connection Object? Pin
vaibhavnvag12-Feb-07 22:23
vaibhavnvag12-Feb-07 22:23 
AnswerRe: How to preserve Globally Connection Object? Pin
bertvan12-Feb-07 22:51
bertvan12-Feb-07 22:51 
AnswerRe: How to preserve Globally Connection Object? Pin
Niiiissssshhhhhuuuuu13-Feb-07 1:51
Niiiissssshhhhhuuuuu13-Feb-07 1:51 
AnswerRe: How to preserve Globally Connection Object? Pin
Pete O'Hanlon13-Feb-07 2:55
mvePete O'Hanlon13-Feb-07 2:55 
QuestionHow to create Report Using Dynamic SQL Pin
jaganil12-Feb-07 22:22
jaganil12-Feb-07 22:22 
AnswerRe: How to create Report Using Dynamic SQL Pin
Colin Angus Mackay12-Feb-07 22:43
Colin Angus Mackay12-Feb-07 22:43 
GeneralRe: How to create Report Using Dynamic SQL Pin
jaganil12-Feb-07 22:57
jaganil12-Feb-07 22:57 
GeneralRe: How to create Report Using Dynamic SQL Pin
Christian Graus12-Feb-07 23:14
protectorChristian Graus12-Feb-07 23:14 
QuestionHeight of Combobox Pin
joebaas12-Feb-07 22:19
joebaas12-Feb-07 22:19 
AnswerRe: Height of Combobox Pin
il_masacratore14-Feb-07 2:36
il_masacratore14-Feb-07 2:36 
GeneralRe: Height of Combobox Pin
joebaas14-Feb-07 20:47
joebaas14-Feb-07 20:47 
QuestionDistribute load to second app [modified] Pin
Matglas12-Feb-07 21:37
Matglas12-Feb-07 21:37 
AnswerRe: Distribute load to second app Pin
miestas12-Feb-07 22:01
miestas12-Feb-07 22:01 
GeneralRe: Distribute load to second app Pin
Matglas12-Feb-07 23:11
Matglas12-Feb-07 23:11 
GeneralRe: Distribute load to second app Pin
miestas13-Feb-07 6:26
miestas13-Feb-07 6:26 
GeneralRe: Distribute load to second app Pin
Matglas13-Feb-07 7:51
Matglas13-Feb-07 7:51 
AnswerRe: Distribute load to second app Pin
Christian Graus12-Feb-07 23:18
protectorChristian Graus12-Feb-07 23:18 
GeneralRe: Distribute load to second app Pin
Matglas13-Feb-07 0:18
Matglas13-Feb-07 0:18 
AnswerRe: Distribute load to second app Pin
KraGiE7913-Feb-07 1:29
KraGiE7913-Feb-07 1:29 
If you're worried about the load on your UI, you should really remove the actual implementation into a separate worker thread. In windows forms, it's best practice to use the UI for what it is, and have the actual event handlers validate the data before sending the actual processing to another thread.

Remoting would be a good way to move your load off to another application, but if you need "events", you're in for a seriously rough learning curve.

Kay Lee
-Just your average coder

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.