次の方法で共有


日付/時刻を表す文字列形式の指定 : オートメーション クラス

時刻の書式を設定するには

  • 時刻を表す文字列を作成するために COleDateTime または COleDateTimeSpan または経過時間の [形式] のメンバー関数を使用します。

    COleDateTime time(1970, 12, 18, 17, 30, 0);
    // 18 December 1970, 5:30 PM
    CString s = time.Format(VAR_DATEVALUEONLY);
    // s contains the date formatted based on 
    // the current national language specifications
    // (locale ID). The time portion is ignored for 
    // formatting purposes in this case.   
    

詳細については、クラス COleVariantを参照してください。

c1ayhyhk.collapse_all(ja-jp,VS.110).gif詳細をクリックしてくださいに必要ですか。

参照

概念

日付と時刻 : オートメーションのサポート