Click here to Skip to main content
15,913,854 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralProblem with control arrays Pin
Stephan Poirier29-Oct-03 11:49
Stephan Poirier29-Oct-03 11:49 
GeneralRe: Problem with control arrays Pin
alex.barylski29-Oct-03 12:04
alex.barylski29-Oct-03 12:04 
GeneralRe: Problem with control arrays Pin
Joaquín M López Muñoz29-Oct-03 12:05
Joaquín M López Muñoz29-Oct-03 12:05 
GeneralRe: Problem with control arrays Pin
Stephan Poirier29-Oct-03 12:43
Stephan Poirier29-Oct-03 12:43 
GeneralRe: Problem with control arrays Pin
Stephan Poirier29-Oct-03 13:01
Stephan Poirier29-Oct-03 13:01 
GeneralATL 7 collection class Pin
Urban Olars29-Oct-03 10:45
Urban Olars29-Oct-03 10:45 
QuestionCan someone clarify some Windows' terms for me Pin
mwhannan29-Oct-03 10:38
mwhannan29-Oct-03 10:38 
AnswerRe: Can someone clarify some Windows' terms for me Pin
alex.barylski29-Oct-03 11:07
alex.barylski29-Oct-03 11:07 
SDK API = (Software development kit) Application programming interface (Analogous to CRT in DOS kinda). SDK includes the tools and docs required and API is the standard or the function interfaces.

MFC = Microsoft foundation classes is a framework (Basically a bunch of classes which do what the win32 API does, but more OOP friendly)

WTL/ATL=Windows/Active template library. Basically does what MFC does for windows API, but using template classes instead of C++ classes.

COM/ActiveX = Was an idea M$ had which would allow for code to be modularized (if thats a word Smile | :) ) basically kept in a binary form which any supported language could use (VB, C++, Delphi, etc). In C++ programmers have long since passed around code in source form as C++ classes, however programmers were still still free to mess up code, modify it, etc...not ideal for commercial code your trying to sell. COM objects were designed to fix this, by keeping everything binary...so programmers had to manipulate data members via accessor/mutators like any OO purist would tell you to do. Also you hide the implementation much better than a C++ class...because functions which are meant to be private are not visible to client programmers...only interface functions are(actually it's at programmers discretion).

COM=Component object model...basically it's a standard binary communication mechanism required for code (written in delphi, c/c++, etc) to communicate with ActiveX/COM objects. This gets hard to explain briefly...i'd advise you to read an article or two on the idea/theory behind it...MSDN used to have lots...but i'm not sure if ActiveX/COM is as big of a buzz word as it was a few years ago, since the release of .NET...you'd have to ask someone more familiar with what .NET actually is and does Smile | :)

This is as far as I understand it anyways Smile | :)



I'm drinking triples, seeing double and acting single Cool | :cool:
GeneralRe: Can someone clarify some Windows' terms for me Pin
Blake Coverett29-Oct-03 11:12
Blake Coverett29-Oct-03 11:12 
AnswerRe: Can someone clarify some Windows' terms for me Pin
Blake Coverett29-Oct-03 11:10
Blake Coverett29-Oct-03 11:10 
AnswerRe: Can someone clarify some Windows' terms for me Pin
mwhannan29-Oct-03 17:10
mwhannan29-Oct-03 17:10 
GeneralLooking for products for relational and code generation Pin
mcgahanfl29-Oct-03 10:35
mcgahanfl29-Oct-03 10:35 
GeneralHelp !!! Pin
Guillermo Rivero29-Oct-03 10:19
Guillermo Rivero29-Oct-03 10:19 
GeneralRe: Help !!! Pin
Christian Graus29-Oct-03 15:06
protectorChristian Graus29-Oct-03 15:06 
GeneralCMDIChildWnd Scrollbars Pin
alex.barylski29-Oct-03 9:50
alex.barylski29-Oct-03 9:50 
GeneralRe: CMDIChildWnd Scrollbars Pin
alex.barylski29-Oct-03 11:17
alex.barylski29-Oct-03 11:17 
GeneralRe: CMDIChildWnd Scrollbars Pin
Peter Molnar29-Oct-03 12:59
Peter Molnar29-Oct-03 12:59 
QuestionWhich one makes for faster programs: DLLs or static libraries??? Pin
mwhannan29-Oct-03 9:24
mwhannan29-Oct-03 9:24 
AnswerRe: Which one makes for faster programs: DLLs or static libraries??? Pin
winalice29-Oct-03 9:35
winalice29-Oct-03 9:35 
AnswerRe: Which one makes for faster programs: DLLs or static libraries??? Pin
alex.barylski29-Oct-03 9:58
alex.barylski29-Oct-03 9:58 
GeneralRe: Which one makes for faster programs: DLLs or static libraries??? Pin
mwhannan29-Oct-03 10:23
mwhannan29-Oct-03 10:23 
GeneralRe: Which one makes for faster programs: DLLs or static libraries??? Pin
alex.barylski29-Oct-03 10:50
alex.barylski29-Oct-03 10:50 
GeneralRe: Which one makes for faster programs: DLLs or static libraries??? Pin
mwhannan29-Oct-03 17:12
mwhannan29-Oct-03 17:12 
GeneralRe: Which one makes for faster programs: DLLs or static libraries??? Pin
melwyn31-Oct-03 3:20
melwyn31-Oct-03 3:20 
AnswerRe: Which one makes for faster programs: DLLs or static libraries??? Pin
cmk30-Oct-03 11:42
cmk30-Oct-03 11:42 

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.