1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

FileMakerProのプレースホルダテキストで時刻入力例を表示

Posted at

はじめに

対象読者

  • FileMaker Pro ユーザー
  • フィールドのプレースホルダテキストで時刻の入力例を入れたい人

どういうの?

  • こういうの

image.png

  • インスペクタのここから設定できます

image.png

基本の要件

  • hh:mm の形式
    • つまり時刻表示は zero padding ( 一桁数値の場合の十の位を 0 にする)
  • プレースホルダテキストは返値が「テキスト」型

image.png

本題

開始時刻の表示

要件

  • 現在時刻を表示する
Right ( "0" & Hour ( Get ( 時刻 ) ) ; 2 ) & ":" &
Right ( "0" & Minute ( Get ( 時刻 ) ) ; 2 )

終了時刻の表示

要件

  • 現在時刻の二時間後を表示する
Right ( "0" & Hour ( Get ( 時刻 ) + Time ( 2 ; 0 ; 0 ) ) ; 2 ) & ":" &
Right ( "0" & Minute ( Get ( 時刻 ) ) ; 2 )

結果

  • 最初にお見せしたとおり、こうなります

image.png

おわりに

  • もっと良い書き方あったら教えてください 🙏
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?