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

问题描述

您好。

有人可以告诉我这里可能做错了吗?


我正在使用代码(lboxRP是一个列表框) :


将newRPindex调整为整数

newRPindex = Me.lboxRP.FindString(RP)

Me.lboxRP.SetSelected(newRPindex ,True)


当最后一行执行时,我收到一条错误消息:


类型为''System.ArgumentOutOfRangeException'的未处理异常'发生了

in system.windows.forms.dll


附加信息:指定参数超出有效范围

价值。


如果我'鼠标悬停''我的代码,价值RP应该是它应该是的字符串,并且

确实存在列表框中的项目...


帮助!!


TIA

Amber

Hello.
Can someone tell me what I may be doing wrong here?

I''m using the code (lboxRP is a listbox):

Dim newRPindex As Integer
newRPindex = Me.lboxRP.FindString(RP)
Me.lboxRP.SetSelected(newRPindex, True)

When the last line executes, I get an error message:

An unhandled exception of type ''System.ArgumentOutOfRangeException'' occurred
in system.windows.forms.dll

Additional information: Specified argument was out of the range of valid
values.

If I ''mouse-over'' my code, the value RP is the string it should be, and it
does exist as an item in the listbox...

Help!!

TIA
Amber

推荐答案





这篇关于列表框中的'findstring'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 03:26