Hi,

the 1. "error" i donīt know maybe any other member of the board have tested it. With the 2. "error" i had the same problems. It seems it is really an error. Thatīs my workaround:

code:

$Time = Val(SubStr (@Time, 1, 2))
Select
Case $Time <= 9
$TimeGreeting = "Good morning"
Case$Time > 9 And $Time < 18
$TimeGreeting = "Good day"
Case $Time > 18
$TimeGreeting = "Good evening"
EndSelect

? $TimeGreeting
? Get $