![]() |
#2
|
|||
|
|||
![]()
First of all why would you want a combobox, if your choices are fixed as described? Seems you would want a dropdown list.
I would use a dropdown list content control and then use the ContentControl_OnExit event in the ThisDocument module to evaluate the selection made and populate the data to other places. You state you need "help." What have you done for yourself? Here is a start: Code:
Private Sub Document_ContentControlOnExit(ByVal ContentControl As ContentControl, Cancel As Boolean) Select Case ContentControl.Title Case Is = "Section 1 Score" 'Write some text here 'Write this score there Case Is = "Section 2 Score" 'etc. End Select lbl_Exit: Exit Sub End Sub |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
marksm33 | Word VBA | 3 | 01-15-2015 07:55 PM |
![]() |
alidaanish | Word | 1 | 01-10-2014 10:44 PM |
![]() |
BoringDavid | Word VBA | 12 | 12-12-2013 05:14 AM |
Display paragraph of text based on value selected in combo | WordWaza | Word | 0 | 08-09-2013 06:30 AM |
Bold list items in a combo box | DrewB | Word VBA | 0 | 07-17-2009 11:32 AM |