vb.net 中的富文本框

发布于 2024-07-16 22:08:13 字数 85 浏览 2 评论 0原文

我在 vb.net 应用程序中使用 Richtext 框,我需要显示其中数据库中的前 10 条记录。但它只显示 1 条记录。该怎么办? 请帮忙......

i am using a richtext box in my vb.net application and i need to dispaly top ten records from the database in it.but it is displaying only 1 record.what to do??
kindly help.....

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

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

发布评论

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

评论(2

oО清风挽发oО 2024-07-23 22:08:13

我认为您可能选择了错误的控件。 您可能想考虑使用 GridView< /a>,或其他一些用于显示多条记录的控件。

如果您确实想在 TextBox 中显示 10 条记录的值,则必须以不同的方式处理该问题。 您可以将这些值连接成一个字符串并将其分配给 TextBox 的 Text 属性,尽管我认为这并不是一个很好的解决方案。

I think you may have chosen the wrong control. You may want to look into using a GridView, or some other control that exists to display multiple records.

If you really want to display the values of 10 records in a TextBox, you'll have to approach the problem differently. You can concatenate the values into a string and assign it to the Text property of the TextBox, although I don't think this is really a good solution.

好听的两个字的网名 2024-07-23 22:08:13

我使用了以下几行代码,它工作得非常好:

 If rcount < 10 Then
     rcount = rcount + 1
     RtxtMessage.ScrollBars = RichTextBoxScrollBars.None
     RtxtMessage.Text = RtxtMessage.Text + " " + 
     CType(dv.Item(i)("audit_message"), String) & vbCrLf
 End If

I have used the following lines of code and it works absolutely fine:

 If rcount < 10 Then
     rcount = rcount + 1
     RtxtMessage.ScrollBars = RichTextBoxScrollBars.None
     RtxtMessage.Text = RtxtMessage.Text + " " + 
     CType(dv.Item(i)("audit_message"), String) & vbCrLf
 End If
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文