Click here to Skip to main content
15,907,326 members
Home / Discussions / C#
   

C#

 
AnswerRe: Configuration error! Pin
SABhatti6-Apr-07 6:00
SABhatti6-Apr-07 6:00 
QuestionGDIPlus Thread safeness Pin
a.mulay5-Apr-07 23:34
a.mulay5-Apr-07 23:34 
QuestionHelp for Window Service. Pin
blue_arc5-Apr-07 23:07
blue_arc5-Apr-07 23:07 
QuestionUsing a C++ function (defined in a dll) with char* param [modified] Pin
jozsurf5-Apr-07 22:35
jozsurf5-Apr-07 22:35 
AnswerRe: Using a C++ function (defined in a dll) with char* param Pin
CPallini6-Apr-07 2:06
mveCPallini6-Apr-07 2:06 
AnswerRe: Using a C++ function (defined in a dll) with char* param Pin
Luc Pattyn6-Apr-07 4:31
sitebuilderLuc Pattyn6-Apr-07 4:31 
GeneralRe: Using a C++ function (defined in a dll) with char* param Pin
jozsurf6-Apr-07 16:46
jozsurf6-Apr-07 16:46 
GeneralRe: Using a C++ function (defined in a dll) with char* param Pin
jozsurf8-Apr-07 15:28
jozsurf8-Apr-07 15:28 
QuestionWebpage load Pin
linhuu5-Apr-07 22:01
linhuu5-Apr-07 22:01 
AnswerRe: Webpage load Pin
Stefan Troschuetz5-Apr-07 23:45
Stefan Troschuetz5-Apr-07 23:45 
AnswerRe: Webpage load Pin
Obaid ur Rehman5-Apr-07 23:49
Obaid ur Rehman5-Apr-07 23:49 
QuestionHow can i make exe of my appliction? Pin
Nekshan5-Apr-07 20:24
Nekshan5-Apr-07 20:24 
AnswerRe: How can i make exe of my appliction? Pin
Obaid ur Rehman5-Apr-07 20:34
Obaid ur Rehman5-Apr-07 20:34 
Questionxml document Pin
Tauseef A5-Apr-07 20:23
Tauseef A5-Apr-07 20:23 
Questionwhat are the new softwares for screen capturing [modified] Pin
khema5-Apr-07 19:49
khema5-Apr-07 19:49 
AnswerRe: what are the new softwares for screen capturing Pin
shrinerainxp5-Apr-07 21:35
shrinerainxp5-Apr-07 21:35 
GeneralRe: what are the new softwares for screen capturing Pin
khema8-Apr-07 18:05
khema8-Apr-07 18:05 
GeneralRe: what are the new softwares for screen capturing Pin
khema8-Apr-07 18:31
khema8-Apr-07 18:31 
Questionhow to know if someone visited my site? Pin
Nekshan5-Apr-07 19:36
Nekshan5-Apr-07 19:36 
QuestionHow to solve"Cross thread operation not valid" error when programming with C#.net Pin
sweenySL5-Apr-07 19:34
sweenySL5-Apr-07 19:34 
AnswerRe: How to solve"Cross thread operation not valid" error when programming with C#.net Pin
Obaid ur Rehman5-Apr-07 20:31
Obaid ur Rehman5-Apr-07 20:31 
AnswerRe: How to solve"Cross thread operation not valid" error when programming with C#.net Pin
shrinerainxp5-Apr-07 21:24
shrinerainxp5-Apr-07 21:24 
AnswerRe: How to solve"Cross thread operation not valid" error when programming with C#.net Pin
Luc Pattyn6-Apr-07 4:39
sitebuilderLuc Pattyn6-Apr-07 4:39 
Hi,

you create threads when executing asynchronous stuff, e.g. with the timers (except for
Windows.Forms.Timer).

setting CheckForIllegalCrossThreadCalls false only disables the checking, it does
not avoid the problem that may result (UI freeze) immediately or after a while...

If InvokeRequired is true, you really need the Invoke (as you did), and then
the code you invoke should execute; check it with debugger or with logging !

PS: is this a C# question ?

Smile | :)



Luc Pattyn

[My Articles]

QuestionError in saving excel file Pin
Manish_Home5-Apr-07 19:32
Manish_Home5-Apr-07 19:32 
AnswerRe: Error in saving excel file Pin
roel_v5-Apr-07 21:22
roel_v5-Apr-07 21:22 

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.