- How To: Add the Contact Selector to InfoPath 2007
- How to: Configure a Contact Selector Control on Your InfoPath Workflow Form
- Using the Contact Selector Control
Blog about Sharepoint (WSS/MOSS) 2007, Web Parts, Workflows, .NET 2.0, .NET 3.5
Last week I went to TechDays 2008 at the ICC in Ghent. You can find an overview of the program/presentations over here .
I will give a quick overview of the most intresting topics. I will try to add some more info when there are new video's/presentations available.
LINQ
WCF/WF
WPF
ASP.NET/WSS/MOSS
Other
* Tools
All the needed info can be found here: TECHNET
Great blogpost: http://blogs.msdn.com/sharepoint/archive/2007/12/11/announcing-the-release-of-wss-3-0-sp1-and-office-sharepoint-server-2007-sp1.aspx
Source blogposts:



this.EventManager.XmlEvents["/my:myFields/my:Type"].Changed += new XmlChangedEventHandler(TypeChanged);
void TypeChanged(object sender,XmlEventArgs e)
{
string type = e.NewValue; //the selected value of the type dropdownlist
//I just added one dataconnection called dc (value when you select POST)
//You need to put here code (switch) for all the values in the type ddl
DataSource ds = this.DataSources[type];
DataConnection dc = ds.QueryConnection;
dc.Execute();
}
