Click here to Skip to main content
15,900,818 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
QuestionRe: Should all classes have an interface base class? Pin
led mike18-Jun-09 4:31
led mike18-Jun-09 4:31 
AnswerRe: Should all classes have an interface base class? Pin
Dave Doknjas18-Jun-09 4:48
Dave Doknjas18-Jun-09 4:48 
GeneralRe: Should all classes have an interface base class? Pin
led mike18-Jun-09 5:07
led mike18-Jun-09 5:07 
AnswerRe: Should all classes have an interface base class? Pin
Luc Pattyn17-Jun-09 5:16
sitebuilderLuc Pattyn17-Jun-09 5:16 
QuestionHow to access a variable inside another thread? [modified] Pin
Nikhil_777715-Jun-09 15:56
Nikhil_777715-Jun-09 15:56 
AnswerRe: How to access a variable inside another thread? Pin
N a v a n e e t h15-Jun-09 18:02
N a v a n e e t h15-Jun-09 18:02 
QuestionRe: How to access a variable inside another thread? Pin
Nikhil_777716-Jun-09 5:38
Nikhil_777716-Jun-09 5:38 
AnswerRe: How to access a variable inside another thread? Pin
Mark Salsbery16-Jun-09 6:01
Mark Salsbery16-Jun-09 6:01 
Variables do not reside in a thread - they reside in memory.

The memory for your process is shared by all threads of that process.

Therefore, you access variables the same way you always do.

As mentioned before, if more than one thread can access a variable
at the same time, you may need to synchronize access to the variable.

Mark Salsbery
Microsoft MVP - Visual C++

Java | [Coffee]

AnswerRe: How to access a variable inside another thread? Pin
killabyte18-Jun-09 3:34
killabyte18-Jun-09 3:34 
GeneralRe: How to access a variable inside another thread? Pin
Nikhil_777718-Jun-09 4:58
Nikhil_777718-Jun-09 4:58 
QuestionListView in c++ windows forms applications Pin
wael_r14-Jun-09 22:26
wael_r14-Jun-09 22:26 
AnswerRe: ListView in c++ windows forms applications Pin
led mike15-Jun-09 4:24
led mike15-Jun-09 4:24 
QuestionEncryption / Decryption Pin
queries36513-Jun-09 10:02
queries36513-Jun-09 10:02 
AnswerRe: Encryption / Decryption Pin
Luc Pattyn13-Jun-09 10:13
sitebuilderLuc Pattyn13-Jun-09 10:13 
Question[newbie] error C2065: 'b' : undeclared identifier Pin
jon-8013-Jun-09 4:16
professionaljon-8013-Jun-09 4:16 
AnswerRe: [newbie] error C2065: 'b' : undeclared identifier Pin
Luc Pattyn13-Jun-09 4:46
sitebuilderLuc Pattyn13-Jun-09 4:46 
GeneralRe: [newbie] error C2065: 'b' : undeclared identifier Pin
jon-8013-Jun-09 4:52
professionaljon-8013-Jun-09 4:52 
GeneralRe: [newbie] error C2065: 'b' : undeclared identifier Pin
Randor 13-Jun-09 5:15
professional Randor 13-Jun-09 5:15 
GeneralRe: [newbie] error C2065: 'b' : undeclared identifier Pin
jon-8013-Jun-09 5:18
professionaljon-8013-Jun-09 5:18 
GeneralRe: [newbie] error C2065: 'b' : undeclared identifier Pin
Luc Pattyn13-Jun-09 14:32
sitebuilderLuc Pattyn13-Jun-09 14:32 
AnswerRe: [newbie] error C2065: 'b' : undeclared identifier Pin
N a v a n e e t h13-Jun-09 4:48
N a v a n e e t h13-Jun-09 4:48 
Question[newbie] error C2065: 'b' : undeclared identifier Pin
jon-8013-Jun-09 4:12
professionaljon-8013-Jun-09 4:12 
AnswerRe: [newbie] error C2065: 'b' : undeclared identifier Pin
dybs13-Jun-09 5:20
dybs13-Jun-09 5:20 
QuestionDataGrid1 column width Pin
wael_r12-Jun-09 23:36
wael_r12-Jun-09 23:36 
QuestionRunning apps remotely (CLI) Pin
See_Sharp12-Jun-09 10:51
See_Sharp12-Jun-09 10:51 

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.