“do tej pory ciąg VBA” Kod odpowiedzi

do tej pory ciąg VBA

Dim myDate As Date, strDate As String
myDate = CDate("2021-01-28")
strDate = Format(myDate, "YYYY-MM-DD")				  ' 2021-01-28
' String to date
myDate = CDate(Format$("20210213101235", "####-##-## ##:##:##"))
' Date to string
strDate = Format(myDate, "YYYY-MM-DD hh:mm:ss")       ' 2021-02-13 10:12:35
VasteMonde

ciąg do daty VB

Dim iDate As String = "05/05/2005"
Dim oDate As DateTime = Convert.ToDateTime(iDate)
MsgBox(oDate.Day & " " & oDate.Month & "  " & oDate.Year)
Worried Wasp

Odpowiedzi podobne do “do tej pory ciąg VBA”

Pytania podobne do “do tej pory ciąg VBA”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu