# Thursday, February 18, 2010

There wasn’t any method for managing, editing or downloading documents together in a set, because unfortunately the Folders didn’t have this capability. If I’d like to simplify the document sets, there are very smart folders.

  • Document sets can share the same metadata.
  • Versioning the document set instead of the separated documents.
  • Initiate workflows for the whole document set.
  • Document set level permission management.
  • Download all documents of a document set compressed into a ZIP file.
  • Customizable Welcome Page for all document set.

How to configure "Document Set"

  1. Go to the Manage Site Collection Features page and activate the Document Sets feature.
  2. Go to the Document Library’s setting page and choose Advanced Settings. Turn on the allowing of content management.
  3. Add the Document Set content type to your library.

Reference : http://dotneteers.net/blogs/aghy/archive/2009/10/21/how-to-set-up-document-sets-in-sharepoint-2010.aspx

posted on Thursday, February 18, 2010 12:14:58 PM (GMT Standard Time, UTC+00:00)  #    Comments [0] Trackback
# Monday, February 15, 2010

Windows version/edition (64 bit only)

SharePoint 2010 support

Windows Server 2008 R2 Foundation

No

Windows Server 2008 R2 Standard

Yes

Windows Server 2008 R2 Enterprise

Yes

Windows Server 2008 R2 Datacenter

Yes

Windows Web Server 2008 R2

No

Windows HPC Server 2008

No

Windows Server 2008 R2 for Itanium-based systems

No

Windows Server 2008 Standard

Yes

Windows Server 2008 Enterprise

Yes

Windows Server 2008 Datacenter

Yes

Windows Web Server 2008

No

Windows Storage Server 2008

No

Windows Small Business Server 2008

Yes*

Windows Essential Business Server 2008

Yes*

Windows Server 2008 for Itanium-based systems

No

Windows Server 2008 Foundation

No

Windows Vista

Developer-only**

Windows 7

Developer-only**

posted on Monday, February 15, 2010 10:48:13 AM (GMT Standard Time, UTC+00:00)  #    Comments [2] Trackback
# Friday, February 12, 2010

Ines Khelifi, a developer on the InfoPath team shows how you can create anew SharePoint list and custom form directly from InfoPath Designer. Cool video, you must see it.

http://blogs.msdn.com/infopath/archive/2010/01/27/create-a-sharepoint-list-using-infopath-2010.aspx

posted on Friday, February 12, 2010 9:47:14 AM (GMT Standard Time, UTC+00:00)  #    Comments [0] Trackback

New controls in InfoPath 2010 include:

  • Picture buttons – Instead of the default gray button, use any image as a button in your form.
  • Hyperlink capabilities –Allow users to insert their own hyperlinks when filling out forms.
  • Date and time picker – Allow users to insert dates and times in their forms
  • Person/Group pickers – Updated! This is now a first class control and is included by default in the Controls gallery.
  • Signature Line (Editor Only) – Allow users to digitally sign a  form

Controls and functionality that are now supported in browser forms include:  

  • Bulleted, numbered, and plain lists, multiple selection list boxes, Combo boxes, Choice group and sections, and Filtering functionality.
posted on Friday, February 12, 2010 9:25:55 AM (GMT Standard Time, UTC+00:00)  #    Comments [0] Trackback
# Thursday, February 11, 2010

The Visual Studio 2010 and .NET Framework 4 Training Course includes videos and hands-on-labs designed to help you learn how to utilize the Visual Studio 2010 features and a variety of framework technologies including: C# 4.0, Visual Basic 10, F#, Parallel Computing Platform, WCF, WF, WPF, ASP.NET AJAX 4.0, ASP.NET MVC Dynamic Data.

Common Prerequisites

Yo can download training kit

posted on Thursday, February 11, 2010 6:56:00 AM (GMT Standard Time, UTC+00:00)  #    Comments [0] Trackback
posted on Thursday, February 11, 2010 6:53:15 AM (GMT Standard Time, UTC+00:00)  #    Comments [0] Trackback
# Saturday, January 30, 2010
Event Title: An Introduction to SharePoint Applications using InfoPath 2010 (INP02AL)
Date/Time: Wed Feb 10, 2010, 8:30 AM, USA Pacific
Event Registration URL: https://www.eventbuilder.com/event_desc.asp?p_event=e0b96f2a
posted on Saturday, January 30, 2010 4:09:51 PM (GMT Standard Time, UTC+00:00)  #    Comments [0] Trackback
# Friday, January 29, 2010

Required using statements

using Microsoft.SharePoint;
using Microsoft.Office.Server;
using Microsoft.Office.Server.UserProfiles;

Then sample code

try
{
   site = SPContext.Current.Site;
   ServerContext serverContext = ServerContext.GetContext(site);
   UserProfileManager userProfileManager = new UserProfileManager(serverContext);
   UserProfile currentUserUserProfile = userProfileManager.GetUserProfile(System.Web.HttpContext.Current.User.Identity.Name);

   string nameSurname = (string)currentUserUserProfile["preferredname"].Value;
   string email = (string)currentUserUserProfile["workemail"].Value;
   string companyName = (string)currentUserUserProfile["company"].Value;
}
finally
{
   site.RootWeb.Dispose();
   site.Dispose();
}
posted on Friday, January 29, 2010 1:13:28 PM (GMT Standard Time, UTC+00:00)  #    Comments [0] Trackback

Atalay Aktaş works on Microsoft Turkey Office as Business Productivity Solutions Specialist. He shares a presentation that contains general information about Sharepoint and Office 2010 product family. Presentation language is Turkish, includes 50 slide and totaly 14.8 MB on SkyDrive.

You can download it via this link

posted on Friday, January 29, 2010 12:12:21 PM (GMT Standard Time, UTC+00:00)  #    Comments [0] Trackback