Click here to Skip to main content
15,902,939 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: fputc or fgetc returning odd results Pin
Rajkumar R9-May-08 5:10
Rajkumar R9-May-08 5:10 
AnswerRe: fputc or fgetc returning odd results Pin
toxcct9-May-08 3:06
toxcct9-May-08 3:06 
GeneralRe: fputc or fgetc returning odd results Pin
Klempie9-May-08 3:38
Klempie9-May-08 3:38 
GeneralRe: fputc or fgetc returning odd results Pin
toxcct9-May-08 3:45
toxcct9-May-08 3:45 
GeneralRe: fputc or fgetc returning odd results Pin
Klempie9-May-08 3:47
Klempie9-May-08 3:47 
GeneralRe: fputc or fgetc returning odd results Pin
toxcct9-May-08 3:50
toxcct9-May-08 3:50 
GeneralRe: fputc or fgetc returning odd results Pin
Klempie9-May-08 3:53
Klempie9-May-08 3:53 
GeneralRe: fputc or fgetc returning odd results Pin
Rajkumar R9-May-08 4:27
Rajkumar R9-May-08 4:27 
GeneralRe: fputc or fgetc returning odd results Pin
CPallini9-May-08 5:01
mveCPallini9-May-08 5:01 
GeneralRe: fputc or fgetc returning odd results Pin
Klempie9-May-08 5:06
Klempie9-May-08 5:06 
QuestionMemory allocation help. Pin
chandu0049-May-08 1:06
chandu0049-May-08 1:06 
AnswerRe: Memory allocation help. Pin
toxcct9-May-08 1:11
toxcct9-May-08 1:11 
GeneralRe: Memory allocation help. Pin
Michael Schubert9-May-08 1:17
Michael Schubert9-May-08 1:17 
GeneralRe: Memory allocation help. Pin
chandu0049-May-08 1:24
chandu0049-May-08 1:24 
GeneralRe: Memory allocation help. Pin
JudyL_MD9-May-08 1:55
JudyL_MD9-May-08 1:55 
GeneralRe: Memory allocation help. Pin
chandu0049-May-08 2:12
chandu0049-May-08 2:12 
GeneralRe: Memory allocation help. Pin
JudyL_MD9-May-08 3:10
JudyL_MD9-May-08 3:10 
GeneralRe: Memory allocation help. Pin
Mark Salsbery9-May-08 6:16
Mark Salsbery9-May-08 6:16 
AnswerRe: Memory allocation help. Pin
king'ori9-May-08 3:49
king'ori9-May-08 3:49 
Questionhow to print SYSTEMTIME Pin
mihai1239-May-08 1:05
mihai1239-May-08 1:05 
AnswerRe: how to print SYSTEMTIME Pin
Maximilien9-May-08 1:09
Maximilien9-May-08 1:09 
AnswerJust adding to Maxmilien's Reply Pin
Rajesh R Subramanian9-May-08 1:23
professionalRajesh R Subramanian9-May-08 1:23 
mihai123 wrote:
all this small and ease tasks in c# seems to me very impossible in MFC.


You mean MFC is hard? You must write an ActiveX control in plain Win32, my friend Roll eyes | :rolleyes:

SYSTEMTIME time;
GetSystemTime(&time);
CString str;
str.Format("Year: %d, Month:%d, Day of month:%d,
                Day of week:%d",time.wYear, time.wMonth, time.wDay, time.wDayOfWeek);
AfxMessageBox(str);



Nobody can give you wiser advice than yourself. - Cicero
.·´¯`·->Rajesh<-·´¯`·.
Codeproject.com: Visual C++ MVP

GeneralRe: Just adding to Maxmilien's Reply Pin
CPallini9-May-08 1:43
mveCPallini9-May-08 1:43 
GeneralRe: Just adding to Maxmilien's Reply Pin
Rajesh R Subramanian9-May-08 1:52
professionalRajesh R Subramanian9-May-08 1:52 
QuestionFind '.' character Pin
manju#1239-May-08 0:31
manju#1239-May-08 0:31 

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.