VB中如何删除一项
PrivateSubCommand6_Click()IfList1.ListIndex<>-1ThenIfMsgBox("确认要删除本条信息!",vbOKCancel+v...
Private Sub Command6_Click()
If List1.ListIndex <> -1 Then
If MsgBox("确认要删除本条信息!", vbOKCancel + vbQuestion, 标题) = vbOK Then
List1.RemoveItem List1.ListIndex
End If
End If
End Sub
这个程序怎么删不了呢? 展开
If List1.ListIndex <> -1 Then
If MsgBox("确认要删除本条信息!", vbOKCancel + vbQuestion, 标题) = vbOK Then
List1.RemoveItem List1.ListIndex
End If
End If
End Sub
这个程序怎么删不了呢? 展开
2个回答
展开全部
Private Sub Command6_Click()
If List1.ListIndex <> -1 Then
If MsgBox("确认要删除本条信息!", vbyesno + vbQuestion, 标题) = vbyes Then
List1.RemoveItem List1.ListIndex
End If
End If
End Sub
删除不了是因为你没有选中列表项 或者 列表无项目
If List1.ListIndex <> -1 Then
If MsgBox("确认要删除本条信息!", vbyesno + vbQuestion, 标题) = vbyes Then
List1.RemoveItem List1.ListIndex
End If
End If
End Sub
删除不了是因为你没有选中列表项 或者 列表无项目
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询