为什么刷新时我的 Access 链接子表单无法正确显示?
我有一个带有自动编号 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论