Dear All,
Why my VB6 happen:
===============================
Compile error:
Can't find project or library
===============================
Especially, it hapeen on
Chr()
My code:
===============================================================
....
temp$ = temp$ & Str(Chr(NameBuffer.UnicodeName(i))): i = i + 2
^^^ Compile error here.
....
===============================================================
@@ ... why why why..
Best regards,
Boki.
Randy Birch - 30 Sep 2004 04:45 GMT
Ensure that the first four selected (in order) items under
project>references are:
visual basic for applications
visual basic runtime objects and procedures
visual basic objects and procedures
OLE automation
If that fails, you can reference that using:
vba.chr(...)

Signature
Randy Birch
MS MVP Visual Basic
http://vbnet.mvps.org/
: Dear All,
:
[quoted text clipped - 21 lines]
: Best regards,
: Boki.
Bob O`Bob - 30 Sep 2004 17:13 GMT
> Dear All,
>
[quoted text clipped - 21 lines]
> Best regards,
> Boki.
It's almost always because you have a "MISSING" component or reference.
Bob