Jul 29, 2002 #1 golyg Programmer Jul 22, 2002 319 US I get the following error when I try to call a function from within another function: "An Exception of type 'Microscoft VBScript runtime error: Type mismatch: 'ShowDirectory" was not handled" I'm not quite sure why. any suggestions?? thanks
I get the following error when I try to call a function from within another function: "An Exception of type 'Microscoft VBScript runtime error: Type mismatch: 'ShowDirectory" was not handled" I'm not quite sure why. any suggestions?? thanks
Jul 30, 2002 #2 cornboy88 Programmer Jan 16, 2002 59 US You attempted to compare values of incompatible data types. For example, comparing a string and a numeric value. To correct this error Make sure the data types match when performing comparisons. Cast one of the values to the data type of the other, and try the comparison again. Cornboy88 Upvote 0 Downvote
You attempted to compare values of incompatible data types. For example, comparing a string and a numeric value. To correct this error Make sure the data types match when performing comparisons. Cast one of the values to the data type of the other, and try the comparison again. Cornboy88