Dave said:
Is there a way to import the choices for a drop down menu?
I have 150 possibilities for a drop down, and it would be great if I can
import them.
Thanks
Dave K
Nothing in FP will do that for you, but a little search and replace in
something like Word should do it for you.
All you need to do is end up with some code that can be dropped into place
inside the <form> tags. :
<option>1stchoice</option>
<option>2nd choice</option>
<option>150th choice</option>
You should be able to sort your 150 choices in alpha order, or whatever you
need. I did it recently with the names of the 50 states. Took about 10
minutes total.
Bob Doyle