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.
Google で検索したところ、1 つ見つかりました。VBAを使用して[h]:mm形式で時間をフォーマットすることは可能ですか?
Dim currentTime As Date currentTime = TimeOfDay
データをダンプしたときにデータベースに渡しcurrentTimeました - put put が00.00.00.000000 理解できないと表示されるのはなぜですか? 現在の時刻を呼び出す他の関数はありますか00.00 AM/PM
currentTime
00.00.00.000000
00.00 AM/PM
現在の時刻を仕様に合わせてフォーマットするには、次を試してください
MsgBox Format(Now(), "hh:mm AMPM")