Consider this simple code:
Code: Select all
'
' Works Ok in BasicMaker Professional 2021 (rev S1068.1105) 32bit under Windows 8.1 32-bit
' DateDiff is unknown in BasicMaker Professional 2024 (rev S1222.1129) 64bit under Windows 11 64-bit
'
Dim TheDate As Date ' Declare variables.
Dim Msg
TheDate = InputBox("Enter a date")
Msg = "Days from today: " & DateDiff("d", Now, TheDate)
MsgBox Msg
Code: Select all
C:\tmp\datediff.bas : Error in line: 9 - Sub or function not defined: DateDiff
Thanks.