Passing array as argument to a Class setter using VB 6.0

前端 未结 2 1652
情歌与酒
情歌与酒 2020-12-07 04:38

I need to pass a String array to set a class property using its setter method. Array was declared in Module and it\'s perfectly set the values using Redim

2条回答
  •  Happy的楠姐
    2020-12-07 05:14

    .SetPageNumberDetails(sPageDetails)
    

    Remove the parentheses:

    .SetPageNumberDetails sPageDetails
    

提交回复
热议问题