Link to home
Start Free TrialLog in
Avatar of athe
athe

asked on

UCase Library

i have a weird problem. installing vb in another computer, i try to compile my program and i get an error about a library not found included on project references, the function highlighted when this happens is UCase.

does anybody knows which library do i have to include to compile my program correctly??
ASKER CERTIFIED SOLUTION
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of manduz_griffus
manduz_griffus

you may have used a reference required library.
try to look at the libraries that you used.

hope this helps.
you need to make sure that the function UCase is in the MSVB60.DLL (i forgot the exact dll name but it is something like that). This DLL holds all the basic functions you use in VB (instr,msgbox,instrrev,ucase,lcase, etc.)

Make sure you have the newest version ofthis file :D
Hi,

This is often the case when your VB project is missing a reference to another DLL or component.
Check the project references and make sure that there are no MISSING: references.

HTH,
Alon
Do the following:
instead of directly Ucase, use the
Vba.Ucase sintax
ie:
thestring= VBA.Ucase(thestring)
Vba is the module you have mnatter with, and this may happens because of some software registering a different library that is caled instead of native Vba.
Check the Pc and your project references for msvbvm60.dll
It may happen target Pc has a Vb Virtual machine wich is not correct but have a earlier date/time than yours. You might have (if you did not do it yet) to install servicepack 5 for your Vb...
emoreau told it correctly as first one- give him the points!
Have a nice day, you all,
Cesare I.