Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.tables
Andrea Andrea is offline
external usenet poster
 
Posts: 40
Default Microsoft Word field and Drop Down box question

I would like to activate a drop down box in a field when the field prior has
a specific result. In other words

if prev field = a then use drop down box a
if prev field = b then use drop down box b

etc.

any tips how I can do this in Microsoft Word
  #2   Report Post  
Posted to microsoft.public.word.tables
Greg Maxey Greg Maxey is offline
external usenet poster
 
Posts: 264
Default Microsoft Word field and Drop Down box question

It might be better to change the contents of the dropdown based on the
previous selection. Run a macro something like this on exit from the
first field:

Sub OnExitText1()
Dim oFF As FormFields
Set oFF = ActiveDocument.FormFields
Select Case oFF("Text1").Result
Case Is = "a"
With oFF("DropDown1").DropDown.ListEntries
.Clear
.Add "Apple"
.Add "Peach"
.Add "Pear"
End With
Case Is = "b"
With oFF("DropDown1").DropDown.ListEntries
.Clear
.Add "Corn"
.Add "Beans"
.Add "Rice"
End With
Case Else
oFF("DropDown1").DropDown.ListEntries.Clear
End Select
End Sub


On Apr 17, 11:08 am, Andrea wrote:
I would like to activate a drop down box in a field when the field prior has
a specific result. In other words

if prev field = a then use drop down box a
if prev field = b then use drop down box b

etc.

any tips how I can do this in Microsoft Word



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 form field added but nolist in drop down Roberta Microsoft Word Help 1 November 1st 06 03:54 PM
Drop Down Menus - Fun Question bbkixx Tables 4 June 6th 06 08:38 PM
Microsoft Word - Delete question Lisa Bourji Microsoft Word Help 2 March 28th 06 02:16 PM
How to add drop down list in Microsoft Word templet mrandmrsshrek Page Layout 5 February 2nd 06 04:25 PM
The drop down form field is not showing drop downs. Why? mindysue Microsoft Word Help 1 May 26th 05 09:43 PM


All times are GMT +1. The time now is 08:54 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"