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.
我得到了一个表格来修改它,它是在加载时从数据集中填充的。数据集中有一个 ID 字段,显示在表单上的一个字段中。在此 ID 字段丢失的情况下,我需要在此字段中显示查找,用户可以从其中选择它丢失的几个原因,如果 ID 存在,我需要显示它而不显示查找。
我一直在努力寻找能够让我做到这一点的语法,任何建议都将不胜感激。
我希望我正确理解了这个问题
procedure TForm1.DataSourceDataChange(Sender: TObject; Field: TField); begin if Field = MyFieldOfInterest then begin MyLookupComponent.visble := Field.IsNull; MyIDOnlyComponent.visble := not Field.IsNull; // or enabled ... end; end;