Click here to Skip to main content
16,018,529 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Where can I find a table of all functions inside in kernel32.dll? Pin
El'Cachubrey12-Sep-03 0:53
El'Cachubrey12-Sep-03 0:53 
AnswerRe: Where can I find a table of all functions inside in kernel32.dll? Pin
Mike Dimmick12-Sep-03 2:15
Mike Dimmick12-Sep-03 2:15 
AnswerRe: Where can I find a table of all functions inside in kernel32.dll? Pin
David Crow12-Sep-03 2:52
David Crow12-Sep-03 2:52 
Generalhelp - mfc, and entering text Pin
lxxrya00112-Sep-03 0:14
lxxrya00112-Sep-03 0:14 
GeneralRe: help - mfc, and entering text Pin
valikac12-Sep-03 6:04
valikac12-Sep-03 6:04 
GeneralRe: help - mfc, and entering text like on paint Pin
lxxrya00112-Sep-03 11:13
lxxrya00112-Sep-03 11:13 
Generalproblems with textfile and dialog Pin
coda_x11-Sep-03 23:13
coda_x11-Sep-03 23:13 
GeneralRe: problems with textfile and dialog Pin
David Crow12-Sep-03 2:50
David Crow12-Sep-03 2:50 
coda_x wrote:
1) when i declare an int for textfile and wan to assign it to dialog int member variable, the value output is not the same as in the textfile and also has this warning that my member variable eg, int m_temp is nt referenceed.

I don't quite understand what you're after here. How about a code snippet?

coda_x wrote:
2)how to output more than 2 words per line from a textfile coz it always output only the 1st word.

You didn't mention what type of file object you had so I'm going to show you an example using a CStdioFile object.

CStdioFile file("somefile.txt", CFile::modeCreate | CFile::modeWrite);<br />
file.WriteString("word1 word2 word3 word4\n");

or
file.WriteString("word1 ");<br />
file.WriteString("word2 ");<br />
file.WriteString("word3 ");<br />
file.WriteString("word4\n");



Five birds are sitting on a fence.
Three of them decide to fly off.
How many are left?

GeneralProcess command line Pin
confalonieri11-Sep-03 22:54
confalonieri11-Sep-03 22:54 
GeneralRe: Process command line Pin
valikac12-Sep-03 6:09
valikac12-Sep-03 6:09 
GeneralAnother problem with memory Pin
abhi197111-Sep-03 22:44
abhi197111-Sep-03 22:44 
GeneralRe: Another problem with memory Pin
Mike Dimmick12-Sep-03 2:40
Mike Dimmick12-Sep-03 2:40 
GeneralRe: Another problem with memory Pin
David Crow12-Sep-03 2:44
David Crow12-Sep-03 2:44 
GeneralRun a function every 100ms Pin
kurnaziso11-Sep-03 22:41
kurnaziso11-Sep-03 22:41 
GeneralRe: Run a function every 100ms Pin
Dangleberry11-Sep-03 22:58
sussDangleberry11-Sep-03 22:58 
Generalplacement new Pin
Dangleberry11-Sep-03 22:26
sussDangleberry11-Sep-03 22:26 
GeneralRe: placement new Pin
Dangleberry11-Sep-03 23:55
sussDangleberry11-Sep-03 23:55 
GeneralC++ editor Pin
Jerome Conus11-Sep-03 22:06
Jerome Conus11-Sep-03 22:06 
GeneralRe: C++ editor Pin
berndg12-Sep-03 0:19
berndg12-Sep-03 0:19 
GeneralRe: C++ editor Pin
Neville Franks12-Sep-03 0:26
Neville Franks12-Sep-03 0:26 
GeneralRe: C++ editor Pin
typist12-Sep-03 1:22
typist12-Sep-03 1:22 
GeneralRe: C++ editor Pin
Dangleberry12-Sep-03 1:46
sussDangleberry12-Sep-03 1:46 
GeneralPainting problem in CFormView with overlapping ActiveX Pin
sanskypotov11-Sep-03 21:47
sanskypotov11-Sep-03 21:47 
GeneralRead backwarts from file Pin
Eddie70011-Sep-03 20:29
Eddie70011-Sep-03 20:29 
GeneralRe: Read backwarts from file Pin
Neville Franks12-Sep-03 0:32
Neville Franks12-Sep-03 0:32 

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.