如何从 Progress 4gl、Open Edge 中连接的数据库中获取下拉项值?
我创建了一个带有一个下拉框的简单窗口,并且该项目已经与默认的体育数据库连接。现在我想在该下拉框中显示数据库中的所有表。
I have created one simple window with one drop down box and the project already connected with default sports database. now i want to show all the tables in database in that drop down box.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了能够动态填充组合框的内容,您需要动态创建它:
之后,您可以通过使用名为“_file”的数据库元架构表,使用小部件句柄将元素添加到组合框:
如果您还想了解 _file 元架构表的其他属性,只需尝试 a
,您将获得对该元架构表的概述。
To be able to dynamically fill the contents of a combo-box, you need to dynamically create it:
After that, you can use the widget handle to add elements to the combo-box, by using the database metaschema table called '_file':
If you also want to know the other properties of the _file metaschema table, just try a
and you'll get an overview over that metaschema table.