比较Listview中日期的月份和年份



我试图比较月份和年份从一个日期在Listview与以下代码....

If Text(ListView1.ListItems.SubItems(12),"mmm") = Me.CbMonth.Value And Year(ListView1.ListItems.SubItems(12)) = Me.CbYear.Text

但是它给出的错误是"未找到方法或数据成员">

请帮助尝试listview对子项引用的所有组合

您需要为所需的列表项提供索引。例如,如果您想要列表中第一项的子项…

ListView1.ListItems(1).SubItems(12)

相关内容

  • 没有找到相关文章

最新更新