为什么刷新时我的 Access 链接子表单无法正确显示?

发布于 2024-08-20 00:42:45 字数 977 浏览 5 评论 0原文

我有一个带有自动编号 ID 的表单(报价),目前表单上有两个显示不同项目的子表单(子 1 显示分区模块,子 2 显示分区基台)这两个表单使用相同的零件表来构建它们。

两种表单都使用 ID 链接到报价表单。

一切正常,直到刷新或重新加载表单,子表单 1 显示模块名称和数量以及基台名称的空格,但显示基台的数量,与此相反的情况显示在基台子表单 2 中

。打印各种类型的列表和详细的零件列表,它们是正确的。

这似乎只是一个视觉问题。

全部基于 Access 2003。

子表单 1

SELECT Quote_Modules.ModuleID, 
       Quote_Modules.QuoteID, 
       Quote_Modules.ModuleDescription, 
       Quote_Modules.ModuleQty, 
       Quote.Style, 
       Quote.Trim 
FROM Quote 
    INNER JOIN Quote_Modules ON Quote.QuoteID=Quote_Modules.QuoteID 
ORDER BY Quote_Modules.ModuleID; 

子表单 2

SELECT Quote_Modules.ModuleID, 
       Quote_Modules.QuoteID, 
       Quote_Modules.ModuleDescription, 
       Quote_Modules.ModuleQty, 
       Quote.Style, 
       Quote.Trim 
FROM Quote 
    INNER JOIN Quote_Modules ON Quote.QuoteID=Quote_Modules.QuoteID 
ORDER BY Quote_Modules.ModuleID;

I have a form (Quote) with an auto-number ID, on the form at the moment are two subforms that show different items (sub 1 shows partition modules sub 2 shows partition abutments) both forms use the same parts tables to build them.

Both forms are linked to the quote form using the ID.

All works well until the forms is refreshed or re-loaded, subform 1 shows the module names and quantities and blank spaces for the abutment names but shows the quantiews for the abutments, the reverse of this is shown in the abutments subform 2.

When the lists for the variuos types and the detailed parts lists are printed they are correct.

This seems to be only a visual problem.

All based on Access 2003.

Subform 1

SELECT Quote_Modules.ModuleID, 
       Quote_Modules.QuoteID, 
       Quote_Modules.ModuleDescription, 
       Quote_Modules.ModuleQty, 
       Quote.Style, 
       Quote.Trim 
FROM Quote 
    INNER JOIN Quote_Modules ON Quote.QuoteID=Quote_Modules.QuoteID 
ORDER BY Quote_Modules.ModuleID; 

Subform 2

SELECT Quote_Modules.ModuleID, 
       Quote_Modules.QuoteID, 
       Quote_Modules.ModuleDescription, 
       Quote_Modules.ModuleQty, 
       Quote.Style, 
       Quote.Trim 
FROM Quote 
    INNER JOIN Quote_Modules ON Quote.QuoteID=Quote_Modules.QuoteID 
ORDER BY Quote_Modules.ModuleID;

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文