#1   Report Post  
Posted to microsoft.public.word.docmanagement
LXDZINE LXDZINE is offline
external usenet poster
 
Posts: 1
Default drop down lists

Can i get more than 25 options for drop down lists? I want to do a time sheet
where people can choose a time closest to a half hour based on a 24 hr clock.

Any ideas?
Thanks,jjc
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default drop down lists

No. 25 is a maximum.
You can populate a dropdown list with vba based on the content of another
field as demonstrated in Greg Maxey's macro below

Sub OnExitDDListA()
'Greg Maxey
Dim oDD As DropDown
Set oDD = ActiveDocument.FormFields("SecondaryDD").DropDown
'Clear previous list
oDD.ListEntries.Clear
'Repopulate list based on user selection
Select Case ActiveDocument.FormFields("PrimaryDD").Result
Case "A"
With oDD.ListEntries
.Add "Apples"
.Add "Apricots"
.Add "Artichokes"
End With
Case "B"
With oDD.ListEntries
.Add "Blueberries"
.Add "Beets"
.Add "Brocolli"
End With
Case "C"
With oDD.ListEntries
.Add "Cherries"
.Add "Celery"
.Add "Cilantro"
End With
End Select
End Sub

or you can do the lot with a userform with a time control - which would be
rather more elegant.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


LXDZINE wrote:
Can i get more than 25 options for drop down lists? I want to do a
time sheet where people can choose a time closest to a half hour
based on a 24 hr clock.

Any ideas?
Thanks,jjc



Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
drop down lists mikeh Microsoft Word Help 1 August 24th 06 02:19 PM
Creating drop down lists RWilson Microsoft Word Help 2 August 16th 06 02:34 PM
Drop down lists Adriana Microsoft Word Help 1 January 23rd 06 04:58 AM
25 item limit for drop down lists teriellen Microsoft Word Help 1 October 20th 05 03:23 AM
Drop down lists in Word 2000 FAP New Users 1 March 2nd 05 01:10 AM


All times are GMT +1. The time now is 06:03 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"