J Jack Handy Jun 4, 2004 #1 I tried to declare a HasTable in my sub and get "Type Expected" error. What am I doing wrong. Dim ht as New HasTable
I tried to declare a HasTable in my sub and get "Type Expected" error. What am I doing wrong. Dim ht as New HasTable
H Herfried K. Wagner [MVP] Jun 4, 2004 #2 * "Jack Handy said: I tried to declare a HasTable in my sub and get "Type Expected" error. What am I doing wrong. Dim ht as New HasTable Click to expand... It's spelled 'Hashtable'!
* "Jack Handy said: I tried to declare a HasTable in my sub and get "Type Expected" error. What am I doing wrong. Dim ht as New HasTable Click to expand... It's spelled 'Hashtable'!
J Jack Handy Jun 4, 2004 #3 Thanks for catching the typo, but I'm sure you understand what I meant, can you help with the question?
Thanks for catching the typo, but I'm sure you understand what I meant, can you help with the question?
H Herfried K. Wagner [MVP] Jun 5, 2004 #4 * "Jack Handy said: Thanks for catching the typo, but I'm sure you understand what I meant, can you help with the question? Click to expand... Make sure the namespace 'System.Collections' is imported: VB.NET: 'Imports System.Collections'. C#: 'using System.Collections;'. .... on top of the source file.
* "Jack Handy said: Thanks for catching the typo, but I'm sure you understand what I meant, can you help with the question? Click to expand... Make sure the namespace 'System.Collections' is imported: VB.NET: 'Imports System.Collections'. C#: 'using System.Collections;'. .... on top of the source file.