Link to home
Start Free TrialLog in
Avatar of aplelois
aplelois

asked on

visual basic convert lowercase

Hello,
I have an app that generates licenses for my (php notes taking)
you write the domain name and it will give you the hash in md5
but the output of the md5 is coming out in capital letters is there
anyway to show it all in lowercase?
thanks
SOLUTION
Avatar of Harisha M G
Harisha M G
Flag of India 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 aplelois
aplelois

ASKER

where do I put that?
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
thanks guys
aplelois,


Text4.Text = LCase(MD5_string("trial:license:12345:" & Text2.Text))
its working perfectly fine