get system time
-
How can i get the system time?
-
How can i get the system time?
DateTime.Now. If this does not work, then you're not using C++/CLI, and have asked in the wrong forum.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
How can i get the system time?
Use
GetSystemTime
.SYSTEMTIME systime;
GetSystemTime(&systime);ps. Question not involving CLI should be asked in VC++[^] forum.
Prasad Notifier using ATL | Operator new[],delete[][^]
-
Use
GetSystemTime
.SYSTEMTIME systime;
GetSystemTime(&systime);ps. Question not involving CLI should be asked in VC++[^] forum.
Prasad Notifier using ATL | Operator new[],delete[][^]
Thanks for the information