Click here to Skip to main content
15,914,013 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Updated COMMCTRL.H File??????? Pin
Michael Dunn3-Sep-01 9:13
sitebuilderMichael Dunn3-Sep-01 9:13 
GeneralAdd Button to IE toolbar Pin
3-Sep-01 6:09
suss3-Sep-01 6:09 
GeneralFILE in memory Pin
Davide Pizzolato3-Sep-01 5:59
Davide Pizzolato3-Sep-01 5:59 
GeneralRe: FILE in memory Pin
Chris Losinger3-Sep-01 6:40
professionalChris Losinger3-Sep-01 6:40 
GeneralRe: FILE in memory Pin
Davide Pizzolato3-Sep-01 10:18
Davide Pizzolato3-Sep-01 10:18 
GeneralRead from file Pin
3-Sep-01 4:15
suss3-Sep-01 4:15 
GeneralRe: Read from file Pin
3-Sep-01 4:23
suss3-Sep-01 4:23 
GeneralRe: Read from file Pin
Michael P Butler3-Sep-01 5:45
Michael P Butler3-Sep-01 5:45 
If it's just a text file try using CStdioFile and calling the method ReadString

CString str; 
CStdioFile file("test.txt", CFile::modeRead); 
file.ReadString(str);
MessageBox(str); // to se what is in the test.txt


Michael Smile | :)
GeneralRe: Read from file Pin
4-Sep-01 1:52
suss4-Sep-01 1:52 
GeneralBLOB and Automation Pin
Paul Selormey3-Sep-01 3:22
Paul Selormey3-Sep-01 3:22 
Generaldbopen() fails Pin
3-Sep-01 0:17
suss3-Sep-01 0:17 
GeneralUsing DLL in Internet Explorer Pin
sanskypotov3-Sep-01 0:13
sanskypotov3-Sep-01 0:13 
GeneralRe: Using DLL in Internet Explorer Pin
Paul Selormey3-Sep-01 3:25
Paul Selormey3-Sep-01 3:25 
GeneralRe: Using DLL in Internet Explorer Pin
Michael P Butler3-Sep-01 3:29
Michael P Butler3-Sep-01 3:29 
GeneralRe: Using DLL in Internet Explorer Pin
sanskypotov3-Sep-01 3:59
sanskypotov3-Sep-01 3:59 
GeneralRe: Using DLL in Internet Explorer Pin
Michael P Butler3-Sep-01 22:18
Michael P Butler3-Sep-01 22:18 
GeneralRe: Check DelayLoadProfile in MSJ Pin
Masaaki Onishi3-Sep-01 5:52
Masaaki Onishi3-Sep-01 5:52 
Generalmapping a va_list (...) in another function call Pin
2-Sep-01 22:37
suss2-Sep-01 22:37 
GeneralRe: mapping a va_list (...) in another function call Pin
Rashid Thadha2-Sep-01 23:59
Rashid Thadha2-Sep-01 23:59 
GeneralRe: mapping a va_list (...) in another function call Pin
3-Sep-01 22:09
suss3-Sep-01 22:09 
GeneralRe: mapping a va_list (...) in another function call Pin
The_Server3-Sep-01 13:02
The_Server3-Sep-01 13:02 
GeneralRe: mapping a va_list (...) in another function call Pin
Tim Smith3-Sep-01 13:36
Tim Smith3-Sep-01 13:36 
GeneralRe: mapping a va_list (...) in another function call Pin
The_Server4-Sep-01 13:13
The_Server4-Sep-01 13:13 
GeneralRe: mapping a va_list (...) in another function call Pin
Tomasz Sowinski3-Sep-01 13:48
Tomasz Sowinski3-Sep-01 13:48 
GeneralRe: mapping a va_list (...) in another function call Pin
The_Server4-Sep-01 12:50
The_Server4-Sep-01 12:50 

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.