如何确定VBA中数组的长度

时间:2017-06-08 14:26:32

标签: vba

我有一个如下所示的数组:

 students1 = Array(423.5482, 425.6641)

现在我想得到这个数组的长度。但是,如果我试试这个:

 MsgBox(students1.Length)

我得到了一个需要对象的错误。虽然我怎么能得到这个长度?

1 个答案:

答案 0 :(得分:7)

使用UBound和Lbound

if (browser["notifications"]) {
    console.log('Notifications exist!');

    browser.notifications.create({
      "type": "basic",
      "iconUrl": browser.extension.getURL("icons/icon-48.png"),
      "title": "test",
      "message": "test"
    });
  }
  else {
    //it always executes this part :/
    console.log('notifications do not exist');
    console.log(browser);
  }