Click here to Skip to main content
15,911,315 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRandom Child Menus in the Desktop Application Pin
Vasudevan Deepak Kumar20-Jun-07 20:53
Vasudevan Deepak Kumar20-Jun-07 20:53 
AnswerRe: Random Child Menus in the Desktop Application [modified] Pin
zhang80060520-Jun-07 21:57
zhang80060520-Jun-07 21:57 
QuestionWindowProc Pin
nitin320-Jun-07 20:48
nitin320-Jun-07 20:48 
AnswerRe: WindowProc Pin
Cedric Moonen20-Jun-07 21:06
Cedric Moonen20-Jun-07 21:06 
AnswerRe: WindowProc Pin
Mark Salsbery21-Jun-07 6:30
Mark Salsbery21-Jun-07 6:30 
QuestionCFile vs FILE* vs FSTREAM Pin
GameProfessor20-Jun-07 18:56
GameProfessor20-Jun-07 18:56 
AnswerRe: CFile vs FILE* vs FSTREAM Pin
User 58385220-Jun-07 19:30
User 58385220-Jun-07 19:30 
AnswerRe: CFile vs FILE* vs FSTREAM Pin
Matthew Faithfull20-Jun-07 21:50
Matthew Faithfull20-Jun-07 21:50 
Ultimately they are all wrappers around the same IO code. CFile is an MFC wrapper over the File APIs which are implemented using the internal copy of the C Library's FILE based system. 'fstream' is from the Standard Library implementation which is integrated with the User Mode C Library e.g. MSVCRT.dll so it ultimately uses FILE io blocks and the same low level code.

With every layer of wrapping you get more convenience features and potentially more bugs. So you pays your money, in terms of ease of use, and you takes your choice. Smile | :)

Nothing is exactly what it seems but everything with seems can be unpicked.

GeneralRe: CFile vs FILE* vs FSTREAM Pin
GameProfessor20-Jun-07 22:46
GameProfessor20-Jun-07 22:46 
GeneralRe: CFile vs FILE* vs FSTREAM Pin
Matthew Faithfull20-Jun-07 23:00
Matthew Faithfull20-Jun-07 23:00 
Questionvirtual function Pin
paper6720-Jun-07 18:43
paper6720-Jun-07 18:43 
AnswerRe: virtual function Pin
Nibu babu thomas20-Jun-07 18:51
Nibu babu thomas20-Jun-07 18:51 
GeneralRe: virtual function Pin
Mark Salsbery21-Jun-07 6:34
Mark Salsbery21-Jun-07 6:34 
QuestionCBrowseCtrl use Pin
Kryptech20-Jun-07 17:45
Kryptech20-Jun-07 17:45 
AnswerRe: CBrowseCtrl use Pin
Hamid_RT20-Jun-07 18:39
Hamid_RT20-Jun-07 18:39 
GeneralRe: CBrowseCtrl use Pin
Kryptech21-Jun-07 2:22
Kryptech21-Jun-07 2:22 
AnswerRe: CBrowseCtrl use Pin
David Crow21-Jun-07 2:45
David Crow21-Jun-07 2:45 
GeneralRe: CBrowseCtrl use Pin
Kryptech21-Jun-07 3:10
Kryptech21-Jun-07 3:10 
QuestionRe: CBrowseCtrl use Pin
David Crow21-Jun-07 3:18
David Crow21-Jun-07 3:18 
AnswerRe: CBrowseCtrl use Pin
Kryptech21-Jun-07 3:21
Kryptech21-Jun-07 3:21 
GeneralRe: CBrowseCtrl use Pin
David Crow21-Jun-07 3:28
David Crow21-Jun-07 3:28 
GeneralRe: CBrowseCtrl use Pin
Kryptech21-Jun-07 3:38
Kryptech21-Jun-07 3:38 
GeneralRe: CBrowseCtrl use Pin
David Crow21-Jun-07 3:48
David Crow21-Jun-07 3:48 
Question"Enabled" Property and RadioButtons Pin
TheInfernalCrow20-Jun-07 17:38
TheInfernalCrow20-Jun-07 17:38 
AnswerRe: "Enabled" Property and RadioButtons Pin
HakunaMatada20-Jun-07 18:43
HakunaMatada20-Jun-07 18:43 

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.