Click here to Skip to main content
15,886,737 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How can I display current time in dialog static control Pin
David Crow5-Jun-08 7:56
David Crow5-Jun-08 7:56 
GeneralRe: How can I display current time in dialog static control Pin
amistry_petlad5-Jun-08 9:25
amistry_petlad5-Jun-08 9:25 
GeneralRe: How can I display current time in dialog static control Pin
Jijo.Raj5-Jun-08 9:12
Jijo.Raj5-Jun-08 9:12 
GeneralRe: How can I display current time in dialog static control Pin
amistry_petlad5-Jun-08 11:02
amistry_petlad5-Jun-08 11:02 
JokeRe: How can I display current time in dialog static control Pin
Jijo.Raj5-Jun-08 18:31
Jijo.Raj5-Jun-08 18:31 
GeneralRe: How can I display current time in dialog static control Pin
SandipG 5-Jun-08 23:40
SandipG 5-Jun-08 23:40 
QuestionRe: How can I display current time in dialog static control Pin
Maximilien5-Jun-08 7:45
Maximilien5-Jun-08 7:45 
AnswerRe: How can I display current time in dialog static control Pin
amistry_petlad5-Jun-08 7:51
amistry_petlad5-Jun-08 7:51 
ya buf i have chnaged , the code is working but its not display the hh:mm:yy its only shows current hours in the static control


<br />
 GetLocalTime(&time);<br />
  char str[256]; <br />
 <br />
 sprintf(str,"%d:%d:%d",time.wHour,time.wMinute,time.wSecond);<br />
 <br />
 std::string str1(str);<br />
 int len;<br />
 int slength = (int)str1.length() + 1;<br />
 len = MultiByteToWideChar(CP_ACP, 0, str1.c_str(), slength, 0, 0);<br />
 wchar_t* buf = new wchar_t[len];<br />
 MultiByteToWideChar(CP_ACP, 0, str1.c_str(), slength, buf, len);<br />
 SetDlgItemText(IDC_STATIC1,(LPCTSTR)buf);<br />

QuestionRe: How can I display current time in dialog static control Pin
messages5-Jun-08 5:35
messages5-Jun-08 5:35 
AnswerRe: How can I display current time in dialog static control Pin
amistry_petlad5-Jun-08 7:53
amistry_petlad5-Jun-08 7:53 
GeneralRe: How can I display current time in dialog static control Pin
Hamid_RT6-Jun-08 1:13
Hamid_RT6-Jun-08 1:13 
QuestionConvert to BW Pin
vandana75-Jun-08 5:03
vandana75-Jun-08 5:03 
AnswerRe: Convert to BW Pin
enhzflep5-Jun-08 17:06
enhzflep5-Jun-08 17:06 
GeneralRe: Convert to BW Pin
Nibu babu thomas5-Jun-08 17:19
Nibu babu thomas5-Jun-08 17:19 
GeneralRe: Convert to BW Pin
enhzflep5-Jun-08 17:35
enhzflep5-Jun-08 17:35 
GeneralRe: Convert to BW Pin
Nibu babu thomas5-Jun-08 17:37
Nibu babu thomas5-Jun-08 17:37 
QuestionBHO failing in Windows 2003 Server Pin
tony_Udz5-Jun-08 3:34
tony_Udz5-Jun-08 3:34 
AnswerRe: BHO failing in Windows 2003 Server Pin
led mike5-Jun-08 4:27
led mike5-Jun-08 4:27 
GeneralRe: BHO failing in Windows 2003 Server Pin
tony_Udz5-Jun-08 20:56
tony_Udz5-Jun-08 20:56 
GeneralRe: BHO failing in Windows 2003 Server Pin
led mike6-Jun-08 4:56
led mike6-Jun-08 4:56 
GeneralRe: BHO failing in Windows 2003 Server Pin
tony_Udz8-Jun-08 18:12
tony_Udz8-Jun-08 18:12 
GeneralRe: BHO failing in Windows 2003 Server Pin
tony_Udz8-Jun-08 23:53
tony_Udz8-Jun-08 23:53 
QuestionDate ?? Pin
Trupti Mehta5-Jun-08 3:07
Trupti Mehta5-Jun-08 3:07 
AnswerRe: Date ?? Pin
David Crow5-Jun-08 3:13
David Crow5-Jun-08 3:13 
GeneralRe: Date ?? Pin
Trupti Mehta5-Jun-08 3:57
Trupti Mehta5-Jun-08 3:57 

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.