Convert Julian Date to VB.NET date

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
Anyone has any idea of how to convert Julian Date (eg. 12744057862..) to a
VB.NET date time.

Thanks in advance.
 
Not sure if this is what you need, but if you want the jul day for example
today would be 317 you can use,
Imports System.Globalization 'GregorianCalendar class

Dim cal_gregorian As New GregorianCalendar 'instance of Gregorian calendar
class.
s_day = cal_gregorian.GetDayOfYear(System.DateTime.Today)
Paul.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top