Forum

FileReadDatetime ignoring minutes and seconds if a second field is present in the CSV file (SOLVED)

Hi, I read a datetime string from a CSV formatted file with the proper extention. Let's say the datetime is 2023.03.23 20:15:00. When I read the datetime with FileReadDatetime, the value returned is 2023.03.23 00:00:00 instead. The minutes and seconds are ignored. The problem doesn't occur if the

Strange problem

Hi, I have a loop where I compare double values with another double like this: double x = 4.0 ; for ( loop ) { if ( value > x) Print( value ); } The problem is the output looks like this: 14.94 0.79 4.50 2.61 3.97 1.50 9.34 0.85 Why does it print values that are not greater than x