我在模块中声明:
Public Type tyROWTODEL
Field1 As Long
Field As Long
End Type
Public gtyRowToDel() As tyROWTODEL
我需要测试gtyRowToDel
是否为空,但是
If gtyRowToDel is nothing then ... '----> Compile Error type mismatch
If gtyRowToDel() is nothing then ... '----> Compile Error type mismatch
我的问题与TYPE(命名项具有不同类型)而不是具有相同类型(所有字符串,所有整数...等等)的索引数组的测试有关
在这篇帖子How do I determine if an array is initialized in VB6?中,我没有找到用于测试TYPE数组的任何解决方案!
多谢