确定是否已使用if ... then ... else语句

时间:2017-11-17 01:21:32

标签: vb.net

我正在尝试让菜单项从列表框中删除所选项目,并显示一条消息,警告用户是否未选择要删除的项目。 这就是我到目前为止所做的:

    If Me.lstFacts.SelectedItem = "Something"  Then
        Me.lstFacts.Items.Remove(Me.lstFacts.SelectedItem)
    Else
        MessageBox.Show("Please select an item!")
    End If

我正在确定哪些项目已添加到列表中并带有输入框:

    Dim intCounter As Integer 'Counter

    Do While intCounter < 5
        Dim strFact As String = InputBox("Add new fact")
        Me.lstFacts.Items.Add(strFact)
        intCounter += 1
    Loop

我只需要知道在循环中用什么替换“东西”。我尝试将它设置为strFact,但由于strFact是在不同的菜单项中确定的,因此不同的范围,我不能使用它。

0 个答案:

没有答案