SharePoint (2003 thru Online): July 2014

Friday, July 25, 2014

Visual Studio


http://spsf.codeplex.com/

The SharePoint Software Factory is a Visual Studio Extension helping SharePoint newbies, as well as experienced developers to create, manage and deploy SharePoint solutions without having to know every tiny XML and C# secret.
_______________________________________________________________________

SPDisposeCheck.exe utility
The install can be downloaded from here http://download.microsoft.com/download/B/4/D/B4D279A0-E159-40BF-A5E8-F49ABDBE95C7/SPDisposeCheck.msi


Wednesday, July 16, 2014

"The site collection containing this sand-boxed solution has exceeded its daily resource usage quota."


When trying to activate a sand-boxed solution, Got below error message:

"The site collection containing this sand-boxed solution has exceeded its daily resource usage quota."
Solution:  
This is because of the Sandbox solution resource limit. To fix this issue, just increase the site collection Sandbox solution resource quota in site collection quotas and locks.

Go to: Central Administration >> Application Management >> Configure quotas and locks >> Pick the target site collection.

Increased the Sandbox solution resource quota under "Limit maximum usage per day to:   0 points" to 100 points, Problem solved!

Tuesday, July 15, 2014

Don't need Fingerprint for some users - TCP Fingerprint Options


For users who don't require Fingerprint while using On-Screen Time Clock, we need to check the below option "Allow any clock operation if print is not on file (1:1 mode only)".

Open On-Screen Time Clock and go to 'Configure Modules'


Double Click on 'Secugen Hamster Module' to open the Secugen Configuration.

Check the option "Allow any clock operation if print is not on file (1:1 mode only)".

______________________________________________________________________________________

For users who don't require Fingerprint while using Physical or Wall mount Time Clock, we need to change the below option 'Skip Verification' to Yes under Cogent FP WinRemote Module.

This change is to be made on the Custom Tab of the Employee Profile (as shown below).


Thursday, July 10, 2014

Awesome Free Tools


Sharepoint Permissions Manager

Functions

This works perfect on MOSS 2007 & SPS 2010 Servers.

This tool aims to bring together on one screen, most of management capabilities of permissions for an entire site: 
- Overall display permissions for groups on the Sharepoint libraries and website pages 
- Adding, modifying, deleting permissions with a few clicks without having to go through a lot of screens (using JQuery)
- Export as an Excel table permissions 
- Copy permissions between lists and pages

Planned on future version :
- Import / export permissions as XML (very useful in cases of misuse by the user) in order to quickly restore a configuration permissions


Once the Solution is deployed using the above tool, you can verify the Solutions in Central Admin >> System Settings >> Manage Farm Solutions



_____________________________________________________________________________________
World Clock and Weather 1.0.15

The CKS World Clock and Weather web part allows users to display local time and weather for selected major cities from around the globe. Many of the weather and clock display settings are configurable. The weather information is fetched from the MSN Weather service at http://weather.msn.com.

The web part can be installed by running the setup routine.

The CKS team would like to thank Bamboo Solutions (www.bamboosolutions.com) for contributing this web part.

Release notes v1.0.15:

  • Fixed bug - Unchecking the "Show Weather" checkbox also caused Date and Time diplay to be hidden.
  • Fixed bug - Corrected problem with anonymous site users receiving error message
__________________________________________________________________________________

Display Google Maps in a SharePoint Web Part using a SharePoint List 

Project Description

Using this web part you can display points and locations on a Google map and get directions to an from that point. You can either manually enter an individual point or select a list from your Sharepoint site that holds the information that is required - ie. a field for the Buidling Name, its Longitude and its Lattitude.

Features

  • Pick your zoom level - comes with handy real world scales
  • Choose any map type
  • Enter your own Google Maps API Key
  • Create a List using an inbuilt feature that is already set up for optimal performance with the web part
  • Or Pick a list from your MOSS site using the Site Picker pop up window (That thing you see when you're using the Content Query Web Part)
  • Match fields from your list that have the
    • Longitude
    • Lattitude
    • Name of Site
    • URL of an image
  • Or select a default image using the Asset Selector pop up window (That thing you see when creating hyperlinks in your text or inserting pictures)
  • Centre the map on any of your sites
  • Get directions
    • From one of your sites to another site
    • From one of your sites to an address
    • From an address to one of your sites
  • And you don't have to use a list! You can enter information for a single point
    • Longitude
    • Lattitude
    • Name of Site
    • URL of an image

Screenshots

Displaying a point
googlemaps_displaypoint.png

Getting Directions
googlemaps_directions.png

Options in the Tool Part
googlemaps_toolpart.png

Requirements

  • Google Maps API Key - a link is provided in the tool part to register if you need one
  • A list that holds your buildings name, longitude and lattitude (Although you can create one with the included feature)
  • This uses the Microsoft.Sharepoint.Publishing Namespace so the publishing feature will need to be enabled.

Wednesday, July 9, 2014

Menu Links to open in same tab of Internet Explorer


To open the link in same tab of Internet explorer.

<asp:menuitem navigateurl="http://projects.spdev.com/HR/Pages/Mission.aspx"
              text="<h4><br/>Mission<br/><br/></h4>"
              tooltip="Mission" target="_self"/>
_________________________________________________________________________________

To open the link in another tab of Internet explorer.
           
<asp:menuitem navigateurl="http://projects.spdev.com/HR/policies/default.aspx"
              text="<h4>Policies & Forms<br/><br/></h4>"
              tooltip="Policies & Forms" target="_blank"/>
_________________________________________________________________________________