At 5:28 AM +0100 4/12/06, Carlos M wrote:
Dim s As String = Str(wordObj.MeaningCount)
Gives the following error on 2006r2:
"There are several items with this name and it is not clear which one
the call refers to."
I saw this one the other day, and it struck me as one of the
clearest, most plain-spoken error messages I've ever seen from a
compiler. Most compilers would simply say "Ambiguous identifier
error" or some such. But this one actually says exactly what it
means.
That said, I don't know why you're getting it on this line. Try
breaking it into two lines:
Dim i As Integer = wordObj.MeaningCount
Dim s As String = Str(i)
and see if that provides any insight. Also, do you have your own
definition of Str() somewhere in your project?
Best,
- Joe
--
Joseph J. Strout
[EMAIL PROTECTED]
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>