Click here to Skip to main content
15,916,288 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Max. value of array in Windows 32 system Pin
CPallini19-Dec-06 0:13
mveCPallini19-Dec-06 0:13 
AnswerRe: Max. value of array in Windows 32 system [modified] Pin
Jörgen Sigvardsson19-Dec-06 0:05
Jörgen Sigvardsson19-Dec-06 0:05 
GeneralRe: Max. value of array in Windows 32 system Pin
Mark Salsbery19-Dec-06 7:45
Mark Salsbery19-Dec-06 7:45 
GeneralRe: Max. value of array in Windows 32 system Pin
Jörgen Sigvardsson19-Dec-06 9:37
Jörgen Sigvardsson19-Dec-06 9:37 
Questionhi how to find no of files in a folder Pin
chethu66518-Dec-06 23:43
chethu66518-Dec-06 23:43 
AnswerRe: hi how to find no of files in a folder Pin
_AnsHUMAN_ 18-Dec-06 23:47
_AnsHUMAN_ 18-Dec-06 23:47 
GeneralRe: hi how to find no of files in a folder Pin
Hamid_RT19-Dec-06 0:16
Hamid_RT19-Dec-06 0:16 
AnswerRe: hi how to find no of files in a folder Pin
Sonny Aman18-Dec-06 23:56
Sonny Aman18-Dec-06 23:56 
int getFileCount()
{
int count = 0;
CFileFind finder;
BOOL bWorking = finder.FindFile("*.*");
while (bWorking)
{
bWorking = finder.FindNextFile();
count ++
}

return count;
}




'life is like a ten speed bike,most of us having gears
we ne never use' ... i want
to try those.

GeneralRe: hi how to find no of files in a folder Pin
Sonny Aman19-Dec-06 0:00
Sonny Aman19-Dec-06 0:00 
AnswerRe: hi how to find no of files in a folder Pin
Abhijeet Rajput19-Dec-06 0:20
Abhijeet Rajput19-Dec-06 0:20 
AnswerRe: hi how to find no of files in a folder [modified] Pin
Abhijeet Rajput19-Dec-06 0:33
Abhijeet Rajput19-Dec-06 0:33 
QuestionHow can I refuse active document change in MDI ? Pin
Sonny Aman18-Dec-06 23:33
Sonny Aman18-Dec-06 23:33 
QuestionDisplay thumbnail in Dialog Pin
Wim Engberts18-Dec-06 22:58
Wim Engberts18-Dec-06 22:58 
AnswerRe: Display thumbnail in Dialog Pin
Sonny Aman18-Dec-06 23:40
Sonny Aman18-Dec-06 23:40 
AnswerRe: Display thumbnail in Dialog Pin
Hamid_RT19-Dec-06 0:18
Hamid_RT19-Dec-06 0:18 
Questionhow to use directshow to build that graph?? Pin
selectgood18-Dec-06 22:12
selectgood18-Dec-06 22:12 
AnswerRe: how to use directshow to build that graph?? Pin
Mark Salsbery19-Dec-06 8:18
Mark Salsbery19-Dec-06 8:18 
GeneralRe: how to use directshow to build that graph?? Pin
selectgood19-Dec-06 21:53
selectgood19-Dec-06 21:53 
GeneralRe: how to use directshow to build that graph?? Pin
Mark Salsbery20-Dec-06 5:18
Mark Salsbery20-Dec-06 5:18 
GeneralRe: how to use directshow to build that graph?? Pin
Mark Salsbery20-Dec-06 5:19
Mark Salsbery20-Dec-06 5:19 
GeneralRe: how to use directshow to build that graph?? Pin
selectgood21-Dec-06 16:22
selectgood21-Dec-06 16:22 
QuestionCompiling any VC++ project by command line Pin
ruchi bansal18-Dec-06 22:10
ruchi bansal18-Dec-06 22:10 
AnswerRe: Compiling any VC++ project by command line Pin
Naveen18-Dec-06 23:27
Naveen18-Dec-06 23:27 
QuestionHow to check bits in a byte. Pin
asp.netProgrammer18-Dec-06 21:51
asp.netProgrammer18-Dec-06 21:51 
AnswerRe: How to check bits in a byte. Pin
CPallini18-Dec-06 22:05
mveCPallini18-Dec-06 22:05 

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.