Click here to Skip to main content
15,909,897 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Windows Mobile 5.0 == Windows Mobile 2005? Pin
toxcct28-Jul-06 2:31
toxcct28-Jul-06 2:31 
GeneralRe: Windows Mobile 5.0 == Windows Mobile 2005? Pin
George_George1-Aug-06 22:42
George_George1-Aug-06 22:42 
AnswerRe: Windows Mobile 5.0 == Windows Mobile 2005? Pin
Mike Dimmick28-Jul-06 3:57
Mike Dimmick28-Jul-06 3:57 
GeneralRe: Windows Mobile 5.0 == Windows Mobile 2005? Pin
George_George1-Aug-06 22:39
George_George1-Aug-06 22:39 
Questiontracing DLL in. NET Pin
Abhi Lahare28-Jul-06 2:18
Abhi Lahare28-Jul-06 2:18 
QuestionRe: tracing DLL in. NET Pin
toxcct28-Jul-06 2:26
toxcct28-Jul-06 2:26 
GeneralRe: tracing DLL in. NET Pin
Abhi Lahare28-Jul-06 2:32
Abhi Lahare28-Jul-06 2:32 
GeneralRe: tracing DLL in. NET Pin
toxcct28-Jul-06 3:01
toxcct28-Jul-06 3:01 
wow, i think you have some lacks i have to fill here.

C++ is only a language. you can program for different target system with C++, like Windows, Unix, Mac... the difference (if you code is well written and portable) will not be in your sources, but in the binary the compiler/linker generates. this binary is commonly called "native", as it directly contain the microprocessor instructions.

by opposition to native code, .NET (i mean, the .NET framework) is a framework like the Java Virtual Machine which - is supposed to - allow the code compiled to work on every plateform. this implies the compiler generate an intermediate language (MSIL for .NET, ByteCode for JavaVM). this intermediate language is called Managed code because its execution is done only within the .NET framework.

some languages (like C#) generate only managed code. but C++ can do both.
if you program with Win32/MFC/ATL/WTL libraries, then the code will generate some native instructions. but the Microsoft C++ compiler can also generate "Managed C++" also called (C++/CLI) for the .NET framework.

then, to come back to your problem, when you say the DLL is a C++ DLL, you don't explain much.
also, saying that .NET is a C# application does no only explain nothing, but is wrong in the facts.

now, knowing these things, can you please explain what problem you encounter, and what you want to do ?


TOXCCT >>> GEII power

[VisualCalc 3.0  updated ][Flags Beginner's Guide  new! ]

GeneralRe: tracing DLL in. NET Pin
Abhi Lahare28-Jul-06 2:37
Abhi Lahare28-Jul-06 2:37 
AnswerRe: tracing DLL in. NET Pin
Cedric Moonen28-Jul-06 2:53
Cedric Moonen28-Jul-06 2:53 
GeneralRe: tracing DLL in. NET Pin
Cedric Moonen28-Jul-06 2:57
Cedric Moonen28-Jul-06 2:57 
AnswerRe: tracing DLL in. NET Pin
Eytukan28-Jul-06 7:43
Eytukan28-Jul-06 7:43 
QuestionClosing an application while it is still busy Pin
cv_k3n28-Jul-06 1:51
cv_k3n28-Jul-06 1:51 
AnswerRe: Closing an application while it is still busy Pin
Naveen28-Jul-06 1:58
Naveen28-Jul-06 1:58 
AnswerRe: Closing an application while it is still busy Pin
Cedric Moonen28-Jul-06 2:00
Cedric Moonen28-Jul-06 2:00 
GeneralRe: Closing an application while it is still busy Pin
cv_k3n28-Jul-06 4:21
cv_k3n28-Jul-06 4:21 
GeneralRe: Closing an application while it is still busy Pin
Eytukan28-Jul-06 7:47
Eytukan28-Jul-06 7:47 
GeneralRe: Closing an application while it is still busy Pin
cv_k3n28-Jul-06 17:03
cv_k3n28-Jul-06 17:03 
QuestionRe: Closing an application while it is still busy Pin
David Crow28-Jul-06 5:00
David Crow28-Jul-06 5:00 
Questiondynamically allocted array question Pin
kitty528-Jul-06 1:22
kitty528-Jul-06 1:22 
AnswerRe: dynamically allocted array question Pin
Cedric Moonen28-Jul-06 1:31
Cedric Moonen28-Jul-06 1:31 
GeneralRe: dynamically allocted array question Pin
Steen Krogsgaard28-Jul-06 1:39
Steen Krogsgaard28-Jul-06 1:39 
GeneralRe: dynamically allocted array question Pin
kitty528-Jul-06 2:08
kitty528-Jul-06 2:08 
GeneralRe: dynamically allocted array question Pin
Cedric Moonen28-Jul-06 2:15
Cedric Moonen28-Jul-06 2:15 
GeneralRe: dynamically allocted array question Pin
kitty528-Jul-06 2:26
kitty528-Jul-06 2:26 

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.