Click here to Skip to main content
15,914,642 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionProblem in closing a dialog MFC Pin
hari_honey10-Jun-08 19:43
hari_honey10-Jun-08 19:43 
AnswerRe: Problem in closing a dialog MFC Pin
Hamid_RT10-Jun-08 19:47
Hamid_RT10-Jun-08 19:47 
AnswerRe: Problem in closing a dialog MFC Pin
SandipG 10-Jun-08 19:50
SandipG 10-Jun-08 19:50 
AnswerRe: Problem in closing a dialog MFC Pin
_AnsHUMAN_ 10-Jun-08 19:58
_AnsHUMAN_ 10-Jun-08 19:58 
QuestionLNK2019 & LNK2001 Pin
T.RATHA KRISHNAN10-Jun-08 18:52
T.RATHA KRISHNAN10-Jun-08 18:52 
AnswerRe: LNK2019 & LNK2001 Pin
Hamid_RT10-Jun-08 19:52
Hamid_RT10-Jun-08 19:52 
QuestionHow can get total days of Month? Pin
Le@rner10-Jun-08 18:24
Le@rner10-Jun-08 18:24 
AnswerRe: How can get total days of Month? PinPopular
Naveen10-Jun-08 18:40
Naveen10-Jun-08 18:40 
ThatsMe. wrote:
how can check number of days in a month are 28,29,30,or 31?


int GetNumberOfDays( int nYear, int nMonth )
{
    COleDateTime objDate;    
    int nDay = 29;
    
    for( ;nDay < 32; nDay++ )
    {
        objDate.SetDate( nYear, nMonth, nDay );
        if( objDate.GetStatus() == COleDateTime::invalid )
        {
            break;
        }
    }
    return --nDay;
}



GeneralRe: How can get total days of Month? Pin
_AnsHUMAN_ 10-Jun-08 19:00
_AnsHUMAN_ 10-Jun-08 19:00 
GeneralRe: How can get total days of Month? Pin
Naveen10-Jun-08 19:10
Naveen10-Jun-08 19:10 
GeneralRe: How can get total days of Month? [modified] Pin
_AnsHUMAN_ 10-Jun-08 19:14
_AnsHUMAN_ 10-Jun-08 19:14 
GeneralRe: How can get total days of Month? Pin
Naveen10-Jun-08 19:24
Naveen10-Jun-08 19:24 
GeneralRe: How can get total days of Month? Pin
_AnsHUMAN_ 10-Jun-08 19:28
_AnsHUMAN_ 10-Jun-08 19:28 
GeneralRe: How can get total days of Month? Pin
Naveen10-Jun-08 19:31
Naveen10-Jun-08 19:31 
GeneralRe: How can get total days of Month? Pin
_AnsHUMAN_ 10-Jun-08 19:36
_AnsHUMAN_ 10-Jun-08 19:36 
GeneralRe: How can get total days of Month? Pin
Naveen10-Jun-08 19:42
Naveen10-Jun-08 19:42 
GeneralRe: How can get total days of Month? Pin
SandipG 10-Jun-08 19:49
SandipG 10-Jun-08 19:49 
GeneralRe: How can get total days of Month? Pin
Naveen10-Jun-08 19:55
Naveen10-Jun-08 19:55 
GeneralRe: How can get total days of Month? Pin
Hamid_RT10-Jun-08 20:04
Hamid_RT10-Jun-08 20:04 
GeneralRe: How can get total days of Month? Pin
Naveen10-Jun-08 20:19
Naveen10-Jun-08 20:19 
GeneralRe: How can get total days of Month? Pin
Hamid_RT10-Jun-08 21:08
Hamid_RT10-Jun-08 21:08 
GeneralRe: How can get total days of Month? Pin
Naveen10-Jun-08 21:17
Naveen10-Jun-08 21:17 
JokeRe: How can get total days of Month? Pin
Naveen10-Jun-08 19:54
Naveen10-Jun-08 19:54 
GeneralRe: How can get total days of Month? Pin
Hamid_RT10-Jun-08 20:01
Hamid_RT10-Jun-08 20:01 
GeneralRe: How can get total days of Month? Pin
Naveen10-Jun-08 20:10
Naveen10-Jun-08 20:10 

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.