如何从 objectdatareader vb.net 制作可点击的链接

发布于 2024-12-11 02:55:39 字数 237 浏览 0 评论 0原文

这段代码工作正常,列表框显示帖子。但是如何让正面的帖子显示为可点击链接。也许不在列表框中,也许在面板或类似对象中?

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 技术交流群。

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

发布评论

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

评论(1

云淡月浅 2024-12-18 02:55:39

如果您想将其显示为真正的链接,则不能使用 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.

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