Im trying to put current system time in YYMMDD format but having problem with day function.
is Day() which returned day of month in VB6 not available in VB.Net?
If I want to get the current day of month, how would I do that?
Dim dt As Date
Dim dtString As String
dtString = Year(now()) + Month(now()) + Day(now())