MS_2902
This commit is contained in:
@@ -246,12 +246,20 @@ Public Class ClassImport_Windream
|
||||
Select Case type
|
||||
Case "YY_MM_DD"
|
||||
datetemp = My.Computer.Clock.LocalTime.Year.ToString.Substring(2) & "_" & _Month & "_" & _day
|
||||
Case "YYMMDD"
|
||||
datetemp = My.Computer.Clock.LocalTime.Year.ToString.Substring(2) & _Month & _day
|
||||
Case "YYYY_MM_DD"
|
||||
datetemp = My.Computer.Clock.LocalTime.Year & "_" & _Month & "_" & _day
|
||||
Case "DD_MM_YY"
|
||||
datetemp = _day & "_" & _Month & "_" & My.Computer.Clock.LocalTime.Year.ToString.Substring(2)
|
||||
Case "DD_MM_YYYY"
|
||||
datetemp = _day & "_" & _Month & "_" & My.Computer.Clock.LocalTime.Year.ToString
|
||||
Case "DD.MM.YY"
|
||||
datetemp = _day & "." & _Month & "." & My.Computer.Clock.LocalTime.Year.ToString.Substring(2)
|
||||
Case "DD_MM_YYYY"
|
||||
datetemp = _day & "_" & _Month & "_" & My.Computer.Clock.LocalTime.Year
|
||||
Case "DD.MM.YYYY"
|
||||
datetemp = _day & "." & _Month & "." & My.Computer.Clock.LocalTime.Year
|
||||
Case "YYYY_MM"
|
||||
datetemp = My.Computer.Clock.LocalTime.Year & "_" & _Month
|
||||
Case "MM_YYYY"
|
||||
|
||||
Reference in New Issue
Block a user