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.
次のようにプログラムで結果を出力したい: Visual Basic 6数字の前に"0"06:03を追加するにはどうすればよいですか?
06:03
m=6 h=3 print m;" : ";h
このような?
使用する必要がありますFormat()
Format()
m = 6 h = 3 Debug.Print Format(m, "00"); " : "; Format(h, "00")
出力: 06 : 03