
dynamic sentence creation
any idea if there is a good strategy to allow a user
to dynamically create a sentence based on the
returned value of certain controls?
A grid may be one way, with a different sentence based on the
value being editable.
but what happens with a list - where
dim sentence
if x=true then sentence=sentence + x + ","
if y=true then sentence=sentence + y + ","
if z=true then sentence=sentence + z + ","
return sentence
this is something that can be put in a function - but how could it be
exposed to a user
so that they could have more control of the final sentence?
x,y and z are database values.
tia,
dk