如何从 objectdatareader vb.net 制作可点击的链接
这段代码工作正常,列表框显示帖子。但是如何让正面的帖子显示为可点击链接。也许不在列表框中,也许在面板或类似对象中?
If objDR.HasRows = True Then
Do While objDR.Read()
ListBox.Items.Add(Convert.ToString(objDR.GetString(1)
Loop
End If
This code works fine, the listbox shows the posts. But how do I get the posts on the front side show up as clickable links. Maybe not in the Listbox, perhaps in a panel or similar object?
If objDR.HasRows = True Then
Do While objDR.Read()
ListBox.Items.Add(Convert.ToString(objDR.GetString(1)
Loop
End If
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想将其显示为真正的链接,则不能使用 ListBox 控件。您可以使用 DataGridView 并向其中添加 DataGridViewLinkColumn。
如果您确实想使用 ListBox 控件,您可以在 Click 事件上执行链接。
If you want to show it as true links then you can't use the ListBox control. You could use a DataGridView and add a DataGridViewLinkColumn to it.
If you really want to use a ListBox control you could execute the link on the Click event.