Link to home
Start Free TrialLog in
Avatar of Ecmil
Ecmil

asked on

Capital Letters In Filenames

Hi!
I'm working on a program that renames multiply files. The files contains underscore and the program replaces them with space.

My program changes the filename from:
the_files_looks_like_this.txt
to:
the files looks like this.txt

I'm looking for another feature for my program which is a function that change the small letters to capital letters so the file looks like this when all changes has been made. Now the file should look like this:
The Files Looks Like This.txt
ASKER CERTIFIED SOLUTION
Avatar of Inteqam
Inteqam

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 Inteqam
Inteqam


StrConv("the files looks like this.txt",vbProperCase)
would produce
The Files Looks Like This.txt
Avatar of Ecmil

ASKER

Excellent!!!

Thanks a lot!!!!
anytime
:)