Therese wants to write some LotusScript code that steps through every document in a view and displays the "Title" field. She currently has the following code written:
Dim session As New NotesSession Dim db As NotesDatabase Dim view As NotesView Dim doc As NotesDocument Set db = session.CurrentDatabase Set view = db.GetView( "By Category") Set doc = view.GetFirstDocument Do Until (doc Is Nothing) Print doc.Title(0) '** MISSING CODE ** Loop
What does she need to add on the ** MISSING CODE ** line to make the code work properly?
A. Set doc = view.GetNextDocument()
B. Set doc = view.GetNextDocument(doc)
C. Nothing. The code will work properly as-is.
D. Call view.GetNextDocument()
Janet uses Domino Designer's Dynamic Help feature to clarify something.
What kind of help will she get?
A. A context-sensitive Help View that constantly updates a list of possible relevant topics based on what she's doing.
B. An animated, talking icon that offers to assist her.
C. A personalized search interface that remembers all of her previous searches and their results.
D. A wizard that follows a support tree to narrow down the answer to her question.
The @Formula statements that Gustavo is entering for validation formulas on his Form are in a smaller font than he would prefer.
How can Gustavo adjust the font that he sees while he is coding within Domino Designer?
A. Select Application Properties from the Application Navigator. Select Fonts from the Script area of Options. Select the desired font, size, and color.
B. Create a style sheet with a class named "DesignerScript", set the desired font attributes and import the CSS. Right-click on the Style Sheet and select Designer Default.
C. Select File > Preferences > Domino Designer. Locate the Appearance section. Select Script > Fonts. Select the desired font, size, and color.
D. Right-click within the Programmer's Pane to open the Programmer's Pane Properties. Select the desired font, size, and color.
Minh supports the Change Control database. He has been asked if he can change the "by Month" Calendar view so that the days that are outside of the selected month are displayed with a light gray background and dark gray text.
What can Minh do to address this request?
A. Create a hidden column immediately before the StartDate column in the view. Select the "Use value as color" option. Code a formula to evaluate to one set of RGB values for Background and Text if the date is in the current month, and a different set of RGB values for dates outside the current month.
B. Modify the "Date Area" option on the View properties Styles tab. Select a light gray background and set the Text color to dark gray. Modify the colors for background and text in the Current option area to differentiate the gray scheme.
C. Modify the "Monthly" option on the View properties Styles tab. Select a light gray color for the "Not current" color, and select a dark gray color for the Text color.
D. This request cannot be met completely, but Minh can set the Body Background color for the entire view on the View properties Styles tab. He can then control the Text colors by creating a hidden column set to "Use value as color", and by coding a column value formula to evaluate to RGB values.
When Nora creates a new document in the Suggestion application, a number of the fields have text already displayed. But when she tabs or clicks into the field, the text disappears.
What design feature has been used to create this behavior?
A. Default Value in the Form Properties dialog box
B. Help Description in the Field Properties dialog box
C. Field Hint in the Field Properties dialog box
D. Field Assistance in the Field Properties dialog box
When Eduardo tried to save a document, he got the following error message: Incorrect data type for operator or @Function: Text Expected.
Which one of the following did he most likely do to cause this to happen?
A. He neglected to place a formula in a translation event.
B. He entered text in a number field.
C. He combined a text field and a time field in a formula.
D. He neglected to place a formula in a validation event.
Muriel has created a view that shows the current year's reported sales in the Sales Tracking application. She would like to give her end users the ability to sort on the customer, region, and sales manager columns.
How would she accomplish this?
A. Set the `Allow custom sorting" option for the view.
B. Set each column's Sort option to Descending.
C. Set the `Click on column header to sort" value to Custom for all three columns.
D. Set the `Click om column header to sort" value to Both for all three columns.
Janira is adding a Received date to her Video Rental form. She would like to have the date field show the user a calendar for date selection.
How would she accomplish this?
A. Set the field Type to Calendar
B. Set the field Style to Noted Calendar control
C. Set the field Type to Calendar/Time
D. Set the filed Style to Calendar/Time control
Which of the following statements regarding cascading stylesheets (CSS) in Lotus Domino Designer is true?
A. The cascading stylesheets can be turned into shared resources.
B. Cascading stylesheets can be edited within Lotus Domino Designer.
C. Cascading stylesheets can have an .html file extension.
D. They only control font and color properties.
Melissa has created a default outline in her application and wants to display specific outline entries to Web users.
How can she do this task?
A. Select or clear the "Hide entry from Web browsers" check box for the Outline entry.
B. Use Hide-when formulas on the page where the outline is embedded.
C. Surround outline entries with HTML tags to make them visible to Web users.
D. Create a separate outline for Web users.