Click here to Skip to main content
15,892,059 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Programattically setting DLL versioning info Pin
David Crow10-Jun-05 10:28
David Crow10-Jun-05 10:28 
GeneralRe: Programattically setting DLL versioning info Pin
Blake V. Miller10-Jun-05 13:19
Blake V. Miller10-Jun-05 13:19 
GeneralCreating Executable Pin
Ooder10-Jun-05 6:38
Ooder10-Jun-05 6:38 
GeneralRe: Creating Executable Pin
David Crow10-Jun-05 6:51
David Crow10-Jun-05 6:51 
GeneralRe: Creating Executable Pin
Anonymous10-Jun-05 11:17
Anonymous10-Jun-05 11:17 
GeneralRe: Creating Executable Pin
Blake V. Miller10-Jun-05 13:21
Blake V. Miller10-Jun-05 13:21 
GeneralRe: Creating Executable Pin
Alex Korchemniy10-Jun-05 9:34
Alex Korchemniy10-Jun-05 9:34 
GeneralRe: Creating Executable Pin
John R. Shaw10-Jun-05 21:04
John R. Shaw10-Jun-05 21:04 
I have not used VS.NET, but it should allow you to staticaly link to the libraries you are using. what that means is that the library becomes part of your program. In the passed that used to mean the entire library, but today it just means the parts that you actualy use. This will make you program much larger, depending on how much of it is linked to your program.

The main advatage of using DLLs, is that you may be sharing the library with other programs. If the creator of the DLL fixes minor errors in the DLL and the user update that same DLL, then the fixes also affect your program.

The disadvatage of using DLLs, is that you must redistibute the DLLs with your program (just incase your users do not have it installed).

As for DEBUG and RELEASE: The problem is exactly the same thing, you have to ether staticaly link the DLL libraries or install the libraries on the target machine. The only reason for installing a DEBUG version on a target machine is that it will give you some feed-back. You can accomplish that in the DEBUG or RELEASE version by setting your own a define statement, instead of using the _DEBUG statement. The advatage of useing the _DEBUG statement is that it will generate the ASSERT dialogbox on the the target machine. The disavantage is that MFC will (some-times) generate an invalid ASSERT dialogbox, meaning that the call will fail but do no damage (if youre handling the result, then no problem).

Sorry, I tend to get carried away.

Good Luck!.

INTP
"The more help VB provides VB programmers, the more miserable your life as a C++ programmer becomes."
Andrew W. Troelsen
QuestionHow do I make the window for my program non-resizable? Pin
Anonymous10-Jun-05 6:31
Anonymous10-Jun-05 6:31 
AnswerRe: How do I make the window for my program non-resizable? Pin
David Crow10-Jun-05 6:49
David Crow10-Jun-05 6:49 
GeneralRe: How do I make the window for my program non-resizable? Pin
Anonymous10-Jun-05 10:37
Anonymous10-Jun-05 10:37 
GeneralRe: How do I make the window for my program non-resizable? Pin
David Crow10-Jun-05 11:01
David Crow10-Jun-05 11:01 
AnswerRe: How do I make the window for my program non-resizable? Pin
ThatsAlok10-Jun-05 18:42
ThatsAlok10-Jun-05 18:42 
GeneralRe: How do I make the window for my program non-resizable? Pin
David Crow13-Jun-05 6:20
David Crow13-Jun-05 6:20 
QuestionATL inproc server attributed or not? Pin
CherezZaboro10-Jun-05 5:14
CherezZaboro10-Jun-05 5:14 
GeneralWM_LBUTTONDOWN wanted Pin
Alexander M.,10-Jun-05 5:13
Alexander M.,10-Jun-05 5:13 
GeneralRe: WM_LBUTTONDOWN wanted Pin
Blake Miller10-Jun-05 5:49
Blake Miller10-Jun-05 5:49 
GeneralRe: WM_LBUTTONDOWN wanted Pin
Tom Archer10-Jun-05 5:51
Tom Archer10-Jun-05 5:51 
GeneralRe: WM_LBUTTONDOWN wanted Pin
David Crow10-Jun-05 6:06
David Crow10-Jun-05 6:06 
GeneralRe: WM_LBUTTONDOWN wanted Pin
Blake Miller10-Jun-05 6:27
Blake Miller10-Jun-05 6:27 
GeneralRe: WM_LBUTTONDOWN wanted Pin
Tom Archer10-Jun-05 5:50
Tom Archer10-Jun-05 5:50 
GeneralRe: WM_LBUTTONDOWN wanted Pin
Tom Archer10-Jun-05 5:56
Tom Archer10-Jun-05 5:56 
GeneralRe: WM_LBUTTONDOWN wanted Pin
Alexander M.,10-Jun-05 8:07
Alexander M.,10-Jun-05 8:07 
GeneralRe: WM_LBUTTONDOWN wanted Pin
Tom Archer10-Jun-05 8:37
Tom Archer10-Jun-05 8:37 
GeneralRe: WM_LBUTTONDOWN wanted Pin
Tom Archer10-Jun-05 8:47
Tom Archer10-Jun-05 8:47 

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.