在组合框中获取值的问题

发布于 2024-10-20 13:29:06 字数 159 浏览 2 评论 0原文

我正在使用 VFP 6.0,并且创建了一个表单,我必须通过父级和父级输入一些数据。儿童桌。现在根据要求,一份唯一的交货订单下有许多产品。因此,我使用组合框来选择子记录中的产品。并根据所选产品;我想要另一个组合框中的包装清单。但我无法获取组合框中特定产品的包装清单。

谁能给我提供解决方案?

I am using VFP 6.0 and I created a form where I’ve to enter some data thru parent & child tables. Now according to requirement there are many products under one unique Delivery order. Hence I use a combo box to select product in child record. And according to selected product; I want to have a list of packing in another combo box. But I’m unable to get the list of packing for a particular product in combo box.

Can anyone provide me the solution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

[浮城] 2024-10-27 13:29:06

您是在网格内进行组合的数据输入还是在表单上进行自由格式字段?

如果在网格中(每个子记录),即使使用列的 DynamicCurrentControl,我也看不到它发生。

如果是标准表单,一旦您选择了产品,您可以使用 VALID 或 INTERACTIVECHANGE 事件来查询刚刚选择的产品的可用包装选项,并将结果游标绑定到另一个组合框的数据源。实际上,我会将其设置为表单的自定义方法,因此如果您滚动输入的子记录并需要不断刷新打包组合框,则可以从滚动机制或从 VALID / INTERACTIVECHANGE 事件调用此方法以防止重复相同的代码。

如果您有更多信息,我显然可以调整这个答案。

Are you doing the data entry of the combo inside a grid or is it free-form fields on a form?

If in a grid (per each child record), I don't see it happening, even with DynamicCurrentControl of a column.

If a standard form, once you've selected a product, you can use either the VALID or INTERACTIVECHANGE events to query available packing options for the product just selected and bind that result cursor to the data source of the other combobox. I would actually make this like a custom method of the form so if you are scrolling through the entered child records and needing to constantly refresh the packing combobox, this one method can be called from either the scrolling mechanism, OR from the VALID / INTERACTIVECHANGE event to prevent duplicating same code.

If you have more info, I can obviously adjust this answer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文