There are some layouts in which the "powers that be" demand be in ALL
CAPITALS - not only for viewing pleasure, but also on exported text.
Setting the text to view all upper is easy. However, if the user has
typed in lower case letters, that is what gets exported regardless of
what was displayed in the layout.
Aside from using an Upper function on every single field - any
suggestions on how to have the text actually changed to Upper case?
Thanks for any Tips, Tricks or Alcohol you can
provide!
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
WinXP Pro 64Bit / FMP Adv 8.0v2
VoicesInMyHead
a.k.a. The Voices
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
|
0
|
|
|
|
Reply
|
VoicesInMyHead
|
3/14/2006 3:15:30 PM |
|
In the field definitions, you can change the auto-enter characteristics
so the field uses an auto-enter calc and unmark the option so that it
will replace any existing text. That way, you can set the calc as
upper(ThisField) and, whenever someone manually changes the value in
that field, it will get replaced with all upper case when they exit the
field. For older records, you'll have to initially perform a Replace on
those fields to convert their values to upper case.
Note that the auto-enter calc does not operate when you use certain
script steps (like Set Field) to set them, so you'll have to make sure
any scripts that write to those fields already write as upper().
VoicesInMyHead wrote:
> There are some layouts in which the "powers that be" demand be in ALL
> CAPITALS - not only for viewing pleasure, but also on exported text.
>
> Setting the text to view all upper is easy. However, if the user has
> typed in lower case letters, that is what gets exported regardless of
> what was displayed in the layout.
>
> Aside from using an Upper function on every single field - any
> suggestions on how to have the text actually changed to Upper case?
> Thanks for any Tips, Tricks or Alcohol you can
> provide!
--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Howard Schlossberg (818) 883-2846
FM Professional Solutions, Inc. Los Angeles
FileMaker 8 Certified Developer
Associate Member, FileMaker Solutions Alliance
|
|
0
|
|
|
|
Reply
|
Howard
|
3/14/2006 3:36:05 PM
|
|
On Tue, 14 Mar 2006 07:36:05 -0800, Howard Schlossberg wrote:
> In the field definitions, you can change the auto-enter characteristics
> so the field uses an auto-enter calc and unmark the option so that it
> will replace any existing text. That way, you can set the calc as
> upper(ThisField) and, whenever someone manually changes the value in
> that field, it will get replaced with all upper case when they exit the
> field. For older records, you'll have to initially perform a Replace on
> those fields to convert their values to upper case.
>
> Note that the auto-enter calc does not operate when you use certain
> script steps (like Set Field) to set them, so you'll have to make sure
> any scripts that write to those fields already write as upper().
I'm annoyed that the functions know better than myself what I
want to do :-(
Take e.g. PatternCount - it's case insensitive within FMP7!?
What's patterncount("Take the A Train", "A")? It's 3...
If I would like to ignore the case, I'd use
Patterncount(Upper("Take the A Train", A)
However, there's no reverse function to make it case sensitive. I'd
have to check it separately via the 'exact' mechanisms - or maybe via
another field in Unicode indexing.
BTW: how does FMP8 handle the substitute functions? I wonder about the
syntax
let([ cmd1, cmd2, cmd3], result)
compared to FMP7's
substitute( text, [ a1, b1], [ a2, b2], [a3, b3])
instead of
substitute( text, [a1, b1, a2, b2, a3, b3])
In fact I'd expect to live without the [] at all, since the if and case
functions show how to work without. You know where "[" and "]" are
hidden on the German Mac keyboard? I know, but it's always tedious.
- Martin
|
|
0
|
|
|
|
Reply
|
Martin
|
3/14/2006 4:56:05 PM
|
|
|
2 Replies
207 Views
(page loaded in 0.084 seconds)
Similiar Articles: File Saving - Uppercase versus Lowercase file names - comp.apps ...Upper case and Lower case issues - comp.databases.filemaker ... When I read in the input file, I uppercasee the input line and then parse the ... ... see MT report below. Solaris 10 find command for upper and lower cases - comp.unix ...When I was on a Linux system I could use the "find" command with the ( I think ) the "iname" option to find all file names in either upper or lower case. File names change to upper case in USB drive - comp.unix.solaris ...This problem is strange. I am using a San Disk Mini Cruzer USB drive (512 MB) to ... Good luck. didess wrote: > Hi ... Re: upper/lower case for directory/file names on USB-key Convert string : Upper to lower - comp.unix.solarisProblems with printing "/dev/null is out of service" ... Convert string : Upper to lower - comp.unix.solaris... dd conv ... Convert string to upper case and lower case ... helvetica for pc - comp.fonts... there wouldn't be re-flow problems (although, in the pair I'm looking at right now, Arial's lower case alphabet ... > However, viewing the entire upper- and lower-case ... Solving Equations for Complex Numbers - comp.sys.hp48As you have entered it, your variable seems to be the lower case'x', not the upper case 'X'. ... Solving Equations for Complex Numbers - comp.sys.hp48 solving problem with ... Swing Copy Problem - comp.lang.java.guiProblem: I have a Swing GUI with two JTextAreas (Events and Events2 ... Second, using upper case for some members and lower case for others just adds to that confusion. Setting password policy on Solaris 8/9 - comp.unix.solaris ...... or a dash), and may contain at least one upper case and one lower ... To get around the problem of having 80 different ... Solaris 10 find command for upper and lower cases ... Initial Capitals - comp.lang.rexx... more than converting each "word" into lower case with a leading upper ... In the end I decided to ignore the problem. At ... if the name is already in mixed cases, it is ... Setting password policy on Solaris 8/9 - comp.sys.sun.admin ...... g., an asterisk or a dash), and may contain at least one upper case and one lower case ... Mail Deletion - comp.unix.solaris Solaris 10 find command for upper and lower cases ... upper-lower-case problems | Java.netHi all, There’s a kind of bug (or is it a feature?) with first letter of services. I think it’s in JAXWS-RI’s servlet. If I write a service foo ... MySQL Bugs: #39761: Lower/upper case problemThank you for the bug report. I could not repeat see MT report below. I configured both Windows server with: lower_case_table_names = 2 ... 7/13/2012 10:39:55 AM
|