Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Word 文書からスキャンした日付は 2012 年 8 月 30 日ですが、プログラムに読み込まれると 20/10/05 と表示されます。以下のコードには変換エラーがあります。
Dim str() As String
str(1) = Convert.ToDateTime(Format("yy-MM-dd")) なにか提案を?
str(1) = Convert.ToDateTime(Format("yy-MM-dd"))
このコードを試してください
Dim output As Date = Date.ParseExact(str(1), "dd/MM/yyyy", System.Globalization.CultureInfo.InvariantCulture)