Microsoft Office Outlook Team Blog and a nice add-in

by N-Technologies 29 June 2007 14:29

Since June 13, the Microsoft Office Outlook team has started a blog.  You can find it here.  Although there are not that many posts yet, it seems that they have released an Outlook add-in that allows you to access your Windows Live Hotmail account from within Outlook 2003 or 2007. 

The name : Microsoft Office Outlook Connector.  It's a free add-in and also most of the features like synchronizing your hotmail e-mail and contacts, you need the premium service (MSN Premium, Office Live Essentials or Office Live Premium) for synchronizing your calender, tasks and notes.

You can download the connector here

Screenshots can be found here.


Click here to see the original post

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

N-Technologies

Brewing Sharepoint Solutions - 27 juni 2007

by N-Technologies 21 June 2007 18:31

De Information Taskforce deelt zijn kennis met de belgische community rond Sharepoint en Silverlight met U !  (Joost, thx for the design ;-))

27ste.jpg


Click here to see the original post

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , ,

N-Technologies

Sharepoint Seminars for Business and ICT ! + bonus on Silverlight !!!

by N-Technologies 3 June 2007 15:24

For those who want to know how to start with MOSS or Sharepoint, the Ordina N-Technologies team is delivering two very interesting seminars with very good content.

1. "Portals voor fijnproevers", June 26th 2007 @ Brouwerij Cantillon (Gheudestraat 56, 1070 Brussel) : this seminar is intended for a Business audience. More info.
2. "SharePoint 2007: fuzz & facts" June 27 2007 @ Interleuvenlaan 15H, Haasrode : this seminar is intended for a Technical audience + Gill Cleeren will give you a smashing preview on Silverlight (aka WPF) !!! More info.

Our Sharepoint consultants will also be there, so this is your time for free consultancy, ask the experts !!!


Click here to see the original post

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , , ,

N-Technologies

SSAS: Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG))

by N-Technologies 17 May 2007 21:05

A few days ago I got this error while trying to browse a cube from the Business Intelligence Development Studio:

The detailed error information told me that the connection failed, because the server actively refused it. Connecting from another pc worked perfectly, so it had to be a problem with my computer.

To solve this problem I needed to reinstall the OWC Component (Microsoft Office 2003 Web Components)
You can find the download here: http://www.microsoft.com/downloads/details.aspx?FamilyID=7287252c-402e-4f72-97a5-e0fd290d4b76&DisplayLang=en


Click here to see the original post

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , , ,

N-Technologies

SQL Server Reporting Services: Create and Call a Custom Assembly

by Admin 26 March 2007 21:35

 

In one of my previous articles I explained how to use embedded code in SQL Server Reporting Services. The possibility to add embedded code to a report, is a very powerfull feature to add some custom functionality to your report.
But sometimes it might be necessary to add some custom functionality that is too complicated for embedded code to handle efficiently, or you need to access the same function from multiple reports, or you would like to write you code in C#...
In one of these cases you should develop a custom assembly to call from your report.

Let’s start with a simple example and develop a function PercentageToColor() to return a color based on a numeric value representing a percentage.

namespace MyAssembly

{

    public class Colors

    {

        public string PercentageToColor(double percentage)

        {

            string returnValue = string.Empty;

 

            if (percentage < 20)

            {

                returnValue = "red";

            }

            else if (percentage < 80)

            {

                returnValue = "blue";

            }

            else

            {

                returnValue = "green";

            }

 

            return returnValue;

        }

    }

}

Once you’ve compiled your class you need to copy the resulting assembly to the directory in which it is accessible from within your report:

·         To use it in the report designer, you need to copy it to:
 
C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PrivateAssemblies

·         To make it available for reports that have been deployed to the report server, you need to copy it to:
 C:\Program Files\Microsoft SQL Server\MSSQL.3\Reporting Services\ReportServer\bin

 

 

Before you can access your custom assembly you have to reference the assembly: Open the report properties (Menu: Report – Report Properties) and select the References tab.

Browse to your assembly and define a Class Name and an Instance Name. (The Class Name and the Instance Name or only for non-static methods). Make sure to prefix your class name with the assembly name.

Now you can call the methods in your assembly from your report, using an expression:

·         To call a static method: =<AssemblyName>.<ClassName>.<StaticMethodName>

·         To call an instance method: =Code.<InstanceName>.<PublicMethodName>

So in our example this would be: =Code.TestColor.PercentageToColor(Fields!Percentage.Value)

 That's it! You've just created and called a custom assembly from your report...

 

 In one of my future articles I will explain how to pass parameters to the class constructor and I will also tell something about SSRS and .Net Permissions...

 

 

Davy Knuysen

 


Click here to see the original post

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , , , , , , ,

N-Technologies

Office 2007: no better time than now...?

by N-Technologies 7 June 2006 19:18

Over 500.000 people have downloaded Office 2007 Beta 2 in the couple of first days it was available. That's a lot, a whole lot! Chances are that you are 1 of these, isn't it?

Now, finding some spare time to get to know the new interface, learning how to program for the new office... that's the hardest part.


Here are some interesting resources to get you started with the new suite in no time (even without installing it!!)
1. To get to know the basics, go to the Office 2007 preview site. Don't feel like installing it? No problem, just watch some videos on the new interface.

2. If you are a developer like myself, you're probably more interested in developing for the new Office. Chances are that you find what you are looking for in the Office developer center. In the What's new section, you can also find links to the most important Office blogs.

3. If Microsoft Office Sharepoint Server is your cup of tea, you're gonna be thrilled when reading in the Servers section of the developer site. Some nice screenshots of Office Sharepoint 2007 can be found here.

4. Or even better, you can register for the free MSDN evening on Office 2007 programmability here.

Hope this brings some clarity in all the "Office violence" that awaits us!

Gill Cleeren


Click here to see the original post

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , ,

N-Technologies