Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

フォーム・ソース(NoMatchAction = DefaultItemの場合)

Function Options(*DIRECT)
Begin_Com Role(*EXTENDS #PRIM_FORM) Clientheight(108) Clientwidth(492) Height(135) Left(357) Top(148)
Define_Com Class(#STD_NUM.Visual) Name(#STD_NUM) Displayposition(1) Left(96) Parent(#COM_OWNER) Tabposition(1) Top(32) Usepicklist(True)
Define_Com Class(#PRIM_PHBN) Name(#PHBN_1) Caption('Set Invalid Value') Displayposition(2) Left(248) Parent(#COM_OWNER) Tabposition(2) Top(72) Width(114)
Evtroutine Handling(#PHBN_1.Click)
* As UsePicklist=TRUE the only allowable values for the STD_NUM field are the values defined in the picklist.
* The value 1234 is not in the Picklist for STD_NUM so 1234 is an invalid value.The NoMatchAction setting will
* then take presedence
Change Field(#STD_NUM) To(1234)
Endroutine
End_Com

外観(NoMatchAction = DefaultItemの場合)

...