1217309Snwhitehorn#!/bin/sh
2217309Snwhitehorn# $Id: inputbox1,v 1.13 2010/01/13 10:20:03 tom Exp $
3217309Snwhitehorn
4217309Snwhitehorn. ./setup-vars
5217309Snwhitehorn
6217309Snwhitehorn. ./setup-tempfile
7217309Snwhitehorn
8217309Snwhitehorn$DIALOG --cr-wrap \
9217309Snwhitehorn	--title "INPUT BOX" --clear \
10217309Snwhitehorn        --inputbox "$@" \
11217309Snwhitehorn"Hi, this is an input dialog box. You can use
12217309Snwhitehornthis to ask questions that require the user
13217309Snwhitehornto input a string as the answer. You can 
14217309Snwhitehorninput strings of length longer than the 
15217309Snwhitehornwidth of the input box, in that case, the 
16217309Snwhitehorninput field will be automatically scrolled. 
17217309SnwhitehornYou can use BACKSPACE to correct errors. 
18217309Snwhitehorn
19217309SnwhitehornTry entering your name below:" 0 0 2> $tempfile
20217309Snwhitehorn
21217309Snwhitehornretval=$?
22217309Snwhitehorn
23217309Snwhitehorn. ./report-tempfile
24