print the current time on the screen

A

Allen Maki

Hi everybody,



I need help.



I want to print the current time on the screen. After research I managed to
run the codes below in regular C++. But I could not make it to run in .NET
Framework environment. Can anybody tell me how to make these codes to work
in .NET Framework or show me an alternative codes?



/*

the author said that you have to turn on debug multi-threading to make this
program works

*/



#include <afx.h>

#include <iostream>

using namespace std;



int main()

{

CTime now = CTime::GetCurrentTime();

CString str = now.Format(" %H:%M:%S - ");

cout << str << endl;



return 0;

}
 
B

Bryan Phillips

If you are using Managed C++ use this code:

System::Console::WriteLine(System::DateTime::Now->ToString("T"));

In VB and C#, use this code:

System.Console.WriteLine(System.DateTime.Now.ToString("T")); <- the
semi-colon is required for C#, but remove it for VB
 
A

Allen Maki

Thanks Bryant,

I have to use ".", instead of '->'.

Like this: System::Console::WriteLine(System::DateTime::Now.ToString("T"));
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top