Can I Make all Fields Uppercase in Code

  • Thread starter Thread starter ABinBoston
  • Start date Start date
A

ABinBoston

I have an application that formats the data normally, but one client wants the
option to change all fields to Upper case.

I would like to make all fields Upper Case using code if an option to do so is
selected in a Config table.

Any help is appreciated

AB
 
ABinBoston said:
I have an application that formats the data normally, but one client wants the
option to change all fields to Upper case.

I would like to make all fields Upper Case using code if an option to do so is
selected in a Config table.


I would use the Form/Report Open event to set the Format
Property of each text string text box to the > format code.
This may cause truncation in memo fields so you may have to
use the UCase function in a few strategic places.

Personally, I would tell that client that their request goes
against all human interface standards and is known to be
more stressful to read. The only industry(?) that I'm aware
of that is required to use all upper case is trial lawyers,
so you/they have no choice.
 
Back
Top