codegirl.blog(this);

Christina A. Odom — Developing SharePoint Solutions

Modular Document Generation: A Series

Posted on June 10, 2009 - Filed Under Code Girl | Leave a Comment

I give an academic exercise:  a simple Form Server application based in MOSS that collects weekly status reports for a project.  (At time of the implementation, the user base did not have Office 2007, InfoPath or Exchange) The owners of this application want a couple of extras based on users’ response:

Can`t edit offline
Limited formatting options
Can`t [...]

Read More..>>

MOSS Document Conversion not working for your documents? Do they have attached XML schemas?

Posted on January 22, 2009 - Filed Under Life | 1 Comment

Senerio:  You have a nice .docx that you want to use MOSS Document Conversions on to convert a .docx to a web page.  You hit convert and the resulting page has nothing on it.  You take out all the fancy stuff and try the same sequence with a regular “hello world” document.  Works fine.  Try [...]

Read More..>>

How to: Find your Project UID from Project Workspace Context

Posted on June 19, 2008 - Filed Under Code Girl, MOSS | 1 Comment

Insanely useful snippet if you’re creating Application Pages for project workspaces.  You will not find this property using SharePoint Manager 2007.  I was reflectoring around Project Server DLL’s and playing in the debugger when I found this late last year.  Kudos here for blogging it first!
Guid ProjectUID = new Guid(SPContext.Current.Web.AllProperties["MSPWAPROJUID"].ToString());

Read More..>> keep looking »