Unlocking the gmail
https://accounts.google.com/DisplayUnlockCaptcha
https://www.google.com/accounts/UnlockCaptcha
http://support.google.com/mail/bin/answer.py?hl=en&answer=14257
Excel Changing Case
Sub Uppercase()
For Each x In Selection
x.Value = UCase(x.Value)
Next
End Sub
Sub Lowercase()
For Each x In Selection
x.Value = LCase(x.Value)
Next
End Sub
Sub Proper_case()
For Each x In Selection
x.Value = Application.Proper(x.Value)
Next
End Sub