查看: 515  |  回复: 0
  VB6 接收任意个参数,子程序 s_FillList
楼主
发表于 2023年5月4日 19:53

新建From1(窗体),新建Command1(按钮CommandButton),Label1(Label),代码:

Private Sub FillList(ListControl As ListBox, ParamArray Items())
    Dim i As Variant
    With ListControl
        .Clear
        For Each i In Items
            .AddItem i
        Next
    End With
End Sub

Private Sub Command1_Click()
    FillList List1, "码农库", "MaNongKu", "manongku.com"
End Sub


您需要登录后才可以回帖 登录 | 立即注册
【本版规则】请勿发表违反国家法律的内容,否则会被冻结账号和删贴。
用户名: 立即注册
密码:
2020-2024 MaNongKu.com