Click here to Skip to main content
15,921,716 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How to get the source code of an MFC application with .exe file extension Pin
toxcct12-Feb-06 21:23
toxcct12-Feb-06 21:23 
GeneralRe: How to get the source code of an MFC application with .exe file extension Pin
Pavithra Bhat H12-Feb-06 23:31
Pavithra Bhat H12-Feb-06 23:31 
GeneralRe: How to get the source code of an MFC application with .exe file extension Pin
toxcct12-Feb-06 23:51
toxcct12-Feb-06 23:51 
GeneralRe: How to get the source code of an MFC application with .exe file extension Pin
ThatsAlok14-Feb-06 19:30
ThatsAlok14-Feb-06 19:30 
QuestionCustom Radio Button Pin
Nishad S12-Feb-06 18:24
Nishad S12-Feb-06 18:24 
AnswerRe: Custom Radio Button Pin
NoxMan12-Feb-06 20:35
NoxMan12-Feb-06 20:35 
GeneralRe: Custom Radio Button Pin
Nishad S12-Feb-06 20:40
Nishad S12-Feb-06 20:40 
GeneralRe: Custom Radio Button Pin
NoxMan12-Feb-06 21:31
NoxMan12-Feb-06 21:31 
GeneralRe: Custom Radio Button Pin
toxcct12-Feb-06 21:34
toxcct12-Feb-06 21:34 
Questionhow to write a dll export function, only export ordinal? Pin
HOW WHAT12-Feb-06 17:57
HOW WHAT12-Feb-06 17:57 
AnswerRe: how to write a dll export function, only export ordinal? Pin
cmk12-Feb-06 17:59
cmk12-Feb-06 17:59 
GeneralRe: how to write a dll export function, only export ordinal? Pin
HOW WHAT12-Feb-06 18:04
HOW WHAT12-Feb-06 18:04 
QuestionFile access only by login User Pin
sunit512-Feb-06 17:34
sunit512-Feb-06 17:34 
AnswerRe: File access only by login User Pin
LivingThoughts12-Feb-06 18:40
LivingThoughts12-Feb-06 18:40 
GeneralRe: File access only by login User Pin
sunit512-Feb-06 19:01
sunit512-Feb-06 19:01 
AnswerRe: File access only by login User Pin
ThatsAlok14-Feb-06 17:40
ThatsAlok14-Feb-06 17:40 
Questionread write and delete from the registry Pin
locoone12-Feb-06 16:20
locoone12-Feb-06 16:20 
AnswerRe: read write and delete from the registry Pin
_AnsHUMAN_ 12-Feb-06 16:58
_AnsHUMAN_ 12-Feb-06 16:58 
AnswerRe: read write and delete from the registry Pin
LivingThoughts12-Feb-06 17:03
LivingThoughts12-Feb-06 17:03 
AnswerRe: read write and delete from the registry Pin
ThatsAlok14-Feb-06 18:25
ThatsAlok14-Feb-06 18:25 
Questionerror when run app. in other computer Pin
leenmie12-Feb-06 16:11
leenmie12-Feb-06 16:11 
AnswerRe: error when run app. in other computer Pin
Ryan Binns12-Feb-06 17:11
Ryan Binns12-Feb-06 17:11 
GeneralRe: error when run app. in other computer Pin
leenmie12-Feb-06 18:02
leenmie12-Feb-06 18:02 
GeneralRe: error when run app. in other computer Pin
Ryan Binns12-Feb-06 18:41
Ryan Binns12-Feb-06 18:41 
AnswerRe: error when run app. in other computer Pin
S Douglas12-Feb-06 20:21
professionalS Douglas12-Feb-06 20:21 
leenmie wrote:
When I run it on other computer, error like above too


The problem you’re experiencing is a dependency issue.

If you’re running W2k then you can open the exe with dependency walker to figure out which dlls you need to include with the exe (distribute).

If the computer is a Windows XP system, there is a new paradigm for dealing with DLLs. It’s called SXS (side by side) DLL support. In other words it allows the target computer to run multiple versions of the same DLL. This was done to eliminate DLL hell issues.

What this means to you is, your app will now need an installer to add the new DLLs to the system.

Redistributing Visual C++ Files[^]

http://msdn2.microsoft.com/en-us/library/ms235285.aspx[^]

http://blogs.msdn.com/nikolad/archive/2005/09/02/460368.aspx[^]



-- modified at 2:23 Monday 13th February, 2006

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.