Category: Project Management
Welcome GEDPRO to the ManageScope Partner Program!

We would like to welcome GEDPRO to our ManageScope partner program! We’re extremely excited to be working with GEDPRO given their European presence, Spanish-language capabilities and their deep-expertise in Project Management! GEDPRO has deployed ProjectGoo to a number of their clients successfully and we wish them continued success!
ProjectGoo: Recent FAQs
ManageScope offers free email support for ProjectGoo and we’ve fielded some questions about the application that we’d like to share with our user community. While we’re still happy to receive the email requests, these FAQs and their answers might jumpstart your ProjectGoo experience.
- Is Microsoft Project required to use ProjectGoo?
Yes. The Project Manager client relies on MS Project 2007 Standard or Professional to create the project plan and also requires MS Project to receive assignment updates, etc. The Team Client does not require MS Project and can be distributed to as many project team members as you’d like.
- Is there a charge per user for ProjectGoo?
No. ProjectGoo is completely free for an unlimited number of users and projects.
- Can you customize ProjectGoo to my company’s requirement (x)?
Yes! We’re happy to work with you to customize ProjectGoo. We’ve fielded requests to integrate with Jira, Mediawiki, and SharePoint and while there is a cost associated for the service, we’re happy to implement your requirements. Feel free to contact us with your needs.
- When is the next release of ProjectGoo and will it work with Project 2010?
ProjectGoo is scheduled for its 3.0 release end of Q1 2011 and will work with Project 2010, .NET 4.0 and Windows 7.
- I’m having issues installing ProjectGoo. The installer won’t launch.
Please review the system requirements for the application. Make sure that you have .NET 3.5 installed and that you have both a Google Docs and Google Calendar account. All installation issues reported so far have related to a lack of one of the three requirements.
If you don’t see the answer to a question you have, please email ProjectGoo Support. We’re excited to help jumpstart your use of the application.
Sending Multiple Notifications in SharePoint
In Sharepoint there are many ways of notifying a user when an item gets updated on a list.
1. Setting up an alert.
2. Subscribing to an RSS Feed.
3. Using workflow via the List Settings, Sharepoint Designer or Visual Studio.
All these mechanisms have their pros and cons, but there is one thing that is not supported by any of them: Sending a notification to users when they are set up in a multi-choice person list within the SAME list. Additionally, 1 and 2 above require the user to set this up manually on their own, while 3 is much more complicated and has limitations. I chose to write my own Event Receiver in order to accomplish this task.
I won’t go into the details of creating an Event Receiver in Sharepoint and publishing it, since there is already a lot of documentation on this on the internet. In my example, the List Name is called “MyDocs” and the field that contains the users is called “Notifiers” (note: this field can contains a multiple users).
public class MyDocsItemEventReceiver : SPItemEventReceiver
{
public override void ItemUpdated(SPItemEventProperties properties)
{
base.ItemUpdated(properties);
DisableEventFiring();
try
{
SPListItem myDocsItem = properties.ListItem;
var notifiers = myDocsItem["Notifiers"] as SPFieldUserValueCollection;
SendEmailToNotifiers(notifiers);
}
finally
{
EnableEventFiring();
}
}
private void SendEmailToNotifiers(SPFieldUserValueCollection _notifiers)
{
if (_notifiers != null)
{
List<string> _notifierList = new List<string>();
foreach (SPFieldUserValue _notifier in _notifiers)
{
if (!string.IsNullOrEmpty(_notifier.User.Email))
_notifierList.Add(_notifier.User.Email.Trim());
}
if (_notifierList.Count > 0)
{
SmtpClient _smtpClient = new SmtpClient();
_smtpClient.Host = "email_server_name";
_smtpClient.Port = 25;
_smtpClient.EnableSsl = false;
MailMessage _mailMessage = new MailMessage();
foreach (string _reviewer in _notifierList)
{
_mailMessage.To.Add(new MailAddress(_reviewer));
}
_mailMessage.From = new MailAddress("fromaddress@company.com");
_mailMessage.Subject = "the subject line";
_mailMessage.Body = "the body of the email";
_smtpClient.Send(_mailMessage);
}
}
}
}
