34 lines
974 B
Plaintext
34 lines
974 B
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.
|
|
|
|
LAYOUT
|
|
TABLE
|
|
{
|
|
Id Item Price
|
|
[id |name |price ]
|
|
[id |name |price ]
|
|
[id |name |price ]
|
|
[id |name |price ]
|
|
[id |name |price ]
|
|
[id |name |price ]
|
|
}
|
|
END
|
|
END
|
|
|
|
ATTRIBUTES
|
|
EDIT id = FORMONLY.item_id TYPE INTEGER;
|
|
EDIT name = FORMONLY.item_name TYPE VARCHAR;
|
|
EDIT price = FORMONLY.item_price TYPE DECIMAL(10,2);
|
|
END
|
|
|
|
INSTRUCTIONS
|
|
SCREEN RECORD sr (FORMONLY.*);
|
|
END
|
|
|