如何在 Microsoft Access 2007/2010 中创建从子表单到表单中特定记录的超链接
您好,我正在为学校开发一个项目,我有一个以 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据您的学生列表是在列表框中还是在绑定表单中,您可以捕获该行的 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.