Filemaker Pro 9 (121) Flashcards

1
Q

This set entered on 8-3-14
8.3.14.2

  1. You have a Customer Layout and an Employees layout. You want to insert a button that will take you to one or the other, without having to insert two buttons. What do you use?
A

When you insert a button and choose ‘Go to Layout,” you’ll have the option to use “LAYOUT NAME BY CALCULATION or LAYOUT NUMBER BY CALCULATION.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
  1. What function would you use to GO TO LAYOUT NAME BY CALCULATION?
A

If ( Person::Type = “Customer” , “Customer Detail” , “Employee Detail” )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q
  1. What does the term RETURN SEPARATED VALUES mean?
A

If a field holds more than one chunk of text, each on its own line, FileMaker considers each a SEPARATE VALUE, hence “RETURN SEPARATED VALUES.”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
  1. There are TEXT VALUE FUNCTIONS, but how can TEXT have a VALUE?
A

To FileMaker, VALUES ARE WHAT FIELDS HOLD, so a Field’s TEXT is its value.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q
  1. TEXT VALUE functions let you use those line breaks to:
A

PARSE TEXT. You can think of those bits of text as lines or paragraphs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
  1. What would you use a Text Value Function for?
A

Say you have a field called COLORS with lists like this: Red, Green, Blue, Orange, Yellow. It contains five VALUES, and you can work with them just like characters and words.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q
  1. In the COLORS Field, what does the function LeftValues ( Colors : 2 ) do?
A

It returns “Red” and “Green”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q
  1. What other TEXT VALUE FUNCTIONS are there?
A

GetValue, RightValues, LeftValues

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q
  1. LeftValues and RightValues are useful when you need to pull some items form a RETURN SEPARATED LIST, but they are also useful for:
A

When you want to protect your db from people who know that you can add multiple items to a RADIO BUTTON list (by Shift-Clicking)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q
  1. What function do you use to keep people from selecting more than one item on a Radio Button list?
A

RightValues ( Premiums ; 1 ). This function will not allow anyone to select more than one item in the “Premiums” field (the Premium list, in this case, is a list of freebies that allows your customers to choose one free gift)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q
  1. What if you want to limit a CHECKBOX SET to only TWO items?
A

LeftValues ( Premiums ; 2 )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly