Click here to Skip to main content
15,909,953 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: whats the result of this ... Pin
markkuk13-Aug-07 0:50
markkuk13-Aug-07 0:50 
GeneralRe: whats the result of this ... Pin
ThatsAlok13-Aug-07 18:40
ThatsAlok13-Aug-07 18:40 
QuestionWant to Upload opened file on FTP Pin
GauranG Shah13-Aug-07 0:07
GauranG Shah13-Aug-07 0:07 
AnswerRe: Want to Upload opened file on FTP Pin
DevMentor.org13-Aug-07 10:00
DevMentor.org13-Aug-07 10:00 
GeneralRe: Want to Upload opened file on FTP Pin
ThatsAlok13-Aug-07 18:42
ThatsAlok13-Aug-07 18:42 
QuestionDate Control Pin
mcsherry12-Aug-07 23:26
mcsherry12-Aug-07 23:26 
AnswerRe: Date Control Pin
jhwurmbach12-Aug-07 23:41
jhwurmbach12-Aug-07 23:41 
AnswerRe: Date Control Pin
Nishad S12-Aug-07 23:43
Nishad S12-Aug-07 23:43 
Use GetMonthCalCtrl to get CMonthCalCtrl from a CDateTimeCtrl. Use SetCurSel to select a date.

Sample from MSDN:
CDateTimeCtrl* pCtrl = (CDateTimeCtrl*) GetDlgItem(IDC_DATETIMEPICKER1);
CMonthCalCtrl* pMoCalCtrl = pCtrl->GetMonthCalCtrl();
CTime dt2(1998, 3, 15, 0, 0, 0);
pMoCalCtrl->SetCurSel(dt2);


- NS -

AnswerRe: Date Control Pin
mcsherry12-Aug-07 23:57
mcsherry12-Aug-07 23:57 
QuestionShowWindow(SW_MAXIMIZE) Pin
vicky0000012-Aug-07 22:57
vicky0000012-Aug-07 22:57 
AnswerRe: ShowWindow(SW_MAXIMIZE) Pin
Nishad S12-Aug-07 23:17
Nishad S12-Aug-07 23:17 
GeneralRe: ShowWindow(SW_MAXIMIZE) Pin
vicky0000013-Aug-07 0:01
vicky0000013-Aug-07 0:01 
GeneralRe: ShowWindow(SW_MAXIMIZE) Pin
Nishad S13-Aug-07 1:59
Nishad S13-Aug-07 1:59 
QuestionHow to know when calling app exited/stopped Pin
Rostfrei12-Aug-07 22:41
Rostfrei12-Aug-07 22:41 
AnswerRe: How to know when calling app exited/stopped Pin
Paresh Chitte12-Aug-07 23:11
Paresh Chitte12-Aug-07 23:11 
AnswerRe: How to know when calling app exited/stopped Pin
jhwurmbach12-Aug-07 23:54
jhwurmbach12-Aug-07 23:54 
AnswerRe: How to know when calling app exited/stopped Pin
Stephen Hewitt13-Aug-07 14:56
Stephen Hewitt13-Aug-07 14:56 
Questionconvert char* to double and back Pin
Andy H12-Aug-07 22:11
Andy H12-Aug-07 22:11 
AnswerRe: convert char* to double and back Pin
sw@thi12-Aug-07 22:34
sw@thi12-Aug-07 22:34 
AnswerRe: convert char* to double and back Pin
Nishad S12-Aug-07 23:15
Nishad S12-Aug-07 23:15 
GeneralRe: convert char* to double and back Pin
Andy H13-Aug-07 1:13
Andy H13-Aug-07 1:13 
GeneralRe: convert char* to double and back Pin
Nishad S13-Aug-07 1:21
Nishad S13-Aug-07 1:21 
Questionhow do you package an MFC program Pin
king'ori12-Aug-07 20:28
king'ori12-Aug-07 20:28 
AnswerRe: how do you package an MFC program Pin
Peter Weyzen12-Aug-07 21:02
Peter Weyzen12-Aug-07 21:02 
AnswerRe: how do you package an MFC program Pin
Hamid_RT12-Aug-07 21:27
Hamid_RT12-Aug-07 21:27 

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.