Focal Point
[SOLVED] should this be a real list box?

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/8427016816

April 04, 2012, 11:28 AM
NateH
[SOLVED] should this be a real list box?
Hi,
I insert code for a list box - and my choices do not appear in the box - has this happened to anyone else. i just get a blank box. we have webfocus 7702 and internet explorer 7. Sample code -
-PROMPT &COUNTRY('ENGLAND','FRANCE','JAPAN','ITALY').PLEASE SELECT COUNTRY.

TABLE FILE CAR
PRINT
CAR.ORIGIN.COUNTRY
CAR.BODY.BODYTYPE
CAR.BODY.SEATS
CAR.BODY.DEALER_COST
WHERE (CAR.ORIGIN.COUNTRY EQ '&COUNTRY');
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = endeflt,
$
ENDSTYLE
END

thanks for any thoughts.

This message has been edited. Last edited by: Kerry,


wf 7.7
windows xp
apdf,excel
April 04, 2012, 12:31 PM
j.gross
quote:
&COUNTRY('ENGLAND','FRANCE','JAPAN','ITALY').PLEASE SELECT COUNTRY.

You need a period between the name of the variable and the prompting information:
&COUNTRY.('ENGLAND','FRANCE','JAPAN','ITALY').PLEASE SELECT COUNTRY.