Link to home
Start Free TrialLog in
Avatar of JR2003
JR2003

asked on

Change Case Add-In

I'm looking for an add-in to the VB IDE that will allow me to change the case of selected text in my project to Upper, Lower and Title case.
Avatar of mladenovicz
mladenovicz

SOLUTION
Avatar of mladenovicz
mladenovicz

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 JR2003

ASKER

What I am looking for is source code for an add-in so I can customise it to my exact requirements.
ASKER CERTIFIED SOLUTION
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
Here is a link to MSDN on using StrConv to convert a string to ProperCase

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/VBRef98/html/vbmscLROverview.asp

Example Code:

MsgBox StrConv("title", vbProperCase)