次の方法で共有


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

更新 : 2007 年 11 月

時刻の形式を指定するには

  • COleDateTime クラスまたは COleDateTimeSpan クラスの Format メンバ関数を使うと、時刻または経過時間を特定形式の文字列として表せます。

    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 クラス」クラスを参照してください。

さらに詳しくは次のトピックをクリックしてください

参照

概念

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