The best Toolbar

I have used many toolbars in different browsers, but I have found Google Toolbar as the most useful browser.
I use most of the google application and it becomes handy to access them.

in reference to: Get started with Google Toolbar : Install or uninstall - Toolbar Help (view on Google Sidewiki)

Happy Independence Day




Happy Independence Day to all Indian Visitors...!

SharePoint Server 2010 : Technical diagrams

May of us like to have more 'n' more details for SharePoint.

I've visited Microsoft's site and found very useful information about SharePoint 2010.

Abstract:

Many of these resources are visual representations of recommended
solutions. They include poster-sized documents available in formats
including Microsoft Office Visio 2007 or Microsoft Visio 2010 files
(.vsd), PDF files, and XPS files. You might need extra software to view
these files. See the following table for information about opening these
files.


Click here to visit the original site




How To: SharePoint 2010 - Configure PDF iFilter for search server 2010

abstracts:

I have recently installed and configured Search Server 2010 Express
on my VMware machine for evaluation purposes. Once I configured basic
steps to configure Search Centre site and necessary settings, I decided
to install PDF iFilter (x64). Last year, I posted similar article on how
to install and configure PDF iFilter for SharePoint 2007 (64bit), which
can be found at: http://www.mossgurus.com/adnan/Lists/Posts/Post.aspx?ID=9.
I didn't find any single decent article on Google, which clearly
explain the process of installing and configuring PDF iFilter for
SharePoint Server 2010 or Search Server 2010 Express edition. So I
decided to follow my own article and I was hoping that it should be
straight forward to install and configure PDF iFilter for SharePoint
2010. Apart from updating the registry settings required to update GUID
for .pdf, remaining steps are similar.


Follow steps below to install and configure PDF iFilter on SharePoint
Server 2010 or Search Server Express 2010.


  1. Install PDF iFilter 9.0 (64 bit) from http://www.adobe.com/support/downloads/detail.jsp?ftpID=4025
  2. Download PDF icon file from pdf16.gif
    and copy at C:\Program Files\Common Files\Microsoft Shared\Web Server
    Extensions\14\TEMPLATE\IMAGES\

  3. Add the following entry in docIcon.xml file, which can be found at:
    C:\Program Files\Common Files\Microsoft Shared\Web Server
    Extensions\14\TEMPLATE\XML

    <Mapping Key="pdf" Value="pdf16.gif" />

  4. Add pdf file type on the Manage File Type page under Search Service
    Application.
  5. Open registry by executing regedit on the Start
    --> Run.

  6. Navigate to the following location:

    \\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office
    Server\14.0\Search\Setup\ContentIndexCommon\Filters\Extension

  7. Right-click Extension, a menu will appear.

  8. Click New--> Key to create a new key for .pdf.
    See screen shot below.

Click here to visit the original link.

How to : Use Visual Studio TODO Comments

There are many type of comments available in Visual Studio, but have you ever seen the TODO comment?

abstract:

You have many tasks to remember, and you want to track them in Visual
Studio with TODO comments. These comments can help get you more
organized about your projects. You want to get the interface set up and
gain a way to list your to-do items in a central place. Here we look at
ways you can use TODO comments in your C# programs.

Using TODO

TODO
comments allow you to tell Visual Studio to maintain a central list of
tasks, which it reads from many different places in your code. The Task
List is a panel or floating window in Visual Studio that will display
all the TODO comments in your project. To open the list, go to View menu
-> Task List.


Some example TODO comments

You probably have a lot of code
that needs a lot of work. If you don't, then you need to write code that
needs a lot of work. Here are some examples of TODO lines that
Visual Studio 2008 will notice and put into its special Task Pane.

<i>//todo: fix dialog windows
//TODO: work on SQLCE guide
// Todo new screenshot</i>

Description of example. This
will appear in your tasks pane as a separate task. Note that you have
some flexibility with these tokens. The strings "todo", "TODO", and
"TODO" all work equally well—Visual Studio's parser gives you a little
bit of freedom.

More comments

Here we make a more general
point about comments in the C# programming language. Comments are used
only at the source level of your program, not the compiled version of
the program. The TODO comments noted here are parsed by Visual Studio in
the IDE. You can find more about how comments relate to C# programs
here.


Click here to read  the original article on TODO Comment