MS Infopath 2007
Currently I'm working on MS Infopath 2007 apart from MS CMR 4.0 and MS SSRS 2005 . Infopath is quite interesting to work on. Main advantage of Infopath is, a single form can be used as both client and web based forms. My current project is a web base .net project. All the forms are developed using Infopath. The web based Infopath has limitations compared to client based forms. The Infopath forms are deployed using MS office forms server . One of the cool features i like with Infopath is the repeating controls. The repeating controls works well in web based forms as well. Below is the code which used to populate the rows dynamically on the repeating controls. string myNamespace = NamespaceManager.LookupNamespace("my"); using (XmlWriter writer = MainDataSource.CreateNavigator().SelectSingleNode("/my:myFields/my:group1", NamespaceManager).AppendChild()) { writer.WriteStartElement("Expense", myNamespace); writer.WriteElementString("Expense_Typ...