New to Front Page 2003 and can't find a refference to this common function.
HELP!!
(Drop Down list displays list of committee names which are hyperlinked to
committee annual reports.)

Re: Drop down List for hyperlinks by Steve

Steve
Wed Mar 09 15:32:49 CST 2005

If you mean a drop down select box, here's an example:
<form>
<p align="center"><b>Select a Site </b>
<select id="setit" style="color: #0000FF" size="1" name="test">
<option value="">Select one</option>
<option value="http://www.altavista.com">AltaVista</option>
<option value="http://www.yahoo.com">Yahoo</option>
<option value="http://www.google.com">Google</option></select>
<input type="button" value="Go"
onclick="window.open(setit.options[setit.selectedIndex].value)">
</p></form>

Change the visible text and hyperlink info as needed.

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
.......................with a computer

"norm" <norm@discussions.microsoft.com> wrote in message
news:71B8063C-670F-445F-8625-A520B710550C@microsoft.com...
> New to Front Page 2003 and can't find a refference to this common function.
> HELP!!
> (Drop Down list displays list of committee names which are hyperlinked to
> committee annual reports.)