为什么设置属性失败?

时间:2016-04-20 10:15:21

标签: vbscript

为什么会失败?

#df[df['genre'].str.contains('|IC|')]  #### row 6
# This also not satisfying my need as i am missing rows 1 and 5

但这有效:

set fldr = CreateObject("shell.application").BrowseForFolder(0, "Example", 0, 0).Self.Path

1 个答案:

答案 0 :(得分:3)

因为Set Statement不是用于分配字符串变量:

  

要生效,objectvar必须是与分配给它的对象一致的对象类型。

例如,这可以起作用:

Set objFldr = CreateObject("shell.application").BrowseForFolder(0, "Example", 0, 0)
strFldrPath = objFldr.Self.Path