参数在VB6不可选 [英] Arguments not optional in vb6

查看:378
本文介绍了参数在VB6不可选的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

为什么会出现这个错误?这code是正确的,但为什么呢?

Why am i getting this error? This code is right but why?

Private Sub loadEmployee()
With frmEmployee.lvEmployee.ListItems
Call connect
'SQL = "SELECT * FROM tblemployee "
Rs.Open "SELECT * FROM tblemployee ", Conn, adOpenDynamic, adLockOptimistic
  If Not Rs.EOF Then
    Rs.MoveLast
    Set Item = lvEmployee.ListItems.Add(1, , Rs!id)
        Item.SubItems(2) = Rs!firstname
        'Item.SubItems(2) = Rs!middlename
        Item.SubItems(3) = Rs!lastname
        Item.SubItems(4) = Rs!agename
        Item.SubItems(5) = Rs!gender
        Item.SubItems(6) = Rs!address
        Item.SubItems(7) = Rs!datehired
        Item.SubItems(8) = Rs!birthdate
        Item.SubItems(9) = Rs!birthplace
        Item.SubItems(10) = Rs!citizenship
        Item.SubItems(11) = Rs!cellno
        Item.SubItems(12) = Rs!Status
        Item.SubItems(13) = Rs!basicsalary
        Item.SubItems(14) = Rs!designation
        Item.SubItems(15) = Rs!department
        'Item.SubItems(16) = Rs!m_name
        'Item.SubItems(17) = Rs!m_occupation
        'Item.SubItems(18) = Rs!n_spouse
        'Item.SubItems(19) = Rs!dependents
        'Item.SubItems(20) = Rs!SSS
        'Item.SubItems(21) = Rs!PHILHEALTH
        'Item.SubItems(22) = Rs!PAGIBIG
        Item.EnsureVisible
  End If
  Rs.Close
  Conn.Close
  Set Conn = Nothing
 End With
End Sub

ERROR:

Arguments not optional

真的有困难时期与此有关。这个错误是当calling.I称为是这样的:

Really having hard time with this. This error is when calling.I called like this:

Private Sub Form_Load()
loadEmployee
End Sub

如何解决这一问题?

How to fix this?

推荐答案

你声明项目

尝试声明:

Dim Item as listitems

这篇关于参数在VB6不可选的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆