Click here to Skip to main content
16,005,121 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How to hide the popup menu of a CWebBrowser2 control? Pin
Erik Thompson1-Nov-01 7:42
sitebuilderErik Thompson1-Nov-01 7:42 
QuestionWhat means "dump data"? Pin
Maer7271-Nov-01 1:45
Maer7271-Nov-01 1:45 
AnswerRe: What means "dump data"? Pin
markkuk1-Nov-01 2:04
markkuk1-Nov-01 2:04 
GeneralRe: What means "dump data"? Pin
Maer7271-Nov-01 17:50
Maer7271-Nov-01 17:50 
Questionwhat means "run-time function"? Pin
Maer7271-Nov-01 1:38
Maer7271-Nov-01 1:38 
AnswerRe: what means "run-time function"? Pin
Nish Nishant1-Nov-01 3:07
sitebuilderNish Nishant1-Nov-01 3:07 
GeneralRe: what means "run-time function"? Pin
Maer7271-Nov-01 18:14
Maer7271-Nov-01 18:14 
GeneralRe: what means "run-time function"? Pin
Nish Nishant1-Nov-01 18:29
sitebuilderNish Nishant1-Nov-01 18:29 
Well CRT functions will need their corresponding header file to be included.

Like if you want to use strcmp, you'll need to include string.h and your prog will need to link with MSVCRT.LIB or with one of the LIBC*.LIB libraries

These functions are part of the C/C++ language.

All those API calls like MessageBox are not part of the C language. They are specific to the Windows OS and thus those calls are provided by Microsoft.

There is a lot of overlapping

For example you can use CreateThread to create a thread [in this case you are using the Win API] or you can use _beginthreadex [CRT call]

People who used to code on Linux/DOS have a tough time moving from using CRT functions

I know lots of guys who use sprintf to format a string even when they can use CString::Format

Nish
GeneralRe: what means "run-time function"? Pin
Maer7271-Nov-01 21:16
Maer7271-Nov-01 21:16 
GeneralRe: what means "run-time function"? Pin
Nish Nishant1-Nov-01 21:48
sitebuilderNish Nishant1-Nov-01 21:48 
GeneralRe: what means "run-time function"? Pin
Maer7273-Nov-01 19:58
Maer7273-Nov-01 19:58 
QuestionEdit control coloration? Pin
Jon Hulatt1-Nov-01 1:27
Jon Hulatt1-Nov-01 1:27 
AnswerRe: Edit control coloration? Pin
Nish Nishant1-Nov-01 3:32
sitebuilderNish Nishant1-Nov-01 3:32 
GeneralRe: Edit control coloration? Pin
Rassman2-Nov-01 3:09
Rassman2-Nov-01 3:09 
GeneralinsertAdjacentHTML Pin
jerry0davis1-Nov-01 1:20
jerry0davis1-Nov-01 1:20 
GeneralRe: insertAdjacentHTML Pin
2-Nov-01 13:49
suss2-Nov-01 13:49 
GeneralSelecting a DIBSection into a CDC Pin
Chambers31-Oct-01 23:57
Chambers31-Oct-01 23:57 
GeneralRe: Selecting a DIBSection into a CDC Pin
#realJSOP1-Nov-01 1:13
professional#realJSOP1-Nov-01 1:13 
GeneralRe: Selecting a DIBSection into a CDC Pin
Chambers1-Nov-01 2:26
Chambers1-Nov-01 2:26 
GeneralRe: Selecting a DIBSection into a CDC Pin
#realJSOP1-Nov-01 2:46
professional#realJSOP1-Nov-01 2:46 
GeneralRe: Selecting a DIBSection into a CDC Pin
Chambers1-Nov-01 3:21
Chambers1-Nov-01 3:21 
GeneralMultiple file drop on drop target Pin
Adrian D.31-Oct-01 23:44
Adrian D.31-Oct-01 23:44 
GeneralRe: Multiple file drop on drop target Pin
Michael Dunn1-Nov-01 8:47
sitebuilderMichael Dunn1-Nov-01 8:47 
GeneralCapturing CTRL-A key with OnKeyDown() Pin
31-Oct-01 18:48
suss31-Oct-01 18:48 
GeneralRe: Capturing CTRL-A key with OnKeyDown() Pin
Christian Graus31-Oct-01 19:02
protectorChristian Graus31-Oct-01 19:02 

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.