数据访问页面上的访问输入文本框,仅启用选择以允许按搜索过滤
我有一个数据访问页面,它从另一个表的查询中获取所有数据,问题是我在页面上创建的所有文本框并将控制源绑定到匹配列,然后不允许我输入任何文本来使用过滤器选项可搜索所有结果。
我不希望能够记录任何信息,但如果我将页面属性从 DataEntry = false 更改为 true ,那么它不再显示文本框的整个部分。
有人知道解决这个问题的方法或其他简单解决方案的建议,以与此相同/相似的方式显示表中的某些数据或查询中的所有数据吗?
I have a data access page which gets all it's data from a query of another table, problem is all the textboxs I make on the page and bind the Control source to the matching column then don't allow me to input any text in to use the filter option to search all the results.
I don't want to be able to record any information but if I change page properties to from DataEntry = false too true then it no longer displays the whole section of textboxs.
Anybody know of a way round this or suggestions of other simple solutions to display certain data from the table or all the data from the query in the same/similar way as this?
Edit- Original issue which now requires me to find new solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我经常使用 DAP——我什至在 Microsoft 构建了 DAP 解决方案,它们非常受欢迎。我总是更喜欢使用 SQL Server 风格的 DAP。它允许您使用两种不同类型的过滤器、标准过滤器属性以及 serverFilter 属性。 serverFilter 属性非常强大,并且能够以两种不同的方式过滤内容真是太好了。
希望有帮助
-Aaron MCITP DBA
I've used DAP quite a bit -- I even built DAP solutions at Microsoft, and they were wildly popular. I always preferred to use the SQL Server flavor of DAP.. and that allows you to use TWO different types of filters, the standard filter property, in addition to the serverFilter property. The serverFilter property is extremely powerful, and it's incredibly nice to be able to filter things in TWO different ways.
Hope that helps
-Aaron MCITP DBA
原来的问题现已解决,但我还发现了这些 1, 2 个链接,引导用户完成 DAP 上的搜索功能。
The original issue has now been resolved but I had also found these 1, 2 links which guide one through a search feature on DAP's.