Printing a form showing pull down options

S

Scott Roberts [MSFT]

Unfortunately, the DropDown control only prints the selected item. However,
there are other ways to accomplish what you want to do. First, you should
create a print view of the data. This view will be used for printing and
will be separate than the view users use for filling out the form.

The idea behind the print view is that it will show a different view of the
data when printing. Therefore, you can show all the options in the DropDown
depending on where you are retrieving the options from. If you have a
static list of options in the DropDown meaning that you've typed them in the
property dialog, I'm afraid that you won't be able to print them all.

If you are retrieving the options from the main data source (in SP1) then
you can insert a Repeating Section, Repeating Table, or one of the repeating
list controls and bind it to the same repeating group node from which you
are retrieving your options.

If you are retrieving your options from a secondary data source, insert one
of the same repeating controls that I mention above and then change the
binding to bind to the secondary data source.

I hope this helps.

- Scott
 
J

Jerry Thomas [MSFT]

Another option would be to put your items in a List in the Print view and
then link your Drop Down to that list. If you used Roles to control who got
out to the list, you would be able to prevent inadvertant changes by users,
but you could update when necessary.

--
Jerry Thomas[MSFT]
<[email protected]>
Microsoft Office InfoPath
---------------------------------------
This posting is provided "As Is" with no warranties, and confers no rights.
Use of any included script sample are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm.
Please do not send email directly to this alias. This alias is for
newsgroup purposes only.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top