27 de febrero de 2009

SharePoint News! 02/2009 (3)

Se termina el mes y la semana, mucha informacion para leer en estos dias “Libres”

1 – En el Blog MOSS HOW TO se publico un completo articulo que nos muestra Paso a paso como realizar la integracion de Reporting Services 2008 con SharePoint 2007, totalmente Recomendado.

2 – En SharePoint Happenings lega a su fin una serie de 3 Tricks muy interesantes sobre INFOPATH y VISUAL STUDIO WORKFLOWS, como siempre, muy bien detallados, con screenshots y con valioso contenido.

3 – Continuando con el tema Infopath les dejo otro muy util articulo sobre Enviar informacion de un formulario de Infopath a una lista de SharePoint, muy detallado, con screenshots Step by Step.

4 – Para quienes trabajan con Silverlight, comentarles que se adicionaron 4 nuevos ejemplos al Proyecto de Codeplex BluePrints algunos de ellos muy interesantes…

5 – Aplicar un THEME a un sitio desde CODIGO.

Les adjunto el Codigo fuente necesario para aplicar un tema en forma programatica a un sitio.

using (SPSite parentSite = new SPSite(SPContext.Current.Site.Url))
{
//Allow the unsafe updates in site from the current user
parentSite.AllowUnsafeUpdates = true;
using (SPWeb currentWeb = parentSite.AllWebs[SPContext.Current.Web.Name])
{
using (SPWeb childWeb = currentWeb.Webs[name])
{
childWeb.AllowUnsafeUpdates = true;
//The code line shown below will apply the theme of the parent site to the child site
childWeb.ApplyTheme(currentWeb.Theme);
childWeb.Update();
childWeb.AllowUnsafeUpdates = false;
}
}
parentSite.AllowUnsafeUpdates = false;
}

Por el momento, esto es todo, enjoy!

No hay comentarios.: