Click here to Skip to main content
16,017,857 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Extracting lparam from WM_KEYDOWN MSG Pin
aquawicket1-Jun-07 13:43
aquawicket1-Jun-07 13:43 
GeneralRe: Extracting lparam from WM_KEYDOWN MSG Pin
Mizan Rahman12-Aug-13 23:24
Mizan Rahman12-Aug-13 23:24 
QuestionUploading file via HTTP Pin
BitWare1-Jun-07 10:09
BitWare1-Jun-07 10:09 
QuestionRe: Uploading file via HTTP Pin
David Crow1-Jun-07 10:19
David Crow1-Jun-07 10:19 
AnswerRe: Uploading file via HTTP Pin
BitWare1-Jun-07 10:29
BitWare1-Jun-07 10:29 
GeneralRe: Uploading file via HTTP Pin
David Crow1-Jun-07 10:33
David Crow1-Jun-07 10:33 
QuestionInterop couse in c++ Pin
includeh101-Jun-07 5:10
includeh101-Jun-07 5:10 
AnswerRe: Interop couse in c++ Pin
Mark Salsbery1-Jun-07 5:29
Mark Salsbery1-Jun-07 5:29 
Mixed-mode is the mixing of managed and unmanaged code in the same assembly. Unmanaged code
is your old standard C++ code. Managed code uses a managed heap and allows access to the
.NET framework from C++ code.

There's lots of forms of interop, but relative to managed/unmanaged code, interop is
"interoperability", the ability to work with data across differing platforms, languages, and
systems. For example, managed C++ provides interop marshaling for passing managed objects
back and forth between managed and unmanaged code. One example is when you need to call a Windows
API that requires a pointer to an object, but you're calling from managed code and you only
have a managed pointer. Objects pointed to by managed pointers can be moved by the system at any
time and also may have data types that don't exist in the unmanaged world. In that case you need
to use interop marshaling so the API gets data it can work with (that doesn't move).

Just my 2 cents...
Mark


"Posting a VB.NET question in the C++ forum will end in tears." Chris Maunder

QuestionProgrammatically find the version of MMC installed Pin
Mushtaque Nizamani1-Jun-07 4:33
Mushtaque Nizamani1-Jun-07 4:33 
QuestionRe: Programmatically find the version of MMC installed Pin
David Crow1-Jun-07 5:30
David Crow1-Jun-07 5:30 
AnswerRe: Programmatically find the version of MMC installed Pin
Mushtaque Nizamani1-Jun-07 5:34
Mushtaque Nizamani1-Jun-07 5:34 
QuestionRe: Programmatically find the version of MMC installed Pin
David Crow1-Jun-07 7:06
David Crow1-Jun-07 7:06 
QuestionBitmaps in a dialog Pin
SimplCodr1-Jun-07 4:10
SimplCodr1-Jun-07 4:10 
AnswerRe: Bitmaps in a dialog Pin
includeh101-Jun-07 5:15
includeh101-Jun-07 5:15 
GeneralRe: Bitmaps in a dialog Pin
SimplCodr1-Jun-07 6:36
SimplCodr1-Jun-07 6:36 
GeneralRe: Bitmaps in a dialog Pin
Mark Salsbery1-Jun-07 6:42
Mark Salsbery1-Jun-07 6:42 
GeneralRe: Bitmaps in a dialog Pin
SimplCodr1-Jun-07 6:57
SimplCodr1-Jun-07 6:57 
AnswerRe: Bitmaps in a dialog Pin
Hamid_RT1-Jun-07 5:27
Hamid_RT1-Jun-07 5:27 
GeneralRe: Bitmaps in a dialog Pin
SimplCodr1-Jun-07 6:39
SimplCodr1-Jun-07 6:39 
GeneralRe: Bitmaps in a dialog Pin
SimplCodr1-Jun-07 6:58
SimplCodr1-Jun-07 6:58 
GeneralRe: Bitmaps in a dialog Pin
Hamid_RT1-Jun-07 9:24
Hamid_RT1-Jun-07 9:24 
GeneralRe: Bitmaps in a dialog Pin
SimplCodr1-Jun-07 9:54
SimplCodr1-Jun-07 9:54 
QuestionGDI / GDI+ Pin
Adno1-Jun-07 4:09
Adno1-Jun-07 4:09 
AnswerRe: GDI / GDI+ Pin
Hamid_RT1-Jun-07 5:28
Hamid_RT1-Jun-07 5:28 
GeneralRe: GDI / GDI+ Pin
Adno1-Jun-07 5:41
Adno1-Jun-07 5:41 

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.