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.
ユーザーが 18:00:00 のような形式で「時刻」を入力できるように、Access で Textbox を事前にカスタマイズする方法は (必要に応じてプログラムで) ありますが、コロンは既に使用可能であり、「上書き」することはできません。ユーザー? これは、ユーザーがコロンを入力する必要がないという意味で意味します。それらは標準でテキストボックスで利用できます。
形式を時間に設定し、入力マスクを使用できます。
Me.MyTime.Format = "Long Time" Me.MyTime.InputMask = "00:00:00;0;_"