我需要知道文本框中的总数

我需要知道文本框中的总数

本文介绍了我需要知道文本框中的总数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有人可以告诉我如何获取文本框中列表框的项总数.请使用编码简要说明一下.\

can someone pls tell me how can i get the total count of items of listbox in the textbox. pls explian me briefly with coding.\

推荐答案


@Count int OUTPUT

SELECT * FROM list

SET @Count = @@RowCount



问候,
爱德华



Regards,
Eduard


TextBox1.Text = ListBox1.Items.Count 'Returns no of Items present in ListBox


希望对您有帮助. :)
-MKB


I hope it will help you. :)
-MKB


这篇关于我需要知道文本框中的总数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-06 04:34