vb.net 中的富文本框
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您可能选择了错误的控件。 您可能想考虑使用 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.
我使用了以下几行代码,它工作得非常好:
I have used the following lines of code and it works absolutely fine: