要向VB列表框添加列表項(xiàng),可以使用AddItem方法。以下是一個(gè)簡(jiǎn)單的示例代碼:
Private Sub Form_Load()
With ListBox1
.AddItem "Item 1"
.AddItem "Item 2"
.AddItem "Item 3"
End With
End Sub
在上面的代碼中,我們向名為L(zhǎng)istBox1的列表框添加了三個(gè)列表項(xiàng)。您可以根據(jù)需要使用AddItem方法為列表框添加更多的列表項(xiàng)。