FirstClassトップページ


 ヘルプの目次
このヘルプについて このヘルプについて
 
エンドユーザ向けヘルプ エンドユーザ向けヘルプ
Client Help クライアントヘルプ
Web Help Webアクセスヘルプ
ScreenReader Help スクリーンリーダ
Form フォーム
Synchronization 同期
Definitions 用語
container コンテナ
 
管理者向けヘルプ 管理者向けヘルプ
Administration サーバの管理
Internet Services インターネットサービス
Customization Tools カスタマイズツール(英語)
Administering OTSW OTSWの管理
OTSW Custodian OTSW Custodian
Using FirstClass ED FirstClass ED(英語)
 
バナー:
 
 DateSerial
ホーム • Customization Tools • FCAS • Language Reference • DateSerial
 
Purpose
Returns a date value given the year, month, and day as arguments.
If an invalid date has been specified, the system will display an error.
Syntax
DateSerial (Year, Month, Day)


Year
Any numeric expression that evaluates to the integer values 100 to 9999 inclusive.
Month
Any numeric expression that evaluates to the integer values 1 to 12 inclusive.
Day
Any numeric expression that evaluates to the integer values 1 to 31 inclusive.

Example
Sub Main ()
        Dim myyear As Integer
        Dim mymonth As Integer
        Dim myday As Integer
        Dim mybirthday As Date
        myyear = 1971 : mymonth = 7 : myday = 9
        mybirthday = DateSerial(myyear, mymonth, myday)
                Print "My birthday is:", mybirthday
End Sub

 

Copyright(C) 2002-2011 FC Management Co. All Rights Reserved