在 Visual Basic 中与数据网格视图交互
我有一个数据网格视图,从 Access 数据库中提取数据行。我想对其进行编码,以便当用户双击一行时,会打开一个窗口,并打开该特定行。
此外,我想编写一个按钮,以便它执行相同的操作,即打开一个包含所选行数据的窗口。
如何在VB中获取选定的行ID或其他数据?
编辑:忘记提及这是一个 DataGridView。
I have a Data Grid View pulling in rows of data from an Access Database. I would like to code it so that when a user double clicks on a row, a window opens with that particular row being opened.
In addition, I would like to code a button so that it does the same, that is open a window with the selected row data.
How can I get the selected row ID or other data in VB?
EDIT: Forgot to mention this is a DataGridView.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
数据网格视图?
“ID”是您想要的列的名称。对于按钮,根据选择设置 intRow。
DataGridView?
"ID" is the name of the column you want. For a button, set intRow based on selection.