Hi,
I am able to create a clock in a console c++ app...like this one show UTC hours:
#include "stdafx.h"
#include <iostream>
#include <windows.h>
#include <stdio.h>
void main()
{
SYSTEMTIME st, lt;
GetSystemTime(&st);
GetLocalTime(<);
std::cout << st.wHour << std::endl;
std::cin.get();
}
But I am not able to create this with the .NET Framework 3.5, I mean Windows Forms.
I want to assign HOURS : MINUTES : SECONDS to a label.
Can you help me out?
Regards