I have and old custom-made program (I think it was made in Basic) that my father uses that produces some graphs and let you output a .txt file with the date you used in the graph. The output looks something like this:
DAXH9|0|43507.0486144213|10953|0|
DAXH9|1|43507.0486144329|10953|0|
DAXH9|1|43507.0487738889|10944|0|
DAXH9|0|43507.0487738889|10944|0|
DAXH9|0|43507.0488318519|10953|0|
DAXH9|1|43507.0488318634|10953|0|
DAXH9|0|43507.0488579398|10944|0|
DAXH9|1|43507.0488579514|10944|0|
DAXH9|0|43507.0488637153|10929|0|
DAXH9|1|43507.0488637268|10929|0|
And so on.
Apparently the digits in the middle are some date format (it's usually 5 digits, a dot and other 11 digits). The programmer apparently said it's a "windows date format" but I have never heard about it. I thought it was some millisecond date but converting it with JavaScript leads to poor result (date too old or too far ahead).
This is what I tried:
var test = new Date(STRANGE_DATE_NUMBER)
What date format can it be? How can I convert it?