To put a drop down and fill the options:
- In the word document, fetch the control tool box.
- Drag a combo box(say name is ComboBox1); it ll be in design mode.
- Double click on that; it ll go visual basic editor.
- In the left pull down menu, choose document; in the right pull down menu, choose open.
- U ll get a method like:
End Sub
6. Fill the contents of the method as follows( delete other methods):
Private Sub Document_open()
ComboBox1.AddItem "Select one"
ComboBox1.AddItem "ABAP"
ComboBox1.AddItem "BASIS"
ComboBox1.AddItem "BI/BW"
ComboBox1.AddItem "CO"
ComboBox1.AddItem "CRM"
ComboBox1.AddItem "FI"
ComboBox1.AddItem "HR/HCM/CATS"
ComboBox1.AddItem "MM"
ComboBox1.AddItem "PM"
ComboBox1.AddItem "PP"
ComboBox1.AddItem "PS"
ComboBox1.AddItem "SD"
ComboBox1.AddItem "XI"
End Sub
7. Now save it and run. 8. Go to the document and try the combo box, the contents would have got filled.
To put radio buttons:
- In the word document, fetch the control tool box.
- Drag a radio button; it ll be in design mode.
- Click on Properties on the control tool box.
- A pop up appears.
- In that, change the 'Caption' to watever option name u want.
- If u want that option to be selected, change 'Value' to true.
- Add how many ever radio buttons u want.

To use all these options, u have to enable macros.
