Article Search
困った時はまず記事を検索
スポンサーリンク
VB6 では、DateTime モジュールの Month 関数を使用します。
以下にサンプルコードを示します。
' 必要な変数を宣言する Dim dtNow As Date dtNow = CDate(DateTime.Now) ' 月 (Month) を取得する Dim iMonth As Integer iMonth = CInt(DateTime.Month(dtNow))
準備中です。