1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| | %indent
- ref: Microsoft Docs:~
https://docs.microsoft.com/ja-jp/office/vba/language/reference/user-interface-help/date-data-
type
- IEEE 64 bit 浮動小数点数
- リテラルは "#" 囲み。浮動小数点数リテラルは "#" 接尾。
###
Const hour As Double = 1# / 24
Const min As Double = hour / 60
Const sec As Double = sec / 3600
Const usec As double = sec / 1000
###
|
|