Click here to Skip to main content
15,891,943 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Get Value From Registry Key Pin
Blake Miller8-Jun-05 6:40
Blake Miller8-Jun-05 6:40 
GeneralRe: Get Value From Registry Key Pin
Matthew Devine8-Jun-05 6:56
Matthew Devine8-Jun-05 6:56 
GeneralRe: Get Value From Registry Key Pin
ThatsAlok8-Jun-05 18:26
ThatsAlok8-Jun-05 18:26 
GeneralRe: Get Value From Registry Key Pin
Matthew Devine9-Jun-05 6:17
Matthew Devine9-Jun-05 6:17 
GeneralRe: Get Value From Registry Key Pin
ThatsAlok9-Jun-05 18:14
ThatsAlok9-Jun-05 18:14 
GeneralRe: Get Value From Registry Key Pin
Matthew Devine11-Jul-05 4:29
Matthew Devine11-Jul-05 4:29 
Generalmaking a library Pin
Jared F.8-Jun-05 6:11
Jared F.8-Jun-05 6:11 
GeneralRe: making a library Pin
mark novak8-Jun-05 15:14
mark novak8-Jun-05 15:14 
How to make a library can be ambigious. There are many types. You could have .dlls, or .libs that are directly linked into the program or just a directory of headers or even headers with source. I'd consider those all libraries. So how to make each one.

To make a library which is used at runtime, use .dll. Make a new win32 application that is a dll project and then in the project you want to use the .dll, include the header to the .dll. Source is not needed, but the header will always be needed for whatever library you make. Unless you do COM or things of that nature.

To make a library where no .dll is required because you wanted it linked in statically use a .lib. Create a .lib project for your library and then in the client project add the .lib to the linker tab in project settings and include the header.

For the other two just make sure the client application includes and has access to the files needed. This is the simplest of libraries.
GeneralRe: making a library Pin
Jared F.10-Jun-05 5:10
Jared F.10-Jun-05 5:10 
GeneralEMF Coordinates & Dimensions Pin
massad8-Jun-05 5:50
massad8-Jun-05 5:50 
GeneralRe: EMF Coordinates & Dimensions Pin
Shog98-Jun-05 7:23
sitebuilderShog98-Jun-05 7:23 
GeneralRe: EMF Coordinates & Dimensions Pin
massad9-Jun-05 8:28
massad9-Jun-05 8:28 
Questioncross references tools? Pin
ThinkingPrometheus8-Jun-05 5:37
ThinkingPrometheus8-Jun-05 5:37 
AnswerRe: cross references tools? Pin
David Crow8-Jun-05 5:39
David Crow8-Jun-05 5:39 
GeneralRe: cross references tools? Pin
ThinkingPrometheus8-Jun-05 6:17
ThinkingPrometheus8-Jun-05 6:17 
GeneralRe: cross references tools? Pin
David Crow8-Jun-05 6:27
David Crow8-Jun-05 6:27 
GeneralRe: cross references tools? Pin
ThinkingPrometheus8-Jun-05 20:32
ThinkingPrometheus8-Jun-05 20:32 
GeneralRe: cross references tools? Pin
David Crow9-Jun-05 2:07
David Crow9-Jun-05 2:07 
GeneralExecute another program Pin
bkphat8-Jun-05 5:04
bkphat8-Jun-05 5:04 
GeneralRe: Execute another program Pin
David Crow8-Jun-05 5:06
David Crow8-Jun-05 5:06 
GeneralRe: Execute another program Pin
ThatsAlok8-Jun-05 18:09
ThatsAlok8-Jun-05 18:09 
GeneralOK, I give up... Pin
Nitron8-Jun-05 4:53
Nitron8-Jun-05 4:53 
GeneralRe: OK, I give up... Pin
PJ Arends8-Jun-05 5:14
professionalPJ Arends8-Jun-05 5:14 
GeneralRe: OK, I give up... Pin
Nitron8-Jun-05 5:26
Nitron8-Jun-05 5:26 
GeneralRe: OK, I give up... Pin
Chris Losinger8-Jun-05 5:16
professionalChris Losinger8-Jun-05 5:16 

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.