137Srgrimes#!/bin/sh
237Srgrimes# $Id: buildlist,v 1.3 2020/11/26 00:03:58 tom Exp $
3358Srgrimes
437Srgrimes. ./setup-vars
537Srgrimes
637Srgrimes. ./setup-tempfile
7147Srgrimes
8147Srgrimes$DIALOG --title "BUILDLIST DEMO" --backtitle "A user-built list" \
9147Srgrimes	--separator "|" \
10207Snate	--buildlist "hello, this is a --buildlist..." 0 0 0 \
11258Srgrimes		"1" "Item number 1" "on" \
12147Srgrimes		"2" "Item number 2" "off" \
13147Srgrimes		"3" "Item number 3" "on" \
1437Srgrimes		"4" "Item number 4" "on" \
1537Srgrimes		"5" "Item number 5" "off" \
1637Srgrimes		"6" "Item number 6" "on" 2> $tempfile
1737Srgrimes
18147Srgrimesreturncode=$?
19147Srgrimes
20147Srgrimes. ./report-tempfile
2137Srgrimes