Click here to Skip to main content
15,888,454 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Problem with SHFormatDrive () Pin
toxcct22-Feb-06 22:45
toxcct22-Feb-06 22:45 
AnswerRe: Problem with SHFormatDrive () Pin
kakan22-Feb-06 2:54
professionalkakan22-Feb-06 2:54 
AnswerRe: Problem with SHFormatDrive () Pin
David Crow22-Feb-06 2:57
David Crow22-Feb-06 2:57 
GeneralRe: Problem with SHFormatDrive () Pin
kakan22-Feb-06 2:59
professionalkakan22-Feb-06 2:59 
GeneralRe: Problem with SHFormatDrive () Pin
David Crow22-Feb-06 3:08
David Crow22-Feb-06 3:08 
GeneralRe: Problem with SHFormatDrive () Pin
kakan22-Feb-06 3:59
professionalkakan22-Feb-06 3:59 
Questionhelp me! Pin
mojo198622-Feb-06 2:16
mojo198622-Feb-06 2:16 
QuestionRe: help me! Pin
David Crow22-Feb-06 3:03
David Crow22-Feb-06 3:03 
So your "width" text file has 20 values in it, and the "height" text file has 10 values in it. Is that correct? How about something like:

FILE *pFileHeight = fopen("height.txt", "r");
int  nHeight[10],
     x = 0;
while (! feof(pFileHeight))
{
    fscanf("%d", &nHeight[x]);  
    x++;
}
fclose(pFileHeight);



"Let us be thankful for the fools. But for them the rest of us could not succeed." - Mark Twain


Question[Message Deleted] Pin
Deviantizh22-Feb-06 2:10
Deviantizh22-Feb-06 2:10 
AnswerRe: Getting CMainFrame in CDoc Pin
Russell'22-Feb-06 2:15
Russell'22-Feb-06 2:15 
QuestionDll Pin
J512198222-Feb-06 1:20
J512198222-Feb-06 1:20 
AnswerRe: Dll Pin
mehrdadov22-Feb-06 1:38
mehrdadov22-Feb-06 1:38 
GeneralRe: Dll Pin
ThatsAlok22-Feb-06 2:47
ThatsAlok22-Feb-06 2:47 
GeneralRe: Dll Pin
Prabu.22-Feb-06 3:37
Prabu.22-Feb-06 3:37 
GeneralRe: Dll Pin
Divyang Mithaiwala22-Feb-06 3:40
Divyang Mithaiwala22-Feb-06 3:40 
GeneralRe: Dll Pin
ThatsAlok22-Feb-06 3:49
ThatsAlok22-Feb-06 3:49 
AnswerRe: Dll Pin
ThatsAlok22-Feb-06 2:45
ThatsAlok22-Feb-06 2:45 
Questionpassing pointer in thunking Pin
indra2022-Feb-06 1:12
indra2022-Feb-06 1:12 
AnswerRe: passing pointer in thunking Pin
toxcct22-Feb-06 1:54
toxcct22-Feb-06 1:54 
GeneralRe: passing pointer in thunking Pin
indra2022-Feb-06 2:34
indra2022-Feb-06 2:34 
GeneralRe: passing pointer in thunking Pin
toxcct22-Feb-06 2:39
toxcct22-Feb-06 2:39 
GeneralRe: passing pointer in thunking Pin
indra2022-Feb-06 2:56
indra2022-Feb-06 2:56 
Questionabt CList Pin
namaskaaram21-Feb-06 23:57
namaskaaram21-Feb-06 23:57 
AnswerRe: abt CList Pin
Maximilien22-Feb-06 0:58
Maximilien22-Feb-06 0:58 
AnswerRe: abt CList Pin
David Crow22-Feb-06 3:15
David Crow22-Feb-06 3:15 

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.