Click here to Skip to main content
15,886,026 members
Articles / Programming Languages / C#

How to create dynamically populated dropdown in an InfoPath Form

Rate me:
Please Sign up or sign in to vote.
1.00/5 (3 votes)
21 Jul 2010CPOL2 min read 51.8K   279   18  
How to create dynamically populated dropdown in an InfoPath Form
<?xml version="1.0" encoding="utf-8" ?>
    <Options>
		<Country CountryID="US" CountryName="United States">
			<City CityID="LAX" CityName="Los Angeles"/>
			<City CityID="SEA" CityName="Seattle"/>
		</Country>
		<Country CountryID="CA" CountryName="Canada">
			<City CityID="WPG" CityName="Winnepeg"/>
			<City CityID="ONT" CityName="Ontario"/> 
        </Country> 
    </Options> 

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Canada Canada
Firoz Mohammed (Firoz`Ozman) |
MCSD.Net, MCTS (BizTalk 2004 & 2006)
Avanade Inc: www.avanade.com |
Toronto, Canada |

Comments and Discussions