Domino Code Fragment

Code Name*
Prompting Users To Fill In Fields
Date*
04/29/2024
Source (or email address if you prefer)*
Rlatulippe@romac.com
IP address:.3.133.109.30
Description*
You can use the @ Prompt function to prompt users to enter information into a form. For example, you can use a button to prompt users to enter information about their company bowling team without forcing them to move from field to field. This method is often used to make sure users enter information into required fields without the user worrying that they are missing a field.
Type*
Formula
Categories*
(Misc)
Implementation:
Required Client:
Server:
Limitations:
Comments:
Files/Graphics attachments (if applicable): Code:
TeamName1 := @Prompt([OKCANCELEDIT]; "Team Name"; "Type your Team's Name:"; " ");

TeamCaptain1 := @Prompt([OKCANCELEDIT]; "Team Captain"; "Type your Team Captain's Name:"; " ");

TeamHandicap1 := @Prompt([OKCANCELEDIT]; "Team Handicap"; "Type your Team's Handicap:"; " ");

TeamSponsor1 := @Prompt([OKCANCELEDIT]; "Team Sponsor"; "Type your Team's Sponsor:"; " ");

FIELD TeamName := TeamName1;
FIELD TeamCaptain := TeamCaptain1;
FIELD TeamHandicap := TeamHandicap1;
FIELD TeamSponsor := TeamSponsor1;
" "