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.
我的网格中只有两个字段。如果其中一个字段中的值为 0,则只需要不显示整行。
有多种解决方案可以满足您的需求,但这个在类似的设置中对我有用。
以下代码在组件的 PostBuild 事件中:
Local Rowset &rs; &rs = GetLevel0()(1).GetRowset(Scroll.MainRecordOfTheGrid); &rs.Flush(); &rs.Select(Record.MainRecordOfTheGrid, "WHERE FieldA<>0 and FieldB<>0");