Click here to Skip to main content
16,004,887 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: SHBrowseForFolderA Title Width Pin
Hamid_RT31-Jan-07 1:42
Hamid_RT31-Jan-07 1:42 
QuestionWorking with win 32 timers. Pin
Suresh H30-Jan-07 19:42
Suresh H30-Jan-07 19:42 
AnswerRe: Working with win 32 timers. Pin
prasad_som30-Jan-07 19:54
prasad_som30-Jan-07 19:54 
GeneralRe: Working with win 32 timers. Pin
Suresh H30-Jan-07 20:26
Suresh H30-Jan-07 20:26 
AnswerRe: Working with win 32 timers. Pin
prasad_som30-Jan-07 20:33
prasad_som30-Jan-07 20:33 
GeneralRe: Working with win 32 timers. Pin
Suresh H30-Jan-07 21:30
Suresh H30-Jan-07 21:30 
AnswerRe: Working with win 32 timers. Pin
prasad_som30-Jan-07 21:40
prasad_som30-Jan-07 21:40 
GeneralRe: Working with win 32 timers. Pin
Suresh H30-Jan-07 22:13
Suresh H30-Jan-07 22:13 
Prasad example gives the time diffrence only.

int main( void )<br />
{<br />
   time_t   start, finish;<br />
   long loop;<br />
   double   result, elapsed_time;<br />
<br />
   printf( "Multiplying 2 floating point numbers 500 million times...\n" );<br />
   <br />
   time( &start );<br />
   for( loop = 0; loop < 500000000; loop++ )<br />
      result = 3.63 * 5.27; <br />
   time( &finish );<br />
<br />
   elapsed_time = difftime( finish, start );<br />
   printf( "\nProgram takes %6.0f seconds.\n", elapsed_time );<br />
}

AnswerRe: Working with win 32 timers. Pin
prasad_som30-Jan-07 22:30
prasad_som30-Jan-07 22:30 
AnswerRe: Working with win 32 timers. Pin
Don Box30-Jan-07 19:59
Don Box30-Jan-07 19:59 
AnswerRe: Working with win 32 timers. Pin
Hamid_RT31-Jan-07 1:31
Hamid_RT31-Jan-07 1:31 
GeneralRe: Working with win 32 timers. Pin
Suresh H31-Jan-07 18:47
Suresh H31-Jan-07 18:47 
GeneralRe: Working with win 32 timers. Pin
Hamid_RT31-Jan-07 20:07
Hamid_RT31-Jan-07 20:07 
QuestionVS .NET std::hex, LNK2019, Release Build Pin
Jeffrey Walton30-Jan-07 19:04
Jeffrey Walton30-Jan-07 19:04 
GeneralRe: VS .NET std::hex, LNK2019, Release Build Pin
prasad_som30-Jan-07 19:27
prasad_som30-Jan-07 19:27 
GeneralRe: VS .NET std::hex, LNK2019, Release Build Pin
Jeffrey Walton30-Jan-07 20:00
Jeffrey Walton30-Jan-07 20:00 
Questionupgrading VC++ SP4 TO SP6 Pin
mpk197930-Jan-07 18:28
mpk197930-Jan-07 18:28 
AnswerRe: upgrading VC++ SP4 TO SP6 Pin
Mark Salsbery30-Jan-07 18:49
Mark Salsbery30-Jan-07 18:49 
QuestionCString to TCHAR Pin
radhika2830-Jan-07 17:42
radhika2830-Jan-07 17:42 
QuestionRe: CString to TCHAR Pin
prasad_som30-Jan-07 18:02
prasad_som30-Jan-07 18:02 
AnswerRe: CString to TCHAR Pin
radhika2830-Jan-07 18:07
radhika2830-Jan-07 18:07 
QuestionRe: CString to TCHAR Pin
prasad_som30-Jan-07 18:13
prasad_som30-Jan-07 18:13 
AnswerRe: CString to TCHAR Pin
Naveen30-Jan-07 18:03
Naveen30-Jan-07 18:03 
GeneralRe: CString to TCHAR Pin
radhika2830-Jan-07 18:39
radhika2830-Jan-07 18:39 
GeneralRe: CString to TCHAR Pin
Laxman Auti30-Jan-07 19:26
Laxman Auti30-Jan-07 19:26 

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.