Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

The Macaw Discussion Board

This weblog post describes the immediate availability of a reworked and improved discussion board for Windows SharePoint Services and SharePoint Portal server providing last-post first views, a discussion thread view, and SWYRO (See What You Respond On). It is available on http://spsutil.sourceforge.net. This post is it’s documentation.

Introduction

It is great that SharePoint supports discussion lists, its a pity that their implementation is "suboptimal".

The two biggest problems that I have with the discussion lists are:

  • When you reply on a discussion item, you don’t see the text you are replying on
  • Discussion items are displayed in the wrong order: oldest items first!

Changing this behavior is not as easy as providing a new view. Some more work is required.

We worked around these limitations more than a year ago, but I never found the time to make these modifications available to the community. Until now…

The features

There are two views on a discussion:

  • Complete thread index, latest started discussion thread at the top
    DiscThreadIndex
  • Latest posts view, shows the latest 40 posts with the newest post at the top
    DiscLatestPosts

The thread index view provides the following information:

  • Title of first post in thread
  • Started by
  • Number of Replies
  • Last Post (date + poster)

On selecting a thread, a hierarchical view of this discussion thread is displayed:
DiscSingleThread

If you are not sure from a certain reply on which post it is replying, you can select the “parent” link:
DiscParentItem

If you look at the content of a single post (for example after following a link from an alert e-mail), there is a view in thread link available to view the post highlighted in its complete discussion thread:
DiscViewInThread

Some other interesting features:

  • When you click on the name of a poster, you go to the UserInfo information on the user on WSS, and to the profile page of the user when on SharePoint Portal Server
  • Complete support for presence detection on all user names
  • Completely built on top of the standard WSS discussion board

Availability

The Macaw Discussion Board is available at http://spsutil.sourceforge.net. It is distributed as a SharePoint List Template: MacawDiscussionBoard1.0.stp.

And if you are looking for the sourcode: it’s all there. Just fire up your FrontPage 2003 and you can look right in to it! I hope your XSLT skills are a bit up-to-spec;-)

Installation

The MacawDiscussionBoard List Template is constructed for usage in standard WSS sites. Usage in Portal Area’s is not tested. To test it out, create an empty top level site:DiscEmptySite

Goto “Site Settings”, and select “Go to Site Administration”:
 DiscSiteSettings

If you are on a top level site, you will see the option “Manage list template gallery”. If you don’t see this option, go to the top level parent of the current site and perform the actions from there:DiscTopLevelSiteAdmin

On the List Template Gallery you can upload a new list template:
DiscListTemplateGallery

Specify the list template file, and press “Save and Closed”:
DiscUploadTemplate

The List Template is now available, select “Create” to add an instance of this new template:
DiscTemplateUploaded

Select the MacawDiscussionBoard:
DiscCreate

And you are done!! Congratulations!

If you want a more permanent availability of the list template, and you are a SharePoint administrator, you can add the list template using the stsadm.exe tool on the SharePoint server. See the Administrators Documentation for more information.

Troubleshooting

If the Macaw Discussion Board list template does not appear under Discussion Boards in the Create screen, you are probably in a site or area that does not support the list template. Please test first is a standard WSS site.

Limitations

The Macaw Discussion Board has some limitations. For the Thread Index view, information on all items must be retrieved on server side. Happely enough NOT the body text;-). This means that performance can degrade on discussion lists which huge amount of posts. We have a discussion list with over 2500 posts without any problems. Let me know if you run into trouble, we can make somethig up.

Configuration

Some things on the discussion board can be configured like the styles of odd/even/selected posts in a discussion thread, the indenting in a hierarchical thread view, and the formatting of date/time. To do this configuration open the pages of the Macaw Discussion Board in FrontPage 2003.

The following pages have configuration options (look for it in code view):

AllItems.aspx:

        <!-- CONFIGURATION SECTION FOR DISCUSSION RENDERING -->
        <!-- format of date time rendering, uses standard .NET format as specified in http://authors.aspalliance.com/aspxtreme/aspnet/types/datetimeformatstrings.aspx -->
        <xsl:param name="PostDateTimeFormat">dddd, MMMM dd, yyyy H:mm</xsl:param>
        <!-- END OF CONFIGURATION SECTION FOR DISCUSSION RENDERING -->
 

SingleThread.aspx:

        <!-- CONFIGURATION SECTION FOR DISCUSSION RENDERING -->
        <!-- style for odd/even/selected items in the thread -->
        <xsl:param name="OddItemStyle">background-color: #dddddd;</xsl:param>
        <xsl:param name="EvenItemStyle">background-color: #eeeeee;</xsl:param>
        <xsl:param name="SelectedItemStyle">background-color: Yellow;</xsl:param>
        <!-- format of date time rendering, uses standard .NET format as specified in http://authors.aspalliance.com/aspxtreme/aspnet/types/datetimeformatstrings.aspx -->
        <xsl:param name="PostDateTimeFormat">dddd, MMMM dd, yyyy H:mm</xsl:param>
        <!-- message when page in called without 'discussion' parameter -->
        <xsl:param name="NoThreadMessage">The Single Thread view can only display information if a thread is specified.</xsl:param>
        <!-- indentation level in pixels for threaded items in the tree -->
        <xsl:param name="TreeIndentation">10</xsl:param>
        <!-- END OF CONFIGURATION SECTION FOR DISCUSSION RENDERING -->

NewForm.aspx:

        <!-- CONFIGURATION SECTION FOR DISCUSSION RENDERING -->
        <!-- style for odd/even/selected items in the thread -->
        <xsl:param name="OddItemStyle">background-color: #dddddd;</xsl:param>
        <xsl:param name="EvenItemStyle">background-color: #eeeeee;</xsl:param>
        <xsl:param name="SelectedItemStyle">background-color: Yellow;</xsl:param>
        <!-- format of date time rendering, uses standard .NET format as specified in http://authors.aspalliance.com/aspxtreme/aspnet/types/datetimeformatstrings.aspx -->
        <xsl:param name="PostDateTimeFormat">dddd, MMMM dd, yyyy H:mm</xsl:param>
        <!-- message when page in called without 'discussion' parameter -->
        <xsl:param name="NoThreadMessage">The Single Thread view can only display information if a thread is specified.</xsl:param>
        <!-- indentation level in pixels for threaded items in the tree -->
        <xsl:param name="TreeIndentation">10</xsl:param>
        <!-- END OF CONFIGURATION SECTION FOR DISCUSSION RENDERING -->
 

Applying the Macaw Discussion Board changes to an existing discussion list

Note: The below procedure has not been extensively tested. You are on your own, so please know what you are doing!

It is possible to apply the Macaw Discussion Board to an existing discussion list. You can do this using FrontPage 2003.

  • Make a backup of your site containing the discussion list to modify!!!
  • Install the Macaw Discussion Board somewhere so you can access it’s pages usintg FrontPage 2003
  • Lookup the list name of the existing discussion list (GuidExisting). Look for example at the code of the EditForm.aspx page. At the end you see the following line with the GUID which is the list name:
    <ListName xmlns="http://schemas.microsoft.com/WebPart/v2/ListForm">{2F9B130C-EDE0-47D5-AF8C-E0A9B696DFEA}</ListName>
  • Lookup the list name for the installed Macaw Discussion Board (GuidMDB)
  • Make a copy of all pages in the existing list (make for example a backup directory in the List folder (at the same level as you .aspx list pages). Don’t move the pages, otherwise the interrnal links for the list pages gets messed up!
  • Copy over the pages of the Macaw Discussion Board instance to the existing list, overwriting the existing pages of your list instance.
  • On all pages do a replace of the Macaw Discussion Board instance GUID (GuidMDB) with the GUID of the original list (GuidExisting).
  • Remove any pages that are not also in the Macaw Discussion Board instance
  • Done!!

If there is a need for an application that performs these actions, please let me know and *maybe* I’m in the mood to create one!

Licensing

Macaw Discussion Board License Agreement

You can use this Software for any commercial or noncommercial purpose, as long as the Macaw Discussion Board is not marketed and sold as if it is your own application. In return, we simply require that you agree:

  • Not to remove any copyright notices from the Software.
  • That if you distribute the Software in source code form you do so only under this License (i.e. you must include a complete copy of this License with your distribution), and if you distribute the Software solely in object form you only do so under a license that complies with this License.
  • That the Software comes "as is", with no warranties. None whatsoever. This means no express, implied or statutory warranty, including without limitation, warranties of merchantability or fitness for a particular purpose or any warranty of noninfringement. Also, you must pass this disclaimer on whenever you distribute the Software.
  • That neither Serge van den Oever [Macaw] nor any contributor to the Software will be liable for any of those types of damages known as indirect, special, consequential, or incidental related to the Software or this License, to the maximum extent the law permits, no matter what legal theory it's based on. Also, you must pass this limitation of liability on whenever you distribute the Software.
  • That if you sue anyone over patents that you think may apply to the Software for a persons use of the Software, your license to the Software ends automatically.
  • That the patent rights, if any, licensed hereunder only apply to the Software, not to any derivative works you make.
  • That your rights under this License end automatically if you breach it in any way.

FAQ

Q1: Why is there no threaded view with newest thread on top. Same as the default view for a standard discussion board, but then implemented “right”?

A:1 We have such a view at my company, but I could not get it working;-) There also is not really a need for such a view in my opinion. I never use the view at work, and no forum implementation uses such views.

Q2: How about multilanguage support, do you support any other language than English?

A2: I have no idea what happens if you install this on a site that is in another language. All texts in the discussion board will definitly remain in English. There is even a chance of broken link to the administrative pages because they link to the /_layouts/1033 directory. If anyone has any information on this (and information on making "language-neutral" templates)...

Q3: When I add new views to the discussion list, they don’t become visible in the left menu.

A3: This is by design. Because the wrong pages ended up at the left menu, I did add the links above “Actions” (The “Discussion” menu) manually. If you want to add a view, modify the pages AllItems.aspx (Thread Index), Latest.aspx and SingleThread.aspx.

Acknowledgements

Thanks to my colleagues Arjan Paauw and Olaf Conijn for input in the implementation of the Macaw Discussion Board.

Published Friday, March 04, 2005 11:27 PM by svdoever
Filed under:

Comments

Friday, March 04, 2005 12:38 PM by TrackBack

# Linked

Friday, March 04, 2005 3:44 PM by TrackBack

# Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Friday, March 04, 2005 5:45 PM by Bryant Likes

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Looks great! I would really like to try it out but the link doesn't work.

http://spsutils.sourgeforge.net/

It looks like it should be sourceforge instead of sourgeforge but that doesn't work either.
Friday, March 04, 2005 5:48 PM by Bryant Likes

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Got it. The correct link is under availability:

http://spsutil.sourceforge.net/

:)
Friday, March 04, 2005 5:59 PM by Serge van den Oever [Macaw]

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Thanks Bryant, fixed it immediately! Looking forward to your comments. Love your Reporting Services web parts. We use them a lot in our intranet!!
Friday, March 04, 2005 6:31 PM by Colin Walker

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

WOW! looks excellent. Will have to have a go with this.
Friday, March 04, 2005 7:26 PM by TrackBack

# MACAW Discussion Board

Friday, March 04, 2005 8:03 PM by Colin Walker

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Serge,

Both myself and a visitor to my blog have got the same error when creating a board (the next thing to appear after clicking the Create button):

"Error
List does not exist

The page you selected contains a list that does not exist. It may have been deleted by another user."

Any thoughts?
Thanks.
Saturday, March 05, 2005 4:24 AM by TrackBack

# Ein neues Diskussionsforum f

Die Liste Diskussionsforum in Windows SharePoint Services ist -sagen wir mal- in breiten Umfang ausbauf
Saturday, March 05, 2005 7:03 AM by Serge van den Oever [Macaw]

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Colin, thanks for telling me this!!! It was late, I uploaded an old saved template. I corrected the problem, should work now!! Please download the latest release on sourceforge (currently version 1.0 r 18) and let me know if it works!
Sunday, March 06, 2005 3:23 PM by Colin Walker

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Thanks for the updated template - works a treat :)
Monday, March 07, 2005 7:31 AM by David

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

I wish I'd had this 6 months ago. SP1 did fix the threaded view, i.e. latest thread at the top instead of at the bottom. But the rest of the features here are fantastic.
Monday, March 07, 2005 7:55 AM by Serge van den Oever [Macaw]

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hi David,

Call me stupid, but never knew that SP1 fixed the threaded order!! I stopped using the standard discussion board more than a year ago!
I will add back this threaded view as soon as I can!
Monday, March 07, 2005 10:07 AM by Jason Dossett

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Very cool. Any chance you might be able to turn this into a list definition instead of just a list site so this can be appled globally?
Monday, March 07, 2005 10:29 AM by Serge van den Oever [Macaw]

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Is much more difficult... especially things like data view web parts in a list definition... But if you know how to do it, please help me out on this! I was thinking about a tool that can apply the changes to an existing discussion list, don't know if this would help? Could iterate through all discussion lists and apply the changes. I will look into this, any help appreciated!
Monday, March 07, 2005 10:33 AM by Jason Dossett

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Somebody (I'll need to search on it) mentioned a tool they had that converted frontpage packages to site definitions, but he never got back to me on whether they'd release it or not. Microsoft (or somebody) really needs to come through with some good site and list definition tools. This is the number one barrier to customization deployment right now IMO.
Monday, March 07, 2005 2:06 PM by Bracnoria

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Wow!!!, excellent
Monday, March 07, 2005 7:32 PM by David

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Serge, I think a lot of us had given up using the discussion board because of that issue. We only recently started (re)using it when we realised the threaded sort was fixed. One other annoying 'usability' thing I realized with the threaded board is that it does not appear possible to include the actual attachment/file in the summary view (even though it lists an image of the paperclip). Instead, you need to click on and go into each thread to access the file(s).
Monday, March 07, 2005 7:41 PM by Serge van den Oever [Macaw]

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Jason, if you can find any pointers to this conversion tool (template to definition), please let me know. I just started to make one myself, but it is not really easy. You need to do some merging between the template and the definition it is based on.

David, what behaviour would you like to have? have a paperclip visible, and be able to open attachements directly from the threaded view? You don't have a description of your attachements in this case? What if there are multiple attachements? I also don't give access to the attachements in my SingleThread and latest Views... Is that something that should be there?
Monday, March 07, 2005 9:06 PM by David

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

You do raise a valid point - regarding multiple attachments. Perhaps not. I guess, therefore, in the threaded list summary view simply remove the paperclip (if you have chosen to include it) because it's confusing and people will naturally 'click' on it expecting to have something open.
Thanks.
Tuesday, March 08, 2005 10:50 AM by Shawnk

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

I have WSS 2.0 SP1 installed.
I created a top level 'Team Site' via template.
I was able to upload the *.stp file.

The MacawDiscussionBoard1.0 r18 is listed
in the List Template Gallery.

When I go to 'Create' the MacawDiscussBoard does not show up under 'Discussion Boards'.

I will try the StdAdm.exe tool but I though I would let you know of this problem.
Tuesday, March 08, 2005 11:07 AM by Serge van den Oever [Macaw]

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hi Shawnk, uploading almost always succeeds, trouble starts when you have added the list template to a site that is not based on the same definition as the definition used for the creation of the Macaw discussion board. I don't know if anyone tried out another language than 1033 (US)? I didn't, the Macaw Discussion Board was built in an STS site (standard team site) in 1033. You could have a look at http://weblogs.asp.net/dwinter/archive/2005/02/24/380169.aspx for more info, keep me posted about how you are doing!
Tuesday, March 08, 2005 11:26 AM by Dan Winter

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Yes Serge, you're on the right track here. The list object will have a templateID of 1. This will tie back to the site definition referred to as STS if you're looking at your site definitions in TEMPLATES. If Shawnk has coppied the default team site to his own and customized it, then he will have it defined in webtemp???.xml with a different ID number--although it may still say "Team Site". When we render the create page--we look at the available list templates and display those that match up with the templateID that the site we are currently in was provisioned with.

I will state that it is "possible" to alter your STP and make the templateID match whatever he provisioned his site as--but it definately isn't a MSFT supported operation. We could have a discussion as to why it would and wouldn't work I suppose :-).
Tuesday, March 08, 2005 11:34 AM by Serge van den Oever [Macaw]

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Thanks Dan for your response! Do you know if the template ID changes with other language versions? Or is it possible to istall an stp template file created on a 1033 site on a site in another language? I think it would be better to create a list definition, so I'm currently working on a tool to convert a .stp list template to a list definition... not any success yet however...
Tuesday, March 08, 2005 11:57 AM by Shawnk

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

I tryed to upload the *.stp file via stsadm.exe.

I used the 'addtemplate' command (-o addtemplate).

The error message returned was 'Invalid site template'.

This makes sense since we have a discussion list template. I have the latest stsadm.exe and there is no way to add a list template from this utility.

Am I missing something?
Tuesday, March 08, 2005 12:01 PM by shawnk

# SourceForge file does not complete upload

I imported the list template (*.stp) and the file uploaded correctly into the Site List Template Gallery.

The problem is when I try to create a page the Macaw Discussion Board does not come up under discussion boards.

That is why I tryed the recommendation to use the stsadm.exe utility.

Thought I would let you know of this install problem.
Tuesday, March 08, 2005 12:07 PM by Serge van den Oever [Macaw]

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

I thought you could also add list templates using stsadm.exe, sorry for the mistake! The only thing I can think of is applying the pages from the Macaw Discussion List template to an existing discussion list using FrontPage as described in the documentation.

If you want to go this route let me know, in this case I will save the pages from FrontPage so you can import then using FrontPage in an existing list.
Tuesday, March 08, 2005 12:09 PM by Shawnk

# Template type not recognized during upload

Upon examination the 'Macaw discussion list' template does not have the 'Template type' filled out after it is uploaded into a site List Template Gallery.

This lack of 'type' may be why it does not show up in the 'Discussion Boards' section on the 'Create Page' web page.

Also note that when the 'Discussion Boards' link is selected (on Create Page) the 'Macaw discussion list' does not come up.
Tuesday, March 08, 2005 12:15 PM by Serge van den Oever [Macaw]

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

This is an excerpt from the manifest file of the MacawDiscussionBoard template:

<?xml version="1.0" encoding="UTF-8" ?>
<ListTemplate WebUrl="http://vsrv-d-insite-2:88/sites/Discussion">
<Details>
<TemplateDescription></TemplateDescription>
<TemplateTitle>StandardDiscussionBoard</TemplateTitle>
<Language>1033</Language>
<TemplateID>1</TemplateID>
<Configuration>1</Configuration>
<TemplateType>108</TemplateType>
<BaseType>3</BaseType>
</Details>
:

Are you installing on an English version?
Tuesday, March 08, 2005 12:15 PM by Shawnk

# Using FrontPage to import Template

I do not have FrontPage and, being a systems programmer, tend to exec the install files.

One idea for the sourceForge file set. You may want to package your source code in a separate zip file. This way programmers could use the WSS packager to 'package' the template and then try the upload on the latest version/release of WSS.

Note I'm still new to WSS programming so packaging web parts, SOA enabled web parts, data views and templates are still somewhat new to me.

Do you think you can package the source as a *.zip file. I can create a project file in Visual Studio to try different packaging formats and see what works.
Tuesday, March 08, 2005 12:19 PM by Shawnk

# Template type identity should be in released package

One other thought. The 'List Template' type (vs a site template type) should be specified in any packaging mechanism.

Note this 'type' should transfer into the List Template Gallery item after the upload.

A simple 'upload' test to verify the correct template type could then be performed.

I'll research the 'template type' issue on the Microsoft Newgroup and let you know of the response.
Tuesday, March 08, 2005 12:26 PM by Shawnk

# Tracking template identity in WSS upload/import

Serge,

Thanks for the mainifest file. I need to review the template identity mechanism in light of the WSS 'IT object model' (vs the (1) user object model and (2) developer object model).

I'll also try to enumerate the 'template identity artifacts' as far as (1) what files they reside in and (2) what WSS tools/components use them.

If there are any MS WSS team members or MVPs who may have an enumerated list this would help.

For now I'll review dWinters blog on the identity mechanism and get back to you.
Tuesday, March 08, 2005 12:29 PM by Shawnk

# re: English version of WSS

Serge,

I have the english version of WSS.
Tuesday, March 08, 2005 12:41 PM by Serge van den Oever [Macaw]

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hi Shawnk, I added a zip file with the pages to https://sourceforge.net/project/showfiles.php?group_id=52432&package_id=146022. You can use those file to "patch" an existing discussion board. Note however that this is easy with Frontpage 2003, but difficult with other tools. FrontPage automatically extract the web parts in the web part zones and adds them to the database. Hope this gets you any further...
Tuesday, March 08, 2005 12:58 PM by Shawnk

# Package import : Download of ASPX files via Zip on SourceForge

Serge,

I just downloaded the zip file and it worked fine. I'm looking at the source now.

I think I'll try to install an eval version of FrontPage and try the import via the FrontPage tool.

I'll also look at packaging the 'web parts' in Visual Studio.

Read your Blog on Template IDs. Thanks for posting that.

I'll spend the next few days reviewing the template/definition/webPart architectures and let you know how I come out.

Thanks again for all you help.
Wednesday, March 09, 2005 4:35 AM by Mingfeng Xiong

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

great! i notice that the macaw discussion board is only support english version sharepoint, can it be extend to other language?
Thursday, March 10, 2005 6:42 PM by TrackBack

# Sharepoint - a week in review

Thursday, March 10, 2005 6:43 PM by TrackBack

# Sharepoint - a week in review

Thursday, March 10, 2005 10:06 PM by Matt Hayes

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

looks great, any chance to save emails from outlook 2003 to the macaw discussions board instead of a library?
Friday, March 11, 2005 7:06 AM by Serge van den Oever [Macaw]

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Mingfeng, I have no access to another language here, so did not try it out. You can always copy over the source files using FrontPage to an existing discussion board in your language and modify what is needed. The documentation contains information on how to apply the pages to an existing discussion board. I added a zip file with all pages to the download section. You need frontpage 2003 for this.

Matt, if you want to save emails from outlook 2003 to a discussion list, you have to program it. I didn't change anything to the underlying discussion board. So if you already have code it should work, otherwise you have to do some work in Exchange to post items to the discussion board using it's web service interface.
Sunday, March 13, 2005 7:27 PM by Bil Simser

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Serge,

Just starting to use this on a public site (the upload was easy and worked great as I don't have console access to the server). Looks great and I think a welcome refresh from the current Discussion template.

A couple of things to consider for future updates:
-Automatically prepend a "RE:" in the subject line when replying to a message (could be done with CAML?)
-Add a "Reply with Quote" option to the menu and prepopulate the body of the message with the original message reformatted with a ">" at the begining of each line. More CAML and could be pretty complicated, but it's one of the basic features that forums have these days.

If you can't do this with CAML and templates let me know and maybe we can collaborate on a new webpart that would replace the list.

Cheers!
Monday, March 14, 2005 2:26 AM by Serge van den Oever [Macaw]

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hi Bil, the list is a list template, not a list definition. I didn't do anything in CAML, all modifications are done through data view web parts. If I add such functionality, it must be done through JavaScript. I will look into this. Thanks for your comment!
Wednesday, March 16, 2005 6:03 PM by TrackBack

# The WSS discussion list / discussion board simply isn't good enough!

Wednesday, March 16, 2005 11:44 PM by TrackBack

# SharePoint discussion lists: What's needed to make them work?

I posted my theory yesterday on why SharePoint discussion lists aren't used more. The votes are in and it looks like I am out-gunned on this one with most folks blaming poor feature set for low take-up...
Thursday, March 17, 2005 12:00 AM by Matthew Cosier

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Why didn't I know about this earlier?
This is fantastic, I will be referring this out to a lot of people in the near future,

Matt
Thursday, March 17, 2005 7:35 AM by Denis Fayruzov, dfayruzov [at] gmail.com

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hi Serge,
i was unable to install your Discussion Board on my Russian (1049) WSS Site, so i've done a "russian Macaw Discussion Board". I've just took standart empty Discussion Board and apply XML from provided pages.

Thank you very much.
Thursday, March 17, 2005 7:39 AM by Serge van den Oever [Macaw]

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hi Denis Fayruzov, were my guildelines in the section "Applying the Macaw Discussion Board changes to an existing discussion list" correct? Maybe it is a good idea if we make the templates in the different languages available for download! If you send it to me I will put it on the site! E-mail me at serge@macaw.nl
Friday, March 18, 2005 10:56 AM by Denis Fayruzov, dfayruzov [at] gmail.com

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hi Serge,
there it is: http://t.fd-group.ru/Temp/MacawDiscussionBoard_rus_0.1.stp
It need some testing though, we can do it in some days.
If you put it on your site it will be great. : )
Sunday, March 27, 2005 9:20 AM by TrackBack

# What's a Web Part for Anyways?

Sunday, March 27, 2005 9:24 AM by TrackBack

# What's a Web Part for Anyways?

Wednesday, March 30, 2005 4:38 PM by Brenda

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

What a wonderful feature. But most of all your setup description was so simple to implement. Just save the downloaded files somewhere anywhere! Then simply link to it in the Upload template. Don't understand how people go wrong.

Great job!!
Thursday, June 01, 2006 4:43 PM by The Boiler Room - Mark Kruger, SharePoint MVP

# SharePoint Web Parts: Free 3rd Party SharePoint Web Parts &amp;amp; Tools

For those who aggregate my feed and do not often visit the blog iteself... I've updated my SharePoint...
Thursday, July 27, 2006 7:43 PM by Craig Chalmers

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hi Serge,

I implemented your Macaw DB plugin, and I think it's great! My problem is that I am unable to get the alerts to work. This may be because we only have WSS implemented (without Portal Server). Is this why I can't get my alerts? If so, is there any way around it? If not, do you have any ideas as to why they aren't working?

-Craig

PS - In case you can't tell, I'm not exactly an "expert sharepoint developer"; I'm just getting my feet wet with Windows SharePoint Services. We will hopefully be implementing SPS soon...

Tuesday, August 01, 2006 4:52 AM by Anil

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Thanks, I installed it successfully. But i din't get how to use this webpart.

Tuesday, August 01, 2006 7:18 PM by svdoever

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hi Anil, you can create a new list based on the new Discussion Board. It is not a web part.

Tuesday, August 01, 2006 7:19 PM by svdoever

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hi Craig, do alerts work on a normal discussion board. If not, you have a problem with your alerts! If they do work, let me know, then the Macaw Discussion Board is the problem.

Thursday, August 24, 2006 6:15 AM by kevinpjp

# Good site

ecgTry Look here!!! it's greatcsw

tef

nztit's really helped memf

Wednesday, March 28, 2007 6:56 PM by Andy Fox

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Is there a trick to getting this working with WSS V3, as it appears to load as a List Template but I don't appear to be able to find it when trying to create anything.

Appreciate any directions.

Andy

Friday, April 27, 2007 8:38 PM by Britneyzcipl

# Good site

<a href= http://www.angelfire.com/funky/cunimy >a broken wing karaoke</a> <a href= http://www.angelfire.com/funky/rydizu >a420</a> <a href= http://www.angelfire.com/indie/geziqa >a521 t90</a> <a href= http://www.angelfire.com/planet/zoxiqi >aaliyah</a> <a href= http://www.angelfire.com/poetry/zazoku >aaron copland hoedown mp3</a>

Tuesday, June 26, 2007 11:10 AM by The Boiler Room - Mark Kruger, Microsoft SharePoint MVP

# Free SharePoint Web Parts (3rd Party)

Free SharePoint Web Parts (3rd Party) Konrad Brunner - UGS&#39;s Web Parts (broken link 8/25) Document

Wednesday, July 04, 2007 7:14 AM by Peter I

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hi

Is there a way to add a reply button to this template?

Thursday, July 26, 2007 2:20 AM by Sowmya

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hi, I have created a custom list form and customized accordingly.But found that Attachment is not working,it is throwing the Javascript error.

Please let me know if any one of you know about how to add the Share Point Attachment control in the custom created List using Designer.

Thursday, September 20, 2007 1:19 AM by Laxmikant

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hi,

This is really impressive..

I am trying sometyhing similar in MOSS 2007..

But my requiement is to have Web 2.0 enabled paging...

Any Suggestions...

Tuesday, April 22, 2008 10:29 AM by Amita

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Does Macaw works with SP2007?

Monday, May 19, 2008 5:40 AM by Achir

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Does Macaw work with sharepoint 2007?

# WSS 3.0 &amp; MOSS: Web Parts for free a tutiplen! &laquo; Pasi??n por la tecnolog??a&#8230;

Pingback from  WSS 3.0 &amp; MOSS: Web Parts for free a tutiplen! &laquo; Pasi??n por la tecnolog??a&#8230;

Tuesday, September 02, 2008 11:03 AM by angel777com

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

<a href=http://www.a-n-g-e-l.com>Tajnye I Misticheskie Chetverostishiya Neveste</a>: www.a-n-g-e-l.com

# Free SharePoint Web Parts &laquo; Prashant Jadhav : Microsoft Sharepoint, Web 2.0, Elearning, MLearning

Pingback from  Free SharePoint Web Parts &laquo; Prashant Jadhav : Microsoft Sharepoint, Web 2.0, Elearning, MLearning

Thursday, December 11, 2008 8:20 AM by Sluddybib

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Good afternoon everyone, I am new to this forum. However, I'm interested in everyone's opinion regarding this website(Salehoo) I have a friend who keeps bragging about how much money he makes with this service. I was looking into purchasing a lot of cell phones and possible some In-Dash stereos. You can also learn about it here: http://about-salehoo.com  Thanks in advance!

Tuesday, January 06, 2009 4:28 AM by venkat mail.to.venkat@gmail.com

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hi,

Do you have suggestions or possiblye even implementations on fproviding views of discussions  where you have formatting of posts and their replies, with different colors and flags  based on , some factors  like  number of answers, answered/not answered,etc?and any other customization on discussion boards?

Tuesday, January 06, 2009 8:48 PM by Lopsterrrr

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Thursday, January 08, 2009 5:11 PM by bill

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

anyone familiar with any web parts like this that will work with MOSS 2007?

thank you

Sunday, March 01, 2009 4:10 PM by volhonvo

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Howdy guys,

I've been thinking of getting one, and before I do I wanted to ask if you think this article about <a href=www.10facts.com/.../Slim-Fast.html>facts about slim fast</a> is accurate or not?

I want to make sure before I make a purchase...

Thanks!

Tuesday, March 03, 2009 8:34 AM by Sashabaz

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

I cant seem to get this to work...  I have uploaded it to my WSS site and it appears in the templates list, but when I choose to create it is not an option...  I am using sharepoint 2007 and Sharepoint designer.  If it is not possible to make it work with WSS, does anyone know any other options for discussion boards in sharepoint sites?

Thanks

Friday, March 13, 2009 3:30 PM by Zexneeltslusy

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Greetings!

Thought I'd share this. I have had problems with my internet connection at home for a while.  I have the wireless router access point installed on the 1st floor and my computer is on the 2nd floor.

It was really annoying that my internet connection would drop 4-5 times a day. The signal strength often shows "weak."

I did not know what to do until I came across this <a href=techawave.jitbid.com/.../index.php Signal Booster</b></a>

It solved all my network connection problem as soon as I had it installed! Now my signal shows "excellent" most of the time. So if you have a wifi signal/connection problem, this thing is going to solve your problem!

Wednesday, March 25, 2009 7:59 PM by bigredtetris

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hey

It took me a long while but I've managed to get a score of 823,339 in <a href=www.playedonline.com/.../a>!

Let's see if you can beat me! :-)

Good luck!

Wednesday, April 01, 2009 7:21 PM by KristFry

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hey   people ! This is my 1st affix   and I like to yoke this community !

Saturday, April 04, 2009 7:07 PM by KristFry

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hello the whole world !  beginning rhythm jobing  and  I promise to realize some pirate!

Friday, April 17, 2009 1:14 PM by SteveJ

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Just joined the forum<a href=http://EnforklaringafDigita3990.spaces.live.com>,</a> it's my first post, hello to everyone.

Wednesday, April 22, 2009 10:44 AM by GenrieAB

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

<a href=downloadmp3-music.com/.../>Sharon Jones and the Dap - Kings</a>

Thursday, April 23, 2009 2:54 AM by GenrieAB

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

<a href=downloadmp3-music.com/.../>Various Artists - DJ Promotion CD Pool House mixes 132</a>

Thursday, April 30, 2009 3:02 PM by KristFry

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

I'm a supporter of ipod touch since the first release. Recently with the addition of the app store, it became one of my favorite gadget.

This thread is dedicated to reviewing those apps that we like or dislike. I recommend you to try [b][url=http://www.wma-convert.com]WMA-Convert[/url][/b] - converter for protected media files.

Wednesday, May 13, 2009 3:50 AM by KristFry

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

I use  iphone ever since they launched it. And now I can't imagine my life without it.

Let's discuss our favourite applications! I recommend you to try <b><a href=http://www.wma-convert.com>WMA-Convert</a></b> - converter for protected media files.

Friday, May 15, 2009 1:40 AM by nick_ccaolo

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Friday, May 15, 2009 12:07 PM by GenrieAB

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

<a href=downloadmp3-music.com/.../>Kanye West featuring Dwele - Flashing Lights (dirty)</a>

Saturday, May 16, 2009 8:00 AM by GenrieAB

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

<a href=downloadmp3-music.com/.../>The Clash - Rock da Casbah 2004</a>

Sunday, May 17, 2009 6:16 AM by Jadehaupblela

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Who is the new hot brunnete on stargate universe? Please let me know!!!

www.koldcast.tv/.../2384

Monday, May 18, 2009 3:42 PM by Jadehaupblela

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Stargate Universe Fans Please Help!!!  Let’s do whatever it takes to keep this bald dude the hell off the show...

www.koldcast.tv/.../2384

Thursday, May 21, 2009 12:51 PM by horpHoasp

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hello,

I just Joined to this this forum and I enjoy all your great posts.

I know nothing about your possibilities, but I think you all are touched by the economical crisis.

It is a great thing if you can save on your dental treatment in this situation.

I get a good tip from my friend, and I want to share this info with you.

Chek this url if you have dental issues:

<a href=wadin-med.com/.../hungary-dentists.php>Cosmetic Dentistry Hungary</a>

I would like to know your opinion!

Monday, May 25, 2009 5:48 AM by tweseejesty

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

שלום לכולם,  אני אחרי חיפוש מעמיק אחרי מחירים נורמאלים לתוספי תזונה ורציתי לחלוק אתכם את המידע:

מצאתי אצל בטבע בנחלה

(נחלת יצחק תל אביב –אבל הם עושים משלוחים וגם באינטרנט!: <a href=http://www.tvbn.co.il>ויטמינים</a> (כל מה שרצית לדעת על צמחי מרפא ולא ידעת את מי לשאול, תוספי תזונה מיוחדים מכל רחבי העולם  

<b>ייעוץ מקצועי  ומחירים לא רעים בכלל לדוגמא:</b>

ויטמין C עכשיו במחיר הכי זול שמצאתי  29.90שח  100 כדורים, שח 79.90 500 כדורי

Wednesday, June 03, 2009 1:47 AM by Detective phone cell

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Good post, your post could really help me in my work. Hopefully this will help increase my traffic more. Thanks for sharing.

Friday, June 05, 2009 4:57 PM by GenrieAB

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

<a href=downloadmp3-music.com/.../>Deadmau5 - Faxing Berlin (Original mix)</a>

Saturday, June 06, 2009 2:16 AM by GenrieAB

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

<a href=downloadmp3-music.com/.../>Marc Romboy vs Gui Boratto - Eurasia</a>

Tuesday, June 23, 2009 6:52 PM by VivianG

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

<a href=meds-ex.com/index.php price Indocin online</a>

Thursday, June 25, 2009 12:26 PM by appadnell

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

The title already says all... just download my <b><u>F.R.E.E. 5-page ebook</u></b> and start using the strategies explained here:

http://bit.ly/sell-hosting

Sunday, June 28, 2009 1:46 PM by WeescipNibDes

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Для Вас новости музыки +и кино,группа судьба острова,музыкальные сайты бесплатные,музыкальные сайты ucoz.

Wednesday, July 01, 2009 4:43 PM by Delagaupe

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hey

I wanted to share with you a very unique site I just came across teaching <a href=http://www.kravmagabootcamp.com><b>Krav Maga</b></a> Online If you guys have seen the Discovery Channel TV Show called Fight Quest you would have seen their chief instructor Ran Nakash there. Anyways, I think it's worth a look. I've been a member for the last 4 months, and I've been loving every second of it.

Hope I've helped someone here,

cheers

Monday, July 06, 2009 12:26 PM by evden eve nakliyat

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

very good realy thanks...

Wednesday, July 08, 2009 12:38 AM by Ванила

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Смотрите прикол. Я чуть со стула не упала со смеха :)

vtemevideo.ru/files-view-9737.html

www.shareesblog.com - лучшие !!!

Wednesday, July 08, 2009 3:30 PM by ahbadertae

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

veslo yam vas vseu!

[url=http://nahuteso.com]nahutesto[/url]

Thursday, July 09, 2009 6:20 AM by Vegus

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Вы талантливый человек

Thursday, July 09, 2009 3:04 PM by lpg

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

very good realy thanks..

Friday, July 10, 2009 7:36 PM by Wordpress

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Подскажите пожалуйста как называется ваш шаблон. Мы хотели бы добавить его в свой каталог шаблонов

Friday, July 10, 2009 10:53 PM by Gaftus

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Да качество отличное

Saturday, July 11, 2009 1:39 PM by Видео приколы

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Пару мес назад в сети появился проект <a href='http://www.OnlineVse.Ru/'>OnlineVse.Ru</a> который в течении недели стал просто обьектом посещаемости ! За 1 мес его посетительность выросла до 7500 тыс !. Сайт активно публикуется в сми и быстро завоевал доверие. Главная его цель дать его посетителям бесплатно скачать видеоролики находящиеся в категориях. Данный проект стал посещаем и более того главной страницей у многих пользователей !

Monday, July 13, 2009 4:44 AM by Генадий Петрович

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Я знаю сайт с ответами на интересующей Вас вопрос.

Tuesday, July 14, 2009 12:06 PM by Алексей Андреевич

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Этот ответ , бесподобен

Wednesday, July 15, 2009 7:49 AM by KingTime

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Смеяться не грешно, но признаваться в этом при чтении подобной информации по крайней мере удивило меня!:))

Wednesday, July 15, 2009 12:52 PM by czernyakova

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Предлагаем Вам интернет-сайт про лесные ягоды. Здесь для Вас специализированные публикации и материалы про крыжовник и кизил. На нашем сайте Вы найдете множество сведений про лесные ягоды: актинидия и брусника, черника и черемуха.

Wednesday, July 15, 2009 7:14 PM by Читер

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Каждый из нас рано или поздно сталкивался с проблемой выбора: будь то обычная покупка или подарок близкому человеку.Посетите наш электронный ресурс, где содержатся самые разнообразные статьи и материалы, в которых профессионалы расскажут вам о качествах тех или иных товаров.

Thursday, July 16, 2009 1:18 AM by Мобильный

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

потрясающие идеи...нам перенять бы ...великолепно.

Thursday, July 16, 2009 1:46 AM by Виктор Павлович

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Это интересно. Скажите мне, пожалуйста - где я могу об этом прочитать?

Thursday, July 16, 2009 9:55 AM by Медик

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Интересный сайтик, но вам стоит больше добавлять статей

Thursday, July 16, 2009 12:26 PM by Прекрасная леди

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Спасибо аффтару за хороший пост. Полностью прочел, почерпнул много ценного для себя.

Thursday, July 16, 2009 5:23 PM by Врач медицины

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

вот толкьо есть ли смысл..

Thursday, July 16, 2009 10:26 PM by МедВрач

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Сайт просто отличный, порекомендую всем знакомым!

Friday, July 17, 2009 1:38 AM by Yarkos

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Здраствуйте, не знаю куда писать напишу сюда. Я подписался на рсс вашего сайта, а текст отображается иероглифами помогите пожалуйста, можно на e-mail

Friday, July 17, 2009 5:49 AM by Звезда

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Доброй Ночи. Только что по ОРТ показывали сериал 12. Каковы ваши ощущения ?

Friday, July 17, 2009 11:01 AM by Гонга

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

что касается темы, то мне кажется актуальность будет известна только через некоторое время.

Friday, July 17, 2009 3:34 PM by Строитель

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Какая прелесть!!!!!!!!!!!!)

Friday, July 17, 2009 7:58 PM by Музыкант

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Благодарю!!!У Вас часто появляются очень интересные посты! Очень поднимаете мое настроение.

Saturday, July 18, 2009 12:29 AM by Мед Вестник

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

отлично!!! Все супер!

Saturday, July 18, 2009 4:56 AM by Путешественник

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

мда... это тебе не рио дежанейро... круто...кстати когда постишь инфу пиши первоисточник

Saturday, July 18, 2009 10:07 AM by ФильмОман

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

а в каком это городе,какой стране??очень креативненько!!!!!)))))

Saturday, July 18, 2009 2:47 PM by dЁБЫРЬ

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Спасибо! Очень полезная инфа.

Saturday, July 18, 2009 9:24 PM by Павел Ксавельевич

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Подтверждаю. Это было и со мной. Можем пообщаться на эту тему. Здесь или в PM.

Sunday, July 19, 2009 5:14 AM by AnneloRorgala

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Billiards, pool

Croatia Service

Sunday, July 19, 2009 6:32 AM by GoodOK

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Вам спасибо - за тёплый приём )

Sunday, July 19, 2009 11:01 AM by Боевик

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Класс! Афтару респект!

Sunday, July 19, 2009 6:26 PM by Готы

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Огромное вам человеческое спасибо, очень актуальная заметка.

Sunday, July 19, 2009 11:07 PM by Ювелир

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Классно всё: и картинка ,и информация

Monday, July 20, 2009 3:56 AM by КиноКритик

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

"соглашусь с автором"

Monday, July 20, 2009 8:51 AM by Кровля

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Спасибо за ответы на все вопросы :) На самом деле узнал много нового. Вот только до конца так и не разобрался что и откуда.

Monday, July 20, 2009 8:04 PM by Казах

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Спасибо аффтару за хороший пост. Полностью прочел, почерпнул много ценного для себя.

Tuesday, July 21, 2009 6:10 PM by ALIVE

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Сайт просто супер, буду рекомендовать друзьям!

Tuesday, July 21, 2009 9:06 PM by Anime

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

да,но это еще и не все...

Wednesday, July 22, 2009 1:05 AM by Букет

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

хм...ну это памойму уже крайность...

Wednesday, July 22, 2009 1:30 AM by Peeglinue

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Good day!?

   I actually had a quick question and wasn't sure if someone might know if they have

ever encountered this. Have you ever seen a tattoo artist use magnifiers while they are

doing a tattoo? I would think it might be helpful while they are doing the fine points of

a tattoo that require great detail.

<a href=www.jjdebt.com/family-tattoo-designs.htm>family tattoo designs</a>Maybe even those magnifying glasses that

your dentist wearing? Anyways wasn't sure if anyone ever encountered this?

Wednesday, July 22, 2009 10:16 AM by Девушка

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Спасибо!, в цитатник!

Wednesday, July 22, 2009 4:52 PM by Яндекс

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Спасибо, за хороший материал

Thursday, July 23, 2009 12:46 AM by Картинка

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

"Добавил в закладки"

Thursday, July 23, 2009 11:40 AM by Лапка

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Скажите, а у вас есть RSS поток в этом блоге?

Friday, July 24, 2009 12:03 AM by Александр

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

расскау вам тоже интересную историю..

Friday, July 24, 2009 9:34 AM by Watrez

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

. Вам интересны новинки, которыми изобилует рынок, или вы хотите узнать что-то новое о товарах и услугах, уже давно заслуживших доверие потребителей?О достоинствах и недостатках современного рынка товаров и услуг расскажут специалисты, рекомендации которых вы узнаете, прочтя статьи нашего сайта.

Friday, July 24, 2009 10:30 PM by Tiberian

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Ресурс Bizupr предлагает Вашему вниманию большое количество данных о функционировании предприятия: конкурентообразующие факторы, показатели экологической безопасности, собственность в предпринимательстве, эволюция валютной системы и множество другого.

Saturday, July 25, 2009 9:21 AM by Бизнесман

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Круто, что тут еще можно сказать.

Sunday, July 26, 2009 9:52 PM by ЗИКСИ

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

да,но это еще и не все...

Tuesday, July 28, 2009 7:20 AM by Орно

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

круто :-)

кстати есть и другие темы. Я даже могу фотку вам скинуть но почты не нашел. лучше думаю просто залить на фото обменник.

Thursday, July 30, 2009 8:43 AM by Фазан

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Сайт просто супер, побольше бы подобных!

Thursday, July 30, 2009 3:50 PM by КиноМан

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

"прочитала с удовольствием"

Friday, July 31, 2009 3:31 PM by Fereros

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Добавил себе RSS, буду следить за обновлением и комментариями.

А вообще, автор молодец

Saturday, August 01, 2009 2:27 AM by Боец

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

вот это позитив) просто класс)

Saturday, August 01, 2009 6:21 AM by Saniska

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Присоединюсь к предыдущим комментариям и буду следить за дальнейшими обновлениями

Saturday, August 01, 2009 10:30 AM by Gliska

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Решил добавить RSS и получать новости, мне лично понравилось, что написал автор

Saturday, August 01, 2009 11:52 AM by Hover

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Мне лично порнавилась данная статья, добавлю в избранное

Saturday, August 01, 2009 5:26 PM by sabsSleette

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

dsfgsdfg dfssdfgf fdsgsdfgsd

Saturday, August 01, 2009 6:28 PM by sabsSleette

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

dsfgsdfg dfssdfgf fdsgsdfgsd

Sunday, August 02, 2009 3:58 AM by Руслан

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Почему мои комментарии не публикуются кто нибудь мне ответит ?????

Monday, August 03, 2009 3:13 AM by Amanics

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Инфа интересная, мне понравилось. Автору спс.

Monday, August 03, 2009 10:26 AM by Multinef

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Поддерживаю, тоже оценил материал. зачетный

Monday, August 03, 2009 12:40 PM by Starks

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Побольше бы таких работ.

Monday, August 03, 2009 4:54 PM by Артемий Лебедев

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

И что бы мы делали без вашей очень хорошей фразы

Monday, August 03, 2009 6:59 PM by dom2009

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Здравстыуйте! Предлагаю вам посетить сайт о <a href=http://smotridom2.ru>дом 2</a>.

Monday, August 03, 2009 8:41 PM by Wallpapers

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

круто..взяла почти все))

Tuesday, August 04, 2009 3:03 AM by Челны

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Мне сказали что вы ключи даете от касперского у вас есть ?

Tuesday, August 04, 2009 7:17 AM by dom2009

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Здравстыуйте! Рекомендую вам зайти на сайт о <a href=http://smotridom2.ru>дом 2</a>.

Tuesday, August 04, 2009 8:34 AM by Genaddiy

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Очень даже не плохо, добавлю в избранное

Tuesday, August 04, 2009 9:12 AM by SerVak

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Полностью поддерживаю, грамотно все

Tuesday, August 04, 2009 11:18 AM by Надежда Голубева

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Какие хорошие слова

Tuesday, August 04, 2009 11:43 AM by dom2009

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Приветствую! Рекомендую вам зайти на сайт о <a href=http://smotridom2.ru>дом 2</a>.

Tuesday, August 04, 2009 1:05 PM by dom2009

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Доброго времени суток! Советую вам зайти на сайт о <a href=http://smotridom2.ru>дом 2</a>.

Tuesday, August 04, 2009 3:31 PM by remontnik

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Сделаем евроремонт квартир под ключ на разумных условиях. Предлагаем Вам перепланировку помещений и выгодный ремонт квартир и офисов по низким расценкам. На нашем сайте Вас ждут статьи про ремонт квартир большой площади, прекрасный способ сделать заказ на ремонт квартиры.

Tuesday, August 04, 2009 11:36 PM by LeosSan

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Добавлю в избранное, написано не плохо

Wednesday, August 05, 2009 7:32 AM by BaGet

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Блог хороший, немного таких. Авторы молодцы.

Wednesday, August 05, 2009 11:30 AM by Fedoss

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Буду постоянным поситителем, добавил в закладки

Wednesday, August 05, 2009 1:14 PM by LoFik

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

А почему Вы думаете, что статья оригинальна?

Thursday, August 06, 2009 4:39 AM by Genad

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Присоединяюсь к коментам, добавлю в RSS

Thursday, August 06, 2009 12:23 PM by Geshak

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Понравилась статья.Буду следить за комментами....

Friday, August 07, 2009 4:59 AM by GekaLik

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Достаточно интересная публикация, подписался на rss

Friday, August 07, 2009 8:56 AM by AvAvto

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Блог очень нравится, автору благодарность. Уважуха!

Friday, August 07, 2009 11:40 AM by Serafin

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Поддерживаю положительные отзывы о работе в блоге. Молодцы ребята!

Friday, August 07, 2009 3:38 PM by Bankir

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Материал в блоге качественный, видно что для людей готовили.

Friday, August 07, 2009 6:20 PM by Gerbet

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Интересно кто это все придумал, и комменты одинаковые какие то. Как будто один человек пишит их

Friday, August 07, 2009 11:28 PM by Topolynek

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Полностью не согласен с вашим мнением!

Friday, August 07, 2009 11:54 PM by Билл Гейтс

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

"да, новость пошла по инету и распространяется со старшной силой"

Monday, August 10, 2009 3:56 AM by Plovdiy

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Неплохая подборка в блоге, хорошо сделано, автору спс.

Monday, August 10, 2009 7:47 AM by Eldethyenvend

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

<a href=frenzyfarm.ru/>%D0%92%D0%B5%D1%81%D0%B5%D0%BB%D0%B0%D1%8F ферма 3 прохождение этапов бесплатно</a>

Tuesday, August 11, 2009 1:15 AM by Bigbro

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

С темой не согласен, тут есть и другая точка зрения!

Tuesday, August 11, 2009 2:45 AM by Docter

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Присоединяюсь к положительным комментариям, тоже все очень нравится в этом блоге.

Tuesday, August 11, 2009 6:38 AM by Sergei

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Portal just fine, everything would be so interesting to write it would be very good!

Tuesday, August 11, 2009 8:34 AM by EffenseFeda

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

I just wanted to stop in and mention hello to everyone. I wanted to acquaint me, my name is Joshua. Hello all, my name is Frank.howdy to all, I am new here and my name is Samantha.

I decided to post now because I think forum as a whole is very useful and social. I love reading all of the issues and threads here and considering that I am not much of a poster, I came to the conclusion to make my very initial topic.

To contribute back to the community, I have come to the conclusion I wanted to leave a recent sure experience that I have had with another site I had help me. This website is honest and very professional.

That site is OnlineComputerHelpers.com and they offer online www.onlinecomputerhelpers.com - pc repair

Tuesday, August 11, 2009 7:02 PM by Serpantin

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Все оболденно, согласен с Вами.

Tuesday, August 11, 2009 8:24 PM by ethistlew

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Для веселых розыгрышей можно <a href=smsjoker.ru/>%D0%B1%D0%B5%D1%81%D0%BF%D0%BB%D0%B0%D1%82%D0%BD%D0%BE отправить смс</a> с чужого номера. Море эмоций и   впечатлений гарантировано.

Tuesday, August 11, 2009 8:40 PM by Dgumangi

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

В этой теме много нюансов!

Wednesday, August 12, 2009 4:27 AM by Witurs

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Very good selection of interesting and educational posts! Excellent!

Wednesday, August 12, 2009 7:18 PM by Bordachov

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Не очень понятно о чём вы пишите, слова некоторые не понятны(

Thursday, August 13, 2009 11:11 AM by Tinaku

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

I think you make a mistake in this post. I propose that we discuss this topic in more detail.

Friday, August 14, 2009 12:09 AM by Gostak

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Почитал комментарии, немного удивился,

почемы Вы так думаете всеобще? Я совсем другово мнения

Заръясните своё мнение

Friday, August 14, 2009 3:36 AM by Kitausa

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

You are absolutely right in this post. That something is unusual and it is a great idea. I support you.

Friday, August 14, 2009 9:06 AM by Natovech

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Почитал предыдущие комменты, чесно говоря разочеровался.

Много мнений людей, которые не понимают по этой теме ничего.

Предыдущие комментаторы, давайте свяжемся по асе или почте, для обсуждения данного материала

и я готов высказать свою точку зрения

Friday, August 14, 2009 6:04 PM by Anime

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Не могу не согласиться с предыдущим оратором.

Но я бы сказал немного по-другому.

Friday, August 14, 2009 6:59 PM by BIGincorp

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Согласен с постом, но есть некоторые не точности=(

Saturday, August 15, 2009 3:37 AM by Selion

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Excellent post, after reading several articles on the subject understand that there are not looked on the other hand, a post as a very interesting

Saturday, August 15, 2009 6:21 AM by Oritot

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Excellent post, after reading several articles on the subject understand that there are not looked on the other hand, a post as a very interesting

Sunday, August 16, 2009 4:27 AM by Ritone

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Sorry, no can help. But I am confident that you will find the right solution. Do not despair

Sunday, August 16, 2009 5:51 AM by SeOBum

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Присоединюсь к предыдушим комментам, хотя у меня есть своё мнение по данному вопросу

Sunday, August 16, 2009 8:10 AM by Gypecydayadaf

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Sunday, August 16, 2009 3:05 PM by Rabochiy

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Хорошо  когда блог для людей, приятно находиться..

Monday, August 17, 2009 4:20 AM by turizm

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

You can argue with you on this issue, because only in a dispute can be achieved truth.

Monday, August 17, 2009 8:48 AM by Sochi

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Something I do not see the feedback form, or other co-ordinates the administration of your blog.

Monday, August 17, 2009 1:29 PM by WARLOCKMAN

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Опять-таки достаточно побочная проблема. Вряд ли она кому-то мешает, мне вот лично как то пофиг :)

Monday, August 17, 2009 5:37 PM by Владимир Сенников

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Увлекательно, а продолжение будет?

Tuesday, August 18, 2009 12:14 AM by Fernand

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Присоединяюсь, статья интересная и поучительная

Tuesday, August 18, 2009 8:49 AM by Cinotwina

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Tuesday, August 18, 2009 4:55 PM by wharbokefeafe

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Проблемы со здоровьем? Тогда <a href=http://iammedic.ru/>I am medic</a> вам поможет!

Tuesday, August 18, 2009 5:46 PM by Spraiter

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Согласен с предыдущими мнениями, добавлю в избранное

Tuesday, August 18, 2009 11:54 PM by Emameorek

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hello all,

I'm happy to describe <a href=http://theinvestblog.com>at this page</a> an interesting

type of making money.  Can you imagine that one

can make up to  3% a per day through investments  without limitations in sums ?  

I mean  that even if one has US$1.000,00 one may make the same money in a month !

If anyone is interested welcome to visit my web site www.theinvestblog.com.

Wednesday, August 19, 2009 2:29 PM by Geliosan

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Интересная статья, добавлю в избранное и буду следить за обновлениями

Thursday, August 20, 2009 4:46 PM by Sacha unmannamupe

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Строительные материалы, услуги: прайс-листы, тендеры, новости, описания деятельности строительных компаний, размещаемые производителями, поставщиками, магазинами. Строительство и ремонт в вашем регионе http://aj.am

Так же у нас можно найти :

мелкий ремонт

ремонт генератора

качества ремонта

ремонт стинола

ремонт peugeot

ремонт нижний новгород

ремонт вала

Thursday, August 20, 2009 7:45 PM by Dewshatenew Olga

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Не могу не поделиться радостной новостью. Нашла рецепт тончайших блинчиков.

Очень вкусно  http://shedevry-kulinarii.ru/

Friday, August 21, 2009 5:07 AM by effextula

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hello,

Please, give me some info about most popular dating sites: mens, womens, cristians...

With best regards,

effextula

Saturday, August 22, 2009 2:54 AM by Nvrtextile

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Yet, much remains unclear. If you do not complicate, Sign more on this topic.

Saturday, August 22, 2009 1:04 PM by Dmitriuse

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Кому интересно пишите

Sunday, August 23, 2009 11:21 AM by Korabiner

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Чего-то я не могу понять, что за тема у вашего блога? o_O

Sunday, August 23, 2009 2:04 PM by Cars

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Thanks, useful material. Add your blog to your bookmarks.

Sunday, August 23, 2009 7:40 PM by Likort

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Ну что я могу сказать, в целом статья интересная, но нет самой изюминки.

Не говорю, что я написал бы лучше, но тем не менее(

Monday, August 24, 2009 1:05 AM by Autos

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

I read and feel like home. Thanks to the creators for a good blog!

Monday, August 24, 2009 5:45 AM by wairwaype

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Кто  когда-нибудь пытался <a href=http://smsunlimited.ru>послать sms с чужого телефона</a>. Это   прикольно!

Monday, August 24, 2009 9:39 AM by live soccer scores

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Не говорю, что я написал бы лучше, но тем не менее(

Tuesday, August 25, 2009 1:08 AM by turizm

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

I read online (computer problems) positive feedback on your resource. Do not even believe it, but now convinced personally. It turns out I was not deceived.

Tuesday, August 25, 2009 9:19 AM by umorim

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Интересная статья, думаю следует добавить RSS

Tuesday, August 25, 2009 11:13 PM by Belyikot

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

А чего вы такие длиные посты пишите?

Thursday, August 27, 2009 1:05 AM by Worldgames

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Fully agree with you, about a week ago, wrote about it the same in his blog!

Thursday, August 27, 2009 8:23 PM by Skotina

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Интересная статья, думаю стоит добавить в избранное

Friday, August 28, 2009 12:48 AM by Minerall

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Post interesting and scientific perspective, placing the site selected for further study

Saturday, August 29, 2009 11:42 AM by Админу

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Привет админ.

Наверно хочеш заработать немного ? Я уже зарабатываю на своем сайте.

Вот ссылка http://onlinevse.ru/rabota.php

Это программа баннеров которая платит от 30 копеек за 1 клик. За 1000 кликов платят мне до 700 руб.

Вообщем поставишь увидишь очень удобная и люди сами кликают.

Sunday, August 30, 2009 10:25 PM by AnelayPaply

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Когда надо   шокировать - в этом случае http://wowshock.ru - шок server к Вашим услугам!

Monday, August 31, 2009 4:45 AM by Akuling

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Хорошо написано. Всё-таки инет штука сильная..вот сидиш дома, пишеш в свой блог, а его читают сотни-тысячи людей..и всё это не выходя из дома...В интересное время живём. Удачи вам.

Monday, August 31, 2009 6:44 AM by Akuling

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Хорошо написано. Всё-таки инет штука сильная..вот сидиш дома, пишеш в свой блог, а его читают сотни-тысячи людей..и всё это не выходя из дома...В интересное время живём. Удачи вам.

Monday, August 31, 2009 7:11 AM by Akuling

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Хорошо написано. Всё-таки инет штука сильная..вот сидиш дома, пишеш в свой блог, а его читают сотни-тысячи людей..и всё это не выходя из дома...В интересное время живём. Удачи вам.

Monday, August 31, 2009 8:28 AM by Akuling

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Добавил в букмарки

Monday, August 31, 2009 10:02 AM by Akuling

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Спасибо за пост :)

Monday, August 31, 2009 5:00 PM by Cheavevollill

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

С интересом почитал!!!

Monday, August 31, 2009 5:44 PM by Cheavevollill

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Давно читаю ваш блог. Очень хорошо пишите.

Monday, August 31, 2009 7:30 PM by Lollipop

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Пост заставляет задуматься, но очень устал и думать лень=)

Tuesday, September 01, 2009 5:47 AM by Cheavevollill

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Давно читаю ваш блог. Очень хорошо пишите.

Tuesday, September 01, 2009 6:58 AM by Cheavevollill

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

поддержу автора, посталю + :)

Tuesday, September 01, 2009 9:37 AM by Belmagaz

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Истересная статью. Но я видел много других мнений по этому поводу.

Добавлю в избранное для более подробного изучения

Tuesday, September 01, 2009 6:15 PM by HouffbafDaulp

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Производство и поставка: электроды, сварочные электроды, электроды  МР-3, электроды УОНИ13/55,

для сварки, наплавки и резки металлов со склада г.Орел.

Цены производителя. Продажа сварочных электродов оптом и в розницу по низким ценам.

<a href=metizorel.ru/elecmr.html>%D0%AD%D0%BB%D0%B5%D0%BA%D1%82%D1%80%D0%BE%D0%B4%D1%8B МР-3</a>

Номенклатура поставляемой продукции постоянно расширяется.

Широкий ассортимент электродов позволит и Вам отказаться от долгого поиска оптимального поставщика, заказать всё необходимое оборудование у нас и при этом сэкономить свои

деньги, в том числе на транспортных и других накладных расходах.

Специалисты нашей компании всегда готовы предоставить консультацию о любом товаре, ответить

на все интересующие вопросы, оказать помощь в выборе, оперативно и недорого доставить заказ в Ваш город.

Мы занимаемся этим профессионально! Надеемся, что по большинству направлениям нашей деятельности мы сможем установить с Вами прочные и долговременные отношения!

(4862) 43-90-47, 43-92-47,  43-92-48,  43-91-66

Tuesday, September 01, 2009 7:20 PM by Lobotryss

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Интересная статейка, но сильно многобукф)

Wednesday, September 02, 2009 6:43 AM by Best Key

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

I found very useful information! Yet the work seemed to me a little not ponyatnoy1 ((

Wednesday, September 02, 2009 7:15 AM by IminoBroore

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Продажа: метизы, крепеж, канаты, проволока, электроды, сетка, калиброванный прокат, круг, шестигранник, канаты стальные, канат оцинкованный, канат пеньковый, канат талевый, пряди арматурные, стропы, гвозди, трос грозозащитный, сетка сварная, сетка рабица, сетка тканая, сетка плетеная, проволока колючая, проволока сварочная, проволока вязальная, электроды сварочные, крепеж высокопрочный, а также болты, болты высокопрочные, гайки, шплинты и шпильки, заклепки.

(4862) 43-90-47, 43-92-47,  43-92-48,  43-91-66

Продажа оптом и в розницу по низким ценам.

<a href=http://metizorel.ru>Метизы и метизная продукция производства Северсталь метиз ОСПАЗ - Metizorel.ru</a>

Wednesday, September 02, 2009 8:44 AM by Rubén

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hi, I uploaded the stp file to the list template. Then I execute IISReset, but it still doesn't appear as an option.

Ring a bell?

Wednesday, September 02, 2009 1:52 PM by Maxaman

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Очень интересно и откуда же такое мнение? Не согласен совсем!!!

Wednesday, September 02, 2009 8:10 PM by Nosoprav

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Сильно мало постов размещено в блоге, по чаще обновляйте;)

Thursday, September 03, 2009 6:23 AM by Urinoucounc

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Here are the best new <b>Go Daddy coupons</b>. I just used OK9 today to renew some .com domains and it worked great.

<b>OK7</b> - 10% Discount on any order

<b>OK8</b> - 20% Off $50 or More

<b>OK9</b> - $7.49 Domain Registration and Renewals

**Special Godaddy Code Expires Aug 31, 2009.

Godaddy Promo Code <b>OK25</b> 25% Discount on all hosting plans or any order of $91 or more.

Thursday, September 03, 2009 11:43 AM by ChienceUndive

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Предлагаем: канаты стальные, талевые, вантовые, грузолюдские, грозозащитные, подьемные со склада г.Орел.

Реализуем канаты для дорожных машин, экскаваторов, талей и металлургических кранов, для буровых установок и подьемных устройств, стоячего такелажа, для вагоноопрокидователей .

Цены производителя. Продажа канатов стальных и троса оптом и в розницу по низким ценам.

Номенклатура поставляемых канатов постоянно расширяется.

<a href=metizorel.ru/canatpr.html>%D0%A0%D0%B5%D0%BA%D0%BE%D0%BC%D0%B5%D0%BD%D0%B4%D0%B0%D1%86%D0%B8%D0%B8 и особенности применения канатов стальных</a>

Широкий ассортимент канатов позволит и Вам отказаться от долгого поиска оптимального поставщика, заказать всё необходимое оборудование у нас и при этом сэкономить свои

деньги, в том числе на транспортных и других накладных расходах.

Специалисты нашей компании всегда готовы предоставить консультацию о любом товаре, ответить

на все интересующие вопросы, оказать помощь в выборе, оперативно и недорого доставить заказ в Ваш город.

Надеемся, что по большинству направлениям нашей деятельности мы сможем установить с Вами прочные и долговременные отношения!

+7  (4862) 43-90-47, 43-92-47,  43-92-48,  43-91-66

Thursday, September 03, 2009 7:39 PM by Fleming

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Позитивные у вас посты в блоге, только их сильно мало, по чаще обновляйте блог)

Thursday, September 03, 2009 8:18 PM by NogotoK

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Привет всем! Для меня как для девушки тоже нашлось в этом блоге много интересного. Так держать

Thursday, September 03, 2009 9:09 PM by boincstats

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Я не уверен в актуальности данного материала, слишком обыденно((((

Friday, September 04, 2009 5:36 AM by Cheavevollill

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Хороший блог, так держать!

Friday, September 04, 2009 5:41 AM by Cheavevollill

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Хороший блог, так держать!

Friday, September 04, 2009 8:15 AM by Территория Авто

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

поучительно!!!! гы гы гы

Friday, September 04, 2009 8:52 AM by Cheavevollill

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Ну вообщем то хороший пост

Friday, September 04, 2009 8:57 AM by Cheavevollill

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Ну вообщем то хороший пост

Friday, September 04, 2009 10:50 AM by Cheavevollill

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Тоже есть блог и хотел писать на эту тему :)

Friday, September 04, 2009 10:56 AM by Cheavevollill

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Тоже есть блог и хотел писать на эту тему :)

Friday, September 04, 2009 7:24 PM by AlkogoliK

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Прикольный блог, по сравнению с моим на уровне. Умеют делать если захотят.

Friday, September 04, 2009 11:51 PM by FlashBlack

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Спасибо за поддержку, как я могу Вас отблагодарить?

Saturday, September 05, 2009 3:19 AM by FlashGame

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Спасибо! Понравилось!

Saturday, September 05, 2009 10:25 AM by Tenders

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Отличное наполнение блога, есть что почитать интересного, спс

Saturday, September 05, 2009 4:23 PM by NejikFans

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

шото слишком мутное

Saturday, September 05, 2009 4:31 PM by MiniGame

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

То что надо! Спасибо, давно искал!

Sunday, September 06, 2009 7:28 AM by Kuralesov

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

А почему у вас так мало читателей, по мне отличный блог.

Sunday, September 06, 2009 3:16 PM by Filatelist

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Сделали неплохо, со вкусом. Я как раз делаю свой блог по маркам и для меня сдесь много дельного нашлось.

Monday, September 07, 2009 6:50 AM by Logorifm

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Очень много у вас орфографических ошибок, со временем это пройдёт. Но вы очень хорошо пишите! ;)

Monday, September 07, 2009 6:22 PM by Futurman

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Полностью поддерживаю лестные отзывы о работе авторов, действительно все на высоте.

Monday, September 07, 2009 8:40 PM by Seporinos

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Достаточно интересная статья. Думаю стоит добавить в избранное для дальнейшего изучения

Tuesday, September 08, 2009 1:13 AM by Cheavevollill

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Тоже есть блог и хотел писать на эту тему :)

Tuesday, September 08, 2009 9:17 AM by Суши

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Доставка суши из ресторанов Киева

Tuesday, September 08, 2009 11:41 AM by Cheavevollill

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Хм..понравился пост. А название можно и поорегинальнее :)

Tuesday, September 08, 2009 12:35 PM by Cheavevollill

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Афтарр, молодец!!!

Tuesday, September 08, 2009 12:41 PM by Cheavevollill

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Афтарр, молодец!!!

Wednesday, September 09, 2009 9:06 PM by Meleni

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Мне интересно, сколько средств вложили в раскрутку этого блога. Кто как думает?

Thursday, September 10, 2009 3:57 AM by Suharik

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Текст сух как сухарь, извиняюсь за тафталогию ;)

Thursday, September 10, 2009 10:08 AM by EquarpmirmFar

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Интересно было почитать, спасибо.

Thursday, September 10, 2009 10:14 AM by Taxist

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

В принципе блог неплохой, есть что почитать интересного, так что поддерживаю всех отписавшихся по этому поводу.

Thursday, September 10, 2009 7:59 PM by torrent

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Я думаю, что это — заблуждение. Могу доказать.

Friday, September 11, 2009 1:23 AM by Robert Cordiak

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Saturday, September 12, 2009 4:52 AM by Kinder

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

А мне нравится этот блог, только авторам надо помнить , что посетители разные бывают. Короче учитывайте возростной ценс посетителей.

Sunday, September 13, 2009 2:24 AM by ENCOUSYSANNEK

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Я бы сказал, что материал достаточно интересный и заслуживает повышенного внимания.

Автору особая благодарность.

Sunday, September 13, 2009 7:27 AM by Aviator

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

А может мне тоже ктонибудь подскажет где найти специализированный сайт по оборудованию сто?? Заранее спс всем.

Sunday, September 13, 2009 7:47 AM by Avtogorod

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Скажу честно и откровенно, что у меня совершенно другое мнение.

Поэтому вынужден не согласиться с предыдущими комментаторами.

Sunday, September 13, 2009 12:19 PM by Nogganofan

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Где-то я уже видел подобную статью.

Вы случайно не с рунета её скачали?

Sunday, September 13, 2009 8:16 PM by Onlyjazz

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Моё мнение, что статья достаточно интересная, но всё же требует некоторых дороботок.

Monday, September 14, 2009 2:58 AM by Vinehistory

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Дабы не разлогольствовать, скажу кратко. Материал очень интересный.

Выражаю автору благодарность

Monday, September 14, 2009 3:58 AM by Ditrih

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Побольше бы тематической информации, и будет респект полный.

Monday, September 14, 2009 8:20 AM by Neaktivnih

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Очень полезный материал, но немного тяжёл для восприятия.

Стоит писать более просто, дабы понять саму суть происходящего

Monday, September 14, 2009 12:49 PM by Ubyshka

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Для более подробного анализа, решил прикрутить себе ленту новостей.

Автору огромное человеческое стасибо.

Monday, September 14, 2009 6:34 PM by Topmusic

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Присоединюсь к предыдущим комментариям. Автор постарался на славу

Monday, September 14, 2009 8:01 PM by boruptiottarf

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

http://smsjoker.ru -  

3gp без смс

Tuesday, September 15, 2009 2:39 AM by Sudakskaya

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Материал заслуживает повышенного внимания. Дабы изучить более подробно, добавлю в избранное

Tuesday, September 15, 2009 2:43 AM by Grunit

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Неплохой блог, вполне достойный из того что есть по этой тематике.

Tuesday, September 15, 2009 5:38 AM by Komiks

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Сдесь комменты можно почитать и в цирк не ходить!! бред какойто.

Tuesday, September 15, 2009 8:02 AM by Antares

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Заинтересовался данным материалом не на шутку. RSS добавил и буду следить за обновлениями

Tuesday, September 15, 2009 3:22 PM by Publsta

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Ну прямо в точку, что ещё можно сказать. Только не могу понять, куда пропал автор?

Tuesday, September 15, 2009 3:40 PM by Rulibon

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Не знаю как и кому, но лично мне понравилось, то, что опубликовал автор. Действительно интересно

Tuesday, September 15, 2009 3:43 PM by Taureg

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Народ, подскажите плиз нормальный сайтик по рыбалке и снастям. спасибо заранее всем.

Tuesday, September 15, 2009 6:26 PM by Xtravel

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Ну что можно сказать: достаточно интересно, но всё же требует небольших доработок. Тем не менее выражаю автору благодарность

Tuesday, September 15, 2009 9:51 PM by Antoniy

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Блог сделан грамотоно, так держать и дальше. Молодцы!

Tuesday, September 15, 2009 10:51 PM by RuuuS

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Почему Вы так думаете? У меня своё мнение на этот счёт. Но тем не менее материал интесный и прост для восприятия

Tuesday, September 15, 2009 10:55 PM by Ruuuorg

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Да уж, прочитал статью, автор, а Вы где взяли эти выводы и цитаты?

Если это Ваше мнение, то Вы просто гений.

Wednesday, September 16, 2009 3:32 AM by lady secrets

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Informative, but not convincing. Something is missing, and what do not understand. But I will say frankly: - light and friendly thoughts

Wednesday, September 16, 2009 4:54 AM by vkinoteatrah

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Посмотрел предыдущие комментарии, в целом соглашусь, хотя есть и своё мнение на этот счёт.

Wednesday, September 16, 2009 9:32 AM by DymnIdedaTame

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

В этом что-то есть и мне кажется это очень хорошая идея. Полностью с Вами соглашусь.

Wednesday, September 16, 2009 12:17 PM by slowarow

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

А будет ли продолжение данного материала? А то мне кажется, что он немного не закончен

Wednesday, September 16, 2009 3:02 PM by Donter

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Совсем все неплохо сделано в этом блоге, приятно находится.

Thursday, September 17, 2009 1:03 AM by SogViefegop

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Мне очень жаль, что ничем не могу Вам помочь. Надеюсь, Вам здесь помогут. Не отчаивайтесь.

Thursday, September 17, 2009 6:16 AM by buhtarman

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Очень давно искал подобный материал и вот наконец нащёл. Особая благодарность автору

Thursday, September 17, 2009 11:25 AM by Трубочист

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Прикольно получилось. Но я обычно другими способами пользуюсь

Thursday, September 17, 2009 2:24 PM by deezy

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Видел уже подобный материал в интернете, но все равно интересно почитать повторно

Thursday, September 17, 2009 5:48 PM by alkakuzmina

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

надо занести сайтик в закладки...

Thursday, September 17, 2009 9:08 PM by bizfo

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Хотел бы спросить комментаторов, а почему Вы такого мнения? У меня допустим есть другое мнение

на данный счёт

Thursday, September 17, 2009 9:18 PM by avtoban

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Никогда не думал, что так может быть. Мне очень понравилась статья

Friday, September 18, 2009 12:17 AM by Патифонов

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Что ни говори, а жизнь забавная штука и ничего нельзя знать полностью. Вроде бы и материал данный в статье знаком, а все равно открыл для себя некоторые моменты. Наверно по этой причине и растет мой ридер не по дням, а по часам. Хотя думаю не у меня одного :)

Friday, September 18, 2009 5:38 AM by alenka911iv

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Все очень здорово)))

Friday, September 18, 2009 5:48 AM by diktionarys

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Написано со вкусом, по этому думаю стоит присоединиться к предыдущим комментариям

Friday, September 18, 2009 6:21 AM by diktiotos

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Прочитал всё это и задумался над смыслом жизни. Неужели так бывает?

Friday, September 18, 2009 7:10 AM by planbiz

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Good post! I found for myself a lot of useful new and interesting! I'm going to link to other ladies in ICQ

Friday, September 18, 2009 8:00 AM by Adler

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Вроде все в порядке, только по ссылке почему то не могу перейти

Friday, September 18, 2009 9:19 AM by vasyafrol09

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Да уж.

Где-то примерно так я и представлял

Friday, September 18, 2009 12:51 PM by ingamconal

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

А ты что в этом разбираешься

,

Friday, September 18, 2009 3:49 PM by Stroinaya

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Привет девченки! Не подскажите мне хороший ресурс по косметологии, буду всем признательна за ссылочку.

Friday, September 18, 2009 4:08 PM by JordanSnap

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

У меня сегодня два приятных события, нашел ваш форум -

kinonovinkidlyavas.ru и лето закончилось). Теперь можно и на покой...<a href=karshinar.info/.../a>

Friday, September 18, 2009 10:03 PM by EvedierryTave

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

современные концепции науки http://knowledgebox.ru -

рен тв архив

библиотека президента

Saturday, September 19, 2009 3:52 AM by Mobilecl

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Чётко, кратко и интересно. Наверное правильно говорят, что краткость сестра таланта

Saturday, September 19, 2009 6:42 AM by Таня Р.

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Прочитала статью и вспомнилось несколько крылатых фраз " Время - наилучший учитель жизни." Вот уж точно, ведь еще и полгода назад я и понятия не имела о многих "словечках" из этой статья, а сейчас уже подросла немного как блоггерша, можно и нос поднять кверху. И вообще порой время тянется так медленно, что кажется, что оно остановилось. В такие моменты я залезаю в интернет и времени просто не хватает+ да и у вас блог, должно быть отнимает уйму времени.

Saturday, September 19, 2009 10:26 AM by ASSISTENT

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Случайно попал на этот блог, честно скаже что понравился очень, буду постоянным посетителем.

Saturday, September 19, 2009 12:53 PM by a001sasha

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Время - драгоценный подарок,

данный нам, чтобы в нем стать умнее,

лучше, зрелее и совершеннее.

))

Saturday, September 19, 2009 1:42 PM by Veter

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Прикиньте, если бабушек посадить за компы – какой поток комментов бы был. Они ведь любят сплетни. Да здравствуют ноуты для бабушек возле подъездов :)))

Saturday, September 19, 2009 2:13 PM by zhanavanilova

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

ну вообще-то,

да примерно где-то так

спасибо за информацию.

Saturday, September 19, 2009 2:14 PM by zikcom

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Помоему очень интересная статья, я прочитал с большим удовольствием. Благодарю

Saturday, September 19, 2009 2:22 PM by Nicetravel

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Для более подробного и внимательного изучения добавил в избранное. Буду изучать

Saturday, September 19, 2009 2:38 PM by Telefonist

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

По поводу отзывов по работе над блогом полностью согласен, действительно хорошо сделали.

Saturday, September 19, 2009 4:33 PM by Codik

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Достойный внимания блог, продолжайту в том же духе.

Saturday, September 19, 2009 6:06 PM by umnayafeya

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Будь безупречным.

Я говорила тебе это уже двадцать раз.

Быть безупречным - означает раз и навсегда выяснить для себя,

чего ты хочешь в жизни, и тем самым

поддержать свою решимость достигнуть этого.

А потом делать все от тебя зависящее и даже больше для того,

чтобы воплотить в жизнь свое стремление.

Если ты не решился ни на что, ты просто-напросто

в суматохе играешь с жизнью в рулетку.)

Sunday, September 20, 2009 8:16 AM by strallinfo

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Informative, but not convincing. Something is missing, and what do not understand. But I will say frankly: - light and benevolent thoughts.

Sunday, September 20, 2009 2:00 PM by EvedierryTave

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

концепции права http://smsunlimited.ru/nfo2 -

создание архива

библиотека компонентов

Sunday, September 20, 2009 4:30 PM by zhanavanilova

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

еще раз

спасибо вам за информацию

Monday, September 21, 2009 12:24 AM by Xautoorg

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Очень интересный и познавательный материал. Пришёлся как раз в пору

Monday, September 21, 2009 2:06 AM by Blogbaster

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Всем привет, тут вроде больше спама чем нормальных комментов...

Monday, September 21, 2009 5:50 AM by dvorikis

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Мне очень понравилось. Благодарю автора

Monday, September 21, 2009 6:11 AM by Cgrealitys

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

У меня этот материал вызвал крайную озабоченность. Добавил в избранное

Monday, September 21, 2009 9:48 AM by Mytourism

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Давно искал такой материал, перерыл весь рунет! Рад что наконец нащёл

Monday, September 21, 2009 5:53 PM by Дима

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Наткнулся на блог случайно – понравилось… Удачи в развитии!

Tuesday, September 22, 2009 1:15 AM by downlon

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Не могу согласится с многими здесь. Давайте обсудим данную тему более подробно

Tuesday, September 22, 2009 5:39 AM by AvtoSeo

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Мне кто нибудь подскажет хороший сайтик по корейским машинкам в Москве? Или что нибудь в этом плане. спс

Tuesday, September 22, 2009 7:18 AM by istanbul evden eve nakliyat

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

www.gaziogluevdenevenakliyat.com istanbul evden eve nakliyat evden eve taşıma evden eve istanbul evden eve nakliye nakliyat nakliye istanbul evden eve istanbul evden eve nakliyat evden eve taşıma evden eve istanbul evden eve nakliye nakliyat nakliye istanbul evden eve

Tuesday, September 22, 2009 8:10 AM by sloreali

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Смотрю мнения расходится, не пойму с чем это связано, вроде всё описано достаточно чётко

Tuesday, September 22, 2009 8:10 AM by CoavaiffFrove

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Хорошая http://clubs-life.ru/ - клубная музыка на сайте clubs-life.ru

Tuesday, September 22, 2009 2:13 PM by ruslonet

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Автору конечно же респект, но заметил несколько неточностей в описании. Давайте постараемся обсудить их вместе

Tuesday, September 22, 2009 2:39 PM by SeregaDertin

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Полностью все усироило меня в этом блоге, нашел все что хотел. Везде бы так делали.

Tuesday, September 22, 2009 3:37 PM by OxymnnumniZ

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

У меня сегодня два приятных события, нашел ваш форум -

kinonovinkidlyavas.ru и лето закончилось). Теперь можно и на покой...<a href=o-nds.ru

Tuesday, September 22, 2009 11:25 PM by imageorg

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Хотел бы задать деликатный вопрос. Могли бы Вы более подробно расписать эту информацию?

Wednesday, September 23, 2009 12:38 AM by Меринолюб

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Любопытная темка была поднята, но как-то вяло её обсуждают(

Wednesday, September 23, 2009 3:37 PM by meninvest

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Strange but true. Your resource is expensive. At least, at its auction it could sell for good money.

Wednesday, September 23, 2009 5:41 PM by attinyrhignaw

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Someone Leaked the movie from the studios and its great! The Sceanrio and the plot was extreamly well played out. i loved every minute of it!

<a href=tinyurl.com/mmehqq>Watch The New Twilight Movie Online Now</a>

Thursday, September 24, 2009 4:15 AM by leadbiz

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

I would have added something of course, but in fact said and written about almost everything.

Thursday, September 24, 2009 2:12 PM by Metalchik

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Материал интересный, если сравнить с тем что я видел раньше, но всё же требует некоторых уточнений

Thursday, October 08, 2009 1:18 AM by plekBiliree

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Очень забавная информация

Thursday, October 08, 2009 2:50 AM by Kredkard

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Продам поддельные банковские карты Visa Gold, Platinum, Mastercard, дубликаты карт, балансы от 1000$  , оплата после получения, гарантия надежности, ищем партнеров по сбыту кредитных карт, постоянным покупателям скидки, кредитки с пин кодом, дамп+пин, все по честному, пишите на емайл нам kredkard@gmail.com

Friday, October 09, 2009 3:44 AM by Спортсмен

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Ничего себе блог, просто слов нет, как я доволен, что его нашёл=))

Friday, October 09, 2009 7:12 AM by Gvozdey

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Очень интересные мнения. Придержусь большинства, так как они более адекватны

Saturday, October 10, 2009 12:03 AM by Frecos

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Однозначно, уверен, что многие не правы в своих репликах

Saturday, October 10, 2009 6:38 AM by Annoura

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

I'm going to get an iPhone - I just haven't decided which carrier to go through yet. I'm heavily leaing towards Virgin at the moment; how is their coverage and customer service? They seem a lot cheaper than everyone else in terms of what comes out of the plan.

________________

[url=www.youtube.com/watch]unlock iphone 3gs[/url]

Saturday, October 10, 2009 9:35 AM by Serzhik

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Несовсем понял что написали, можно сдесь и не писать об этом.

Sunday, October 11, 2009 9:26 AM by moscowserg

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Доброго времени суток. ТС, Ваш пост весьма интересен. Я думаю в комментах писать свою мыслю не буду. Пишите в аську

Sunday, October 11, 2009 9:29 PM by Duptpluse

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Get info on <a href=virt.kernelnewbies.org/VynumyEohyce airline</a> international society of women airline pilots stuff Whith mesa airlines phoenix arizona and this is the best resource on indian airline industry 2008 .

Sunday, October 11, 2009 9:38 PM by Hafodax

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

<>..]просто засраны постами как на пример weblogs.asp.net - точнее не постами а спамом. когда я поставила себе капчу, то просто в <>..]

Monday, October 12, 2009 1:22 AM by Автомонстр

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Ничего себе ты пишешь, как у тебя силы воли хватает столько писать?

Monday, October 12, 2009 9:56 AM by FakCypeBype

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Мне не ясно.

http://www.lk009.info

Monday, October 12, 2009 7:10 PM by Ключи для касперского

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Нормально так написал.

Tuesday, October 13, 2009 2:05 AM by ofigennoe.ru

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Money making ideas for girls raising money for our church?

Tuesday, October 13, 2009 12:41 PM by Gameszoo

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

браузерная онлайновая игра - стратегия + социальная сеть.

успевай - http://3apycb.ru/

Tuesday, October 13, 2009 1:10 PM by http://www.elena-horvatova.ru/

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

 Правильные вопросы задаешь, Ева,  похвалил Смирнов.  Тебя не просто так пригласили.

Tuesday, October 13, 2009 6:01 PM by football photos

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

This is great.Thanks.

Wednesday, October 14, 2009 3:37 PM by Marceheaphy

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

....может быть ты и прав)

Friday, October 16, 2009 2:20 AM by Vsegame

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Очень привлекательная новость, думаю стоит добавить в избранное для дальнейшего изучения

Friday, October 16, 2009 5:40 PM by loyafHago

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Можно и так, конечно, но вот пока с юмором не могу к этому относится...может со временем... А пока умничаю...

Friday, October 16, 2009 10:53 PM by dom2

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Здравствуйте! Советую вам зайти на проект содержащий видео <a href=http://smotridom2.ru>Дом 2</a>.

Saturday, October 17, 2009 1:03 AM by itegreerb

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Пилите, пуфелки, мы золотые ))) и чем больше пилить, тем выше проба )))

Saturday, October 17, 2009 7:06 AM by Firtomirc

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Прочитал, внимательно. Много интересного. Суть ясна.

Saturday, October 17, 2009 8:44 PM by FradlyFleeste

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

ого, вот так и сразу...

Sunday, October 18, 2009 5:30 AM by Ferum

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Пишу статьи для сайтов,если интересует,могу писать Вам за умереную цену.Спасибо!

Tuesday, October 20, 2009 9:27 PM by moneyseo

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Люди видят только то, что они готовы видеть.

:_)

Wednesday, October 21, 2009 12:16 AM by d4qu2w0su

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

У семи нянек… четырнадцать сисек

.

Wednesday, October 21, 2009 1:12 AM by d4qu2w0su

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Обделался легким испугом. Это от чего?

.

Wednesday, October 21, 2009 1:49 AM by d4qu2w0su

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Скульптурная группа: Геракл, разрывающий пасть писающему мальчику.

)

Wednesday, October 21, 2009 3:01 AM by uhdtsa95e9

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Всю ночь ты не смыкала ног..

Wednesday, October 21, 2009 4:20 PM by Battle

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Наконец нашел ту инвормацию,которую так долго искал,спасибо огромное!

Wednesday, October 21, 2009 8:50 PM by Staizemilla

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Даже не знаю, что ответить, дабы не опошлить ситуацию

Thursday, October 22, 2009 4:58 PM by Лимо

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Я в шоке. Автору – уважуха ;)

Thursday, October 22, 2009 8:07 PM by Filmnoviton

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Сущность рационально-интуитивных действий менеджера и бизнесмена.  Виды международных инвестиций.  Теория справедливости.  Торговая политика.

<a href=http://noviton.ru/>теория социального действия</a>

Friday, October 23, 2009 5:58 AM by ФИЛЬМС

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Зачем вам блог непойму ?

Вопрос от девушки

Friday, October 23, 2009 9:23 AM by netcakess

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Мне очень понравилась ваша статья, добавил в избранное и подписался на RSS.

Friday, October 23, 2009 3:08 PM by Turistus

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Хотел задать вопросик, как часто обновления сдесь?

Sunday, October 25, 2009 12:24 AM by Bicarbonat

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Интересные мысли, но в них отсутствует логика(

Sunday, October 25, 2009 6:59 AM by ethemonop

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hello,

Please, give me some info about most popular dating sites.Thx,

ethemonop

Sunday, October 25, 2009 9:00 AM by ethemonop

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hello to All the Guests and Members,

Can you help me to find actual now dating sites.Thanks,

ethemonop

Sunday, October 25, 2009 12:00 PM by Viding

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Оболденный блог, неплохо сделали и наполнение отличное. Уважуха.

Sunday, October 25, 2009 6:37 PM by erarliami

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

комент воткнуть успела )

Monday, October 26, 2009 1:26 AM by Barbazoid

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Интересно, а что у вас было по литературе в школе, судя по постам - отлично ;)

Monday, October 26, 2009 11:33 AM by Football Kits

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

very intteresting article thank yuo so much forsharinh

Monday, October 26, 2009 3:59 PM by Sweden

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Сделано нормально, только сегодня грузилось долговато очень.

Tuesday, October 27, 2009 3:47 AM by Стенозы трахеи и бронхов

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Автор молодец. Затронул тему до глубины. Кстати хочу тоже поделится некоторыми открытиями - <a href=http://pediatro.ru>Трахеобронхомегалия</a>. Неправда ли жесть?

Tuesday, October 27, 2009 7:30 AM by свадебные торты

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Реализьм - это наше всё ))

Tuesday, October 27, 2009 8:00 AM by Annoura

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

I haven't even installed it on my iPhone, as it won't let me. Kind of sucks big time.

________________

[url=www.youtube.com/watch]unlock iphone 3g[/url]

Tuesday, October 27, 2009 4:56 PM by Expresso

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Обязательно добавлю в избранное и подпишусь на RSS для более подробного изучения материала

Tuesday, October 27, 2009 4:57 PM by Bestbabess

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Давно искал этот материал. Очень интересно. Добавлю в избранное. Спасибо автору

Wednesday, October 28, 2009 10:52 AM by vlad_top

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Можно вашу статью разместить на моем сайте?

Wednesday, October 28, 2009 11:01 PM by Tymnaffefly

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

И вот он твой герой

Thursday, October 29, 2009 2:46 AM by Adobe Creative Suite 3 Master Collection for Mac

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

You always can buy <a href=http://www.construction-software-advice.com>Adobe CS4 Master Collection</a> in our shop.

Thursday, October 29, 2009 4:17 AM by Shvabroid

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Интересные размышления, но думаю они изначально не верны :(

Thursday, October 29, 2009 7:44 AM by Annosibia

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Парадокс, ага :)))

Friday, October 30, 2009 2:09 AM by Babulig

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Да в принципе согласен, правильно сделали все.

Friday, October 30, 2009 3:09 AM by vovchikk

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Вы ссылки размещаете на своем сайте?

Friday, October 30, 2009 7:42 AM by Formuler

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Извиняюсь за оффтоп, где вы этим летом отдыхали?

Friday, October 30, 2009 10:39 AM by Nikodim

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Мне как преподавателю очень помог этот блог с информацией. Спасибо Вам.

Friday, October 30, 2009 12:34 PM by gazioglunakliyat@otmail.com

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

istanbul evden eve nakliyat evden eve nakliyat www.gaziogluevdenevenakliyat.com

Friday, October 30, 2009 12:36 PM by gazioglunakliyat@otmail.com

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

www.gaziogluevdenevenakliyat.com istanbul evden eve nakliyat

Friday, October 30, 2009 12:39 PM by www.gaziogluevdenevenakliyat.com evden eve nakliyat

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

istanbul evden eve taşıma

Friday, October 30, 2009 9:41 PM by новый год египет

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

глупо вот так себя убивать!

variant3

|

Saturday, October 31, 2009 12:55 AM by IndilkAlign

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hi Folks!

I'm interested to learn <a href=http://www.kravmagabootcamp.com><b>Krav Maga</b></a>. I have some MMA experience and I'm wondering if Krav Maga is right for me. I'm looking for a mix of <b>Self Defense</b> and a <b>Krav Maga Workout</b>

I need some expert advice here

Best

Lee

Sunday, November 01, 2009 2:45 PM by Benetos

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Видно, что неплохо потрудились с ресурсомЮ побольше бы таких проектов.

Tuesday, November 03, 2009 11:21 PM by wppppppzpppp

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Выражаю администрации сайта свою благодарность! Спасибо Вам, Уважаемые, за полезную информацию! Буду приходить к Вам чаще, если будет появляться новая инфа )

Wednesday, November 04, 2009 2:03 AM by whideotte

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

а какой такой чтоб не бесполезно?

Wednesday, November 04, 2009 3:09 AM by Puteshestvenik

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Отличный пост, но всё равно чего-то малость не хватает :(

Thursday, November 05, 2009 2:46 AM by Sportrener

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Ну очень всё интересно, но очень мало, требую добавки ;)

Thursday, November 05, 2009 3:08 AM by Filmtapicort

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Порядок использования резерва для покрытия потерь по кредитным операциям. Система прав интеллектуальной собственности. Корпоративные нормы. Объекты рационализаторских предложений.

<a href=tapikort.ru/.../a>

Thursday, November 05, 2009 3:43 AM by horoscope

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

It is interesting, but still would like to know more about it. They like!

Thursday, November 05, 2009 3:54 AM by evden eve

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Уважаемые, за полезную информацию! но всё равно чего-то малость не хватает :(

Thursday, November 05, 2009 3:22 PM by torent

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

так и ты ему по настоящему сделай...

Thursday, November 05, 2009 7:12 PM by BigUttemi

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Good day, sun shines!

There have were times of hardship when I didn't know about opportunities of getting high yields on investments.  I was a dump and downright stupid person.  

I have never thought that there weren't any need in large starting capital.

Nowadays, I'm happy and lucky , I begin to get real income.

It's all about how to choose a correct companion who utilizes your money in a right way - that is incorporate it in real business, parts and divides the income with me.

You may get interested, if there are such firms?  I'm obliged to tell the truth, YES, there are.  Please be informed of one of them:

http://legalmoneynow.info

Friday, November 06, 2009 7:04 PM by pepFleefKal

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

New here... Found this site for searching for criminal/dwi/dui attorneys on Long Island, New York.  My cousin came accross the one he hired here and was very pleased with the outcome.

The website is  <a href=>"http://www.licriminalattorney.com"</a>

Again that address is that is www.licriminalattorney.com

I Hope this is advantageous low-down to all.

Saturday, November 07, 2009 1:05 AM by mebvdr

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Автор, Вы достойны уважения!

Saturday, November 07, 2009 6:12 AM by heloSoatt

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Закачать ICQtoolz, RQ, ICQ Lite, ICQ, Trillian, Miranda, QIP на вебсайте  здесь www.wineconseil.com/.../shpargalka_po_sokrascheniyu_ssylok_ukladyvaemsya_v_140_simvolov.html

Saturday, November 07, 2009 10:27 AM by tyumen

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Спасибо! Отлично написано!

Sunday, November 08, 2009 12:53 AM by Kolabirdon

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Блог очень достойный, у вас очень интересная манера письма, продолжайте так и дальше!

Sunday, November 08, 2009 6:33 AM by gunsvd

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Автор, Вы достойны уважения!

Monday, November 09, 2009 2:09 AM by DedeAnype

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hi.

My computer worked not correctly, too much errors. Help me, please to fix errors on my computer.

I used Windows XP.

Thx,

DedeAnype

Monday, November 09, 2009 7:01 AM by mirmodinfo

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

<a href=http://mirmod.info>Новая коллекция модных дизайнерских решений</a> была представлена на неделе мод в Париже. Знаминитыю кутюрье устроили настоящее шоу гламура и моды.

Monday, November 09, 2009 8:48 AM by Annoura

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

I am saving up for an iPhone 3G, then I am getting a piggy back sim so I can use it prepaid so I don't have to spend a fortune on getting out of verizon. When I went to the Apple Store it said $199 for 8GB, and that's the one I am planning on getting.

________________

[url=http://unlockiphone22.com/]unlock iphone 3g 3.1[/url]

Monday, November 09, 2009 9:49 AM by mirmodinfo

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

<a href=http://mirmod.info>Новая коллекция модных дизайнерских решений</a> была представлена на неделе мод в Париже. Знаминитыю кутюрье устроили настоящее шоу гламура и моды.

Monday, November 09, 2009 9:55 AM by mirmodinfo

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

<a href=http://mirmod.info>Новая коллекция модных дизайнерских решений</a> была представлена на неделе мод в Париже. Знаминитыю кутюрье устроили настоящее шоу гламура и моды.

Monday, November 09, 2009 5:00 PM by Liaistesteern

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Отличный сайт и материалы очень познавательные

Wednesday, November 11, 2009 1:56 AM by Lowandosina

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Как вам удаётся так часто обновлять свой проект? Поделитесь секретом?

Wednesday, November 11, 2009 10:59 PM by Wordpress

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Скачивайте темы Wordpress на сайте wordpressfiles.ru

Thursday, November 12, 2009 3:50 AM by Byvaliy

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Ох как много потеряли люди, которые не посетили этот проект, особенно интересна твоя насыщеная жизнь!

Thursday, November 12, 2009 4:23 PM by sathouse

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Автор, спасибо за тему ;)

Friday, November 13, 2009 4:54 AM by avtotemainfo

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

<a href=http://avtotema.info>Все про автомобили</a> можно узнать на сайте автотема.инфо. Последние достижения автопрома, автоспорт и многое другое

Friday, November 13, 2009 5:22 PM by eburgmap

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Спасибо за статью ;)

Saturday, November 14, 2009 11:12 PM by lawerna

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Дабы исключить все сомнения и проанализировать статью, добавляю для изучения в избранное

Saturday, November 14, 2009 11:13 PM by lvuzoz

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Всё вышенаписаное очень интересно и воспринимается достаточно легко для понимания

Sunday, November 15, 2009 1:57 AM by Grafasyn

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Как вам удаётся так часто и интересно писать в блог? Есть какие-то особые приёмы или хитрости, у меня так никогда не получалось :(

Sunday, November 15, 2009 12:55 PM by icqmobileclub

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Автор, спасибо за статью ;)

Sunday, November 15, 2009 7:00 PM by TaGMaimaBoome

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Вот в том-то и дело, что мне и так есть, чем заняться. А я страдаю всякмим..

Monday, November 16, 2009 5:11 AM by evden eve nakliyat

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Обсуждение ара совет ... обсуждение путем SharePoint должна работать ... и сейчас работают!

Monday, November 16, 2009 7:53 AM by Camedeediat

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Good day, sun shines!

There have were times of troubles when I felt unhappy missing knowledge about opportunities of getting high yields on investments.  I was a dump and downright stupid person.  

I have never imagined that there weren't any need in big starting capital.

Now, I feel good, I started take up real income.

It's all about how to select a proper companion who utilizes your funds in a right way - that is incorporate it in real business, and shares the profit with me.

You can ask, if there are such firms?  I have to answer the truth, YES, there are.  Please get to know about one of them:

http://easymoneyltd.info

Tuesday, November 17, 2009 12:38 PM by piter-map

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Отлично написано ;)

Tuesday, November 17, 2009 1:02 PM by Satagaumuff

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Приглашаю всех на мой новый сайт с новостями экономики и банковской сферы

Tuesday, November 17, 2009 2:02 PM by proksordils

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Можно брать материалы с Вашего сайта для размещения на своем блоге?

Tuesday, November 17, 2009 3:50 PM by atoxiaTok

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Интересная мысль...надо будет попробовать

Tuesday, November 17, 2009 10:19 PM by Любовник

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

О! Спасибо автор, очень признателен!

Tuesday, November 17, 2009 11:35 PM by Hotiodiciak

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Ну это просто неверолятно. Как такое может быть?

Wednesday, November 18, 2009 12:51 AM by Quilkymisbusy

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Отличный материал, побольше бы таких статей.

Wednesday, November 18, 2009 1:58 AM by PocaFaveare

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Прикольный сайт но иллюстраций как-то маловато

Wednesday, November 18, 2009 3:19 AM by Peapeussy

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

В общем так все и есть, но Вы не учли некоторые особенности

Wednesday, November 18, 2009 4:24 AM by unapeuddize

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Приходите на новый сайт по финансам. Будем рады новым клиентам.

Wednesday, November 18, 2009 5:27 AM by Shifyiree

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Интересные статьи ждут Вас

Wednesday, November 18, 2009 7:34 AM by Injejuxudge

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Я про все это уже читал

Wednesday, November 18, 2009 8:19 AM by Dave

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Hi,

Your discussion board may have potential for me.

I'm trying to install the template.

I've loaded it in my list template gallery.

When I go to create it, I don't see it listed.

I'm missing something.

Please to assist?

Thanks,

Dave

dprice_2000@msn.com

Wednesday, November 18, 2009 10:13 AM by EnannaFardrot

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Доброй ночи!

Отличная статья! Побольше пишите подобных материалов. Удачи в развитии ресурса!

Wednesday, November 18, 2009 11:24 AM by Broossetraurn

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Я полностью согласен

Wednesday, November 18, 2009 5:46 PM by TifeSweella

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Ну что тут сказать - интересно пишете!!!

Wednesday, November 18, 2009 7:17 PM by dianteescunse

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Вот автор умеет же писать. Толковых статей по этой теме очень мало. Отличный материал.

Thursday, November 19, 2009 12:06 AM by totaqueesee

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Где то я такое уже видел...

Thursday, November 19, 2009 4:12 AM by Meseevork

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Что то у вас с кодировкой не того - через раз грузится как-то криво

Thursday, November 19, 2009 4:58 AM by Makaronnik

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Уж очень мне симпатичен ваш стиль письма и интересные темы, которые вы поднимаете у себя в сайте :)

Thursday, November 19, 2009 5:15 AM by Antamsinimb

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Товарищи профессионалы!

Скажите свое мнение по поводу моего сайта

Thursday, November 19, 2009 6:07 AM by Ditiertthance

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Доброго времени суток!

Добро пожаловать на новый новостной сайт - newsinteragent.ru

Thursday, November 19, 2009 7:36 AM by estatteflet

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Да тут сразу видно что над дизайном роботал профессионал

Thursday, November 19, 2009 4:24 PM by AsyncEnzync

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

руки держи на клавиатуре

Thursday, November 19, 2009 5:28 PM by LemSlensesets

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Вот это сайт - мне до такого еще далеко. Только не пойму что за движок?

Friday, November 20, 2009 2:22 AM by garfHearlylag

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Вот это действительно интересная тема, жаль подробностей нету

http://pararusprobiz.ru

Friday, November 20, 2009 3:32 AM by Rotdaywoppy

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Интересный сайт. Как насчет поменяться баннерами?

Friday, November 20, 2009 4:43 AM by ShommaSaw

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Давно не видел такого ответственного подхода к подаче материала. Желаю вашему ресурсу новых посетителей и рекламодателей :)

Friday, November 20, 2009 6:18 AM by InsottVorgo

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Большая благодарность автору за интересные статьи

Friday, November 20, 2009 7:35 AM by Ontornanozy

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Интересно написан, прям зачитался. Ну все пояду работать

Friday, November 20, 2009 8:38 AM by estaccarise

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Занимательно конечно, но есть более интересные темы для обсуждения

Friday, November 20, 2009 10:23 AM by Utenigreelt

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Интересно написано, я пробовал подобное делать ничего не вышло

Friday, November 20, 2009 11:24 AM by awasustyslect

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Я вот полностью с автором согласна и вообще - отличная статья ;)

Saturday, November 21, 2009 3:41 AM by BuraGueneoutt

# re: Macaw Discussion Board... the way SharePoint discussions should work... and now do work!

Интересные материалы, жаль нет вреени все почитать

Leave a Comment

(required) 
(required) 
(optional)
(required)