Entries from 2014-06-18 to 1 day

collection オブジェクト 『オブジェクト変数または With ブロック変数が設定されていません。』

VBA

原因: オブジェクトを生成してないのに Add しようとしたから アウトな例 function myCollection() as collection myCollection.Add(100,"coffe") end function OKな例(new して set する。) function myCollection() as collection dim newCollection a…