好象不是SPLIT()的事了,我在执行test=split(strTest,"  ")后又
redim preserve test(ubound(test()))
还是会出现同样的错误,怎么办?怎么回事?

解决方案 »

  1.   

    应该是你的那个Text()吧!不过,Windows2K没问题?
      

  2.   

    dim  test()
      
      test=split(strTest,"  ")
      
      for  i=lbound(test)  to  ubound(test)
      ……………………
      next  i你再试试
      

  3.   

    原来问题不是出在这,而是这样的,请大家帮忙
    http://www.csdn.net/expert/topic/549/549706.xml
      

  4.   

    dim  test'括号去掉
      
      test=split(strTest,"  ")
      
      for  i=lbound(test)  to  ubound(test)
      ……………………
      next  i