kowala's home

kowala's home
這裡是我的學習筆記,陸續增加中。
http://kowala21.blogspot.com

2011-06-14

VC++ 取得系統日期時間



取得系統日期時間
這張圖是跟前例一起拍的,我們只看左邊的 textBox 就好
上面左邊的 textbox 示範如何取得系統日期時間,程式碼如下:
必須先含入  #include windows.h 這個改成全形了,記得改回來!

private: System::Void button2_Click(System::Object^  sender, System::EventArgs^  e) {
            
            SYSTEMTIME curTime;
            GetLocalTime(&curTime);
            
            int yy=curTime.wYear;
            int mm=curTime.wMonth;
            int dd=curTime.wDay;
            int hh=curTime.wHour;
            int mn=curTime.wMinute;
            int ss=curTime.wSecond;
            int ww=curTime.wDayOfWeek;

            array String^^ localtime={
                Int32(yy).ToString(),Int32(mm).ToString(),Int32(dd).ToString(),
                Int32(hh).ToString(),Int32(mn).ToString(),Int32(ss).ToString(),
                Int32(ww).ToString()};

            textBox1->Text += localtime[0]+"年"+localtime[1]+"月"+localtime[2]+"日  "+
                localtime[3]+"時"+localtime[4]+"分"+localtime[5]+"秒,星期"+localtime[6]+"\r\n";
         }

沒有留言:

張貼留言

請提供您的寶貴意見 ;-)