I want to obtain the julian date in days in vb.net. Any idea how to do it? I need it to be in the ### format. (ex - February 1st would be 032)
Thanks for the help...
shootsnlad
Printable View
I want to obtain the julian date in days in vb.net. Any idea how to do it? I need it to be in the ### format. (ex - February 1st would be 032)
Thanks for the help...
shootsnlad
Now.DayOfYear.ToString.PadLeft(3, "0")
For Today January 31 you shoud get '031'.
Harold Hoffman