关于vb listbox

求高手解释IfList1.ListIndex>=0Thenn=InStr(List1.Text,"")l=Len(List1.Text)n=n+1Label11.Capt... 求高手解释
If List1.ListIndex >= 0 Then
n = InStr(List1.Text, " ")
l = Len(List1.Text)
n = n + 1
Label11.Caption = Val(Label11.Caption) - Val(Mid(List1.Text, n, l - n))
展开
 我来答
duyin2011
2011-07-05 · TA获得超过2400个赞
知道大有可为答主
回答量:1723
采纳率:100%
帮助的人:667万
展开全部
If List1.ListIndex >= 0 Then'记录不空
n = InStr(List1.Text, " ")'找出有空格的位置
l = Len(List1.Text)'长度
n = n + 1'空格下位置
Label11.Caption = Val(Label11.Caption) - Val(Mid(List1.Text, n, l - n))'用标签里的数字减去List1.Text中空格后取出的数据,然后送标签显示
385lphuir
2011-07-06 · TA获得超过1247个赞
知道大有可为答主
回答量:3592
采纳率:90%
帮助的人:819万
展开全部
Private Sub List1_DblClick()
Dim i As Long
Dim s As String

If List1.ListIndex > -1 Then
s = List1.List(List1.ListIndex)
If List2.ListCount > 0 Then
For i = 0 To List2.ListCount - 1
If s = List2.List(i) Then
MsgBox "已经选过了。", vbOKCancel, "提示"
Exit For
End If
Next i
If i = List2.ListCount Then List2.AddItem s
Else
List2.AddItem s
End If
End If
End Sub

Private Sub Form_Load()
Dim i As Long
For i = 1 To 5
List1.AddItem "菜单" & i
Next i
End Sub
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式