Hi,
I'm doing a function that turns each word into a sentence with the first letter in upper case and the others in lower case. The problem is that using string.lower command the accented letters do not become lowercase, for example:
result = String.Lower("RENÊ");
result = Dialog.Message("Notice", result, MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);
The dialog message shows "renÊ"
Thanks if anyone can help me.
Stay safe!
Renê
I'm doing a function that turns each word into a sentence with the first letter in upper case and the others in lower case. The problem is that using string.lower command the accented letters do not become lowercase, for example:
result = String.Lower("RENÊ");
result = Dialog.Message("Notice", result, MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);
The dialog message shows "renÊ"
Thanks if anyone can help me.
Stay safe!
Renê
Comment