![]() |
#2
|
||||
|
||||
![]()
There is no 'visual' difference. The practical difference is the comboboxes allow you to input something other than one of the dropdown selections. You can automatically change all (or designated) dropdowns to comboboxes (or vice-versa) via a macro. For example:
Code:
Sub Demo() Dim CCtrl As ContentControl For Each CCtrl In ActiveDocument.ContentControls If CCtrl.Type = wdContentControlDropdownList Then CCtrl.Type = wdContentControlComboBox End If Next End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
BrainSlugs83 | Word Tables | 8 | 11-14-2013 03:06 AM |
Word2010 check boxes and plain text content control boxes in same table | fcsungard | Word | 5 | 06-01-2012 01:16 AM |
Download Content Control List | cjacob28 | Word | 0 | 06-26-2011 11:23 PM |
![]() |
TessaLee | Word | 1 | 03-11-2011 12:51 AM |
VB Code.. COmbo boxes | DrewB | Word VBA | 4 | 06-10-2009 05:31 AM |