Click here to Skip to main content
15,908,172 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
JokeRe: How to create C# Control for any language Pin
Hamid_RT17-Sep-08 22:34
Hamid_RT17-Sep-08 22:34 
GeneralRe: How to create C# Control for any language Pin
Andy Rama17-Sep-08 23:15
Andy Rama17-Sep-08 23:15 
Questionany angle rotation code Pin
zhiyuan1617-Sep-08 21:11
zhiyuan1617-Sep-08 21:11 
AnswerRe: any angle rotation code Pin
CPallini17-Sep-08 21:17
mveCPallini17-Sep-08 21:17 
AnswerRe: any angle rotation code Pin
KarstenK17-Sep-08 21:41
mveKarstenK17-Sep-08 21:41 
Questionget system date in (mm/dd/yy) format Pin
ani_ikram17-Sep-08 21:03
ani_ikram17-Sep-08 21:03 
AnswerRe: get system date in (mm/dd/yy) format Pin
Hamid_RT17-Sep-08 21:17
Hamid_RT17-Sep-08 21:17 
QuestionRe: get system date in (mm/dd/yy) format Pin
CPallini17-Sep-08 21:32
mveCPallini17-Sep-08 21:32 
what about
TCHAR szSysTime[] = {_T("mm/dd/yy")};
SYSTEMTIME st;
GetSystemTime(&st);
_stprintf(szSysTime, _T("%02d/%02d/%02d"), st.wMonth, st.wDay, st.wYear % 100);
?
Smile | :)

If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.

This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke

[My articles]

QuestionHow to convert MFC application to OLE? Pin
RYU^^17-Sep-08 20:58
RYU^^17-Sep-08 20:58 
AnswerRe: How to convert MFC application to OLE? Pin
CPallini17-Sep-08 21:33
mveCPallini17-Sep-08 21:33 
GeneralRe: How to convert MFC application to OLE? Pin
RYU^^18-Sep-08 14:21
RYU^^18-Sep-08 14:21 
Questionerror : Building MFC application question Pin
monsieur_jj17-Sep-08 20:14
monsieur_jj17-Sep-08 20:14 
AnswerRe: error : Building MFC application question Pin
Cedric Moonen17-Sep-08 20:50
Cedric Moonen17-Sep-08 20:50 
GeneralRe: error : Building MFC application question Pin
monsieur_jj17-Sep-08 20:53
monsieur_jj17-Sep-08 20:53 
AnswerRe: error : Building MFC application question Pin
RYU^^17-Sep-08 21:02
RYU^^17-Sep-08 21:02 
GeneralRe: error : Building MFC application question Pin
monsieur_jj17-Sep-08 21:06
monsieur_jj17-Sep-08 21:06 
GeneralRe: error : Building MFC application question Pin
C++myLife17-Sep-08 21:23
C++myLife17-Sep-08 21:23 
Questionvtable issue Pin
George_George17-Sep-08 19:11
George_George17-Sep-08 19:11 
AnswerRe: vtable issue Pin
Cedric Moonen17-Sep-08 20:14
Cedric Moonen17-Sep-08 20:14 
GeneralRe: vtable issue Pin
George_George17-Sep-08 20:21
George_George17-Sep-08 20:21 
GeneralRe: vtable issue Pin
Cedric Moonen17-Sep-08 20:42
Cedric Moonen17-Sep-08 20:42 
GeneralRe: vtable issue Pin
George_George17-Sep-08 22:00
George_George17-Sep-08 22:00 
QuestionRe: vtable issue [modified] Pin
CPallini17-Sep-08 22:21
mveCPallini17-Sep-08 22:21 
AnswerRe: vtable issue Pin
George_George17-Sep-08 23:04
George_George17-Sep-08 23:04 
GeneralRe: vtable issue [modified] Pin
CPallini17-Sep-08 23:08
mveCPallini17-Sep-08 23:08 

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.