Click here to Skip to main content
15,918,742 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: CDateTimeCtrl Pin
sschilachi17-Jun-04 0:38
sschilachi17-Jun-04 0:38 
GeneralRe: CDateTimeCtrl Pin
DRHuff25-Aug-04 11:25
DRHuff25-Aug-04 11:25 
GeneralRe: CDateTimeCtrl Pin
sschilachi25-Aug-04 11:51
sschilachi25-Aug-04 11:51 
GeneralRe: CDateTimeCtrl Pin
DRHuff25-Aug-04 16:45
DRHuff25-Aug-04 16:45 
GeneralRe: CDateTimeCtrl Pin
DRHuff25-Aug-04 18:47
DRHuff25-Aug-04 18:47 
GeneralRe: CDateTimeCtrl Pin
sschilachi16-Jun-04 10:58
sschilachi16-Jun-04 10:58 
GeneralRe: CDateTimeCtrl Pin
sschilachi16-Jun-04 10:59
sschilachi16-Jun-04 10:59 
GeneralRe: CDateTimeCtrl Pin
Ravi Bhavnani16-Jun-04 9:55
professionalRavi Bhavnani16-Jun-04 9:55 
I think this should work:
// Get handle to MonthCalendar control
HWND hwndDP = pCalCtrl->GetSafeHwnd();
ASSERT (hwndDP != NULL);
HWND hwndMC = DateTime_GetMonthCal (hwndDP);
ASSERT (hwndMC != NULL);
CWnd* pMCCtrl = CWnd::FromHandle (hwndMC);
ASSERT (pMCCtrl != NULL);

// Set its style
DWORD dwStyle = pMCCtrl->GetStyle();
dwStyle |= MCS_DAYSTATE;
pMCCtrl->SetStyle (dwStyle);
/ravi

My new year's resolution: 2048 x 1536
Home | Articles | Freeware | Music
ravib@ravib.com

GeneralRe: CDateTimeCtrl Pin
palbano16-Jun-04 10:02
palbano16-Jun-04 10:02 
GeneralRe: CDateTimeCtrl Pin
Ravi Bhavnani16-Jun-04 10:05
professionalRavi Bhavnani16-Jun-04 10:05 
GeneralRe: CDateTimeCtrl Pin
palbano16-Jun-04 10:22
palbano16-Jun-04 10:22 
GeneralRe: CDateTimeCtrl Pin
Ravi Bhavnani16-Jun-04 10:33
professionalRavi Bhavnani16-Jun-04 10:33 
GeneralBitmap Background for CDialog Pin
DanYELL16-Jun-04 9:02
DanYELL16-Jun-04 9:02 
GeneralRe: Bitmap Background for CDialog Pin
palbano16-Jun-04 10:47
palbano16-Jun-04 10:47 
Generalbegginner needing help Pin
bmatty16-Jun-04 9:01
bmatty16-Jun-04 9:01 
GeneralRe: begginner needing help Pin
toxcct16-Jun-04 9:57
toxcct16-Jun-04 9:57 
GeneralRe: begginner needing help Pin
gamitech16-Jun-04 10:48
gamitech16-Jun-04 10:48 
Questionchkesp, _chkesp, and ESP ??? Pin
john john mackey16-Jun-04 8:50
john john mackey16-Jun-04 8:50 
AnswerRe: chkesp, _chkesp, and ESP ??? Pin
palbano16-Jun-04 10:38
palbano16-Jun-04 10:38 
GeneralRe: chkesp, _chkesp, and ESP ??? Pin
john john mackey16-Jun-04 11:45
john john mackey16-Jun-04 11:45 
GeneralConvertion to tiff files Pin
Sergio Batarce16-Jun-04 7:49
Sergio Batarce16-Jun-04 7:49 
GeneralRe: Convertion to tiff files Pin
David Crow16-Jun-04 7:52
David Crow16-Jun-04 7:52 
Generalusing substring in VC++ Pin
swerajan16-Jun-04 7:47
swerajan16-Jun-04 7:47 
GeneralRe: using substring in VC++ Pin
David Crow16-Jun-04 7:49
David Crow16-Jun-04 7:49 
GeneralRe: using substring in VC++ Pin
swerajan16-Jun-04 8:01
swerajan16-Jun-04 8:01 

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.