I need to set a field to uppercase, regardless of the case of the entry.
I understand the following javascript may allow me to do this, but it doesn't seem to work.
========================================
function Ucase(TextField1)
{
var s = TextField1.rawValue;
TextField1.rawValue =...