Click here to Skip to main content
16,008,750 members
Home / Discussions / C#
   

C#

 
Questiondiffernce between Crystal Report.rpt and Report.rdlc PinPopular
lavankumar6-Feb-09 20:41
lavankumar6-Feb-09 20:41 
QuestionNLP Projects Pin
komathyc6-Feb-09 20:19
komathyc6-Feb-09 20:19 
AnswerRe: NLP Projects Pin
Christian Graus6-Feb-09 23:17
protectorChristian Graus6-Feb-09 23:17 
QuestionSeparate thread Pin
Muammar©6-Feb-09 19:58
Muammar©6-Feb-09 19:58 
AnswerRe: Separate thread Pin
Christian Graus6-Feb-09 23:16
protectorChristian Graus6-Feb-09 23:16 
GeneralRe: Separate thread Pin
Muammar©6-Feb-09 23:52
Muammar©6-Feb-09 23:52 
AnswerRe: Separate thread Pin
Luc Pattyn7-Feb-09 6:46
sitebuilderLuc Pattyn7-Feb-09 6:46 
AnswerRe: Separate thread Pin
Daniel Grunwald7-Feb-09 0:55
Daniel Grunwald7-Feb-09 0:55 
Usually, I'm using BeginInvoke with an anonymous method:

string newValue = ...;
BeginInvoke(new Action(delegate {
   theControl.Property = newValue;
}));


You have to be a bit careful with BeginInvoke as it's always an asynchronous call; when called from the GUI thread it will delay executing the delegate until your code returns to the message loop. And you have to be careful what variables you use in the delegate - e.g. if you use a loop variable, it might have changed to the value for the next iteration before BeginInvoke calls your delegate.
But BeginInvoke is faster than Invoke because it doesn't have to wait, and it doesn't have the potential for deadlocks.
GeneralRe: Separate thread Pin
Muammar©7-Feb-09 3:09
Muammar©7-Feb-09 3:09 
QuestionAdding a static event handler to a form that will be disposed. Pin
Flyboy766-Feb-09 15:07
Flyboy766-Feb-09 15:07 
AnswerRe: Adding a static event handler to a form that will be disposed. Pin
N a v a n e e t h6-Feb-09 16:21
N a v a n e e t h6-Feb-09 16:21 
GeneralRe: Adding a static event handler to a form that will be disposed. Pin
Flyboy767-Feb-09 17:35
Flyboy767-Feb-09 17:35 
QuestionReading multiple records from a database Pin
ferronrsmith6-Feb-09 13:56
ferronrsmith6-Feb-09 13:56 
AnswerRe: Reading multiple records from a database Pin
Christian Graus6-Feb-09 14:08
protectorChristian Graus6-Feb-09 14:08 
GeneralRe: Reading multiple records from a database Pin
ferronrsmith6-Feb-09 14:19
ferronrsmith6-Feb-09 14:19 
GeneralRe: Reading multiple records from a database Pin
Christian Graus6-Feb-09 16:31
protectorChristian Graus6-Feb-09 16:31 
GeneralRe: Reading multiple records from a database Pin
ferronrsmith6-Feb-09 16:48
ferronrsmith6-Feb-09 16:48 
GeneralRe: Reading multiple records from a database Pin
Christian Graus6-Feb-09 18:16
protectorChristian Graus6-Feb-09 18:16 
GeneralRe: Reading multiple records from a database Pin
ferronrsmith6-Feb-09 20:22
ferronrsmith6-Feb-09 20:22 
GeneralRe: Reading multiple records from a database Pin
ferronrsmith7-Feb-09 10:21
ferronrsmith7-Feb-09 10:21 
QuestionProblem Replacing Smart Quotes Pin
Aaron Hartley6-Feb-09 13:33
Aaron Hartley6-Feb-09 13:33 
AnswerRe: Problem Replacing Smart Quotes Pin
Guffa6-Feb-09 14:51
Guffa6-Feb-09 14:51 
QuestionC# Registry Change Event Pin
Michael Fritzius6-Feb-09 12:07
professionalMichael Fritzius6-Feb-09 12:07 
AnswerRe: C# Registry Change Event Pin
Christian Graus6-Feb-09 12:42
protectorChristian Graus6-Feb-09 12:42 
AnswerRe: C# Registry Change Event Pin
cmk6-Feb-09 15:54
cmk6-Feb-09 15:54 

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.