Files
MBS/TEST/MultipleDialogs/Folder/Folder.per
T

52 lines
1.2 KiB
Plaintext

# Property of Four Js*
# (c) Copyright Four Js 1995, 2019. All Rights Reserved.
# * Trademark of Four Js Development Tools Europe Ltd
# in the United States and elsewhere
#
# Four Js and its suppliers do not warrant or guarantee that these
# samples are accurate and suitable for your purposes. Their inclusion is
# purely for information purposes only.
ACTION DEFAULTS
ACTION cancel(VALIDATE=NO)
END
LAYOUT
VBOX
GROUP(TEXT="Customer (Master Record)")
GRID
{
First Name:[fname ] Last Name:[last ]
}
END
END --GROUP
FOLDER
PAGE(TEXT="Donations",COMMENT="edits the customers donations")
FORM "donations"
END --PAGE
PAGE(TEXT="More Details",COMMENT="edits some more customer details")
GROUP(TEXT="some data")
GRID
{
Member in the organization [clubmember]
Other detail [otherdetail ]
}
END
END
END
END
END
ATTRIBUTES
fname = FORMONLY.fname;
last = FORMONLY.last,NOT NULL;
CHECKBOX clubmember = FORMONLY.clubmember,NOT NULL;
otherdetail = FORMONLY.otherdetail,REQUIRED;
INSTRUCTIONS
SCREEN RECORD cr(FORMONLY.fname,FORMONLY.last);
SCREEN RECORD details(FORMONLY.clubmember THRU FORMONLY.otherdetail);