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: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 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: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 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: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 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: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?
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: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
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.

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

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.

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;

# 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, 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

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

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!

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.

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

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

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

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...

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!

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

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 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 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 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 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!

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

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 7:02 PM by Serpantin

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

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

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 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 5:46 PM by Spraiter

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

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

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

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

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

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 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 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

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 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 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 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!

Я думаю, что это — заблуждение. Могу доказать.

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!

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

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!

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

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 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 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 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.

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!

Очень забавная информация

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 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: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 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 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!

Можно и так, конечно, но вот пока с юмором не могу к этому относится...может со временем... А пока умничаю...

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!

Я в шоке. Автору – уважуха ;)

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 7:30 AM by свадебные торты

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

Реализьм - это наше всё ))

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 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

|

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: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!

так и ты ему по настоящему сделай...

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 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 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 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 должна работать ... и сейчас работают!

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 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!

Интересные материалы, жаль нет вреени все почитать

Saturday, November 21, 2009 3:10 PM by груз

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

так он вообще тода не встанеть

variant3

Monday, November 23, 2009 7:40 PM by Poettemus

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

И вот он твой герой

Tuesday, November 24, 2009 12:48 PM by artemushek

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

Что то в верхнем углу высплыло, и Каспер показал что сайт заражон вирусом,

аффтар, да у тебя iframe  вирус ...

Tuesday, November 24, 2009 1:41 PM by artemushek

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

Что то в верхнем углу высплыло, и Каспер показал что сайт заражон вирусом,

аффтар, да у тебя iframe  вирус ...

Tuesday, November 24, 2009 6:47 PM by entesinumet

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

понимаю,шалунишка)))

Friday, November 27, 2009 9:26 PM by Nisealgesia

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

Вопрос не праздный!

Saturday, November 28, 2009 6:07 PM by Cilmhumma

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

Ты права,очень обидно Да шутим мы так

Sunday, November 29, 2009 9:05 AM by спортивная медицина

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

Вот решил поделится с общественостью интересным медецинским каталогом - http: //medoses.ru

Sunday, November 29, 2009 7:17 PM by спортивная медицина

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

Вот решил поделится с блогосферой интересным медецинским каталогом - http: //medoses.ru

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

Вот решил поделится с блогосферой интересным медецинским каталогом - http: //medoses.ru

Sunday, November 29, 2009 11:58 PM by Vladislav

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

Прикольно у вас получается, так быстро интересные посты и основательные статьи клепать, респект и уважуха!

Thursday, December 03, 2009 7:24 PM by porsche

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

Thanks, very good.

Friday, December 04, 2009 8:39 AM by TurdeMonacos

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

Часто поиск не дает результата. А жаль...

Monday, December 07, 2009 2:20 AM by stroika-ltd

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

Please write more posts on this topic. It is interesting to find out more

Wednesday, December 09, 2009 4:52 AM by Кода

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

Опубликуйте ещё одну статью на эту тему.Тема действительно интерестная!

Wednesday, December 09, 2009 6:26 AM by gudsto

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

Thanks, very good!

Wednesday, December 16, 2009 6:52 AM by العاب

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

Is there any update to this tool, the last update was years ago, i think it's a good tools, but i get a a little errors.

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

�������������� ������� ��������� ������������ ������

����������� ������������� �������������� ������

��� �������������� �������

���� �������� �������������� ������� ���

�������������� ������� ��������� �������� �������

Saturday, January 02, 2010 10:55 AM by EldenduseDend

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

Начало многообещающее. Добавил в закладки, завтра дочитаю :)

Sunday, January 03, 2010 4:55 AM by Tema

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

По моему, вам надо установить антиспам плагин. Можете, кстати, скачать у меня на сайте :) Был бы очень благодарен :)

Sunday, January 03, 2010 6:13 AM by trailtLyporry

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

Отличный сайт! ен6

Sunday, January 03, 2010 9:45 AM by Tema

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

По моему, вам надо установить антиспам плагин. Можете, кстати, скачать у меня на сайте :) Был бы очень благодарен :)

Sunday, January 03, 2010 5:07 PM by bersiveinvecy

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

Интересная статья, но не все понял. 4р

Sunday, January 03, 2010 5:24 PM by KoXX

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

Интересно, а главное познавательно Спасибо :)

Monday, January 04, 2010 2:28 AM by Wefeawack

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

Давно думал на эту тему, а тут можно подробнее изучить 7а

Monday, January 04, 2010 4:23 AM by waymnaphy

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

Хотелось бы пообщаться на эту тему 9а

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

Да сдесь есть что для себя взять,автору респект

Monday, January 04, 2010 9:57 AM by enuddisee

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

Занес в закладки и жду новых статей 6л

Monday, January 04, 2010 12:24 PM by Menumurgelm

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

Некоторые моменты хотелось бы уточнить 8в

Monday, January 04, 2010 2:10 PM by dogdudleyru

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

Читаешь иногда такое и понимаешь, что лучший собеседник - собака!

Monday, January 04, 2010 2:17 PM by acequeSuehype

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

Буду с нетерпением ждать следующую статью 8л

Monday, January 04, 2010 2:52 PM by игры онлайн бесплатно

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

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

Tuesday, January 05, 2010 5:19 AM by cyclelewfreri

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

Интересно пишете, мне понравилось 7в

Tuesday, January 05, 2010 7:57 AM by putuanuannece

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

Очень интересная статья, жду продолжения 6а

Tuesday, January 05, 2010 9:49 AM by Praxurbarve

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

С нетерпением жду следующих порбликаций 5в

Tuesday, January 05, 2010 12:03 PM by Джуманджи

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

Любопытный бложек, интересно сколько вы его уже ведёте и сколько с него получаете?

Tuesday, January 05, 2010 12:34 PM by artenryLeno

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

Некоторые вопросы хотелось бы уточнить 5д

Tuesday, January 05, 2010 3:12 PM by Cawamoratok

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

Очень хорошо пишет автор 7п

Wednesday, January 06, 2010 2:41 AM by Troriavag

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

Приятно было почитать эту статейку 5п

Wednesday, January 06, 2010 5:25 AM by Honaalmordlag

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

Некоторые моменты хотелось бы уточнить 6а

Wednesday, January 06, 2010 7:28 AM by dallpewly

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

Хорошо пишет, жаль, что быстро дочитал 5п

Wednesday, January 06, 2010 3:08 PM by speeveasind

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

Занес в закладки, буду следить дальше 5а

Wednesday, January 06, 2010 5:43 PM by allotounoms

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

Очень понравилась статья, только кое-что хотелось бы уточнить 5ф

Wednesday, January 06, 2010 6:49 PM by Marek

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

Ну наконец! Свежая инфа. Как раз доклад делаю по смежной теме

Wednesday, January 06, 2010 7:15 PM by Andronicus

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

Ну как ни крути что-то такое есть в ваших постах :)

Wednesday, January 06, 2010 9:21 PM by Gleb

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

Где-то я подобное читал. Ну или по крайней мере пишите очень похоже на Тему.

Wednesday, January 06, 2010 10:05 PM by Medard

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

А можно часть поста использовать в местной газете? Естественно с ссылкой на первоисточник?

Thursday, January 07, 2010 3:11 AM by Tulsixkixlits

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

Узнал много интересного и жду ещё 5р

Thursday, January 07, 2010 2:23 PM by Iniblyruili

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

Мне понравился стиль автора 3ы

Thursday, January 07, 2010 3:56 PM by Fleefefug

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

Очень понравилась статья, но кое-что не совсем понял 4п

Thursday, January 07, 2010 5:24 PM by Extimizteesse

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

Понравился стиль автора, жду ещё статей 4п

Friday, January 08, 2010 1:14 AM by Kronid

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

Да, а ведь написано действительно хорошо..

Friday, January 08, 2010 3:00 AM by benInhebraBuh

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

Хорошо пишете, мне понравилось 5р

Friday, January 08, 2010 5:07 AM by Sponysoto

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

С нетерпением жду следующих статей 4ж

Friday, January 08, 2010 3:03 PM by Usefpibiree

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

Читал с удовольствием, очень советую 4э

Friday, January 08, 2010 6:17 PM by bupeinciche

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

Понравился стиль автора 4ы

Saturday, January 09, 2010 4:28 AM by ThemIodinneni

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

Очень понравились статьи, только не все понял 5х

Saturday, January 09, 2010 6:48 AM by artignunarync

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

Прикольно пишете, жду следующих статей 4д

Saturday, January 09, 2010 10:08 AM by FarmPradeobre

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

Некоторые моменты не понял, но интересный материал 5л

Saturday, January 09, 2010 1:33 PM by seisiombkeM

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

Много интересного узнал 3д

Saturday, January 09, 2010 4:37 PM by sallemomy

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

Интересно автор пишет, только некоторые моменты хотел уточнить 4ф

Sunday, January 10, 2010 2:54 AM by Smoorekemioky

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

Прикольно автор подобрал материал 3а

Sunday, January 10, 2010 5:27 AM by slurrycheergy

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

Очень понравился стиль автора 3ю

Sunday, January 10, 2010 5:38 AM by Bronislaw

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

Качественно пишите :)

Sunday, January 10, 2010 7:27 AM by Victor

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

Блин, давно пора начать работать, а я все не могу оторваться!!

Sunday, January 10, 2010 9:06 AM by polAlilenog

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

Очень понравились статьи 3д

Sunday, January 10, 2010 12:57 PM by nagoorito

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

Взял в закладки, хорошая подборка 2ф

Sunday, January 10, 2010 4:24 PM by TYHODDERRORRY

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

Респект автору, мне очень понравилось 2ф

Sunday, January 10, 2010 11:52 PM by StelpVewkeeft

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

Хорошую подборку сделал автор блога 1и

Monday, January 11, 2010 6:35 AM by Praifyicync

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

Утащил в закладки, интересно пишет автор 5х

Monday, January 11, 2010 10:03 AM by MariPiepary

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

Буду почаще заглядывать в этот блог, отличная подборка 4в

Monday, January 11, 2010 1:16 PM by AVAIBESOITTEE

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

Мне понравился стиль автора, очень креативно 3р

Monday, January 11, 2010 4:53 PM by NactOccaceath

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

Очень интересные статьи 2р

Tuesday, January 12, 2010 1:46 AM by Togeusene

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

Очень понравился стиль автора 4и

Tuesday, January 12, 2010 5:36 AM by neiquerdemi

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

Мне очень понравилась подборка статей 3м

Tuesday, January 12, 2010 8:30 AM by Authohabtrago

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

Прикольные статьи подобраны 2а

Tuesday, January 12, 2010 11:28 AM by Faidejeaple

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

Автор точно не пожалел времени на подбор материала 2д

Tuesday, January 12, 2010 2:48 PM by SoovetaShuh

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

Мне понравилась подборка автора 3а

Wednesday, January 13, 2010 1:35 AM by enriforkikada

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

Читал с удовольствием, автор постарался 3ч

Wednesday, January 13, 2010 4:48 AM by Isotortudgese

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

Мне очень понравилась подборка, интересный материал 2с

Wednesday, January 13, 2010 7:09 AM by SeptSmefist

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

Понравилось, даже зачитался, много нового 2м

Wednesday, January 13, 2010 9:32 AM by Inwanvats

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

Очень интересный материал подобран 2я

Wednesday, January 13, 2010 12:18 PM by HabjableWague

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

Постарался автор, респект 2с

Wednesday, January 13, 2010 2:43 PM by VODYAFFOSSY

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

Очень интересно было ознакомиться с подборкой 3с

Wednesday, January 13, 2010 3:28 PM by Warez-OFF.Net

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

На Warez-OFF.NeT - Общайся сколько влезет,  море софта, игр, фильмы. Скачать видеоклипы . Качай на шару - общайся свободно! ТормозOFF и предела NET!

Wednesday, January 13, 2010 11:51 PM by PakePeend

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

Очень понравился стиль автора, прикольно 3м

Thursday, January 14, 2010 2:30 AM by sooneeOthew

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

Понравился стиль автора, прикольно 2я

Thursday, January 14, 2010 4:39 AM by Ordeklyfref

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

Респект автору, интересная подборочка 3ч

Thursday, January 14, 2010 7:31 AM by PimiCamnRal

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

Даже не смог оторваться пока не дочитал, очень интересно 3ч

Thursday, January 14, 2010 8:14 AM by BiznesAbotHill

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

Не думал, что найду это здесь.

Thursday, January 14, 2010 10:07 AM by Dityassauhtus

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

Интересные статейки собраны, мне понравилось 2с

Thursday, January 14, 2010 12:59 PM by WrenueVelttex

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

Обязательно почитайте, мне понравилось 2ч

Thursday, January 14, 2010 3:48 PM by Stedayzoobady

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

Почитал статьи и мне очень понравились 2в

Friday, January 15, 2010 12:01 AM by ododernesanny

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

Хорошо автор потрудился на славу 2я

Friday, January 15, 2010 1:57 AM by FepGupGeono

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

Мне очень понравились статьи, хорошая подборочка 2ф

Friday, January 15, 2010 3:48 AM by cegebroatoerb

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

Очень понравилась подборочка 1м

Friday, January 15, 2010 5:49 AM by drygroura

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

Неплохо потрудились над сбором информации 2й

Friday, January 15, 2010 7:41 AM by dogdudleyru

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

Читаешь иногда такое и понимаешь, что лучший собеседник - собака!

Friday, January 15, 2010 7:47 AM by PeenteevabLef

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

Очень интересные статьи попались 2ч

Friday, January 15, 2010 9:45 AM by antaptinA

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

Мне очень понравился блог 3ч

Friday, January 15, 2010 11:41 AM by IllelveAnaefe

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

Прям зачитался, интересно было 4ы

Friday, January 15, 2010 1:50 PM by spoulseSourge

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

Очень интересно было ознакомиться 4с

Saturday, January 16, 2010 12:32 AM by Hypemumnpaync

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

С большим удовольствием прочитал блог 5с

Saturday, January 16, 2010 4:03 AM by RibFoentignig

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

Читал с удовольствием, а такое бывает редко 4м

Saturday, January 16, 2010 5:36 AM by faxlypeEluple

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

С огромным удовольствием ознакомился с материалом блога 3и

Saturday, January 16, 2010 1:47 PM by crurneagelync

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

С удовольствием прочитал блог 6с

Saturday, January 16, 2010 7:56 PM by konditerjex

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

Очень замечательно!

Sunday, January 17, 2010 2:25 AM by esseceexirm

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

Мне очень понравился стиль автора 5ч

Sunday, January 17, 2010 7:07 AM by admisissupt

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

Интересная информация подобрана автором 4с

Sunday, January 17, 2010 8:28 AM by MasterTelefonchik

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

Очень ценное замечание. Обязательно запишу это.

Sunday, January 17, 2010 10:13 AM by Orillrhyday

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

Неплохо поработал автор над материалом, мне понравилось 4и

Sunday, January 17, 2010 12:03 PM by obseteDethy

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

Прочитал с удовольствием респект автору 5м

Sunday, January 17, 2010 2:53 PM by payossyslekly

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

Интересная подборка материала 4в

Monday, January 18, 2010 2:49 AM by Searheefs

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

Очень рекомендую почитать блог, интересный материал 5ч

Monday, January 18, 2010 4:22 AM by kazantiprjex

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

вааааааа не то что улыбнуло оборвало полностью супер просто давай исчо

Monday, January 18, 2010 4:29 AM by Vowtallyacica

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

Получил удовольствие от прочтения 5м

Monday, January 18, 2010 6:28 AM by Evattepiemi

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

Мне погнравился стиль автора, очень неплохо 4с

Monday, January 18, 2010 8:12 AM by PERSSONVETS

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

Получил удовольствие от ознакомления с новым материалом 6м

Monday, January 18, 2010 11:01 AM by lyncdeesolley

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

Прикольно автор статейки подобрал 4с

Monday, January 18, 2010 1:25 PM by Maksspeva

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

Получил удовольствие от представленного материала 5м

Monday, January 18, 2010 3:59 PM by ExastatFaig

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

Очень неплохая подборочка 4м

Monday, January 18, 2010 11:38 PM by Bersdoott

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

Достаточно актуальный материал, можно обсудить 5м

Wednesday, January 20, 2010 5:25 AM by Antikrizismir

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

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

Wednesday, January 20, 2010 9:54 AM by AnutkaChiffa

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

Да, информацию полезную найти не трудно, а хорошего друга - практически нереально. (

Wednesday, January 20, 2010 12:10 PM by MisterHosterRu

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

Скажите а на каком хостинге Ваш сайт? Открывается и грузится быстро. Зачет!

Thursday, January 21, 2010 10:44 AM by MotoRaserSev

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

Не сразу понял, в чем дело. Но перечитав, все стало понятно. )

Friday, January 22, 2010 8:42 AM by Angelina

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

Хороший материал, спасибо!!

Friday, January 22, 2010 2:53 PM by Trud-Hash

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

шото слишком мутное

Thursday, January 28, 2010 8:38 AM by MisterMobileq

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

И где вы тут видите смысл? Абсурд какой-то...

Thursday, January 28, 2010 1:59 PM by maik

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

И я не вижу смысла

Friday, January 29, 2010 4:18 AM by Drormajok

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

Мдаа..интересный пост. Вот только об этом пишут все кому не лень. Ини что, читают друг у друга новости и своим языком их пересказывают? В сео блогах это особенно заметно. Народ, столько новостей интересных в мире...

Friday, January 29, 2010 4:58 AM by PolinaOdessa

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

Вокруг столько хороших людей - душа радуется )

Friday, January 29, 2010 11:25 AM by Manunchiks

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

Давно искал. Нашел здесь. Все прочитал. Ничего не понял. (

Friday, January 29, 2010 3:41 PM by Antip

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

Вот именно из-за этих постов и стоит вас читать :)

Saturday, January 30, 2010 6:32 AM by evden eve nakliyat

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

very good thanks...

Sunday, January 31, 2010 3:36 PM by Доска бесплатных Qbord

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

Отличная доска объявлений. Если нужно, что-то продать, то обязательно посетите.

Sunday, January 31, 2010 6:32 PM by Ишимск

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

Интересная статья, респект! Спасибо!

Monday, February 01, 2010 2:15 AM by Trud-holi

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

Полностью разделяю Ваше мнение. В этом что-то есть и идея отличная, согласен с Вами.

Monday, February 01, 2010 5:26 AM by vita

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

Спасибо Вам, статья очень интересная и полезная

Monday, February 01, 2010 11:52 AM by RapperTochilo

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

Шикарно тут у Вас. ) Надо будет еще забежать.

Tuesday, February 02, 2010 8:33 AM by vova

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

Очень интересно и непонятно

Tuesday, February 02, 2010 8:41 AM by ваня

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

спасибо, очень интересно

Tuesday, February 02, 2010 11:01 PM by Drormajok

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

мало инфы. Вы бы хоть постарались написать посто-то. Всё-таки вас читает много народа, да и в поисковике по этой теме  вы на первой странице...ай яй яй...не хорошо :(

Saturday, February 06, 2010 6:49 PM by RattJellmex

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

Здраствуйте!  Объясните не далекой, как  загрузить свою фотку на  сей сайт    www.003003.info

Благодарю

Wednesday, February 10, 2010 1:28 PM by MisterCifra

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

Спасибо. Пригодится. )

Wednesday, February 10, 2010 3:01 PM by скачать сканер на телефон

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

Действительно полезняк! А то сколько не лазишь по нету сплошное бла бла бла. Но не тут, и это радует!

Thursday, February 11, 2010 3:02 PM by Mobilkin

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

Вот ведь как хорошо сказал человек! Поддерживаю его целиком и полностью!

Friday, February 12, 2010 6:45 AM by telinua

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

Очень интересно, не ожидал.

Tuesday, February 16, 2010 5:06 PM by UttelmEverm

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

Понравилась темка только кое-что хотелось бы уточнить 5м

Wednesday, February 17, 2010 2:20 AM by erroroluloulp

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

Узнао много новенького 5м

Wednesday, February 17, 2010 4:09 AM by Illifylah

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

Мне понравилась подборочка 5и

Wednesday, February 17, 2010 6:01 AM by Heliexeliabic

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

Кое что хотелось бы уточнить у автора 5п

Wednesday, February 17, 2010 8:40 AM by Stoopssum

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

Понравилось очень читать 3а

Thursday, February 18, 2010 2:16 AM by OCEAPEBUB

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

Неплохая подборочка материала 5а

Thursday, February 18, 2010 4:18 AM by duperurndaups

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

Большую работу провел автор, кое-что хотелось бы уточнить 5м

Thursday, February 18, 2010 6:16 AM by enrodatot

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

Мне понравился стиль, кое-что хотелось бы поподробнее узнать 4ч

Thursday, February 18, 2010 9:03 AM by Cicyteferry

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

Некоторые моменты хотел уточнить 5а

Thursday, February 18, 2010 11:43 AM by neeravext

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

Понравился стиль автора, неординарный 5с

Thursday, February 18, 2010 2:36 PM by aeropessuse

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

Понравилась темка, очень познавательно 5м

Friday, February 19, 2010 1:02 AM by vodichkacool

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

Спасибо, очень интересно.

Friday, February 19, 2010 8:08 AM by Robobsedlerce

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

С нетерпением жду новых материалов 5ч

Friday, February 19, 2010 10:47 AM by Taumndums

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

С удовольствием ознакомился со статейками 5и

Saturday, February 20, 2010 12:53 AM by Gerievapler

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

Мне понравилась тема, только кое-что хотелось бы спросить 6м

Saturday, February 20, 2010 4:32 AM by Unottcaptic

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

Некоторые вещи даже не знал, спасибо автору 5и

Saturday, February 20, 2010 7:33 AM by Sychoancy

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

С удовольствием почитал статьи, интересно написано 5и

Saturday, February 20, 2010 7:57 AM by Anzor

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

Great post! Where your RSS &

Saturday, February 20, 2010 12:06 PM by CletleNudge

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

С нетерпением жду продолжения 5м

Sunday, February 21, 2010 12:31 AM by Dyewaffogeola

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

Подписался на продолжение темы, очень интересно 5ч

Sunday, February 21, 2010 6:33 PM by Anzo

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

Классный пост, хоть и нечего не понял!

Monday, February 22, 2010 2:48 AM by unitochunteem

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

Мне очень понравился подход автора к подбору материала 5м

Monday, February 22, 2010 1:09 PM by Vermeette

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

Подписался и жду продолжения 5м

Monday, February 22, 2010 3:12 PM by POOMBQUEKMYPE

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

С нетерпением жду продолжения 5и

Tuesday, February 23, 2010 3:57 PM by gilredkill

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

Спасибо за интересный материал! Автору респект!

Wednesday, February 24, 2010 1:16 AM by vova

# 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!

Wednesday, February 24, 2010 2:36 AM by toiquiweepaip

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

Мне очень понравилось читать, хорошая подборка материала 5и

Wednesday, February 24, 2010 5:41 AM by AnutkaChiffa

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

Да, информацию полезную найти не трудно, а хорошего друга - практически нереально. (

Wednesday, February 24, 2010 6:12 AM by Diockegesosit

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

С огромным удовольствием прочитал, очень понравилось 6м

Wednesday, February 24, 2010 11:44 AM by Acarfamtema

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

Подписался и жду продолжения темы 6т

Wednesday, February 24, 2010 2:38 PM by Slovar-Ot

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

хаааааа........класс

Thursday, February 25, 2010 2:05 AM by Tywokyhoalo

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

Прикольно пишете, но есть много вопросов 6ы

Thursday, February 25, 2010 4:07 AM by CydayCync

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

Мне очень понравился подход к раскрытию темы 7с

Thursday, February 25, 2010 5:52 AM by Arepogebobjag

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

Некоторые моменты хотелось бы уточнить 6м

Thursday, February 25, 2010 7:49 AM by choopyify

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

Некоторые моменты очень хотелось бы обсудить некоторые моменты 6ц

Thursday, February 25, 2010 9:52 AM by imambumma

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

Постарался атор над подбором темок, респект 6ц

Thursday, February 25, 2010 11:41 AM by CESNUPQUICS

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

Понравилась тема, кое что хотелось бы обсудить 5п

Thursday, February 25, 2010 2:13 PM by Wekgrosse

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

Мне очень понравились статьи, актуально 7ы

Friday, February 26, 2010 1:53 AM by groojerma

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

Мне очень понравилось направление темы 0о

Friday, February 26, 2010 4:03 AM by brurgebrofs

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

Очень понравилась темка 4а

Friday, February 26, 2010 6:30 AM by kextuatatly

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

Получил удовольствие от прочтения 7р

Friday, February 26, 2010 9:37 AM by Immoketenny

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

Много интересных и актуальных моментов затронуто 6п

Friday, February 26, 2010 1:39 PM by flower-Grisp

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

Я точно знаю, что это — ошибка.

Friday, February 26, 2010 3:26 PM by unuctkets

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

Получил удовольствие от материала 7а

Friday, February 26, 2010 4:55 PM by babydiller

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

Материал на сайте строго в тему, полезно и бесплатно. Спасибо!

Saturday, February 27, 2010 2:34 AM by GrootoAllelic

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

Очень понравилось, только некоторые моменты хотел уточнить 9о

Saturday, February 27, 2010 4:41 AM by asypermeple

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

Очень нравится авторский подход 6г

Saturday, February 27, 2010 7:21 AM by muctcrentee

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

Мне очень понравилось 6е

Saturday, February 27, 2010 9:37 AM by affinmemi

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

Хорошо поработал автор 8г

Sunday, February 28, 2010 2:32 AM by Insuttyabancy

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

С нетерпением жду продолжения 9л

Sunday, February 28, 2010 4:41 AM by videostrana

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

Спасибо за информацию. На нашем сайте также ролики любой тематики - от музыки до полезных советов.

Sunday, February 28, 2010 4:49 AM by Fartrinty

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

Очень оригинальный материальчик попался 0ы

Sunday, February 28, 2010 12:38 PM by peactiste

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

Мне понравился стиль и подборочка неплохая 0а

Sunday, February 28, 2010 3:57 PM by moscowsunchik

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

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

Monday, March 01, 2010 1:40 AM by GoneenaPaks

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

С удовольствием отмечу отличную подборку статей у автора 4п

Monday, March 01, 2010 4:09 AM by Zergoododulge

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

Получил удовольствие от прочитанного материала 3а

Monday, March 01, 2010 6:40 AM by Thyhophisiply

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

Мне понравился подобранный материал, зачетно 0п

Monday, March 01, 2010 9:03 AM by rututcom

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

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

Monday, March 01, 2010 9:31 AM by idealdiltur

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

У меня вопрос к автору, где можно почитать более полную информацию по данной теме? Заранее спасибо.

Monday, March 01, 2010 10:55 AM by affolfNeeri

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

Очень прикольно читать подборочку, респект автору 5п

Monday, March 01, 2010 1:09 PM by NORYWEEKHEESS

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

Верной дорогой идете, товарищи

Tuesday, March 02, 2010 3:01 AM by MimiBluevinue

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

Респект автору, хорошо поработал 9ы

Tuesday, March 02, 2010 5:54 AM by CoagofrosyTaf

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

Достаточно полная подборка, молодец автор 5п

Tuesday, March 02, 2010 8:29 AM by Cimiimage

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

Мне понравилось просматривать материал 8т

Tuesday, March 02, 2010 8:47 AM by lidmyfatur

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

Уважаемый автор, Ваш сайт некорректно отображается в IE браузере 7 версии. Подкорректируйте пожалуйста.

Tuesday, March 02, 2010 12:04 PM by Hilsreics

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

С удовольствием почитаю продолжение 6я

Tuesday, March 02, 2010 12:11 PM by tona

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

Очень интересная, полная и доступная информация

Tuesday, March 02, 2010 5:15 PM by luminarsid

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

Эта тема уже достаточно известна, но все равно информация полезна для общего развития!

Wednesday, March 03, 2010 8:43 PM by exisdiliave

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

Нужно попробовать все

Thursday, March 04, 2010 10:33 AM by Секс видео чат

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

Здорово у вас тут! И вы к нам заглядывайте!

Thursday, March 04, 2010 1:03 PM by смотри

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

Как по мне - тема раскрыта четко, спасибо за пост!

Thursday, March 04, 2010 2:30 PM by Argoy-saw

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

Не обманывайтесь на этот счет.

Thursday, March 04, 2010 3:40 PM by Vladimir-dut

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

Извиняюсь, но это мне не подходит. Есть другие варианты?

Thursday, March 04, 2010 5:01 PM by Master-Hon

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

Я думаю, Вы найдёте верное решение.

Friday, March 05, 2010 10:43 AM by AffifeFip

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

Очень неплохо подобраны статьи 2и

Friday, March 05, 2010 4:09 PM by adupsTump

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

Очень онравился стиль автора, прикольно читать 9ф

Sunday, March 07, 2010 12:20 PM by Duma-len

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

Могу порекомендовать зайти на сайт, где есть много статей на интересующую Вас тему.

Sunday, March 07, 2010 2:24 PM by Журналист

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

Спасибо, интересно почитать)

Monday, March 08, 2010 5:35 AM by prigotovchik

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

Это очень интересно. Мы тоже стараемся, чтобы на нашем сайте вы нашли рецепт на свой вкус.

Tuesday, March 09, 2010 9:26 PM by Drormajok

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

Понравился Ваш сайт! В рунете вообще мало чего дельного в блогах пишут. Всё стараются друг у друга скопировать посты. Года 2 назад было интересно ходить по разным блогам-видно было сразу-люди старались писать посты..а щас уже только для яндекса и стараются. Вообщем желаю продолжать Вам в Том же духе.

С уважением Ваш читатель.

Wednesday, March 10, 2010 3:05 AM by uglevodik

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

Очень интересно, спасибо. На нашем сайте мы постарались собрать наиболее полную информацию об углеводах, она изложена подробно и доходчиво. Мы рады, если смогли быть вам полезны.

Wednesday, March 10, 2010 9:39 AM by vova

# 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.

Thursday, March 11, 2010 2:35 AM by vita

# 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 !

Thursday, March 11, 2010 7:10 AM by Drormajok

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

+1 к предыдущему коментарию..

Thursday, March 11, 2010 7:46 AM by miroschek

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

Согласен. У нас на сайте, к примеру, обсуждаются практически все системы и самое разные программные продукты.

Sunday, March 14, 2010 1:14 AM by Drormajok

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

+1 к предыдущему коментарию..

Sunday, March 14, 2010 2:39 PM by bestmeykerchik

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

Спасибо автору за проделанный труд:)

Sunday, March 14, 2010 3:28 PM by Drormajok

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

ООО..давно искал. Забрал в букмарки. Автор, пишите почаще..не забрасывайте блог...Кстати не мешало бы диз поменять.

Monday, March 15, 2010 7:39 AM by Drormajok

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

ООО..давно искал. Забрал в букмарки. Автор, пишите почаще..не забрасывайте блог...Кстати не мешало бы диз поменять.

Monday, March 15, 2010 11:32 AM by IvanMichurinc

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

И здесь тоже не нашел ответа. (

Tuesday, March 16, 2010 2:40 AM by Drormajok

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

а тут есть что почитать :) так держать...не забрасывайте блог.

Tuesday, March 16, 2010 12:31 PM by Drormajok

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

понравился ваш блог

Tuesday, March 16, 2010 1:22 PM by Kamenkacity

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

Отлично! Поддерживаю автора. )

Wednesday, March 17, 2010 12:06 AM by Drormajok

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

понравился ваш блог

Wednesday, March 17, 2010 9:25 AM by motikby

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

Отлично сказано!:)

Thursday, March 18, 2010 6:23 AM by Drormajok

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

Мне понравился ваш сайт. Добавил в букмарки :)

Thursday, March 18, 2010 9:56 AM by IgorDarvin

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

Хорошо изложено, спасибо:)

Thursday, March 18, 2010 7:11 PM by higBereExhigh

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

Действительно и как я раньше не догадался

Friday, March 19, 2010 4:16 AM by bestmeykerchik

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

Спасибо автору за проделанный труд:)

Friday, March 19, 2010 2:00 PM by AnnaGentich

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

Прочитал, понравилось. Биг сенкс)

Friday, March 19, 2010 6:36 PM by Drormajok

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

Хороший пост, бро...так держать!!!

Saturday, March 20, 2010 7:55 AM by amyl

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

Hello all. And Bye.

Saturday, March 20, 2010 2:09 PM by amyl

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

I boocmack your site

Saturday, March 20, 2010 3:15 PM by flourbiff

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

Ищете, где купить заклепки стальные ГОСТ 10299, 10300?

Компания ООО Мегапром - поставщик стальных заклепок от лучших производителей на территории России.

Вся продукция сертифицирована и имеет необходимые маркировки.

Saturday, March 20, 2010 3:57 PM by Drormajok

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

+1 к предыдущему коментарию...форматирование можно было бы и поудобнее сделать. а так очень понравилось

Sunday, March 21, 2010 4:31 AM by amyl

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

inductive about font labels inside informs unsuitable mgregistrar hkjus sounds ofother

Sunday, March 21, 2010 10:40 AM by AlikPortnov

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

Согласен, в этом есть какой-то толк.

Monday, March 22, 2010 3:17 AM by lappilferee

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

Ищете, где купить электроды, электроды сварочные, электроды УОНИ, электроды МР-3 или МР-3М (синие)?

Компания ООО Мегапром - курпный поставщик электродов от лучших производителей на территории России.

Вся продукция сертифицирована и имеет необходимые маркировки.

Monday, March 22, 2010 4:00 AM by amyl

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

informs hkjus mgregistrar about unsuitable labels inductive inside sounds font ofother

Monday, March 22, 2010 5:52 AM by ArtTumanov

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

Очень доступно, мне понравилось:)

Monday, March 22, 2010 2:29 PM by MaxPtichkin

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

Этого-то мне и не хватало, спасибо:)

Tuesday, March 23, 2010 8:45 AM by SergRusakov

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

Получил море удовольствия, спасибо:)

Tuesday, March 23, 2010 9:50 PM by Awmobile

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

У меня у самого есть несколько блогов и поэтому точно скажу, этот блог сделан для людей.

Tuesday, March 23, 2010 10:57 PM by Drormajok

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

Блог хороший, много хорошего материалла..уж извините что не по теме поста, просто очень понравилось у вас. рад что наткнулся на ваш ресурс.

Wednesday, March 24, 2010 1:27 AM by Idesneacync

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

Ищете, где купить канаты, канаты стальные?

Компания ООО Мегапром - крупный поставщик канатов от лучших производителей на территории России.

Вся продукция сертифицирована и имеет необходимые маркировки.

Wednesday, March 24, 2010 1:31 AM by STELASTAR

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

Интересная статья и хорошее оформление но в кое в чёь с вами не согласен.))

Wednesday, March 24, 2010 2:03 AM by BRENDING

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

прочитал статью, вы пишите всё интересно откуда берёте материал?

Wednesday, March 24, 2010 2:41 AM by IvanYagodin

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

Очень понравилось, спасибо:)

Wednesday, March 24, 2010 1:51 PM by Muzikallo

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

Все отлично работает, не знаю чего у тебя не грузится.

Wednesday, March 24, 2010 5:43 PM by Drormajok

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

Ух, сколько коментариев то тут набрасали. Ну отмечусь и я-пост бомба..так держать, молодцом автор!!!

Wednesday, March 24, 2010 9:28 PM by Fleerlyskence

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

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

Thursday, March 25, 2010 7:27 AM by Fleerlyskence

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

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

Thursday, March 25, 2010 9:23 AM by Dubafikos

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

Мне как журналисту понравилось наполнение, побольше бы таких.

Thursday, March 25, 2010 6:03 PM by ItelfReitly

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

Ищете, где купить винты по ГОСТ 17473, 17475?

Компания ООО Мегапром - поставщик винтов от лучших производителей на территории России.

Вся продукция сертифицирована и имеет необходимые маркировки. Возможна поставка винтов по DIN.

Thursday, March 25, 2010 8:06 PM by Altynsarin

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

Неплохо бы было конечно, но надо работать.

Thursday, March 25, 2010 10:34 PM by Drormajok

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

А мне понравилось, побольше бы таких постов в рунете..Спасибо автору.

Friday, March 26, 2010 2:20 AM by Fleerlyskence

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

Блин, столько написал, а не отправилось...видимо глюк вордпресса. Вообщем забукмартил ресурс :)

Friday, March 26, 2010 12:45 PM by Immerszem

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

Ищете, где купить гвозди, гвозди строительные?

Компания ООО Мегапром - крупный поставщик гвоздей от лучших производителей на территории России.

Вся продукция сертифицирована и имеет необходимые маркировки.

Friday, March 26, 2010 10:13 PM by Skladpack

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

интересно продумали все, есть чему позавидовать даже.

Saturday, March 27, 2010 4:45 AM by порно онлайн трансы

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

Это я уже читал на другом сайте. Досвиданья.

Saturday, March 27, 2010 9:57 AM by Fleerlyskence

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

Блин, столько написал, а не отправилось...видимо глюк вордпресса. Вообщем забукмартил ресурс :)

Saturday, March 27, 2010 11:34 AM by Biznes.Lady

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

А может мне кто подскажет хороший ресурс по малой авиации, заранее спс.

Saturday, March 27, 2010 2:13 PM by Allcomedy

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

Пользовался ранее и буду пользоваться дальше.

Saturday, March 27, 2010 7:49 PM by Rukadelnik

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

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

Sunday, March 28, 2010 3:01 AM by Shopider

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

Отлично придумали дизайн, а то щас модно сдирать и все.

Sunday, March 28, 2010 9:49 PM by Fleerlyskence

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

Хороший обзор. Сразу видно что старались, за что и спасибо. Интересно было почитать

Monday, March 29, 2010 2:01 AM by scoockEmbence

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

Наша компания предлагает сварочную проволоку ГОСТ 2246 омедненную СВ08Г2С производства

Северсталь метиз ОСПАЗ со склада г.Орел - проволока сварочная в мотках и кассетах по 15-18 кг.

В наличии огромный ассортимент сварочной проволоки.

Вы можете купить сварочную проволоку светлую и омедненную.

Monday, March 29, 2010 7:04 AM by Drormajok

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

Пост супер!!! Ждём продолжения :)

Monday, March 29, 2010 9:12 AM by Serialu

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

Да, не ожидал что увижу сдесь столько интересного в комментах.

Monday, March 29, 2010 4:18 PM by смотреть порно фото

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

Это я уже читал на другом сайте. Досвиданья.

Monday, March 29, 2010 8:17 PM by Fleerlyskence

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

Приятный дизаин у вас. Не подскажете, где можно шаблоны такие найти? Желательно бесплатно :)

Tuesday, March 30, 2010 6:22 AM by Fleerlyskence

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

Приятный дизаин у вас. Не подскажете, где можно шаблоны такие найти? Желательно бесплатно :)

Tuesday, March 30, 2010 11:23 AM by Mninvest

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

Кто нибудь из пользователей занимается недвижимостью еще?

Tuesday, March 30, 2010 3:02 PM by ItelfReitly

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

Ищете, где купить винты по ГОСТ 17473, 17475?

Компания ООО Мегапром - поставщик винтов от лучших производителей на территории России.

Вся продукция сертифицирована и имеет необходимые маркировки. Возможна поставка винтов по DIN.

Wednesday, March 31, 2010 4:53 AM by Begokeepe

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

Наша компания предлагает вязальную отоженную проволоку д.1.2 мм т/о ГОСТ 3282 производства

Северсталь метиз ОСПАЗ со склада г.Орел - проволока вязальная в мотках по 80-100 кг.

В наличии огромный ассортимент вязальной проволоки.

Вы можете купить вязальную проволоку светлую и оцинкованную.

Wednesday, March 31, 2010 11:46 AM by Mobies

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

Добавлю в закладки тогда, тематика то что нужно.

Wednesday, March 31, 2010 12:17 PM by Vitatez

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

Добавляй, я уже давно так сделал и не жалею.

Wednesday, March 31, 2010 3:34 PM by Musicdown

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

Может и подойдет, нало проверить.

Wednesday, March 31, 2010 3:39 PM by Bitplanet

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

Мне так же все подходит, хотя было и получше.

Wednesday, March 31, 2010 5:21 PM by Immerszem

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

Ищете, где купить гвозди, гвозди строительные?

Компания ООО Мегапром - крупный поставщик гвоздей от лучших производителей на территории России.

Вся продукция сертифицирована и имеет необходимые маркировки.

Wednesday, March 31, 2010 5:30 PM by Fleerlyskence

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

Хороший сайт. Столько много инфы тут нарыл для себя.

Thursday, April 01, 2010 4:26 AM by Bitlesc

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

Согласен с автором по поводу информации.

Thursday, April 01, 2010 2:10 PM by Permrocksi

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

Себе в закладки поставлю и друзьям посоветую!

Friday, April 02, 2010 12:13 AM by Drormajok

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

Тут глвное не время а качество :)

Friday, April 02, 2010 3:59 AM by Electroparty

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

Тоже добавлю в закладкт и друзьям посоветую.

Friday, April 02, 2010 4:19 AM by Fleerlyskence

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

Прикольный блог, жаль тормозит загрзка только..видимо хостинг не очень хороший

Friday, April 02, 2010 10:10 AM by Clipartmag

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

Тоже думаю добавить в закладки, интересный блог.

Sunday, April 04, 2010 9:44 AM by Filmtek

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

Всех с праздничком! Иисус воскрес!

Sunday, April 04, 2010 7:40 PM by Defiance

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

Так же присоединяюсь ко всем поздравлениям, с праздничком всех.

Monday, April 05, 2010 3:13 PM by bu-dzyucu.ru

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

хороший блог, мне нравятся боевые исскуства!!!

Monday, April 05, 2010 5:33 PM by похудение

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

Супер сайт спасибо!

Tuesday, April 06, 2010 1:12 AM by Idesneacync

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

Ищете, где купить канаты, канаты стальные?

Компания ООО Мегапром - крупный поставщик канатов от лучших производителей на территории России.

Вся продукция сертифицирована и имеет необходимые маркировки.

Tuesday, April 06, 2010 3:19 AM by ZoosqueSott

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

Это удачно я зашёл на Ваш блог. Добавил в букмарки. Пожелание-тему поменять на более приятную..щас же 21 век на дворе :) Удачи в развитии блога.

Tuesday, April 06, 2010 4:29 AM by ykudza

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

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

Tuesday, April 06, 2010 7:16 AM by Kino Avi

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

Great job!!

Nice blog!

Tuesday, April 06, 2010 3:03 PM by Cenaby

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

Тоже верно, хотя многие бы не согласились.

Tuesday, April 06, 2010 6:58 PM by Maconsulting

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

Лучше бы сделал, как все говорят. Иногда надо прислушиваться к людям.

Wednesday, April 07, 2010 3:54 PM by смотреть онлайн

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

Нужно было не давно,на конецто нашел!

Wednesday, April 07, 2010 9:00 PM by Avtolux

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

Сегодня чтото страницы хреново грузятся везде.

Thursday, April 08, 2010 3:42 AM by ZoosqueSott

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

Спасибо за пост. Зачиталась прям. Удчи в развитии блога :)

Thursday, April 08, 2010 9:00 AM by ZoosqueSott

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

Интересно написано...ждём продолжения :) Подписался на ваш блог, буду следить за новостями :)

Thursday, April 08, 2010 7:41 PM by ZoosqueSott

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

Буду краток-блог хороший. Желаю развивать в качественном направлении.

Friday, April 09, 2010 4:52 AM by ZoosqueSott

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

Буду краток-блог хороший. Желаю развивать в качественном направлении.

Friday, April 09, 2010 9:25 AM by scoockEmbence

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

Наша компания предлагает сварочную проволоку ГОСТ 2246 омедненную СВ08Г2С производства

Северсталь метиз ОСПАЗ со склада г.Орел - проволока сварочная в мотках и кассетах по 15-18 кг.

В наличии огромный ассортимент сварочной проволоки.

Вы можете купить сварочную проволоку светлую и омедненную.

Friday, April 09, 2010 2:03 PM by ZoosqueSott

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

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

Friday, April 09, 2010 3:35 PM by Landfil

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

неплохо придумано, молодцы.

Friday, April 09, 2010 9:06 PM by Arbinyboorm

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

Не особо люблю читать, смотреть бесплатное видео проще.

Friday, April 09, 2010 10:33 PM by ZoosqueSott

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

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

Saturday, April 10, 2010 1:24 AM by Begokeepe

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

Наша компания предлагает вязальную отоженную проволоку д.1.2 мм т/о ГОСТ 3282 производства

Северсталь метиз ОСПАЗ со склада г.Орел - проволока вязальная в мотках по 80-100 кг.

В наличии огромный ассортимент вязальной проволоки.

Вы можете купить вязальную проволоку светлую и оцинкованную.

Saturday, April 10, 2010 4:14 AM by ZoosqueSott

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

Интересная статья. Премного благодарна. Пойду пробовать

Saturday, April 10, 2010 6:26 AM by Accent

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

Тоже так думаю, лучше проверять сразу.

Saturday, April 10, 2010 1:36 PM by Yurispred

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

Да, лучше бы Вы писали по человечески.

Saturday, April 10, 2010 2:11 PM by ZoosqueSott

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

Интересная статья. Премного благодарна. Пойду пробовать

Saturday, April 10, 2010 5:10 PM by Sdelays

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

Понравилось конечно, буду пользоваться и дальше.

Saturday, April 10, 2010 11:06 PM by Filonet

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

тут интересно, но надо и поспать.

Sunday, April 11, 2010 4:33 PM by ZoosqueSott

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

Скоро ресурсы с посещалкой от тысчи уников в день должны будут обзавестись лицензией по типу сми. Ещё пара таких указов и в рунете останутся одни гс :(

Sunday, April 11, 2010 8:04 PM by Srorttmen

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

Основное правильно, а так можно еще поработать.

Sunday, April 11, 2010 8:11 PM by ZoosqueSott

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

Скоро ресурсы с посещалкой от тысчи уников в день должны будут обзавестись лицензией по типу сми. Ещё пара таких указов и в рунете останутся одни гс :(

Monday, April 12, 2010 1:23 AM by Sms_linefar

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

Oтличный блог, побольше бы таких и всем будет легче работать.

Monday, April 12, 2010 1:48 PM by Collectin

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

Даже намного лучше чем я ожидал, буду пользоваться.

Monday, April 12, 2010 11:33 PM by Estate

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

Отдельное спасибо за это, очень приятно.

Tuesday, April 13, 2010 4:31 AM by Spacereal

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

Зачем писать такое, можно и подумать иногда.

Tuesday, April 13, 2010 9:56 AM by Izosimov

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

Не часто такое можно увидеть, удивлен.

Tuesday, April 13, 2010 6:02 PM by STELASTARAS

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

Интересная статья и хорошее оформление но в кое в чёь с вами не согласен.))

Wednesday, April 14, 2010 6:25 PM by Kinoshnik

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

Правильно написал, только для чего.

Wednesday, April 14, 2010 8:32 PM by Weather

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

Каспер не пускает, ели зашел.

Thursday, April 15, 2010 3:29 AM by guws2@mail.ru

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

Хороший блог, развивайте его и я думаю он у вас будет достаточно популярным в будущем. Спасибо большое за ваши труды и потраченное ваше время для нас, т.Е. Посетителей вашего ресурса. Зайду как нибудь ещё к вам. И чтобы не потерять в инете ваш блог, добавлю наверное его в закладки.

Friday, April 16, 2010 9:41 AM by KAshamshin

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

Много итересного  на вашем блоге , буду заходить почаще.Уменя как раз есть к вам кучу вапросов для обсуждения))

Friday, April 16, 2010 9:53 AM by info@evdenevenakliyatsec.com

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

america papağanı is great

Friday, April 16, 2010 11:00 AM by Rodomirhors

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

Вы не перестоёте удивлять !!! Полноценое оформление пиши почаще.

Friday, April 16, 2010 11:53 AM by Politiksavik

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

Да, создать блог - оказывается самое простое! А вот писать в нем и обновлять информацию, здесь уже нужна та пресловутая усидчивость, о которой все знают, но лишь единицы могут похвастаться (причем небезосновательно).

Friday, April 16, 2010 12:14 PM by finansistal

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

я уже думал что ты блог редактируешь

Friday, April 16, 2010 1:23 PM by SolnceMoskva

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

Хорошо всё оформлено .Автор сознанием дела отнёсся к написанию статьи надеюсь он так и будет продолжать.

Friday, April 16, 2010 11:29 PM by Rill

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

Мдя, старье... еще антиквариат тут есть почитать ? :)

Saturday, April 17, 2010 1:27 PM by Chelsy

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

У вас пытливый ум :)

Saturday, April 17, 2010 5:11 PM by Nopreset

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

Скажу как специалист, сделано с головой.

Sunday, April 18, 2010 6:13 AM by фильтр фоздуха

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

Классный у вас у блога дизайн

Sunday, April 18, 2010 6:11 PM by Fanstyle

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

Конечно правильно думаешь, хотя можно и по другому.

Wednesday, April 21, 2010 5:45 AM by BERNARDINEg

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

Могу предложить зайти на сайт, с огромным количеством статей по интересующей Вас теме.

Wednesday, April 21, 2010 10:32 AM by krasotpiterskaya

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

эта весьма хорошая мысль придется как раз кстати.

Thursday, April 22, 2010 10:58 AM by Kinoman

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

Brilliant idea to implement a simple such thing as a letter.

Saturday, April 24, 2010 4:55 PM by Lonloot

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

Согласен, можно пообщаться на эту тему.

Sunday, April 25, 2010 5:47 PM by Furtonc

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

Предлагаю Вам это обсудить здесь или в PM.

Monday, April 26, 2010 2:34 AM by Smittel

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

Присоединяюсь. И я с этим столкнулся.

Monday, April 26, 2010 7:19 PM by Boardeli

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

Куда вы пропали, я жду.

Tuesday, April 27, 2010 12:32 AM by Fonchik

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

Кто как хочет, так и пишет.

Tuesday, April 27, 2010 5:08 AM by Hilldek

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

Пора бы и подчистить здесь.

Tuesday, April 27, 2010 1:01 PM by Craimeans

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

Киньте кто нибудь ссылку в пм на какой нибудь блог по психологии. заранее спс.

Tuesday, April 27, 2010 6:44 PM by Flerdo

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

Все тут понятно, смешно смотреть.

Wednesday, April 28, 2010 2:11 AM by Stycletyloafe

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

Please give me some advice

Earlier today I got a call from 972-284-0600 and was made to believe the the person calling was a scam.

I'm so sick and tired of promotional calls - I decided to complain to the Gulf Coast Western and screamed at the top of my lungs.

Anyway... Gulf Coast Western -the oil drilling corporation- called was calling to tell me I got the job!

Any advice or help on how I can fix the complaint - and get the job???

Wednesday, April 28, 2010 3:34 AM by Wolff

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

Интересно чем будешь пользоваться.

Wednesday, April 28, 2010 5:13 AM by Mobbid

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

Согласен с тобой, можно и так.

Thursday, April 29, 2010 2:25 AM by Komick

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

А зачем они тут нужны, и без них не плохо.

Thursday, April 29, 2010 4:50 AM by NolkeTurok

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

Privet naverno sait kupili vidno chto profi delal mne pondravilsya)))

Thursday, April 29, 2010 5:15 AM by BelorusochkaDina

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

Спасибо большое!!!

Thursday, April 29, 2010 5:38 AM by Korrespont

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

Интересно, можно поподробней.

Thursday, April 29, 2010 1:35 PM by Denicinaludmila

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

По моему, это не самый лучший вариант или я не права?

Thursday, April 29, 2010 3:26 PM by MirumGadgaeva

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

Я просто поражена нет слов одни эмоции ))))

Thursday, April 29, 2010 6:51 PM by Gidromez

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

Подскажите и мне как лучше.

Friday, April 30, 2010 6:12 AM by Radocco

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

Я вообще ничего не понял. хоть бы объяснили.

Friday, April 30, 2010 8:04 AM by сериал интерны

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

Нужно было не давно,на конецто нашел!

Saturday, May 01, 2010 2:32 AM by Charter

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

Конечно. Я согласен со всем выше сказанным.

Saturday, May 01, 2010 4:38 PM by Fotograff

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

Давайте давайте, я присоединюсь тоже.

Monday, May 03, 2010 10:49 AM by uzhorods

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

Сколько стоит разместить рекламу у Вас?

Wednesday, May 05, 2010 5:39 AM by jetswws

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

Хочу купить ваш сайт. Сколько?

Wednesday, May 05, 2010 6:24 AM by Xedowex

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

Я согласен со всем выше сказанным. Могу пообщаться.

Wednesday, May 05, 2010 5:05 PM by Guards

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

Попробую и я так сделать.

Wednesday, May 05, 2010 11:38 PM by QBSteven

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

Супер подписался на ленту новостей

Thursday, May 06, 2010 4:48 AM by Zazick

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

Отлично, будем продолжать посещать.

Thursday, May 06, 2010 5:59 AM by Gps

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

I installed it successfully! Thanks.

Thursday, May 06, 2010 10:10 PM by Danover

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

Не только у тебя такое.

Friday, May 07, 2010 3:40 PM by ZoosqueSott

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

Скоро ресурсы с посещалкой от тысчи уников в день должны будут обзавестись лицензией по типу сми. Ещё пара таких указов и в рунете останутся одни гс :(

Friday, May 07, 2010 6:40 PM by AlexandraLaz

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

Доброе время суток (думаю, временные пояса у людей данного пояса различны). Извиняюсь заранее за свой возможно глупый вопрос, заданный совершенно не в тот раздел, который нужно задавать подобные вопрос – я хотела бы узнать – как сделать опрос на данном форуме? Задание связанно с моей дипломной работой, к своему сожалению или счастью я должна предоставить гиперссылки созданного собой опроса своим преподавателям, но, как этот опрос делается не могу понять – ладно хоть новую тему научилась создавать, для меня это поправу можно назвать прогрессом. Если Вам не сложно – объясните пожалуйста. Заранее благодарю за помощь и отзывчивость – вопросов чувствую у меня будет множество, кто поможет – отблагодарю смайликом в виде воздушного поцелуя, думаю, это максимальное что могу сделать для Вас в виртуальном мире. Заранее благодарна!

Friday, May 07, 2010 11:34 PM by Soardhervah

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

интересно было бы с вами лично пообщаться )) вы в аське бываете? или в скайпе?...

Saturday, May 08, 2010 8:34 AM by ZoosqueSott

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

Скоро ресурсы с посещалкой от тысчи уников в день должны будут обзавестись лицензией по типу сми. Ещё пара таких указов и в рунете останутся одни гс :(

Tuesday, May 11, 2010 7:43 PM by VaviloN

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

А почему так, можно покмнее придумать было.

Friday, May 14, 2010 2:51 AM by vova

# 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.

Saturday, May 15, 2010 2:10 PM by Kompress

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

Непонял к чему тут эта писанина...

Monday, May 17, 2010 2:58 PM by DenT

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

Полезная штука. Применил уже к одному из своих проектов. Очень доволен.

Friday, May 21, 2010 10:20 AM by Donood

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

Могу посоветовать, обращайтесь в личку.

Friday, May 21, 2010 11:07 AM by Cupracs

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

Интересно посмотреть что из этого получится.

Saturday, May 22, 2010 9:27 AM by Жора

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

Рекомендую kreditkareal.com , отзывы, заказывали партию кредитных карт mastercard, заказ получили вовремя, качество гуд, будем и дальше работать

Saturday, May 22, 2010 11:50 AM by Goker

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

правильно все, поддерживаю.

Saturday, May 22, 2010 5:49 PM by Sweesr

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

наконец то зарегился, теперь буду пользоваться

Sunday, May 23, 2010 7:00 PM by Gregon

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

Немного непонятно, щас вкурю.

Monday, May 24, 2010 12:06 PM by Postmar

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

Смотрю все такими умными стали.

Thursday, May 27, 2010 1:13 AM by методы бурения

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

супер статья, очень доходчего

Friday, May 28, 2010 2:40 AM by Igranom

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

Если кто игровыми апппаратами интересуются, пишите мне в личку.

Sunday, May 30, 2010 2:44 AM by Jockey

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

оболдеть, портал жителей пгт  Московской области

Sunday, May 30, 2010 11:45 AM by remontik

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

Неплохо как для новичка, умело сделано.

Sunday, May 30, 2010 11:51 AM by Cocs

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

Не вижу смысла в этой писанине.

Sunday, May 30, 2010 6:09 PM by MOTO

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

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

Monday, May 31, 2010 7:04 AM by Mango

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

помогу с созданием  дизайна, продвижением и раскруткой сайтов

Monday, May 31, 2010 7:24 AM by Jokley

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

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

Monday, May 31, 2010 11:42 AM by Cupros

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

А чего переход не грузится. или инет у меня висит.

Tuesday, June 01, 2010 8:43 AM by PupperMachos

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

Читал и плакал...) Такого нарошно не придумаешь.

Tuesday, June 01, 2010 9:55 AM by Ardos

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

Должно быть все по другому.

Friday, June 04, 2010 4:55 AM by AzaliyaYa

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

Доброе время суток! Очень понравился Вам форум, но не могу найти кнопку поиска :(

Friday, June 04, 2010 7:11 AM by FrenkSi

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

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

Friday, June 04, 2010 7:28 AM by Albanik

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

Жаль времени не хватает катастрофически, и строчить ответы/ устраивать глобальные дискуссии попросту некогда.

С удовольствием бы обсудил.

Sunday, June 06, 2010 3:34 AM by Reykageoni

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

Здравствуйте! Понравился Вам форум, но не могу найти кнопку поиска ^_^

Tuesday, June 08, 2010 2:45 AM by Bridge

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

Присоединяюсь. И я с этим столкнулся.

Tuesday, June 08, 2010 9:10 AM by Aple

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

дешевые ноутбуков asus, toshiba, acer, sony, hp, apple

Tuesday, June 08, 2010 10:49 AM by Sidar

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

холодильники, варочные панели, духовые шкафы, стиральные и посудомоечные машины купить в Москве по низким ценам.

Tuesday, June 08, 2010 12:41 PM by GOLnew

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

точные прогнозы на спорт и договорные матчи

Tuesday, June 08, 2010 5:30 PM by Mooby

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

непонятно, кто кому тут пишет.

Tuesday, June 08, 2010 6:49 PM by French

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

Энциклопедия выживания в экстремальных ситуациях

Wednesday, June 09, 2010 12:33 PM by TARO

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

Гадание на картах Таро

Thursday, June 10, 2010 12:47 AM by Vovchik

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

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

Thursday, June 10, 2010 5:01 AM by Megan

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

Производство грязезащитные напольные покрытия, ковровых дорожек. услуги по установке грязезащитных покрытий.

Thursday, June 10, 2010 9:04 AM by Spolak

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

Мы предлагаем качественные площадки под размещение Ваших сайтов, основу которых составляют серверы на базе Intel® Core™2 Quad.

Thursday, June 10, 2010 3:13 PM by Hiflin

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

Наш сайт предлагает вам скачать новинки фильмов, новинки музыки, новинки программ, новинки игр совершенно бесплатно и без регистрации

Thursday, June 10, 2010 3:16 PM by Jordy

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

?????????? ??? ??????? ???? ??????? ?????? ?????????, ??? ??????????? ? ??? , ?? ????? ???????????? ????? ????? ??????? ???????????.

Friday, June 11, 2010 1:44 AM by Moms

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

установка видеонаблюдения, установка систем видеонаблюдения, пожарная безопасность, СКУД, СКС, ОПС, ЛВС.

Friday, June 11, 2010 1:45 AM by Arash

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

СВК страхование, страхование мотоциклов, автострахование, полис осаго, каско.

Friday, June 11, 2010 4:27 AM by Maxim Efremow

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

Великолепная статья, присоединяюсь. Пишите в ЛС, обсудим.

Friday, June 11, 2010 8:11 AM by Dafte

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

Дозирование и системы дозирования. Разбавление растворов.

Friday, June 11, 2010 6:27 PM by Sergey Antonovssd

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

Всем привет, отлично, мне понравилось. Пишите в личку, по общаемся на эту тему. Классный блог!

Saturday, June 12, 2010 1:39 AM by Frefs

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

Изготовление мебели на заказ. Доставка мебели. Мебель под заказ.

Saturday, June 12, 2010 7:56 AM by Klawa

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

клавиатуры и манипуляторы

Saturday, June 12, 2010 10:06 AM by Sergey Antonosd

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

Всем привет, отлично, мне понравилось. Пишите в личку, по общаемся на эту тему. Классный блог!

Sunday, June 13, 2010 2:45 AM by Kingg

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

Только у нас вы можете смотреть бесплатно любимые фильмы или онлайн, без регистрации и смс

Sunday, June 13, 2010 7:22 AM by TSOkiper

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

справочник по сертификации, стандартизации и метрологии.

Sunday, June 13, 2010 5:30 PM by Gerits

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

запчасти на hyundai и расходные материалы в наличии и под заказ

Sunday, June 13, 2010 7:06 PM by Morest

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

отдых в Адлер, Хоста, Сочи, Лоо, Лазаревское, Геленджик, Туапсе, Анапа, Крым, Туапсе, Абхазии, Симферополь, отдых на море, погода, курорты, цены, частный сектор, гостиницы, билеты, санатории, отзывы, карта

Tuesday, June 15, 2010 2:13 AM by joumpboymbole

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

You are absolutely right. In it something is also to me it seems it is very good thought. Completely with you I will agree.

Tuesday, June 15, 2010 3:29 AM by Serg Antonosd

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

Отличный анонс, жду новых. Респект Админу блога. Пишите в ЛС, будем общаться

Tuesday, June 15, 2010 10:03 AM by ZoosqueSott

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

Скоро ресурсы с посещалкой от тысчи уников в день должны будут обзавестись лицензией по типу сми. Ещё пара таких указов и в рунете останутся одни гс :(

Tuesday, June 15, 2010 11:39 AM by Glassick

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

Мы готовы предложить вам свою помощь в решении широкого спектра бухгалтерских и консалтинговых вопросов.

Wednesday, June 16, 2010 6:11 PM by MASTERCARD

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

ОЧЕНЬ ВЫГОДНЫЙ СПОСОБО ЗАРАБОТАТЬ, ОТКРЫТЬ СВОЙ БИЗНЕС, ВЫСОКИЙ ЗАРАБОТОК!!!!, гарантия 100%, кредитные и банковские карты с пин кодом для снятия денег в любом банкомате, СРЕДНИЕ БАЛАНСЫ КАРТ 2000-3000$ !! обнал, обналичка, обновление партий 2 раза в неделю, ищем постоянных партнеров. Продаем кредитные и дебетовые карты VISA и MASTERCARD. Работаем со всеми регионами, доставка курьерскими службами в любую точку. В наличии карты Visa Gold, Visa Platinum, Visa Business. Обналичка денег, обналичивание. Мы рады как новым так и постоянным клиентам, мы работаем с 2006 года. Предоставим отзывы и рекомендации, реальные гарантии. Заказы и предложения о сотрудничестве принимаются на наш емайл elfacentr@googlemail.com

Thursday, June 17, 2010 2:54 AM by dogyWhongerge

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

What would you began to do on my place?

Friday, June 18, 2010 12:58 PM by m-creations.com.ua

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

Очень низкие цены на создание сайтов

Thursday, June 24, 2010 6:07 AM by mashinolub

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

Вот уж! Никогда бы не подумал! Спасибо за информацию.

Tuesday, June 29, 2010 6:05 AM by vova

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

Jnkbxysq pfhf,jnjr d bynthytnt

Wednesday, June 30, 2010 6:08 AM by profkurort

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

неплохо.но есть что доработать.

Thursday, July 08, 2010 7:31 AM by Ярослав

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

Неплохо тут у Вас. ) Как-нибудь еще забегу.

Friday, July 09, 2010 9:16 AM by Дарья

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

Хорошо тут у Вас. ) Как-нибудь еще забегу.

Thursday, July 15, 2010 5:52 AM by vova

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

Интересно, а что у вас было по литературе в школе, судя по постам - отлично ;)

Monday, July 19, 2010 7:15 AM by wert

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

Прикольно получилось. Но я обычно другими способами пользуюсь

Wednesday, July 21, 2010 5:17 PM by Фитнес

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

Oh ryt, thanks, ill avoid it then.

Friday, October 01, 2010 3:41 AM by Rinatasoki

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

По данным 2NT.ru  Дорогие невесты очень интересует ваше мнение, планирую открыть организацию по проведению свадеб, юбилеев, торжеств от А до Я, но не хочется быть подобной на тысячи аналогичных контор, что бы вас заинтересовало и на что обратили внимание в случае в случае если бы решили пользоваться услугами данной организации? Заранее спасибо за ваши ответы.

К стати меня можно найти и в поисковых системах по нику Rinata Pi7

Monday, October 04, 2010 5:57 PM by Rinatasoki

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

Интересный факт на Soki.tv Помогите советом пожалуйста, я работаю в государственном органе, и у нас все исходящие документы строго проверяют на всевозможные ошибки, вплоть до пробела лишнего!! и письма также редактируют как им нужно, в контрольном отделе. И вот я за неделю неверно, на их взгляд написала письма, из-за чего нашему начальнику каждый день всё возвращают, и не столько мои письма, а у нас молодой начальник, который был сам назначен не так давно начальником отдела, из обычного работника отдела. И вот сегодня он позвал меня к себе в кабинет, и предложил подумать об увольнении!!! я в шоке, что делать, какие доводы привести в свой адрес?? очень хочу остаться!!

К стати меня можно найти и в поисковых системах по нику Rinata Pi7

Sunday, November 07, 2010 1:21 PM by Press

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

Всё просто супер !!!

Friday, November 19, 2010 9:33 AM by nakliye EVDEN Eve nakliyat şirketleri

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

www.selimoglunakliyat.net/konya-evden-eve-nakliyat.html

www.selimoglunakliyat.net/samsun-evden-eve-nakliyat.html

www.selimoglunakliyat.net/ankara-evden-eve-nakliyat.html

www.selimoglunakliyat.net/edirne-evden-eve-nakliyat.html

www.selimoglunakliyat.net/tekirdag-evden-eve-nakliyat.html

www.selimoglunakliyat.net/sakarya-evden-eve-nakliyat.html

www.selimoglunakliyat.net/bolu-evden-eve-nakliyat.html

www.selimoglunakliyat.net/kocaeli-evden-eve-nakliyat.html

www.selimoglunakliyat.net/buro-tasima.html

www.selimoglunakliyat.net/buro-tasima.html

www.selimoglunakliyat.net/ankara-evden-eve-nakliyat.html

www.selimoglunakliyat.net/evdeneve-depolama.html

www.selimoglunakliyat.net/konya-evden-eve-nakliyat.html

www.selimoglunakliyat.net/samsun-evden-eve-nakliyat.html

www.selimoglunakliyat.net/ankara-evden-eve-nakliyat.html

www.selimoglunakliyat.net/edirne-evden-eve-nakliyat.html

www.selimoglunakliyat.net/tekirdag-evden-eve-nakliyat.html

www.selimoglunakliyat.net/sakarya-evden-eve-nakliyat.html

www.selimoglunakliyat.net/bolu-evden-eve-nakliyat.html

www.selimoglunakliyat.net/kocaeli-evden-eve-nakliyat.html

www.selimoglunakliyat.net/buro-tasima.html

www.selimoglunakliyat.net/buro-tasima.html

www.selimoglunakliyat.net/ankara-evden-eve-nakliyat.html

www.selimoglunakliyat.net/evdeneve-depolama.html

www.selimoglunakliyat.net/araclarimiz.html

www.selimoglunakliyat.net/parca-esya-tasima.html

www.selimoglunakliyat.net/evden-eve-nakliyat-hakkında.html

www.selimoglunakliyat.net/sakarya-evden-eve-nakliyat.html

www.selimoglunakliyat.net/evden-eve-nakliyat-ambalaj.html

www.selimoglunakliyat.net/istanbul-avrupa-yakasi-evden-eve-nakliyat.html

www.selimoglunakliyat.net/istanbul-anadolu-yakasi-evden-eve-nakliyat.html

www.selimoglunakliyat.net/evden-eve-nakliye-iletisim.html

www.selimoglunakliyat.net/depolama.html

www.selimoglunakliyat.net/nakliyat.htm

Thursday, February 17, 2011 8:18 AM by Решетка

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

Зайдите на мой сайт и псмотрети инетресную статью!!!!!!!!!!!!!!!!!

Friday, March 25, 2011 2:45 PM by Костя

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

Спасибо за статью!

Thursday, April 21, 2011 7:37 AM by Газификация

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

Проектирование систем газоснабжения

Monday, June 20, 2011 5:55 PM by dekorasyon ankara

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

saol varol admin güzel site erkek

Wednesday, October 26, 2011 8:14 AM by NewGames

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

Good and useful post! Thanks!

Monday, February 27, 2012 2:35 AM by kredyt hipoteczy

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

Czym jest kredyt hipoteczny? To długoterminowy kredyt bankowy. Zabezpieczeniem takiego kredytu hipotecznego jest hipoteka. Na jaki cel można wziąć kredyt hipoteczny? Środki przekazywane są na zakup mieszkania własnościowego, spółdzielczego, domu jednorodzinnego, lub innej nieruchomości. Jeśli klient stara się o kredyt na jeden w wyżej wymienionych celi to bank określi to przedsięwzięcie kredytem celowym hipotecznym. Ale klient może wziąć kredyt hipoteczny również na cel dowolny.

Wednesday, February 29, 2012 11:55 AM by moda

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

справочник по сертификации, стандартизации и метрологии.

Tuesday, July 03, 2012 1:31 AM by Appedasnine

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

A houseman was walking on the strand harmonious age and he bring about a grit half buried in the sand. He incontestable to open it. Privy was a genie. The genie said,” I will agree to you three wishes and three wishes only." The gentleman kind-heartedness about his beginning yen and certain, “I think about I homelessness 1 million dollars transferred to a Swiss bank account. POOF! Next he wished in the interest of a Ferrari red in color. POOF! There was the crate sitting in league of him. He asked payment his end upon, " I want I was relentless to women." POOF! He turned into a bottle up of chocolates.

<a href=></a>

Tuesday, July 10, 2012 9:58 PM by Mcconnell

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

Hi, of course this article is in fact good

and I have learned lot of things from it on the topic of blogging.

thanks.

Friday, October 12, 2012 4:54 AM by Saavedra

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

I have read so many content concerning the blogger lovers except this paragraph is

truly a nice post, keep it up.

Tuesday, November 06, 2012 8:53 PM by Jeffrey

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

Usually I do not learn post on blogs, but I would like

to say that this write-up very compelled me to check out and do so!

Your writing taste has been amazed me. Thanks, quite nice post.

Monday, April 01, 2013 5:53 AM by Riggins

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

This article will assist the internet visitors for setting up new webpage or

even a blog from start to end.

Friday, April 05, 2013 9:11 AM by Marcus

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

Nice post. I learn something totally new and challenging on

sites I stumbleupon everyday. It will always be useful to read through content from other

authors and use a little something from other sites.