如何在 Microsoft Access 2007/2010 中创建从子表单到表单中特定记录的超链接

发布于 2024-12-21 05:30:04 字数 180 浏览 2 评论 0原文

您好,我正在为学校开发一个项目,我有一个以 StudentID 作为主键的子表单,我想让每个StudentID一个超链接,链接到一个表格,该表格将显示该学生的完整详细信息。

我该怎么做?请帮忙。

Hello I am working on a project for school and I have a sub-form which with StudentID as the primary key and I would like to make EACH StudentID an hyperlink that links to a form that will show the full details of that student.

How can I do this? Please Help.

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

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

发布评论

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

评论(1

生死何惧 2024-12-28 05:30:04

根据您的学生列表是在列表框中还是在绑定表单中,您可以捕获该行的 dblclick 事件。在双击事件中,您可以启动下一个表单并使用 OpenArgs 属性将学生 ID 传递给它。然后,在第二个表单的加载事件中,您可以使用 OpenArgs (StudentID) 运行 SQL 来获取所需的数据。

Depending on whether your list of students is in a listbox or on a bound form you can capture the dblclick event of the row. On the double click event you could launch your next form and use the OpenArgs property to pass it the student ID. Then on your second form's load event you could run an SQL using the OpenArgs (StudentID) to get your desired data.

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