Is there a function in Visual Basic 6 that can be used to convert a julian date string ( January 99001-1st 1999 ) to an object Date?
Date
I tried to use CDate(), but the results are not as expected.
CDate()
THANKS.
I think the following will work, just enter your Julian date in the jd variable.
Dim dt as Date Dim jd as Long dt = DateSerial(1900 + Int(jd / 1000), 1, jd Mod 1000)
Source: https://habr.com/ru/post/1786113/More articles:https://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1786108/how-do-i-get-the-facebook-access-token-when-using-the-javascript-api&usg=ALkJrhgxYgxFwDSxX4knSsbqnMChWIt0KQRecommended workflow for multiple modules (themes) - gitFailed to compare 2 objects in the array (compare with inheritance and general) - inheritanceFirefox extensions localStorage - javascriptC # Reflection Programmatic Event Handlers with Custom Event Args - reflectionDelete Commandbar created by Addin in Word 2003 - ms-officeIntelliJ IDEA on Ubuntu: indexing corruption and rebuilding - intellij-ideaGroup only adjacent rows - sqlMatlab: how to change the way matrix is ββstored? from 1x1x3 to 1x3? - matlabDeveloping a domain model by level using the Entity Framework - c #All Articles