Welcome to WindowsClient.net | Sign in | Join

Orlando Perri

MCTS WinForms
MCTS Windows Presentation Foundation
MCTS Ado.Net

Syndication

Sponsors





  • advertise here

Archives

Implementing an analogic clock in WPF

 


It’s possible to implement an analogic clock in WPF simply using the RotateTransform class and just a few line of code.
In this example I didn’t develop a sophisticate user interface, I just wanted to show you the concept.

First of all we define a class that will represent our clock model, it will have 3 public property :

  • SecondsDegrees
  • MinutesDegrees
  • HoursDegrees

This read only properties will return the actual time. I chose to return a value already converted in degrees ( from 0 to 359), in this way it’s faster and easier, but if you want you can return the standard format and use a converter in the binding class.
We also need to notify the control to refresh the value each second,we do this by implementing a timer class and the INotifyPropertyChanged interface.

Here is the code:

using System;
using System.ComponentModel;
using System.Timers;

namespace TheClock
{
    public class ClockClass : INotifyPropertyChanged
    {
        private Timer timer = new Timer(1000);

        public ClockClass()
        {
            timer.Elapsed += new ElapsedEventHandler((sender,e) => OnPropertyChanged(null) );
            timer.Start();
        }

        public int SecondsDegrees
        {
            get
            {
                return DateTime.Now.Second * 6;
            }
        }

        public int MinutesDegrees
        {
            get
            {
                return DateTime.Now.Minute * 6;
            }
        }

        public int HoursDegrees
        {
            get
            {
                return DateTime.Now.Hour * 30 + (int)(DateTime.Now.Minute / 2);
            }
        }

        #region INotifyPropertyChanged Members

        private void OnPropertyChanged(string property)
        {
            if (PropertyChanged != null)
                PropertyChanged(this, new PropertyChangedEventArgs(property));
        }

        public event PropertyChangedEventHandler PropertyChanged;

        #endregion
    }
}

 

Now adding the RotateTransform class to the RenderTransform collection of each arm of the clock and binding the angle to the previous class we get the result we expected…

<UserControl x:Class="TheClock.Clock"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Height="300" Width="300">
    <Canvas>
        <Line Canvas.Top="10" Canvas.Left="150" X1="0" Y1="30"
              X2="0" Y2="140" RenderTransformOrigin=".5,1" Stroke="Black" StrokeThickness="4">
            <Line.RenderTransform>
                <RotateTransform Angle="{Binding MinutesDegrees}"/>
            </Line.RenderTransform>
        </Line>
        <Line Canvas.Top="10" Canvas.Left="150" X1="0" Y1="60"
              X2="0" Y2="140" RenderTransformOrigin=".5,1" Stroke="Black" StrokeThickness="8">
            <Line.RenderTransform>
                <RotateTransform Angle="{Binding HoursDegrees}"/>
            </Line.RenderTransform>
        </Line>
        <Line Canvas.Top="10" Canvas.Left="150" X1="0" Y1="0"
              X2="0" Y2="140" RenderTransformOrigin=".5,1" Stroke="Black" StrokeThickness="2">
            <Line.RenderTransform>
                <RotateTransform Angle="{Binding SecondsDegrees}"/>
            </Line.RenderTransform>
        </Line>
    </Canvas>
</UserControl>

and the user control’s code behind:

using System.Windows.Controls;

namespace TheClock
{
    /// <summary>
    /// Interaction logic for Clock.xaml
    /// </summary>
    public partial class Clock : UserControl
    {
        public Clock()
        {
            InitializeComponent();
            this.DataContext = new ClockClass();
        }
    }
}

 

Just with a few code we got a working analogic clock…

Published Wednesday, July 29, 2009 9:35 PM by Orlando Perri
Filed under: , , , ,

Comments

# re: Implementing an analogic clock in WPF@ Tuesday, August 18, 2009 9:19 PM

does not work

by v

# re: Implementing an analogic clock in WPF@ Tuesday, August 18, 2009 9:21 PM

my bad... wrong namespace .. its working now..

by v

# re: Implementing an analogic clock in WPF@ Wednesday, August 19, 2009 10:44 AM

Glad to hear that... :)

# re: Implementing an analogic clock in WPF@ Sunday, May 08, 2011 8:12 AM

Implementing an analogic clock in wpf.. OMG! :)

# re: Implementing an analogic clock in WPF@ Friday, June 03, 2011 3:20 AM

Implementing an analogic clock in wpf.. Awful :)

# re: Implementing an analogic clock in WPF@ Sunday, June 05, 2011 3:38 AM

Implementing an analogic clock in wpf.. Corking :)

# re: Implementing an analogic clock in WPF@ Tuesday, June 21, 2011 11:10 PM

Implementing an analogic clock in wpf.. Outstanding :)

# re: Implementing an analogic clock in WPF@ Saturday, November 12, 2011 5:18 PM

GXgqeW Thanks for the article! I hope the author does not mind if I use it for my course work!....

# re: Implementing an analogic clock in WPF@ Saturday, November 12, 2011 9:40 PM

z3Wbn6 Honestly, not bad news!....

# re: Implementing an analogic clock in WPF@ Sunday, November 13, 2011 7:11 PM

1qemWF I read and feel at home. Thanks the creators for a good resource..!!

# re: Implementing an analogic clock in WPF@ Monday, November 28, 2011 5:59 AM

Hooray! the one who wrote is a cool guy..!

# re: Implementing an analogic clock in WPF@ Wednesday, November 30, 2011 9:05 AM

2EdBJa Sometimes I also see something like this, but earlier I didn`t pay much attention to this!....

# re: Implementing an analogic clock in WPF@ Wednesday, November 30, 2011 9:06 AM

kFsgnF Thank you very much! I took it for myself too. Will be useful!!....

# re: Implementing an analogic clock in WPF@ Wednesday, November 30, 2011 9:09 AM

GQTYRI This article is for professionals..!!

# re: Implementing an analogic clock in WPF@ Thursday, December 01, 2011 10:30 AM

WQuHtl Is anybody strong in radio here? We need a colleague who would tell us briefly about the transistor T2. I hope there are radio amateurs here. If it`s not on the subject at all, then I`m sorry. I have to write  because I have no choice. PS: if the spelling is not right then also I'm sorry, I'm just 13 years old!....

# re: Implementing an analogic clock in WPF@ Friday, December 02, 2011 3:44 AM

Strange but true. Your resource is expensive. At least it could be sold for good money on its auction!....

# re: Implementing an analogic clock in WPF@ Friday, December 02, 2011 4:14 AM

Uh, well, explain me a please, I am not quite in the subject, how can it be?!....

# re: Implementing an analogic clock in WPF@ Friday, December 02, 2011 5:10 AM

Yeah !... life is like riding a bicycle. You will not fall unless you stop pedaling!!....

# re: Implementing an analogic clock in WPF@ Friday, December 02, 2011 5:48 AM

I decided to help and sent a post to the social  bookmarks. I hope to raise it in popularity!!....

# re: Implementing an analogic clock in WPF@ Friday, December 02, 2011 6:25 AM

Honestly, not bad news!....

# re: Implementing an analogic clock in WPF@ Friday, December 02, 2011 7:00 AM

Very amusing thoughts, well told, everything is in its place:DD

# re: Implementing an analogic clock in WPF@ Friday, December 02, 2011 7:37 AM

Hello! Read the pages not for the first day. Yes, the connection speed is not good. How can I subscribe? I would like to read you in the future!....

# re: Implementing an analogic clock in WPF@ Friday, December 02, 2011 10:29 AM

Honestly, not bad news!....

# re: Implementing an analogic clock in WPF@ Friday, December 02, 2011 11:06 AM

I read online (computer problems) positive feedback about your resource. Didnt even believe it, and now saw myself. It turned out that I was not fooled!....

# re: Implementing an analogic clock in WPF@ Saturday, December 03, 2011 5:39 AM

It's straight to the point! You could not tell in other words! :DD

# re: Implementing an analogic clock in WPF@ Saturday, December 03, 2011 8:55 AM

It`s really useful! Looking through the Internet you can mostly observe watered down information, something like bla bla bla, but not here to my deep surprise. It makes me happy..!!

# re: Implementing an analogic clock in WPF@ Saturday, December 03, 2011 9:32 AM

Of course, I understand a little about this post but  will try cope with it!!....

# re: Implementing an analogic clock in WPF@ Saturday, December 03, 2011 5:46 PM

I do`t see a feedback or the other coordinates from the blog administration!....

# re: Implementing an analogic clock in WPF@ Sunday, December 04, 2011 2:45 PM

Can be also this issue because the truth can be achieved only in a dispute :DD

# re: Implementing an analogic clock in WPF@ Monday, December 05, 2011 12:16 PM

Good day! I do not see the conditions of using the information. May I copy the text from here on my site if you leave a link to this page?!....

# re: Implementing an analogic clock in WPF@ Monday, December 05, 2011 12:59 PM

Right from this article begin to read this blog. Plus a subscriber:DD

by jewelry

# re: Implementing an analogic clock in WPF@ Monday, December 05, 2011 2:36 PM

Not bad post, leave it at my bookmarks!....

# re: Implementing an analogic clock in WPF@ Monday, December 05, 2011 3:14 PM

Hello! How do you feel about young composers?!....

# re: Implementing an analogic clock in WPF@ Tuesday, December 06, 2011 4:48 AM

The Author is crazy..!!

# re: Implementing an analogic clock in WPF@ Tuesday, December 06, 2011 5:22 AM

A unique note..!!

# re: Implementing an analogic clock in WPF@ Tuesday, December 06, 2011 5:56 AM

Heartfelt thanks..!!

# re: Implementing an analogic clock in WPF@ Tuesday, December 06, 2011 7:13 AM

See it for the first time!!....

# re: Implementing an analogic clock in WPF@ Tuesday, December 06, 2011 7:50 AM

Are you interested in webmaster`s income?!....

# re: Implementing an analogic clock in WPF@ Tuesday, December 06, 2011 8:39 AM

Informative, but not convincing. Something is missing but what I can not understand. But I will say frankly: bright and benevolent thoughts!....

# re: Implementing an analogic clock in WPF@ Tuesday, December 06, 2011 9:16 AM

It's pleasant sitting at work to distract from it�to relax and read the information written here:DD

# re: Implementing an analogic clock in WPF@ Tuesday, December 06, 2011 9:53 AM

Develop the topic further! It is interesting to know more details..!!

# re: Implementing an analogic clock in WPF@ Wednesday, December 07, 2011 7:04 AM

As I have expected, the writer blurted out..!!

# re: Implementing an analogic clock in WPF@ Wednesday, December 07, 2011 7:43 AM

Thanks, useful material I added your blog to my bookmarks!....

# re: Implementing an analogic clock in WPF@ Wednesday, December 07, 2011 8:23 AM

Strange but true. Your resource is expensive. At least it could be sold for good money on its auction!....

# re: Implementing an analogic clock in WPF@ Wednesday, December 07, 2011 9:01 AM

Are you interested in webmaster`s income?!....

# re: Implementing an analogic clock in WPF@ Thursday, December 08, 2011 4:51 AM

Honestly, not bad news!....

# re: Implementing an analogic clock in WPF@ Thursday, December 08, 2011 5:28 AM

I`m so grateful that you enlightened me and the most important thing that it happened in time. Just think, I have been using the internet for six years already but it`s the first time I`ve ever heard about it!....

by gamucci

# re: Implementing an analogic clock in WPF@ Thursday, December 08, 2011 6:06 AM

Yeah, in my opinion, it is written on every fence!!....

# re: Implementing an analogic clock in WPF@ Thursday, December 08, 2011 6:47 AM

Thanks, useful material I added your blog to my bookmarks!....

# re: Implementing an analogic clock in WPF@ Thursday, December 08, 2011 7:26 AM

I do`t regret that spent a few of minutes for reading. Write more often,  surely'll come to read something new!....

# re: Implementing an analogic clock in WPF@ Thursday, December 08, 2011 8:06 AM

Received the letter. I agree to exchange the articles..

# re: Implementing an analogic clock in WPF@ Thursday, December 08, 2011 8:46 AM

Fresh thoughts, fresh view on the subject..!!

# re: Implementing an analogic clock in WPF@ Thursday, December 08, 2011 10:07 AM

Right from this article begin to read this blog. Plus a subscriber:DD

# re: Implementing an analogic clock in WPF@ Thursday, December 08, 2011 12:34 PM

However, the author created a cool thing..!!

# re: Implementing an analogic clock in WPF@ Thursday, December 08, 2011 4:55 PM

Hi! Everyone who reads this blog - Happy Reconciliation and Accord..!!

# re: Implementing an analogic clock in WPF@ Thursday, December 08, 2011 5:34 PM

Scribbler, give me a student's record-book!))))

# re: Implementing an analogic clock in WPF@ Thursday, December 08, 2011 6:11 PM

The Author is crazy..!!

# re: Implementing an analogic clock in WPF@ Thursday, December 08, 2011 6:52 PM

It's straight to the point! You could not tell in other words! :DD

# re: Implementing an analogic clock in WPF@ Friday, December 09, 2011 7:10 AM

Yeah� I read and I understand that I do not understand anything what it is about:DD

# re: Implementing an analogic clock in WPF@ Friday, December 09, 2011 7:49 AM

I must admit, the webmaster has written cool..!!

# re: Implementing an analogic clock in WPF@ Friday, December 09, 2011 8:29 AM

I am glad that your blog is constantly evolving. Such posts only gain in popularity!....

# re: Implementing an analogic clock in WPF@ Friday, December 09, 2011 9:13 AM

As I have expected, the writer blurted out..!!

# re: Implementing an analogic clock in WPF@ Friday, December 09, 2011 9:57 AM

Yeah, now it's clear !... And firstly I did not understand very much where there was the link with the title itself !!....

# re: Implementing an analogic clock in WPF@ Friday, December 09, 2011 10:38 AM

Pleased to read intelligent thoughts in Russian. I`ve been living in England for already 5 years!....

# re: Implementing an analogic clock in WPF@ Friday, December 09, 2011 11:20 AM

Fresh thoughts, fresh view on the subject..!!

# re: Implementing an analogic clock in WPF@ Friday, December 09, 2011 12:04 PM

Cool:) I would say say it exploded my brain..!!

# re: Implementing an analogic clock in WPF@ Friday, December 09, 2011 12:46 PM

The author deserves for the monument:DD

# re: Implementing an analogic clock in WPF@ Friday, December 09, 2011 1:27 PM

Very amusing thoughts, well told, everything is in its place:DD

# re: Implementing an analogic clock in WPF@ Friday, December 09, 2011 2:08 PM

Hello! Read the pages not for the first day. Yes, the connection speed is not good. How can I subscribe? I would like to read you in the future!....

# re: Implementing an analogic clock in WPF@ Saturday, December 10, 2011 11:49 AM

Well, actually, a lot of what you write is not quite true !... well, okay, it does not matter:DD

# re: Implementing an analogic clock in WPF@ Saturday, December 10, 2011 12:35 PM

I subscribed to RSS, but for some reason, the messages are written in the form of some hieroglyph (How  can it be corrected?!....

# re: Implementing an analogic clock in WPF@ Sunday, December 11, 2011 9:05 AM

Fresh thoughts, fresh view on the subject..!!

# re: Implementing an analogic clock in WPF@ Monday, December 12, 2011 4:02 AM

Received the letter. I agree to exchange the articles..

# re: Implementing an analogic clock in WPF@ Monday, December 12, 2011 8:40 AM

As I have expected, the writer blurted out..!!

# re: Implementing an analogic clock in WPF@ Monday, December 12, 2011 9:32 AM

Uh, well, explain me a please, I am not quite in the subject, how can it be?!....

# re: Implementing an analogic clock in WPF@ Monday, December 12, 2011 10:18 AM

Received the letter. I agree to exchange the articles..

# re: Implementing an analogic clock in WPF@ Monday, December 12, 2011 11:57 AM

It`s really useful! Looking through the Internet you can mostly observe watered down information, something like bla bla bla, but not here to my deep surprise. It makes me happy..!!

# re: Implementing an analogic clock in WPF@ Monday, December 12, 2011 12:44 PM

52. "The road will be overcome by that person, who goes." I wish you never stopped and be creative - forever..!!

# re: Implementing an analogic clock in WPF@ Monday, December 12, 2011 1:33 PM

52. "The road will be overcome by that person, who goes." I wish you never stopped and be creative - forever..!!

# re: Implementing an analogic clock in WPF@ Monday, December 12, 2011 2:24 PM

I envy you. The content and design of your blog is much better than mine. Who made a design for you?!....

# re: Implementing an analogic clock in WPF@ Tuesday, December 13, 2011 3:24 AM

Very amusing thoughts, well told, everything is in its place:DD

# re: Implementing an analogic clock in WPF@ Tuesday, December 13, 2011 7:11 AM

Good post! Found a lot of new and interesting! Will share the link with others:DD

# re: Implementing an analogic clock in WPF@ Tuesday, December 13, 2011 8:08 AM

Yet, much is unclear. Could you describe in more details!....

# re: Implementing an analogic clock in WPF@ Tuesday, December 13, 2011 9:04 AM

Hooray! the one who wrote is a cool guy..!!

# re: Implementing an analogic clock in WPF@ Tuesday, December 13, 2011 9:54 AM

Informative, but not convincing. Something is missing but what I can not understand. But I will say frankly: bright and benevolent thoughts!....

# re: Implementing an analogic clock in WPF@ Thursday, December 15, 2011 4:54 AM

Extremely easy by words but in reality�, a lot of things don`t correspond. Not everything is so rosy..!!

by friv

# re: Implementing an analogic clock in WPF@ Thursday, December 15, 2011 5:49 AM

I`m so grateful that you enlightened me and the most important thing that it happened in time. Just think, I have been using the internet for six years already but it`s the first time I`ve ever heard about it!....

# re: Implementing an analogic clock in WPF@ Thursday, December 15, 2011 6:46 AM

Of course, I understand a little about this post but  will try cope with it!!....

# re: Implementing an analogic clock in WPF@ Thursday, December 15, 2011 8:36 AM

Well, actually, a lot of what you write is not quite true !... well, okay, it does not matter:DD

# re: Implementing an analogic clock in WPF@ Thursday, December 15, 2011 10:27 AM

Not bad post, leave it at my bookmarks!...

# re: Implementing an analogic clock in WPF@ Friday, December 16, 2011 8:02 AM

Strange but true. Your resource is expensive. At least it could be sold for good money on its auction!....

# re: Implementing an analogic clock in WPF@ Friday, December 16, 2011 11:46 AM

Hi! Everyone who reads this blog - Happy Reconciliation and Accord..!!

# re: Implementing an analogic clock in WPF@ Friday, December 16, 2011 12:42 PM

Thanks, useful material I added your blog to my bookmarks!....

# re: Implementing an analogic clock in WPF@ Friday, December 16, 2011 1:38 PM

I read online (computer problems) positive feedback about your resource. Didnt even believe it, and now saw myself. It turned out that I was not fooled!....

# re: Implementing an analogic clock in WPF@ Saturday, December 17, 2011 12:32 PM

This article is for professionals..!!

# re: Implementing an analogic clock in WPF@ Saturday, December 17, 2011 2:32 PM

This article is for professionals..!!

# re: Implementing an analogic clock in WPF@ Saturday, December 17, 2011 3:36 PM

Sometimes I also see something like this, but earlier I didn`t pay much attention to this!....

# re: Implementing an analogic clock in WPF@ Sunday, December 18, 2011 7:40 AM

I do`t regret that spent a few of minutes for reading. Write more often,  surely'll come to read something new!....

# re: Implementing an analogic clock in WPF@ Sunday, December 18, 2011 9:39 AM

Of course, I understand a little about this post but  will try cope with it!!....

# re: Implementing an analogic clock in WPF@ Sunday, December 18, 2011 10:37 AM

The text is promising, will place the site to my favorites..!!

# re: Implementing an analogic clock in WPF@ Sunday, December 18, 2011 11:34 AM

The topic is pretty complicated for a beginner!....

# re: Implementing an analogic clock in WPF@ Sunday, December 18, 2011 12:32 PM

Good! Wish everybody wrote so:DD

# re: Implementing an analogic clock in WPF@ Sunday, December 18, 2011 1:30 PM

The text is promising, will place the site to my favorites..!!

# re: Implementing an analogic clock in WPF@ Sunday, December 18, 2011 2:29 PM

Yeah, now it's clear !... And firstly I did not understand very much where there was the link with the title itself !!....

# re: Implementing an analogic clock in WPF@ Tuesday, December 20, 2011 10:05 AM

I read online (computer problems) positive feedback about your resource. Didnt even believe it, and now saw myself. It turned out that I was not fooled!....

# re: Implementing an analogic clock in WPF@ Tuesday, December 20, 2011 11:12 AM

Good! Wish everybody wrote so:DD

# re: Implementing an analogic clock in WPF@ Tuesday, December 20, 2011 12:13 PM

I do`t see a feedback or the other coordinates from the blog administration!....

# re: Implementing an analogic clock in WPF@ Tuesday, December 20, 2011 1:22 PM

I was looking for the report  in Yandex and suddenly came across this page. I found a little information on my topic of my report. I would like more, and thanks for that..!!

# re: Implementing an analogic clock in WPF@ Tuesday, December 20, 2011 2:31 PM

I almost accidentally visited to this site, but stayed here for a long time. Stayed because everything was very interesting. Surely will share with all my friends!....

# re: Implementing an analogic clock in WPF@ Tuesday, December 20, 2011 3:32 PM

Received the letter. I agree to exchange the articles..

# re: Implementing an analogic clock in WPF@ Wednesday, December 21, 2011 8:59 AM

Gripping! I would like to listen to the experts` views on the subject!!....

# re: Implementing an analogic clock in WPF@ Wednesday, December 21, 2011 10:38 AM

However, the author created a cool thing..!!

# re: Implementing an analogic clock in WPF@ Wednesday, December 21, 2011 11:38 AM

I envy you. The content and design of your blog is much better than mine. Who made a design for you?!....

# re: Implementing an analogic clock in WPF@ Wednesday, December 21, 2011 12:39 PM

Current blog, fresh information, I read it from time to time!!....

# re: Implementing an analogic clock in WPF@ Wednesday, December 21, 2011 1:39 PM

Cool! You have answered. I'll take a quote! The meaning of life and everything else. Decided. No kidding!....

# re: Implementing an analogic clock in WPF@ Wednesday, December 21, 2011 2:41 PM

I must admit, the webmaster has written cool..!!

# re: Implementing an analogic clock in WPF@ Wednesday, December 21, 2011 3:43 PM

Thanks for the news! Just was thinking about it! By the way Happy New Year to all of you:DD

# re: Implementing an analogic clock in WPF@ Wednesday, December 21, 2011 4:44 PM

Hi! Everyone who reads this blog - Happy Reconciliation and Accord..!!

# re: Implementing an analogic clock in WPF@ Wednesday, December 21, 2011 5:45 PM

Thank you very much! I took it for myself too. Will be useful!!....

# re: Implementing an analogic clock in WPF@ Wednesday, December 21, 2011 6:46 PM

Are you interested in webmaster`s income?!....

# re: Implementing an analogic clock in WPF@ Wednesday, December 21, 2011 7:46 PM

Are you interested in webmaster`s income?!....

# re: Implementing an analogic clock in WPF@ Wednesday, December 21, 2011 8:48 PM

I almost accidentally visited to this site, but stayed here for a long time. Stayed because everything was very interesting. Surely will share with all my friends!....

# re: Implementing an analogic clock in WPF@ Wednesday, December 21, 2011 9:50 PM

Yet, much is unclear. Could you describe in more details!....

# re: Implementing an analogic clock in WPF@ Wednesday, December 21, 2011 10:51 PM

Sent the first post, but it wasn`t published. I am writing the second. It's me, the African tourist..

# re: Implementing an analogic clock in WPF@ Wednesday, December 21, 2011 11:50 PM

The topic is pretty complicated for a beginner!....

# re: Implementing an analogic clock in WPF@ Thursday, December 22, 2011 12:51 AM

The text is promising, will place the site to my favorites..!!

# re: Implementing an analogic clock in WPF@ Thursday, December 22, 2011 1:52 AM

Youth rock band "Ranetki" says thank you for such a wonderful blog..!!

# re: Implementing an analogic clock in WPF@ Thursday, December 22, 2011 2:53 AM

Very amusing thoughts, well told, everything is in its place:DD

# re: Implementing an analogic clock in WPF@ Thursday, December 22, 2011 3:53 AM

Gripping! I would like to listen to the experts` views on the subject!!....

# re: Implementing an analogic clock in WPF@ Thursday, December 22, 2011 4:54 AM

Left on my site a link to this post. I think many people will be interested in it..!!

by Fl

# re: Implementing an analogic clock in WPF@ Thursday, December 22, 2011 5:57 AM

Of course, I understand a little about this post but  will try cope with it!!....

# re: Implementing an analogic clock in WPF@ Saturday, December 24, 2011 2:41 AM

I do`t regret that spent a few of minutes for reading. Write more often,  surely'll come to read something new!....

by omegle

# re: Implementing an analogic clock in WPF@ Saturday, December 24, 2011 2:33 PM

9iRSzh Yet, much is unclear. Could you describe in more details!....

# re: Implementing an analogic clock in WPF@ Saturday, December 24, 2011 3:17 PM

Can be also this issue because the truth can be achieved only in a dispute :DD

# re: Implementing an analogic clock in WPF@ Sunday, December 25, 2011 4:31 AM

I read online (computer problems) positive feedback about your resource. Didnt even believe it, and now saw myself. It turned out that I was not fooled!....

# re: Implementing an analogic clock in WPF@ Sunday, December 25, 2011 5:41 AM

It's pleasant sitting at work to distract from it�to relax and read the information written here:DD

# re: Implementing an analogic clock in WPF@ Monday, December 26, 2011 5:31 AM

I decided to help and sent a post to the social  bookmarks. I hope to raise it in popularity!!....

# re: Implementing an analogic clock in WPF@ Monday, December 26, 2011 6:40 AM

52. "The road will be overcome by that person, who goes." I wish you never stopped and be creative - forever..!!

# re: Implementing an analogic clock in WPF@ Monday, December 26, 2011 8:50 AM

Yeah !... life is like riding a bicycle. You will not fall unless you stop pedaling!!....

# re: Implementing an analogic clock in WPF@ Monday, December 26, 2011 9:56 AM

Yeah !... life is like riding a bicycle. You will not fall unless you stop pedaling!!....

# re: Implementing an analogic clock in WPF@ Monday, December 26, 2011 11:03 AM

Yeah, it is clear now !... Just can not figure out how often do you update your blog?!....

# re: Implementing an analogic clock in WPF@ Monday, December 26, 2011 12:09 PM

Yeah !... life is like riding a bicycle. You will not fall unless you stop pedaling!!....

# re: Implementing an analogic clock in WPF@ Monday, December 26, 2011 1:14 PM

Excellent! Got a real pleasure..!!

# re: Implementing an analogic clock in WPF@ Monday, December 26, 2011 2:18 PM

Well, actually, a lot of what you write is not quite true !... well, okay, it does not matter:DD

# re: Implementing an analogic clock in WPF@ Monday, December 26, 2011 4:35 PM

52. "The road will be overcome by that person, who goes." I wish you never stopped and be creative - forever..!!

# re: Implementing an analogic clock in WPF@ Monday, December 26, 2011 5:59 PM

I am getting married on the 15th of November. Congratulate me! Then will be here rarely!....

# re: Implementing an analogic clock in WPF@ Monday, December 26, 2011 7:04 PM

I would add something else, of course, but in fact almost everything is mentioned!....

# re: Implementing an analogic clock in WPF@ Monday, December 26, 2011 8:09 PM

The topic is pretty complicated for a beginner!....

# re: Implementing an analogic clock in WPF@ Monday, December 26, 2011 9:13 PM

Internet is written with the capital letter in a sentence, by the way. And hundredths are written not with a point but with a comma. This is according to the standard. And actually everything is very good..!!

# re: Implementing an analogic clock in WPF@ Monday, December 26, 2011 10:18 PM

The Author is crazy..!!

by reading

# re: Implementing an analogic clock in WPF@ Tuesday, December 27, 2011 5:15 AM

Can be also this issue because the truth can be achieved only in a dispute :DD

by Dogs

# re: Implementing an analogic clock in WPF@ Wednesday, December 28, 2011 8:35 AM

Sometimes I also see something like this, but earlier I didn`t pay much attention to this!....

by gadgets

# re: Implementing an analogic clock in WPF@ Wednesday, December 28, 2011 9:36 AM

Author, keep doing  in the same way..!!

# re: Implementing an analogic clock in WPF@ Wednesday, December 28, 2011 10:38 AM

I almost accidentally visited to this site, but stayed here for a long time. Stayed because everything was very interesting. Surely will share with all my friends!....

# re: Implementing an analogic clock in WPF@ Wednesday, December 28, 2011 11:38 AM

Received the letter. I agree to exchange the articles..

# re: Implementing an analogic clock in WPF@ Wednesday, December 28, 2011 12:39 PM

Author, keep doing  in the same way..!!

# re: Implementing an analogic clock in WPF@ Wednesday, December 28, 2011 1:39 PM

Yeah !... life is like riding a bicycle. You will not fall unless you stop pedaling!!....

# re: Implementing an analogic clock in WPF@ Wednesday, December 28, 2011 4:45 PM

The topic is pretty complicated for a beginner!....

# re: Implementing an analogic clock in WPF@ Thursday, December 29, 2011 7:37 AM

However, the author created a cool thing..!

# re: Implementing an analogic clock in WPF@ Thursday, December 29, 2011 8:57 AM

I am getting married on the 15th of November. Congratulate me! Then will be here rarely!....

# re: Implementing an analogic clock in WPF@ Thursday, December 29, 2011 9:59 AM

Good! Wish everybody wrote so:DD

# re: Implementing an analogic clock in WPF@ Thursday, December 29, 2011 11:02 AM

Is anybody strong in radio here? We need a colleague who would tell us briefly about the transistor T2. I hope there are radio amateurs here. If it`s not on the subject at all, then I`m sorry. I have to write  because I have no choice. PS: if the spelling is not right then also I'm sorry, I'm just 13 years old!....

# re: Implementing an analogic clock in WPF@ Thursday, December 29, 2011 1:05 PM

Yeah, it is clear now !... Just can not figure out how often do you update your blog?!....

# re: Implementing an analogic clock in WPF@ Thursday, December 29, 2011 2:07 PM

Read, of course, far from my topic. But still, we can work together. How do you feel about trust management?!....

# re: Implementing an analogic clock in WPF@ Thursday, December 29, 2011 3:08 PM

It`s really useful! Looking through the Internet you can mostly observe watered down information, something like bla bla bla, but not here to my deep surprise. It makes me happy..!!

# re: Implementing an analogic clock in WPF@ Friday, December 30, 2011 2:12 PM

Right from this article begin to read this blog. Plus a subscriber:DD

# re: Implementing an analogic clock in WPF@ Friday, December 30, 2011 3:17 PM

Sometimes I also see something like this, but earlier I didn`t pay much attention to this!....

# re: Implementing an analogic clock in WPF@ Friday, December 30, 2011 4:23 PM

Good! Wish everybody wrote so:DD

# re: Implementing an analogic clock in WPF@ Friday, December 30, 2011 5:28 PM

Excellent! Got a real pleasure..!!

by diet

# re: Implementing an analogic clock in WPF@ Saturday, December 31, 2011 3:31 AM

Interesting, but still I would like to know more about it. Liked the article:DD

# re: Implementing an analogic clock in WPF@ Saturday, December 31, 2011 4:39 AM

cZQmSA I am getting married on the 15th of November. Congratulate me! Then will be here rarely!....

# re: Implementing an analogic clock in WPF@ Saturday, December 31, 2011 6:27 AM

As usual, the webmaster posted correctly..!!

# re: Implementing an analogic clock in WPF@ Saturday, December 31, 2011 7:34 AM

Good post! Found a lot of new and interesting! Will share the link with others:DD

# re: Implementing an analogic clock in WPF@ Saturday, December 31, 2011 9:46 AM

Every time I come back here again and don`t get disappointed..!!

# re: Implementing an analogic clock in WPF@ Saturday, December 31, 2011 10:52 AM

Scribbler, give me a student's record-book!))))

# re: Implementing an analogic clock in WPF@ Saturday, December 31, 2011 11:59 AM

Sent the first post, but it wasn`t published. I am writing the second. It's me, the African tourist..

# re: Implementing an analogic clock in WPF@ Saturday, December 31, 2011 1:04 PM

Cool:) I would say say it exploded my brain..!!

# re: Implementing an analogic clock in WPF@ Saturday, December 31, 2011 2:10 PM

Interesting, but still I would like to know more about it. Liked the article:DD

# re: Implementing an analogic clock in WPF@ Saturday, December 31, 2011 3:17 PM

I envy you. The content and design of your blog is much better than mine. Who made a design for you?!....

# re: Implementing an analogic clock in WPF@ Saturday, December 31, 2011 4:23 PM

Yeah, it is clear now !... From the very beginning I did not understand where was the connection with the title !!....

# re: Implementing an analogic clock in WPF@ Saturday, December 31, 2011 5:29 PM

This article is for professionals..!!

# re: Implementing an analogic clock in WPF@ Saturday, December 31, 2011 6:35 PM

Good post! Found a lot of new and interesting! Will share the link with others:DD

# re: Implementing an analogic clock in WPF@ Saturday, December 31, 2011 7:43 PM

Sent the first post, but it wasn`t published. I am writing the second. It's me, the African tourist..

# re: Implementing an analogic clock in WPF@ Saturday, December 31, 2011 8:49 PM

The text is promising, will place the site to my favorites..!!

# re: Implementing an analogic clock in WPF@ Saturday, December 31, 2011 9:56 PM

It's pleasant sitting at work to distract from it�to relax and read the information written here:DD

# re: Implementing an analogic clock in WPF@ Saturday, December 31, 2011 11:01 PM

The text is promising, will place the site to my favorites..!!

# re: Implementing an analogic clock in WPF@ Sunday, January 01, 2012 12:07 AM

I must admit, the webmaster is a cool guy..!!

# re: Implementing an analogic clock in WPF@ Sunday, January 01, 2012 1:13 AM

This article is for professionals..!!

# re: Implementing an analogic clock in WPF@ Sunday, January 01, 2012 2:21 AM

As I have expected, the writer blurted out..!!

# re: Implementing an analogic clock in WPF@ Sunday, January 01, 2012 3:28 AM

Current blog, fresh information, I read it from time to time!!....

# re: Implementing an analogic clock in WPF@ Tuesday, January 03, 2012 6:08 AM

Good post! Found a lot of new and interesting! Will share the link with others:DD

# re: Implementing an analogic clock in WPF@ Tuesday, January 03, 2012 8:34 AM

Well, actually, a lot of what you write is not quite true !... well, okay, it does not matter:DD

# re: Implementing an analogic clock in WPF@ Tuesday, January 03, 2012 10:54 AM

I decided to help and sent a post to the social  bookmarks. I hope to raise it in popularity!!....

by xl twin

# re: Implementing an analogic clock in WPF@ Tuesday, January 03, 2012 12:03 PM

I would add something else, of course, but in fact almost everything is mentioned!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 04, 2012 6:22 AM

Yeah, in my opinion, it is written on every fence!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 04, 2012 7:31 AM

Very amusing thoughts, well told, everything is in its place:DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 04, 2012 8:41 AM

It's straight to the point! You could not tell in other words! :DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 04, 2012 9:49 AM

Thanks for the news! Just was thinking about it! By the way Happy New Year to all of you:DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 04, 2012 10:58 AM

Develop the topic further! It is interesting to know more details..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 04, 2012 12:09 PM

Author, keep doing  in the same way..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 04, 2012 1:17 PM

Somewhere in the Internet I have already read almost the same selection of information, but anyway thanks!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 04, 2012 2:25 PM

Heartfelt thanks..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 04, 2012 3:36 PM

It`s really useful! Looking through the Internet you can mostly observe watered down information, something like bla bla bla, but not here to my deep surprise. It makes me happy..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 04, 2012 4:46 PM

Edidn`t think about that. I'll tell my mother, she won`t believe it..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 04, 2012 5:55 PM

Yeah, in my opinion, it is written on every fence!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 04, 2012 7:04 PM

Scribbler, give me a student's record-book!))))

by Top Cab

# re: Implementing an analogic clock in WPF@ Wednesday, January 04, 2012 8:14 PM

Gripping! I would like to listen to the experts` views on the subject!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 04, 2012 9:21 PM

Totally agree with you, about a week ago wrote about the same in my blog..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 04, 2012 10:39 PM

Sorry for the off-topic, could you tell where I can get such a nice pattern for my blog ?!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 04, 2012 11:53 PM

Good! Wish everybody wrote so:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 05, 2012 6:24 AM

B8ALOG Edidn`t think about that. I'll tell my mother, she won`t believe it..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 05, 2012 8:26 AM

RvgzVe Scribbler, give me a student's record-book!))))

# re: Implementing an analogic clock in WPF@ Friday, January 06, 2012 9:09 AM

See it for the first time!!....

# re: Implementing an analogic clock in WPF@ Friday, January 06, 2012 11:17 AM

I almost accidentally visited to this site, but stayed here for a long time. Stayed because everything was very interesting. Surely will share with all my friends!....

# re: Implementing an analogic clock in WPF@ Friday, January 06, 2012 12:41 PM

Hello! Read the pages not for the first day. Yes, the connection speed is not good. How can I subscribe? I would like to read you in the future!....

# re: Implementing an analogic clock in WPF@ Friday, January 06, 2012 2:02 PM

Yeah, in my opinion, it is written on every fence!!....

# re: Implementing an analogic clock in WPF@ Friday, January 06, 2012 3:55 PM

The topic is pretty complicated for a beginner!....

# re: Implementing an analogic clock in WPF@ Friday, January 06, 2012 5:22 PM

I was looking for the report  in Yandex and suddenly came across this page. I found a little information on my topic of my report. I would like more, and thanks for that..!!

# re: Implementing an analogic clock in WPF@ Friday, January 06, 2012 6:43 PM

I am glad that your blog is constantly evolving. Such posts only gain in popularity!....

# re: Implementing an analogic clock in WPF@ Friday, January 06, 2012 9:21 PM

Scribbler, give me a student's record-book!))))

# re: Implementing an analogic clock in WPF@ Friday, January 06, 2012 10:41 PM

Strange but true. Your resource is expensive. At least it could be sold for good money on its auction!....

# re: Implementing an analogic clock in WPF@ Friday, January 06, 2012 11:39 PM

Post brought me to think, went to mull over!!...

# re: Implementing an analogic clock in WPF@ Saturday, January 07, 2012 4:34 AM

Heartfelt thanks..!!

# re: Implementing an analogic clock in WPF@ Saturday, January 07, 2012 5:52 AM

Thanks, useful material I added your blog to my bookmarks!....

# re: Implementing an analogic clock in WPF@ Saturday, January 07, 2012 7:13 AM

The topic is pretty complicated for a beginner!....

# re: Implementing an analogic clock in WPF@ Sunday, January 08, 2012 3:35 AM

I must admit, the webmaster is a cool guy..!!

# re: Implementing an analogic clock in WPF@ Sunday, January 08, 2012 4:55 AM

Scribbler, give me a student's record-book!))))

# re: Implementing an analogic clock in WPF@ Sunday, January 08, 2012 6:15 AM

Cool:) I would say say it exploded my brain..!!

# re: Implementing an analogic clock in WPF@ Sunday, January 08, 2012 6:15 AM

Good day! I do not see the conditions of using the information. May I copy the text from here on my site if you leave a link to this page?!....

by Heats

# re: Implementing an analogic clock in WPF@ Sunday, January 08, 2012 7:38 AM

Of course, I understand a little about this post but  will try cope with it!!....

# re: Implementing an analogic clock in WPF@ Sunday, January 08, 2012 8:59 AM

I serched through the internet and got here. What a wonderful invention of the mankind. With the help of the network you communicate, learn, read !... That helped us to get  acquainted!....

# re: Implementing an analogic clock in WPF@ Sunday, January 08, 2012 11:43 AM

Honestly, not bad news!....

# re: Implementing an analogic clock in WPF@ Sunday, January 08, 2012 1:05 PM

The author deserves for the monument:DD

# re: Implementing an analogic clock in WPF@ Sunday, January 08, 2012 2:26 PM

Thanks for the news! Just was thinking about it! By the way Happy New Year to all of you:DD

# re: Implementing an analogic clock in WPF@ Sunday, January 08, 2012 5:11 PM

Not bad post, but a lot of extra !!....

# re: Implementing an analogic clock in WPF@ Sunday, January 08, 2012 7:52 PM

Are you interested in webmaster`s income?!....

by pot

# re: Implementing an analogic clock in WPF@ Sunday, January 08, 2012 9:14 PM

Hello! Read the pages not for the first day. Yes, the connection speed is not good. How can I subscribe? I would like to read you in the future!....

# re: Implementing an analogic clock in WPF@ Monday, January 09, 2012 12:00 AM

I almost accidentally visited to this site, but stayed here for a long time. Stayed because everything was very interesting. Surely will share with all my friends!....

# re: Implementing an analogic clock in WPF@ Monday, January 09, 2012 1:24 AM

Interesting. We are waiting for new messages on the same topic!!....

# re: Implementing an analogic clock in WPF@ Monday, January 09, 2012 4:04 AM

I serched through the internet and got here. What a wonderful invention of the mankind. With the help of the network you communicate, learn, read !... That helped us to get  acquainted!....

# re: Implementing an analogic clock in WPF@ Monday, January 09, 2012 5:06 AM

I read online (computer problems) positive feedback about your resource. Didnt even believe it, and now saw myself. It turned out that I was not fooled!....

# re: Implementing an analogic clock in WPF@ Monday, January 09, 2012 6:30 AM

Sent the first post, but it wasn`t published. I am writing the second. It's me, the African tourist..

by Harry

# re: Implementing an analogic clock in WPF@ Monday, January 09, 2012 7:59 AM

I must admit, the webmaster is a cool guy..!!

# re: Implementing an analogic clock in WPF@ Monday, January 09, 2012 9:20 AM

Sorry for the off-topic, could you tell where I can get such a nice pattern for my blog ?!....

by kindles

# re: Implementing an analogic clock in WPF@ Monday, January 09, 2012 10:42 AM

I must admit, the webmaster has written cool..!!

# re: Implementing an analogic clock in WPF@ Monday, January 09, 2012 12:03 PM

Stupid article..!!

# re: Implementing an analogic clock in WPF@ Monday, January 09, 2012 1:24 PM

Youth rock band "Ranetki" says thank you for such a wonderful blog..!!

# re: Implementing an analogic clock in WPF@ Monday, January 09, 2012 2:43 PM

Pleased to read intelligent thoughts in Russian. I`ve been living in England for already 5 years!....

# re: Implementing an analogic clock in WPF@ Monday, January 09, 2012 4:02 PM

I do`t see a feedback or the other coordinates from the blog administration!....

# re: Implementing an analogic clock in WPF@ Monday, January 09, 2012 5:22 PM

Thank you very much! I took it for myself too. Will be useful!!....

# re: Implementing an analogic clock in WPF@ Monday, January 09, 2012 6:44 PM

Sometimes I also see something like this, but earlier I didn`t pay much attention to this!....

# re: Implementing an analogic clock in WPF@ Tuesday, January 10, 2012 2:11 AM

I serched through the internet and got here. What a wonderful invention of the mankind. With the help of the network you communicate, learn, read !... That helped us to get  acquainted!....

# re: Implementing an analogic clock in WPF@ Tuesday, January 10, 2012 3:32 AM

Cool! You have answered. I'll take a quote! The meaning of life and everything else. Decided. No kidding!....

# re: Implementing an analogic clock in WPF@ Tuesday, January 10, 2012 4:53 AM

The author deserves for the monument:DD

# re: Implementing an analogic clock in WPF@ Tuesday, January 10, 2012 6:18 AM

52. "The road will be overcome by that person, who goes." I wish you never stopped and be creative - forever..!!

# re: Implementing an analogic clock in WPF@ Tuesday, January 10, 2012 8:02 AM

Yeah, in my opinion, it is written on every fence!!....

# re: Implementing an analogic clock in WPF@ Tuesday, January 10, 2012 9:25 AM

Yeah !... life is like riding a bicycle. You will not fall unless you stop pedaling!!....

# re: Implementing an analogic clock in WPF@ Tuesday, January 10, 2012 10:50 AM

Sent the first post, but it wasn`t published. I am writing the second. It's me, the African tourist..

by bao moi

# re: Implementing an analogic clock in WPF@ Tuesday, January 10, 2012 12:16 PM

I would add something else, of course, but in fact almost everything is mentioned!....

# re: Implementing an analogic clock in WPF@ Tuesday, January 10, 2012 1:40 PM

Right from this article begin to read this blog. Plus a subscriber:DD

# re: Implementing an analogic clock in WPF@ Tuesday, January 10, 2012 3:03 PM

Honestly, not bad news!....

# re: Implementing an analogic clock in WPF@ Tuesday, January 10, 2012 4:28 PM

Yeah, it is clear now !... From the very beginning I did not understand where was the connection with the title !!....

# re: Implementing an analogic clock in WPF@ Tuesday, January 10, 2012 5:51 PM

Hello! Read the pages not for the first day. Yes, the connection speed is not good. How can I subscribe? I would like to read you in the future!....

by pokies

# re: Implementing an analogic clock in WPF@ Tuesday, January 10, 2012 7:12 PM

Strange but true. Your resource is expensive. At least it could be sold for good money on its auction!....

# re: Implementing an analogic clock in WPF@ Tuesday, January 10, 2012 8:33 PM

However, the author created a cool thing..!!

# re: Implementing an analogic clock in WPF@ Tuesday, January 10, 2012 9:54 PM

Yeah, in my opinion, it is written on every fence!!....

# re: Implementing an analogic clock in WPF@ Tuesday, January 10, 2012 11:14 PM

Author, keep doing  in the same way..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 11, 2012 12:34 AM

Is anybody strong in radio here? We need a colleague who would tell us briefly about the transistor T2. I hope there are radio amateurs here. If it`s not on the subject at all, then I`m sorry. I have to write  because I have no choice. PS: if the spelling is not right then also I'm sorry, I'm just 13 years old!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 11, 2012 1:55 AM

As I have expected, the writer blurted out..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 11, 2012 3:19 AM

I`m so grateful that you enlightened me and the most important thing that it happened in time. Just think, I have been using the internet for six years already but it`s the first time I`ve ever heard about it!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 11, 2012 4:42 AM

Thanks for the article! I hope the author does not mind if I use it for my course work!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 11, 2012 6:05 AM

Stupid article..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 11, 2012 6:34 AM

comment5

by P90X

# re: Implementing an analogic clock in WPF@ Wednesday, January 11, 2012 7:07 AM

comment3

# re: Implementing an analogic clock in WPF@ Wednesday, January 11, 2012 7:33 AM

It's straight to the point! You could not tell in other words! :DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 11, 2012 7:35 AM

comment3

# re: Implementing an analogic clock in WPF@ Wednesday, January 11, 2012 8:02 AM

comment3

# re: Implementing an analogic clock in WPF@ Wednesday, January 11, 2012 8:52 AM

comment1

# re: Implementing an analogic clock in WPF@ Wednesday, January 11, 2012 9:00 AM

I read and feel at home. Thanks the creators for a good resource..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 11, 2012 9:21 AM

comment6

# re: Implementing an analogic clock in WPF@ Wednesday, January 11, 2012 9:49 AM

comment2

# re: Implementing an analogic clock in WPF@ Wednesday, January 11, 2012 10:24 AM

I serched through the internet and got here. What a wonderful invention of the mankind. With the help of the network you communicate, learn, read !... That helped us to get  acquainted!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 11, 2012 10:34 AM

comment5

# re: Implementing an analogic clock in WPF@ Wednesday, January 11, 2012 11:02 AM

comment4

by px90

# re: Implementing an analogic clock in WPF@ Wednesday, January 11, 2012 11:45 AM

I was looking for the report  in Yandex and suddenly came across this page. I found a little information on my topic of my report. I would like more, and thanks for that..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 11, 2012 1:04 PM

comment6

by clazzio

# re: Implementing an analogic clock in WPF@ Wednesday, January 11, 2012 1:26 PM

It's pleasant sitting at work to distract from it�to relax and read the information written here:DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 11, 2012 1:26 PM

I decided to help and sent a post to the social  bookmarks. I hope to raise it in popularity!!....

by fitness

# re: Implementing an analogic clock in WPF@ Wednesday, January 11, 2012 2:50 PM

It's straight to the point! You could not tell in other words! :DD

# re: Implementing an analogic clock in WPF@ Thursday, January 12, 2012 2:17 AM

I read and feel at home. Thanks the creators for a good resource..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 12, 2012 3:43 AM

Well, actually, a lot of what you write is not quite true !... well, okay, it does not matter:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 12, 2012 5:09 AM

Yeah, it is clear now !... Just can not figure out how often do you update your blog?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 12, 2012 5:56 AM

7Kk11o comment3

# re: Implementing an analogic clock in WPF@ Thursday, January 12, 2012 6:35 AM

Good post! Found a lot of new and interesting! Will share the link with others:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 12, 2012 9:26 AM

Thanks for the article! I hope the author does not mind if I use it for my course work!....

# re: Implementing an analogic clock in WPF@ Thursday, January 12, 2012 10:52 AM

Yeah, in my opinion, it is written on every fence!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 12, 2012 10:52 AM

Pleased to read intelligent thoughts in Russian. I`ve been living in England for already 5 years!....

# re: Implementing an analogic clock in WPF@ Thursday, January 12, 2012 3:10 PM

Right from this article begin to read this blog. Plus a subscriber:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 12, 2012 6:01 PM

Pleased to read intelligent thoughts in Russian. I`ve been living in England for already 5 years!....

# re: Implementing an analogic clock in WPF@ Thursday, January 12, 2012 7:26 PM

Interesting, but still I would like to know more about it. Liked the article:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 12, 2012 8:50 PM

Hello! Read the pages not for the first day. Yes, the connection speed is not good. How can I subscribe? I would like to read you in the future!....

# re: Implementing an analogic clock in WPF@ Thursday, January 12, 2012 10:14 PM

Hello! How do you feel about young composers?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 12, 2012 10:14 PM

I`m so grateful that you enlightened me and the most important thing that it happened in time. Just think, I have been using the internet for six years already but it`s the first time I`ve ever heard about it!....

# re: Implementing an analogic clock in WPF@ Thursday, January 12, 2012 11:38 PM

Thanks for the article! I hope the author does not mind if I use it for my course work!....

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 1:01 AM

I am glad that your blog is constantly evolving. Such posts only gain in popularity!....

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 2:25 AM

Cool! You have answered. I'll take a quote! The meaning of life and everything else. Decided. No kidding!....

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 3:50 AM

See it for the first time!!....

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 5:30 AM

Develop the topic further! It is interesting to know more details..!!

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 6:09 AM

RX9mFn comment5

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 6:57 AM

Received the letter. I agree to exchange the articles..

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 6:57 AM

It's straight to the point! You could not tell in other words! :DD

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 8:25 AM

The author deserves for the monument:DD

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 9:31 AM

comment5

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 9:52 AM

Youth rock band "Ranetki" says thank you for such a wonderful blog..!!

by mket

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 10:01 AM

comment6

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 10:29 AM

comment6

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 10:58 AM

comment1

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 11:18 AM

Informative, but not convincing. Something is missing but what I can not understand. But I will say frankly: bright and benevolent thoughts!....

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 11:18 AM

Youth rock band "Ranetki" says thank you for such a wonderful blog..!!

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 11:27 AM

comment3

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 11:57 AM

comment6

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 12:25 PM

comment4

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 12:44 PM

Thanks for the article! I hope the author does not mind if I use it for my course work!....

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 2:12 PM

Thanks for the news! Just was thinking about it! By the way Happy New Year to all of you:DD

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 3:41 PM

Sometimes I also see something like this, but earlier I didn`t pay much attention to this!....

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 5:07 PM

Author, Shoot yourself a knee..!!

# re: Implementing an analogic clock in WPF@ Friday, January 13, 2012 6:33 PM

Yeah, now it's clear !... And firstly I did not understand very much where there was the link with the title itself !!....

# re: Implementing an analogic clock in WPF@ Saturday, January 14, 2012 3:47 PM

Somewhere in the Internet I have already read almost the same selection of information, but anyway thanks!!....

# re: Implementing an analogic clock in WPF@ Saturday, January 14, 2012 5:13 PM

Can be also this issue because the truth can be achieved only in a dispute :DD

# re: Implementing an analogic clock in WPF@ Saturday, January 14, 2012 6:38 PM

The topic is pretty complicated for a beginner!....

# re: Implementing an analogic clock in WPF@ Saturday, January 14, 2012 6:38 PM

Can be also this issue because the truth can be achieved only in a dispute :DD

# re: Implementing an analogic clock in WPF@ Saturday, January 14, 2012 9:29 PM

I do`t see a feedback or the other coordinates from the blog administration!....

# re: Implementing an analogic clock in WPF@ Saturday, January 14, 2012 10:55 PM

Good! Wish everybody wrote so:DD

# re: Implementing an analogic clock in WPF@ Sunday, January 15, 2012 12:22 AM

I envy you. The content and design of your blog is much better than mine. Who made a design for you?!....

# re: Implementing an analogic clock in WPF@ Sunday, January 15, 2012 8:58 AM

5ddmnp comment5

# re: Implementing an analogic clock in WPF@ Sunday, January 15, 2012 9:21 AM

Strange but true. Your resource is expensive. At least it could be sold for good money on its auction!....

# re: Implementing an analogic clock in WPF@ Sunday, January 15, 2012 10:47 AM

Yet, much is unclear. Could you describe in more details!....

# re: Implementing an analogic clock in WPF@ Sunday, January 15, 2012 11:30 AM

That's a great blog!

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 4:32 AM

ZklRcK comment2

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 4:58 AM

wNLM96 comment4

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 5:31 AM

auGgJl comment6

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 5:41 AM

I envy you. The content and design of your blog is much better than mine. Who made a design for you?!....

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 6:01 AM

PzBLSQ comment1

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 6:01 AM

PEWEfB comment3

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 6:02 AM

p8vRJZ comment1

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 6:02 AM

jUQhTZ comment3

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 6:07 AM

hZYQBS comment6

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 6:12 AM

hTEzYu comment2

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 6:12 AM

DOCvT1 comment2

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 6:12 AM

Ntr9Ig comment3

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 6:14 AM

YMtzNv comment6

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 7:12 AM

Cool:) I would say say it exploded my brain..!!

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 10:21 AM

The topic is pretty complicated for a beginner!....

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 11:48 AM

Author, Shoot yourself a knee..!!

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 12:49 PM

nkw4Dg comment4

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 2:45 PM

The Author is crazy..!!

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 2:45 PM

Informative, but not convincing. Something is missing but what I can not understand. But I will say frankly: bright and benevolent thoughts!....

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 3:35 PM

lLHUko comment6

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 4:12 PM

Thanks for the news! Just was thinking about it! By the way Happy New Year to all of you:DD

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 7:09 PM

Thank you, a very interesting note!!....

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 8:38 PM

The material is on the five plus. But there is a minus! My internet speed 56kb/sek. The page was loading for about 40 seconds!....

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 8:38 PM

I do`t see a feedback or the other coordinates from the blog administration!....

by cancer

# re: Implementing an analogic clock in WPF@ Monday, January 16, 2012 10:07 PM

I subscribed to RSS, but for some reason, the messages are written in the form of some hieroglyph (How  can it be corrected?!....

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 12:59 AM

I subscribed to RSS, but for some reason, the messages are written in the form of some hieroglyph (How  can it be corrected?!....

by point g

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 1:17 AM

aFavrR comment6

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 1:17 AM

cZ8qud comment2

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 1:17 AM

X09Kr6 comment1

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 1:17 AM

t00gNe comment1

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 1:17 AM

PTmi5D comment6

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 1:19 AM

4n5CKl comment3

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 1:19 AM

SIfYpQ comment2

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 1:19 AM

hjVFM1 comment1

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 1:19 AM

U3tKso comment5

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 1:20 AM

IHOZnB comment1

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 1:20 AM

iecZkS comment3

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 1:20 AM

eyKWaR comment3

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 2:24 AM

The topic is pretty complicated for a beginner!....

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 3:51 AM

Yeah, it is clear now !... From the very beginning I did not understand where was the connection with the title !!....

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 3:51 AM

Cool:) I would say say it exploded my brain..!!

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 5:17 AM

Thanks for all the answers:) In fact, learned a lot of new information. Dut I just didn`t figure out what is what till the end!....

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 6:46 AM

Good! Wish everybody wrote so:DD

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 8:13 AM

I am glad that your blog is constantly evolving. Such posts only gain in popularity!....

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 9:37 AM

Develop the topic further! It is interesting to know more details..!!

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 11:01 AM

Are you interested in webmaster`s income?!....

by baby

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 12:15 PM

I almost accidentally visited to this site, but stayed here for a long time. Stayed because everything was very interesting. Surely will share with all my friends!....

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 12:15 PM

Current blog, fresh information, I read it from time to time!!....

by As Logo

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 1:42 PM

I would add something else, of course, but in fact almost everything is mentioned!....

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 3:05 PM

I must admit, the webmaster has written cool..!!

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 4:32 PM

The topic is pretty complicated for a beginner!....

# re: Implementing an analogic clock in WPF@ Tuesday, January 17, 2012 4:32 PM

Thanks:) Cool topic, write more often! You manage with it perfctly:DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:04 AM

Interesting, but still I would like to know more about it. Liked the article:D

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:51 AM

Thanks:) Cool topic, write more often! You manage with it perfctly:D

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 6:38 AM

Good post! Found a lot of new and interesting! Will share the link with others:D

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 7:25 AM

The material is on the five plus. But there is a minus! My internet speed 56kb/sek. The page was loading for about 40 seconds!...

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:12 AM

I am glad that your blog is constantly evolving. Such posts only gain in popularity!...

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:17 AM

Author, keep doing  in the same way..!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:59 AM

The Author is crazy..!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 9:46 AM

Every time I come back here again and don`t get disappointed..!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 10:25 AM

Stupid article..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 10:33 AM

This article is for professionals..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 10:35 AM

Is anybody strong in radio here? We need a colleague who would tell us briefly about the transistor T2. I hope there are radio amateurs here. If it`s not on the subject at all, then I`m sorry. I have to write  because I have no choice. PS: if the spelling is not right then also I'm sorry, I'm just 13 years old!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 10:36 AM

Sorry for the off-topic, could you tell where I can get such a nice pattern for my blog ?!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 10:39 AM

Uh, well, explain me a please, I am not quite in the subject, how can it be?!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 10:41 AM

Extremely easy by words but in reality�, a lot of things don`t correspond. Not everything is so rosy..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 10:43 AM

I am amazed  with the abundance of interesting articles on your site! The author - good luck and wish you the new interesting posts..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 10:46 AM

As I have expected, the writer blurted out..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 10:47 AM

I subscribed to RSS, but for some reason, the messages are written in the form of some hieroglyph (How  can it be corrected?!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 10:49 AM

Interesting. We are waiting for new messages on the same topic!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 10:56 AM

I do`t see a feedback or the other coordinates from the blog administration!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 11:03 AM

The Author is crazy..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 11:09 AM

Thanks for the news! Just was thinking about it! By the way Happy New Year to all of you:DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 11:16 AM

Hi! Everyone who reads this blog - Happy Reconciliation and Accord..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 11:21 AM

A unique note..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 11:23 AM

Cool! You have answered. I'll take a quote! The meaning of life and everything else. Decided. No kidding!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 11:28 AM

I subscribed to RSS, but for some reason, the messages are written in the form of some hieroglyph (How  can it be corrected?!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 11:30 AM

I am glad that your blog is constantly evolving. Such posts only gain in popularity!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 11:32 AM

Good! Wish everybody wrote so:DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 11:48 AM

Is anybody strong in radio here? We need a colleague who would tell us briefly about the transistor T2. I hope there are radio amateurs here. If it`s not on the subject at all, then I`m sorry. I have to write  because I have no choice. PS: if the spelling is not right then also I'm sorry, I'm just 13 years old!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 12:33 PM

Yeah, now it's clear !... And firstly I did not understand very much where there was the link with the title itself !!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 12:38 PM

I must admit, the webmaster has written cool..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 12:40 PM

As usual, the webmaster posted correctly..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 12:40 PM

I decided to help and sent a post to the social  bookmarks. I hope to raise it in popularity!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 12:42 PM

I am getting married on the 15th of November. Congratulate me! Then will be here rarely!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 12:44 PM

Totally agree with you, about a week ago wrote about the same in my blog..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 12:45 PM

I do`t see a feedback or the other coordinates from the blog administration!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 12:47 PM

Can be also this issue because the truth can be achieved only in a dispute :DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 12:51 PM

Honestly, not bad news!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 12:59 PM

Pleased to read intelligent thoughts in Russian. I`ve been living in England for already 5 years!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 1:04 PM

Thanks for the article! I hope the author does not mind if I use it for my course work!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 1:06 PM

I do`t regret that spent a few of minutes for reading. Write more often,  surely'll come to read something new!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 1:07 PM

I read and feel at home. Thanks the creators for a good resource..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 1:08 PM

Yeah� I read and I understand that I do not understand anything what it is about:DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 1:10 PM

Of course, I understand a little about this post but  will try cope with it!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 1:14 PM

Interesting, but still I would like to know more about it. Liked the article:DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 2:02 PM

Develop the topic further! It is interesting to know more details..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 2:09 PM

Is anybody strong in radio here? We need a colleague who would tell us briefly about the transistor T2. I hope there are radio amateurs here. If it`s not on the subject at all, then I`m sorry. I have to write  because I have no choice. PS: if the spelling is not right then also I'm sorry, I'm just 13 years old!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 2:09 PM

Youth rock band "Ranetki" says thank you for such a wonderful blog..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 2:12 PM

Yeah� I read and I understand that I do not understand anything what it is about:DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 2:13 PM

Yeah, now it's clear !... And firstly I did not understand very much where there was the link with the title itself !!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 2:15 PM

Thank you very much! I took it for myself too. Will be useful!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 2:15 PM

Hello! Read the pages not for the first day. Yes, the connection speed is not good. How can I subscribe? I would like to read you in the future!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 2:16 PM

Totally agree with you, about a week ago wrote about the same in my blog..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 2:21 PM

The material is on the five plus. But there is a minus! My internet speed 56kb/sek. The page was loading for about 40 seconds!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 2:25 PM

Every time I come back here again and don`t get disappointed..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 2:29 PM

Excellent! Got a real pleasure..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 2:33 PM

Last a few years has been to Ibiza, so met a person there whose style of presentation is very similar to yours. But, unfortunately, that person is too far from the Internet!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 2:36 PM

Strange but true. Your resource is expensive. At least it could be sold for good money on its auction!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 2:36 PM

Pleased to read intelligent thoughts in Russian. I`ve been living in England for already 5 years!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 2:37 PM

Interesting. We are waiting for new messages on the same topic!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 2:39 PM

Thank you, a very interesting note!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 2:44 PM

Right from this article begin to read this blog. Plus a subscriber:DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 2:45 PM

It`s really useful! Looking through the Internet you can mostly observe watered down information, something like bla bla bla, but not here to my deep surprise. It makes me happy..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 3:34 PM

Informative, but not convincing. Something is missing but what I can not understand. But I will say frankly: bright and benevolent thoughts!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 3:39 PM

The topic is pretty complicated for a beginner!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 3:54 PM

Internet is written with the capital letter in a sentence, by the way. And hundredths are written not with a point but with a comma. This is according to the standard. And actually everything is very good..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 3:56 PM

Excellent! Got a real pleasure..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:04 PM

Hello! Read the pages not for the first day. Yes, the connection speed is not good. How can I subscribe? I would like to read you in the future!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:08 PM

Somewhere in the Internet I have already read almost the same selection of information, but anyway thanks!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:11 PM

Hello! Read the pages not for the first day. Yes, the connection speed is not good. How can I subscribe? I would like to read you in the future!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:12 PM

The material is on the five plus. But there is a minus! My internet speed 56kb/sek. The page was loading for about 40 seconds!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:16 PM

I am glad that your blog is constantly evolving. Such posts only gain in popularity!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:16 PM

Of course, I understand a little about this post but  will try cope with it!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:19 PM

Very amusing thoughts, well told, everything is in its place:DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:22 PM

Good day! I do not see the conditions of using the information. May I copy the text from here on my site if you leave a link to this page?!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:23 PM

Author, keep doing  in the same way..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:25 PM

Author, keep doing  in the same way..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:29 PM

Honestly, not bad news!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:30 PM

I read and feel at home. Thanks the creators for a good resource..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:31 PM

Of course, I understand a little about this post but  will try cope with it!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:32 PM

Received the letter. I agree to exchange the articles..

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:34 PM

Edidn`t think about that. I'll tell my mother, she won`t believe it..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:41 PM

Author, Shoot yourself a knee..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:44 PM

I am getting married on the 15th of November. Congratulate me! Then will be here rarely!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:46 PM

Fresh thoughts, fresh view on the subject..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:49 PM

It's straight to the point! You could not tell in other words! :DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:50 PM

Are you interested in webmaster`s income?!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:53 PM

Received the letter. I agree to exchange the articles..

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:54 PM

Heartfelt thanks..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 4:57 PM

Thanks for the article! I hope the author does not mind if I use it for my course work!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:00 PM

I must admit, the webmaster has written cool..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:01 PM

Yeah� I read and I understand that I do not understand anything what it is about:DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:03 PM

As usual, the webmaster posted correctly..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:04 PM

Thanks a lot! An extremely interesting comment!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:07 PM

I do`t see a feedback or the other coordinates from the blog administration!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:08 PM

Received the letter. I agree to exchange the articles..

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:09 PM

Very amusing thoughts, well told, everything is in its place:DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:10 PM

Stupid article..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:12 PM

Thank you very much! I took it for myself too. Will be useful!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:20 PM

Sometimes I also see something like this, but earlier I didn`t pay much attention to this!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:22 PM

Fresh thoughts, fresh view on the subject..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:24 PM

Yeah, it is clear now !... From the very beginning I did not understand where was the connection with the title !!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:28 PM

However, the author created a cool thing..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:33 PM

Current blog, fresh information, I read it from time to time!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:36 PM

Thanks a lot! An extremely interesting comment!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:40 PM

Thanks for the news! Just was thinking about it! By the way Happy New Year to all of you:DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:42 PM

I do`t regret that spent a few of minutes for reading. Write more often,  surely'll come to read something new!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:43 PM

Develop the topic further! It is interesting to know more details..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:45 PM

Develop the topic further! It is interesting to know more details..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:48 PM

Edidn`t think about that. I'll tell my mother, she won`t believe it..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 5:50 PM

As usual, the webmaster posted correctly..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 6:02 PM

I would add something else, of course, but in fact almost everything is mentioned!....

by home

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 6:06 PM

Totally agree with you, about a week ago wrote about the same in my blog..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 6:06 PM

Author, Shoot yourself a knee..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 6:10 PM

I almost accidentally visited to this site, but stayed here for a long time. Stayed because everything was very interesting. Surely will share with all my friends!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 6:11 PM

Thanks, useful material I added your blog to my bookmarks!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 6:14 PM

Sometimes I also see something like this, but earlier I didn`t pay much attention to this!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 6:17 PM

I envy you. The content and design of your blog is much better than mine. Who made a design for you?!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 6:18 PM

The material is on the five plus. But there is a minus! My internet speed 56kb/sek. The page was loading for about 40 seconds!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 6:20 PM

I subscribed to RSS, but for some reason, the messages are written in the form of some hieroglyph (How  can it be corrected?!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 6:21 PM

It's straight to the point! You could not tell in other words! :DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 6:24 PM

I decided to help and sent a post to the social  bookmarks. I hope to raise it in popularity!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 6:25 PM

Informative, but not convincing. Something is missing but what I can not understand. But I will say frankly: bright and benevolent thoughts!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 6:29 PM

As usual, the webmaster posted correctly..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 6:36 PM

Thank you, a very interesting note!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 6:38 PM

Scribbler, give me a student's record-book!))))

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 6:40 PM

Are you interested in webmaster`s income?!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 7:22 PM

Can be also this issue because the truth can be achieved only in a dispute :DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 7:23 PM

Heartfelt thanks..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 7:27 PM

Very amusing thoughts, well told, everything is in its place:DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 7:27 PM

Cool! You have answered. I'll take a quote! The meaning of life and everything else. Decided. No kidding!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 7:31 PM

Yeah, in my opinion, it is written on every fence!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 7:33 PM

Comrade kill yourself..

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 7:35 PM

Post brought me to think, went to mull over!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 7:37 PM

Excellent! Got a real pleasure..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 7:37 PM

I am amazed  with the abundance of interesting articles on your site! The author - good luck and wish you the new interesting posts..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 7:40 PM

52. "The road will be overcome by that person, who goes." I wish you never stopped and be creative - forever..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 7:41 PM

The material is on the five plus. But there is a minus! My internet speed 56kb/sek. The page was loading for about 40 seconds!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 7:42 PM

Author, Shoot yourself a knee..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 7:43 PM

Extremely easy by words but in reality�, a lot of things don`t correspond. Not everything is so rosy..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 7:45 PM

This article is for professionals..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 7:53 PM

Well, actually, a lot of what you write is not quite true !... well, okay, it does not matter:DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 7:55 PM

Thanks a lot! An extremely interesting comment!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 7:57 PM

Yeah, it is clear now !... Just can not figure out how often do you update your blog?!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:01 PM

Develop the topic further! It is interesting to know more details..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:01 PM

Is anybody strong in radio here? We need a colleague who would tell us briefly about the transistor T2. I hope there are radio amateurs here. If it`s not on the subject at all, then I`m sorry. I have to write  because I have no choice. PS: if the spelling is not right then also I'm sorry, I'm just 13 years old!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:06 PM

Informative, but not convincing. Something is missing but what I can not understand. But I will say frankly: bright and benevolent thoughts!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:06 PM

I am getting married on the 15th of November. Congratulate me! Then will be here rarely!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:10 PM

Fresh thoughts, fresh view on the subject..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:12 PM

I do`t regret that spent a few of minutes for reading. Write more often,  surely'll come to read something new!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:14 PM

The material is on the five plus. But there is a minus! My internet speed 56kb/sek. The page was loading for about 40 seconds!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:16 PM

Uh, well, explain me a please, I am not quite in the subject, how can it be?!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:16 PM

However, the author created a cool thing..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:19 PM

Cool! You have answered. I'll take a quote! The meaning of life and everything else. Decided. No kidding!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:20 PM

Hello! Read the pages not for the first day. Yes, the connection speed is not good. How can I subscribe? I would like to read you in the future!....

by AR

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:22 PM

I read online (computer problems) positive feedback about your resource. Didnt even believe it, and now saw myself. It turned out that I was not fooled!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:22 PM

Sent the first post, but it wasn`t published. I am writing the second. It's me, the African tourist..

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:33 PM

Hello! How do you feel about young composers?!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:35 PM

I do`t regret that spent a few of minutes for reading. Write more often,  surely'll come to read something new!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:37 PM

Interesting, but still I would like to know more about it. Liked the article:DD

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:41 PM

Hello! How do you feel about young composers?!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:41 PM

Of course, I understand a little about this post but  will try cope with it!!....

by pokies

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:46 PM

I must admit, the webmaster has written cool..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:52 PM

Informative, but not convincing. Something is missing but what I can not understand. But I will say frankly: bright and benevolent thoughts!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:54 PM

I subscribed to RSS, but for some reason, the messages are written in the form of some hieroglyph (How  can it be corrected?!....

by pokies

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 8:56 PM

As usual, the webmaster posted correctly..!!

by pokies

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 9:00 PM

Yeah !... life is like riding a bicycle. You will not fall unless you stop pedaling!!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 9:02 PM

I do`t see a feedback or the other coordinates from the blog administration!....

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 9:05 PM

Internet is written with the capital letter in a sentence, by the way. And hundredths are written not with a point but with a comma. This is according to the standard. And actually everything is very good..!!

by pokies

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 9:15 PM

Hi! Everyone who reads this blog - Happy Reconciliation and Accord..!!

# re: Implementing an analogic clock in WPF@ Wednesday, January 18, 2012 9:17 PM

Hi! Everyone who reads this blog - Happy Reconciliation and Accord..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:50 AM

Hooray! the one who wrote is a cool guy..!!

by tutor

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:50 AM

Totally agree with you, about a week ago wrote about the same in my blog..!!

by tutor

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:54 AM

I am getting married on the 15th of November. Congratulate me! Then will be here rarely!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:55 AM

Read, of course, far from my topic. But still, we can work together. How do you feel about trust management?!....

by tutor

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:01 AM

The text is promising, will place the site to my favorites..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:03 AM

Is anybody strong in radio here? We need a colleague who would tell us briefly about the transistor T2. I hope there are radio amateurs here. If it`s not on the subject at all, then I`m sorry. I have to write  because I have no choice. PS: if the spelling is not right then also I'm sorry, I'm just 13 years old!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:05 AM

Cool! You have answered. I'll take a quote! The meaning of life and everything else. Decided. No kidding!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:06 AM

Thank you, a very interesting note!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:09 AM

As I have expected, the writer blurted out..!!

by tutor

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:10 AM

I do`t see a feedback or the other coordinates from the blog administration!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:11 AM

I was looking for the report  in Yandex and suddenly came across this page. I found a little information on my topic of my report. I would like more, and thanks for that..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:12 AM

I am glad that your blog is constantly evolving. Such posts only gain in popularity!....

by tutor

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:14 AM

The Author is crazy..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:22 AM

Totally agree with you, about a week ago wrote about the same in my blog..!!

by tutor

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:25 AM

Sent the first post, but it wasn`t published. I am writing the second. It's me, the African tourist..

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:27 AM

Scribbler, give me a student's record-book!))))

by tutor

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:31 AM

Strange but true. Your resource is expensive. At least it could be sold for good money on its auction!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:31 AM

Is anybody strong in radio here? We need a colleague who would tell us briefly about the transistor T2. I hope there are radio amateurs here. If it`s not on the subject at all, then I`m sorry. I have to write  because I have no choice. PS: if the spelling is not right then also I'm sorry, I'm just 13 years old!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:35 AM

Hooray! the one who wrote is a cool guy..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:36 AM

Author, keep doing  in the same way..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:40 AM

The material is on the five plus. But there is a minus! My internet speed 56kb/sek. The page was loading for about 40 seconds!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:42 AM

The material is on the five plus. But there is a minus! My internet speed 56kb/sek. The page was loading for about 40 seconds!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:44 AM

Scribbler, give me a student's record-book!))))

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:46 AM

I subscribed to RSS, but for some reason, the messages are written in the form of some hieroglyph (How  can it be corrected?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:47 AM

Yeah, now it's clear !... And firstly I did not understand very much where there was the link with the title itself !!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:50 AM

Sometimes I also see something like this, but earlier I didn`t pay much attention to this!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:51 AM

Yeah, it is clear now !... From the very beginning I did not understand where was the connection with the title !!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:52 AM

I serched through the internet and got here. What a wonderful invention of the mankind. With the help of the network you communicate, learn, read !... That helped us to get  acquainted!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:53 AM

Sent the first post, but it wasn`t published. I am writing the second. It's me, the African tourist..

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:56 AM

Post brought me to think, went to mull over!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:04 AM

Youth rock band "Ranetki" says thank you for such a wonderful blog..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:06 AM

Not bad post, but a lot of extra !!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:08 AM

Author, Shoot yourself a knee..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:12 AM

I was looking for the report  in Yandex and suddenly came across this page. I found a little information on my topic of my report. I would like more, and thanks for that..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:17 AM

Cool! You have answered. I'll take a quote! The meaning of life and everything else. Decided. No kidding!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:17 AM

The Author is crazy..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:21 AM

Excellent! Got a real pleasure..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:25 AM

Thanks:) Cool topic, write more often! You manage with it perfctly:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:27 AM

Hello! Read the pages not for the first day. Yes, the connection speed is not good. How can I subscribe? I would like to read you in the future!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:28 AM

Very amusing thoughts, well told, everything is in its place:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:31 AM

Thanks, useful material I added your blog to my bookmarks!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:32 AM

I do`t see a feedback or the other coordinates from the blog administration!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:34 AM

I read online (computer problems) positive feedback about your resource. Didnt even believe it, and now saw myself. It turned out that I was not fooled!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:34 AM

Yeah� I read and I understand that I do not understand anything what it is about:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:37 AM

Internet is written with the capital letter in a sentence, by the way. And hundredths are written not with a point but with a comma. This is according to the standard. And actually everything is very good..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:45 AM

The material is on the five plus. But there is a minus! My internet speed 56kb/sek. The page was loading for about 40 seconds!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:47 AM

The author deserves for the monument:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:49 AM

Somewhere in the Internet I have already read almost the same selection of information, but anyway thanks!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:53 AM

Yeah, in my opinion, it is written on every fence!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:54 AM

Can be also this issue because the truth can be achieved only in a dispute :DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:58 AM

Not bad post, but a lot of extra !!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:59 AM

Yet, much is unclear. Could you describe in more details!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:05 AM

I would add something else, of course, but in fact almost everything is mentioned!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:07 AM

Totally agree with you, about a week ago wrote about the same in my blog..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:09 AM

Left on my site a link to this post. I think many people will be interested in it..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:10 AM

Internet is written with the capital letter in a sentence, by the way. And hundredths are written not with a point but with a comma. This is according to the standard. And actually everything is very good..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:12 AM

Develop the topic further! It is interesting to know more details..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:14 AM

Every time I come back here again and don`t get disappointed..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:15 AM

Yet, much is unclear. Could you describe in more details!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:16 AM

Yeah, it is clear now !... Just can not figure out how often do you update your blog?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:18 AM

Internet is written with the capital letter in a sentence, by the way. And hundredths are written not with a point but with a comma. This is according to the standard. And actually everything is very good..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:26 AM

Develop the topic further! It is interesting to know more details..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:29 AM

Good! Wish everybody wrote so:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:31 AM

I must admit, the webmaster has written cool..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:35 AM

Yeah, now it's clear !... And firstly I did not understand very much where there was the link with the title itself !!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:35 AM

Thanks for the news! Just was thinking about it! By the way Happy New Year to all of you:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:39 AM

52. "The road will be overcome by that person, who goes." I wish you never stopped and be creative - forever..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:40 AM

I was looking for the report  in Yandex and suddenly came across this page. I found a little information on my topic of my report. I would like more, and thanks for that..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:44 AM

Somewhere in the Internet I have already read almost the same selection of information, but anyway thanks!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:46 AM

Youth rock band "Ranetki" says thank you for such a wonderful blog..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:48 AM

Received the letter. I agree to exchange the articles..

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:50 AM

I read online (computer problems) positive feedback about your resource. Didnt even believe it, and now saw myself. It turned out that I was not fooled!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:51 AM

Received the letter. I agree to exchange the articles..

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:54 AM

Hi! Everyone who reads this blog - Happy Reconciliation and Accord..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:55 AM

Read, of course, far from my topic. But still, we can work together. How do you feel about trust management?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:57 AM

Stupid article..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:57 AM

Yeah, now it's clear !... And firstly I did not understand very much where there was the link with the title itself !!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 8:59 AM

I do`t regret that spent a few of minutes for reading. Write more often,  surely'll come to read something new!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 9:08 AM

Extremely easy by words but in reality�, a lot of things don`t correspond. Not everything is so rosy..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 9:10 AM

It`s really useful! Looking through the Internet you can mostly observe watered down information, something like bla bla bla, but not here to my deep surprise. It makes me happy..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 9:12 AM

The Author is crazy..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 9:17 AM

Of course, I understand a little about this post but  will try cope with it!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 9:21 AM

I would add something else, of course, but in fact almost everything is mentioned!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 9:22 AM

I almost accidentally visited to this site, but stayed here for a long time. Stayed because everything was very interesting. Surely will share with all my friends!....

by dresses

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 9:25 AM

Stupid article..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 9:28 AM

Good! Wish everybody wrote so:DD

by ASOS

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 9:29 AM

Comrade kill yourself..

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 9:32 AM

Received the letter. I agree to exchange the articles..

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 9:32 AM

Is anybody strong in radio here? We need a colleague who would tell us briefly about the transistor T2. I hope there are radio amateurs here. If it`s not on the subject at all, then I`m sorry. I have to write  because I have no choice. PS: if the spelling is not right then also I'm sorry, I'm just 13 years old!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 9:36 AM

Read, of course, far from my topic. But still, we can work together. How do you feel about trust management?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 9:37 AM

I do`t see a feedback or the other coordinates from the blog administration!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 9:38 AM

Not bad post, leave it at my bookmarks!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 9:39 AM

I must admit, the webmaster is a cool guy..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 9:41 AM

Hello! How do you feel about young composers?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 9:49 AM

Very amusing thoughts, well told, everything is in its place:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 9:52 AM

I serched through the internet and got here. What a wonderful invention of the mankind. With the help of the network you communicate, learn, read !... That helped us to get  acquainted!....

by ASOS

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 9:54 AM

The text is promising, will place the site to my favorites..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 9:59 AM

It's straight to the point! You could not tell in other words! :DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:03 AM

This article is for professionals..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:04 AM

Gripping! I would like to listen to the experts` views on the subject!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:07 AM

A unique note..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:10 AM

Current blog, fresh information, I read it from time to time!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:11 AM

Hello! Read the pages not for the first day. Yes, the connection speed is not good. How can I subscribe? I would like to read you in the future!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:14 AM

Scribbler, give me a student's record-book!))))

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:15 AM

Received the letter. I agree to exchange the articles..

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:18 AM

Are you interested in webmaster`s income?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:19 AM

The material is on the five plus. But there is a minus! My internet speed 56kb/sek. The page was loading for about 40 seconds!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:20 AM

Pleased to read intelligent thoughts in Russian. I`ve been living in England for already 5 years!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:21 AM

I do`t see a feedback or the other coordinates from the blog administration!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:23 AM

Gripping! I would like to listen to the experts` views on the subject!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:32 AM

Strange but true. Your resource is expensive. At least it could be sold for good money on its auction!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:35 AM

I decided to help and sent a post to the social  bookmarks. I hope to raise it in popularity!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:37 AM

Thank you, a very interesting note!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:40 AM

Edidn`t think about that. I'll tell my mother, she won`t believe it..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:41 AM

I`m so grateful that you enlightened me and the most important thing that it happened in time. Just think, I have been using the internet for six years already but it`s the first time I`ve ever heard about it!....

by Sperky

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:45 AM

Cool! You have answered. I'll take a quote! The meaning of life and everything else. Decided. No kidding!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:46 AM

Right from this article begin to read this blog. Plus a subscriber:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:50 AM

Comrade kill yourself..

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:52 AM

I read and feel at home. Thanks the creators for a good resource..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:54 AM

Totally agree with you, about a week ago wrote about the same in my blog..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:56 AM

Pleased to read intelligent thoughts in Russian. I`ve been living in England for already 5 years!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 10:57 AM

I would add something else, of course, but in fact almost everything is mentioned!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 11:00 AM

Thanks for the article! I hope the author does not mind if I use it for my course work!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 11:01 AM

Not bad post, leave it at my bookmarks!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 11:03 AM

Thanks a lot! An extremely interesting comment!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 11:03 AM

The text is promising, will place the site to my favorites..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 11:06 AM

Good day! I do not see the conditions of using the information. May I copy the text from here on my site if you leave a link to this page?!....

by Sperky

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 11:14 AM

Sometimes I also see something like this, but earlier I didn`t pay much attention to this!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 11:17 AM

I am getting married on the 15th of November. Congratulate me! Then will be here rarely!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 11:19 AM

I must admit, the webmaster is a cool guy..!!

by Sperky

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 12:05 PM

Scribbler, give me a student's record-book!))))

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 12:05 PM

Last a few years has been to Ibiza, so met a person there whose style of presentation is very similar to yours. But, unfortunately, that person is too far from the Internet!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 12:10 PM

Yet, much is unclear. Could you describe in more details!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 12:10 PM

I do`t see a feedback or the other coordinates from the blog administration!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 12:14 PM

I serched through the internet and got here. What a wonderful invention of the mankind. With the help of the network you communicate, learn, read !... That helped us to get  acquainted!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 12:17 PM

Every time I come back here again and don`t get disappointed..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 12:18 PM

Youth rock band "Ranetki" says thank you for such a wonderful blog..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 12:21 PM

Hello! How do you feel about young composers?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 12:21 PM

I am amazed  with the abundance of interesting articles on your site! The author - good luck and wish you the new interesting posts..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 12:25 PM

Totally agree with you, about a week ago wrote about the same in my blog..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 12:26 PM

Informative, but not convincing. Something is missing but what I can not understand. But I will say frankly: bright and benevolent thoughts!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 12:27 PM

The text is promising, will place the site to my favorites..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 12:28 PM

Edidn`t think about that. I'll tell my mother, she won`t believe it..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 12:30 PM

I almost accidentally visited to this site, but stayed here for a long time. Stayed because everything was very interesting. Surely will share with all my friends!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 12:39 PM

Honestly, not bad news!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 12:42 PM

I am glad that your blog is constantly evolving. Such posts only gain in popularity!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 12:53 PM

Fresh thoughts, fresh view on the subject..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 12:57 PM

Develop the topic further! It is interesting to know more details..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:00 PM

Is anybody strong in radio here? We need a colleague who would tell us briefly about the transistor T2. I hope there are radio amateurs here. If it`s not on the subject at all, then I`m sorry. I have to write  because I have no choice. PS: if the spelling is not right then also I'm sorry, I'm just 13 years old!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:01 PM

I envy you. The content and design of your blog is much better than mine. Who made a design for you?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:04 PM

I am getting married on the 15th of November. Congratulate me! Then will be here rarely!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:04 PM

Sorry for the off-topic, could you tell where I can get such a nice pattern for my blog ?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:08 PM

I read online (computer problems) positive feedback about your resource. Didnt even believe it, and now saw myself. It turned out that I was not fooled!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:09 PM

I was looking for the report  in Yandex and suddenly came across this page. I found a little information on my topic of my report. I would like more, and thanks for that..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:10 PM

I`m so grateful that you enlightened me and the most important thing that it happened in time. Just think, I have been using the internet for six years already but it`s the first time I`ve ever heard about it!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:13 PM

Thanks for the news! Just was thinking about it! By the way Happy New Year to all of you:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:22 PM

Received the letter. I agree to exchange the articles..

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:24 PM

The Author is crazy..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:27 PM

Yeah, now it's clear !... And firstly I did not understand very much where there was the link with the title itself !!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:30 PM

As I have expected, the writer blurted out..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:31 PM

Somewhere in the Internet I have already read almost the same selection of information, but anyway thanks!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:36 PM

52. "The road will be overcome by that person, who goes." I wish you never stopped and be creative - forever..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:36 PM

I am amazed  with the abundance of interesting articles on your site! The author - good luck and wish you the new interesting posts..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:40 PM

I must admit, the webmaster is a cool guy..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:43 PM

I`m so grateful that you enlightened me and the most important thing that it happened in time. Just think, I have been using the internet for six years already but it`s the first time I`ve ever heard about it!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:44 PM

I envy you. The content and design of your blog is much better than mine. Who made a design for you?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:47 PM

I serched through the internet and got here. What a wonderful invention of the mankind. With the help of the network you communicate, learn, read !... That helped us to get  acquainted!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:47 PM

Good post! Found a lot of new and interesting! Will share the link with others:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:51 PM

Good! Wish everybody wrote so:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:52 PM

I decided to help and sent a post to the social  bookmarks. I hope to raise it in popularity!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:53 PM

However, the author created a cool thing..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:53 PM

It's straight to the point! You could not tell in other words! :DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 1:56 PM

The material is on the five plus. But there is a minus! My internet speed 56kb/sek. The page was loading for about 40 seconds!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 2:04 PM

Excellent! Got a real pleasure..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 2:07 PM

Can be also this issue because the truth can be achieved only in a dispute :DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 2:09 PM

Thanks, useful material I added your blog to my bookmarks!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 2:13 PM

I subscribed to RSS, but for some reason, the messages are written in the form of some hieroglyph (How  can it be corrected?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 2:14 PM

Interesting, but still I would like to know more about it. Liked the article:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 2:18 PM

Uh, well, explain me a please, I am not quite in the subject, how can it be?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 2:19 PM

I subscribed to RSS, but for some reason, the messages are written in the form of some hieroglyph (How  can it be corrected?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 2:22 PM

Hooray! the one who wrote is a cool guy..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 2:25 PM

Hooray! the one who wrote is a cool guy..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 2:27 PM

Yeah, it is clear now !... Just can not figure out how often do you update your blog?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 2:33 PM

I would add something else, of course, but in fact almost everything is mentioned!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 2:35 PM

Current blog, fresh information, I read it from time to time!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 2:36 PM

Totally agree with you, about a week ago wrote about the same in my blog..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 2:38 PM

Thanks for the article! I hope the author does not mind if I use it for my course work!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 2:46 PM

I almost accidentally visited to this site, but stayed here for a long time. Stayed because everything was very interesting. Surely will share with all my friends!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 2:49 PM

Hello! Read the pages not for the first day. Yes, the connection speed is not good. How can I subscribe? I would like to read you in the future!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 2:51 PM

The Author is crazy..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 2:55 PM

Interesting. We are waiting for new messages on the same topic!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 2:56 PM

See it for the first time!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:00 PM

Informative, but not convincing. Something is missing but what I can not understand. But I will say frankly: bright and benevolent thoughts!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:01 PM

Sent the first post, but it wasn`t published. I am writing the second. It's me, the African tourist..

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:04 PM

Comrade kill yourself..

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:07 PM

Are you interested in webmaster`s income?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:09 PM

Post brought me to think, went to mull over!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:11 PM

I was looking for the report  in Yandex and suddenly came across this page. I found a little information on my topic of my report. I would like more, and thanks for that..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:11 PM

Last a few years has been to Ibiza, so met a person there whose style of presentation is very similar to yours. But, unfortunately, that person is too far from the Internet!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:14 PM

Edidn`t think about that. I'll tell my mother, she won`t believe it..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:16 PM

It's straight to the point! You could not tell in other words! :DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:17 PM

I read online (computer problems) positive feedback about your resource. Didnt even believe it, and now saw myself. It turned out that I was not fooled!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:18 PM

I`m so grateful that you enlightened me and the most important thing that it happened in time. Just think, I have been using the internet for six years already but it`s the first time I`ve ever heard about it!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:20 PM

I read and feel at home. Thanks the creators for a good resource..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:28 PM

I would add something else, of course, but in fact almost everything is mentioned!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:33 PM

Good post! Found a lot of new and interesting! Will share the link with others:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:37 PM

Current blog, fresh information, I read it from time to time!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:37 PM

I almost accidentally visited to this site, but stayed here for a long time. Stayed because everything was very interesting. Surely will share with all my friends!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:41 PM

I do`t see a feedback or the other coordinates from the blog administration!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:42 PM

Fresh thoughts, fresh view on the subject..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:46 PM

See it for the first time!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:50 PM

Strange but true. Your resource is expensive. At least it could be sold for good money on its auction!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:52 PM

I am getting married on the 15th of November. Congratulate me! Then will be here rarely!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:53 PM

I subscribed to RSS, but for some reason, the messages are written in the form of some hieroglyph (How  can it be corrected?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:56 PM

Hello! Read the pages not for the first day. Yes, the connection speed is not good. How can I subscribe? I would like to read you in the future!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:57 PM

I must admit, the webmaster is a cool guy..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:59 PM

Strange but true. Your resource is expensive. At least it could be sold for good money on its auction!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 3:59 PM

Thanks for all the answers:) In fact, learned a lot of new information. Dut I just didn`t figure out what is what till the end!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 4:02 PM

Edidn`t think about that. I'll tell my mother, she won`t believe it..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 4:10 PM

Sent the first post, but it wasn`t published. I am writing the second. It's me, the African tourist..

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 4:13 PM

Post brought me to think, went to mull over!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 4:15 PM

Thanks for the news! Just was thinking about it! By the way Happy New Year to all of you:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 4:19 PM

The material is on the five plus. But there is a minus! My internet speed 56kb/sek. The page was loading for about 40 seconds!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 4:19 PM

Of course, I understand a little about this post but  will try cope with it!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 4:24 PM

Sorry for the off-topic, could you tell where I can get such a nice pattern for my blog ?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 4:24 PM

However, the author created a cool thing..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 4:28 PM

It's pleasant sitting at work to distract from it�to relax and read the information written here:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 4:31 PM

Left on my site a link to this post. I think many people will be interested in it..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 4:32 PM

The Author is crazy..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 4:35 PM

Cool:) I would say say it exploded my brain..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 4:35 PM

Read, of course, far from my topic. But still, we can work together. How do you feel about trust management?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 4:38 PM

Yeah, it is clear now !... Just can not figure out how often do you update your blog?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 4:40 PM

Not bad post, leave it at my bookmarks!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 4:41 PM

I serched through the internet and got here. What a wonderful invention of the mankind. With the help of the network you communicate, learn, read !... That helped us to get  acquainted!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 4:42 PM

Fresh thoughts, fresh view on the subject..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 4:44 PM

As usual, the webmaster posted correctly..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 4:52 PM

I envy you. The content and design of your blog is much better than mine. Who made a design for you?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 4:55 PM

Extremely easy by words but in reality�, a lot of things don`t correspond. Not everything is so rosy..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 4:57 PM

A unique note..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:01 PM

I serched through the internet and got here. What a wonderful invention of the mankind. With the help of the network you communicate, learn, read !... That helped us to get  acquainted!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:06 PM

Good day! I do not see the conditions of using the information. May I copy the text from here on my site if you leave a link to this page?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:06 PM

Develop the topic further! It is interesting to know more details..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:10 PM

Right from this article begin to read this blog. Plus a subscriber:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:13 PM

Right from this article begin to read this blog. Plus a subscriber:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:15 PM

I decided to help and sent a post to the social  bookmarks. I hope to raise it in popularity!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:17 PM

As I have expected, the writer blurted out..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:17 PM

Edidn`t think about that. I'll tell my mother, she won`t believe it..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:21 PM

Somewhere in the Internet I have already read almost the same selection of information, but anyway thanks!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:22 PM

Yeah, now it's clear !... And firstly I did not understand very much where there was the link with the title itself !!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:23 PM

Of course, I understand a little about this post but  will try cope with it!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:24 PM

Extremely easy by words but in reality�, a lot of things don`t correspond. Not everything is so rosy..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:26 PM

Very amusing thoughts, well told, everything is in its place:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:35 PM

Good post! Found a lot of new and interesting! Will share the link with others:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:37 PM

I`m so grateful that you enlightened me and the most important thing that it happened in time. Just think, I have been using the internet for six years already but it`s the first time I`ve ever heard about it!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:39 PM

Yet, much is unclear. Could you describe in more details!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:44 PM

Thank you, a very interesting note!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:44 PM

The author deserves for the monument:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:49 PM

Yeah, it is clear now !... Just can not figure out how often do you update your blog?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:49 PM

Pleased to read intelligent thoughts in Russian. I`ve been living in England for already 5 years!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:53 PM

Cool:) I would say say it exploded my brain..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:56 PM

Good post! Found a lot of new and interesting! Will share the link with others:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 5:58 PM

I am getting married on the 15th of November. Congratulate me! Then will be here rarely!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:00 PM

It's pleasant sitting at work to distract from it�to relax and read the information written here:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:01 PM

Sent the first post, but it wasn`t published. I am writing the second. It's me, the African tourist..

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:04 PM

Thanks for the article! I hope the author does not mind if I use it for my course work!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:05 PM

Is anybody strong in radio here? We need a colleague who would tell us briefly about the transistor T2. I hope there are radio amateurs here. If it`s not on the subject at all, then I`m sorry. I have to write  because I have no choice. PS: if the spelling is not right then also I'm sorry, I'm just 13 years old!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:07 PM

This article is for professionals..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:07 PM

I must admit, the webmaster has written cool..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:10 PM

I must admit, the webmaster is a cool guy..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:18 PM

Can be also this issue because the truth can be achieved only in a dispute :DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:23 PM

Thanks for all the answers:) In fact, learned a lot of new information. Dut I just didn`t figure out what is what till the end!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:27 PM

Develop the topic further! It is interesting to know more details..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:28 PM

Totally agree with you, about a week ago wrote about the same in my blog..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:32 PM

I subscribed to RSS, but for some reason, the messages are written in the form of some hieroglyph (How  can it be corrected?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:33 PM

See it for the first time!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:37 PM

Cool! You have answered. I'll take a quote! The meaning of life and everything else. Decided. No kidding!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:40 PM

However, the author created a cool thing..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:41 PM

Thanks:) Cool topic, write more often! You manage with it perfctly:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:45 PM

Pleased to read intelligent thoughts in Russian. I`ve been living in England for already 5 years!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:49 PM

Every time I come back here again and don`t get disappointed..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:50 PM

Good post! Found a lot of new and interesting! Will share the link with others:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:51 PM

As usual, the webmaster posted correctly..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 6:54 PM

Good post! Found a lot of new and interesting! Will share the link with others:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:02 PM

Cool! You have answered. I'll take a quote! The meaning of life and everything else. Decided. No kidding!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:05 PM

I subscribed to RSS, but for some reason, the messages are written in the form of some hieroglyph (How  can it be corrected?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:07 PM

It's straight to the point! You could not tell in other words! :DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:11 PM

Current blog, fresh information, I read it from time to time!!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:12 PM

Totally agree with you, about a week ago wrote about the same in my blog..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:17 PM

Received the letter. I agree to exchange the articles..

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:17 PM

It`s really useful! Looking through the Internet you can mostly observe watered down information, something like bla bla bla, but not here to my deep surprise. It makes me happy..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:21 PM

I do`t see a feedback or the other coordinates from the blog administration!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:25 PM

I read online (computer problems) positive feedback about your resource. Didnt even believe it, and now saw myself. It turned out that I was not fooled!....

by sr22 fl

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:26 PM

The author deserves for the monument:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:29 PM

This article is for professionals..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:30 PM

I do`t regret that spent a few of minutes for reading. Write more often,  surely'll come to read something new!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:33 PM

I almost accidentally visited to this site, but stayed here for a long time. Stayed because everything was very interesting. Surely will share with all my friends!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:35 PM

Strange but true. Your resource is expensive. At least it could be sold for good money on its auction!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:36 PM

Excellent! Got a real pleasure..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:37 PM

Thanks for the article! I hope the author does not mind if I use it for my course work!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:39 PM

Totally agree with you, about a week ago wrote about the same in my blog..!!

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:49 PM

Read, of course, far from my topic. But still, we can work together. How do you feel about trust management?!....

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:53 PM

Thanks:) Cool topic, write more often! You manage with it perfctly:DD

# re: Implementing an analogic clock in WPF@ Thursday, January 19, 2012 7:55 PM

Pleased to read intelligent thoughts in Russian. I`ve been living in England for already 5 years!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 3:56 AM

Excellent! Got a real pleasure..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 4:01 AM

I read and feel at home. Thanks the creators for a good resource..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 4:17 AM

I subscribed to RSS, but for some reason, the messages are written in the form of some hieroglyph (How  can it be corrected?!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 4:36 AM

See it for the first time!!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 7:27 AM

Very amusing thoughts, well told, everything is in its place:DD

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 7:27 AM

Is anybody strong in radio here? We need a colleague who would tell us briefly about the transistor T2. I hope there are radio amateurs here. If it`s not on the subject at all, then I`m sorry. I have to write  because I have no choice. PS: if the spelling is not right then also I'm sorry, I'm just 13 years old!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 7:32 AM

Good! Wish everybody wrote so:DD

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 7:33 AM

52. "The road will be overcome by that person, who goes." I wish you never stopped and be creative - forever..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 7:36 AM

Youth rock band "Ranetki" says thank you for such a wonderful blog..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 7:40 AM

Hello! Read the pages not for the first day. Yes, the connection speed is not good. How can I subscribe? I would like to read you in the future!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 7:41 AM

Right from this article begin to read this blog. Plus a subscriber:DD

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 7:43 AM

Informative, but not convincing. Something is missing but what I can not understand. But I will say frankly: bright and benevolent thoughts!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 7:44 AM

I am amazed  with the abundance of interesting articles on your site! The author - good luck and wish you the new interesting posts..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 7:48 AM

Totally agree with you, about a week ago wrote about the same in my blog..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 7:49 AM

Yeah, it is clear now !... From the very beginning I did not understand where was the connection with the title !!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 7:50 AM

Sometimes I also see something like this, but earlier I didn`t pay much attention to this!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 7:51 AM

Cool! You have answered. I'll take a quote! The meaning of life and everything else. Decided. No kidding!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 7:54 AM

Yet, much is unclear. Could you describe in more details!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 8:03 AM

Thanks, useful material I added your blog to my bookmarks!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 8:06 AM

Hi! Everyone who reads this blog - Happy Reconciliation and Accord..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 8:08 AM

I am glad that your blog is constantly evolving. Such posts only gain in popularity!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 8:12 AM

Totally agree with you, about a week ago wrote about the same in my blog..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 8:13 AM

I envy you. The content and design of your blog is much better than mine. Who made a design for you?!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 8:17 AM

Yeah !... life is like riding a bicycle. You will not fall unless you stop pedaling!!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 8:18 AM

Sent the first post, but it wasn`t published. I am writing the second. It's me, the African tourist..

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 8:22 AM

Right from this article begin to read this blog. Plus a subscriber:DD

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 8:25 AM

The author deserves for the monument:DD

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 8:26 AM

Cool! You have answered. I'll take a quote! The meaning of life and everything else. Decided. No kidding!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 8:29 AM

Of course, I understand a little about this post but  will try cope with it!!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 8:29 AM

Current blog, fresh information, I read it from time to time!!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 8:33 AM

Stupid article..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 8:34 AM

Can be also this issue because the truth can be achieved only in a dispute :DD

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 8:35 AM

Stupid article..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 8:36 AM

It`s really useful! Looking through the Internet you can mostly observe watered down information, something like bla bla bla, but not here to my deep surprise. It makes me happy..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 8:39 AM

Scribbler, give me a student's record-book!))))

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 8:48 AM

The topic is pretty complicated for a beginner!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 8:51 AM

Hello! Read the pages not for the first day. Yes, the connection speed is not good. How can I subscribe? I would like to read you in the future!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 8:53 AM

Received the letter. I agree to exchange the articles..

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 8:57 AM

Scribbler, give me a student's record-book!))))

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 8:58 AM

Of course, I understand a little about this post but  will try cope with it!!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 9:02 AM

I must admit, the webmaster is a cool guy..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 9:03 AM

I would add something else, of course, but in fact almost everything is mentioned!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 9:07 AM

Yeah� I read and I understand that I do not understand anything what it is about:DD

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 9:10 AM

Author, Shoot yourself a knee..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 9:12 AM

Comrade kill yourself..

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 9:14 AM

Hi! Everyone who reads this blog - Happy Reconciliation and Accord..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 9:15 AM

Hello! How do you feel about young composers?!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 9:18 AM

Yeah, now it's clear !... And firstly I did not understand very much where there was the link with the title itself !!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 9:20 AM

It's pleasant sitting at work to distract from it�to relax and read the information written here:DD

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 9:21 AM

Internet is written with the capital letter in a sentence, by the way. And hundredths are written not with a point but with a comma. This is according to the standard. And actually everything is very good..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 9:21 AM

Internet is written with the capital letter in a sentence, by the way. And hundredths are written not with a point but with a comma. This is according to the standard. And actually everything is very good..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 9:24 AM

Scribbler, give me a student's record-book!))))

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 9:33 AM

Yeah, it is clear now !... Just can not figure out how often do you update your blog?!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 9:36 AM

Thanks:) Cool topic, write more often! You manage with it perfctly:DD

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 9:39 AM

Honestly, not bad news!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 9:43 AM

Yet, much is unclear. Could you describe in more details!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 9:43 AM

I subscribed to RSS, but for some reason, the messages are written in the form of some hieroglyph (How  can it be corrected?!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 9:49 AM

Good day! I do not see the conditions of using the information. May I copy the text from here on my site if you leave a link to this page?!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 9:52 AM

Develop the topic further! It is interesting to know more details..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 9:56 AM

I was looking for the report  in Yandex and suddenly came across this page. I found a little information on my topic of my report. I would like more, and thanks for that..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 9:57 AM

Extremely easy by words but in reality�, a lot of things don`t correspond. Not everything is so rosy..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 9:59 AM

Thanks:) Cool topic, write more often! You manage with it perfctly:DD

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:04 AM

Can be also this issue because the truth can be achieved only in a dispute :DD

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:06 AM

Thank you very much! I took it for myself too. Will be useful!!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:19 AM

Of course, I understand a little about this post but  will try cope with it!!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:24 AM

Good post! Found a lot of new and interesting! Will share the link with others:DD

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:28 AM

Sometimes I also see something like this, but earlier I didn`t pay much attention to this!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:28 AM

I`m so grateful that you enlightened me and the most important thing that it happened in time. Just think, I have been using the internet for six years already but it`s the first time I`ve ever heard about it!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:33 AM

Hooray! the one who wrote is a cool guy..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:34 AM

It`s really useful! Looking through the Internet you can mostly observe watered down information, something like bla bla bla, but not here to my deep surprise. It makes me happy..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:37 AM

The author deserves for the monument:D

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:38 AM

Thanks for the news! Just was thinking about it! By the way Happy New Year to all of you:DD

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:38 AM

Received the letter. I agree to exchange the articles.

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:41 AM

Gripping! I would like to listen to the experts` views on the subject!!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:44 AM

Well, actually, a lot of what you write is not quite true !... well, okay, it does not matter:D

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:45 AM

Thanks a lot! An extremely interesting comment!!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:46 AM

Good day! I do not see the conditions of using the information. May I copy the text from here on my site if you leave a link to this page?!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:47 AM

Uh, well, explain me a please, I am not quite in the subject, how can it be?!...

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:49 AM

Yet, much is unclear. Could you describe in more details!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:49 AM

I am glad that your blog is constantly evolving. Such posts only gain in popularity!...

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:50 AM

Thanks for the news! Just was thinking about it! By the way Happy New Year to all of you:D

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:51 AM

Yeah !... life is like riding a bicycle. You will not fall unless you stop pedaling!!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:52 AM

Are you interested in webmaster`s income?!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:52 AM

Thanks:) Cool topic, write more often! You manage with it perfctly:D

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:53 AM

Author, keep doing  in the same way..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:54 AM

Interesting, but still I would like to know more about it. Liked the article:D

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 10:56 AM

I would add something else, of course, but in fact almost everything is mentioned!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:03 AM

Sent the first post, but it wasn`t published. I am writing the second. It's me, the African tourist.

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:05 AM

Cool:) I would say say it exploded my brain..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:05 AM

I do`t regret that spent a few of minutes for reading. Write more often,  surely'll come to read something new!...

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:07 AM

Yeah� I read and I understand that I do not understand anything what it is about:D

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:08 AM

Hooray! the one who wrote is a cool guy..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:10 AM

Stupid article..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:10 AM

Left on my site a link to this post. I think many people will be interested in it..!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:14 AM

Hello! How do you feel about young composers?!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:15 AM

I am amazed  with the abundance of interesting articles on your site! The author - good luck and wish you the new interesting posts..!!

by js

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:17 AM

Extremely easy by words but in reality�, a lot of things don`t correspond. Not everything is so rosy..!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:18 AM

I am glad that your blog is constantly evolving. Such posts only gain in popularity!...

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:19 AM

Extremely easy by words but in reality�, a lot of things don`t correspond. Not everything is so rosy..!!

by xml

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:20 AM

Yeah� I read and I understand that I do not understand anything what it is about:D

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:24 AM

Yeah, now it's clear !... And firstly I did not understand very much where there was the link with the title itself !!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:24 AM

52. "The road will be overcome by that person, who goes." I wish you never stopped and be creative - forever..!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:25 AM

Sorry for the off-topic, could you tell where I can get such a nice pattern for my blog ?!...

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:26 AM

Uh, well, explain me a please, I am not quite in the subject, how can it be?!...

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:27 AM

Develop the topic further! It is interesting to know more details..!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:27 AM

Gripping! I would like to listen to the experts` views on the subject!!....

by dhtml

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:29 AM

I read and feel at home. Thanks the creators for a good resource..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:31 AM

Received the letter. I agree to exchange the articles..

by trip

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:32 AM

Not bad post, leave it at my bookmarks!....

by jQuery

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:35 AM

Stupid article..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:37 AM

Is anybody strong in radio here? We need a colleague who would tell us briefly about the transistor T2. I hope there are radio amateurs here. If it`s not on the subject at all, then I`m sorry. I have to write  because I have no choice. PS: if the spelling is not right then also I'm sorry, I'm just 13 years old!....

by works

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:38 AM

Good! Wish everybody wrote so:DD

by trip

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:39 AM

Youth rock band "Ranetki" says thank you for such a wonderful blog..!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:39 AM

Hi! Everyone who reads this blog - Happy Reconciliation and Accord..!!

by gallery

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:42 AM

The topic is pretty complicated for a beginner!...

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:42 AM

Informative, but not convincing. Something is missing but what I can not understand. But I will say frankly: bright and benevolent thoughts!....

by c#

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:46 AM

Every time I come back here again and don`t get disappointed..!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:54 AM

The Author is crazy..!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:54 AM

I envy you. The content and design of your blog is much better than mine. Who made a design for you?!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:57 AM

Edidn`t think about that. I'll tell my mother, she won`t believe it..!!

by html

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:57 AM

I am amazed  with the abundance of interesting articles on your site! The author - good luck and wish you the new interesting posts..!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 11:58 AM

I must admit, the webmaster has written cool..!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:01 PM

As usual, the webmaster posted correctly..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:01 PM

Cool:) I would say say it exploded my brain..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:01 PM

Cool! You have answered. I'll take a quote! The meaning of life and everything else. Decided. No kidding!...

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:06 PM

Read, of course, far from my topic. But still, we can work together. How do you feel about trust management?!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:07 PM

Thanks for all the answers:) In fact, learned a lot of new information. Dut I just didn`t figure out what is what till the end!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:08 PM

Interesting, but still I would like to know more about it. Liked the article:D

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:11 PM

Interesting. We are waiting for new messages on the same topic!!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:11 PM

Internet is written with the capital letter in a sentence, by the way. And hundredths are written not with a point but with a comma. This is according to the standard. And actually everything is very good..!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:15 PM

Left on my site a link to this post. I think many people will be interested in it..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:15 PM

Yeah !... life is like riding a bicycle. You will not fall unless you stop pedaling!!...

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:15 PM

Internet is written with the capital letter in a sentence, by the way. And hundredths are written not with a point but with a comma. This is according to the standard. And actually everything is very good..!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:16 PM

Sorry for the off-topic, could you tell where I can get such a nice pattern for my blog ?!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:18 PM

Excellent! Got a real pleasure..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:19 PM

I must admit, the webmaster is a cool guy..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:19 PM

Hooray! the one who wrote is a cool guy..!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:23 PM

It`s really useful! Looking through the Internet you can mostly observe watered down information, something like bla bla bla, but not here to my deep surprise. It makes me happy..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:24 PM

Thanks:) Cool topic, write more often! You manage with it perfctly:D

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:24 PM

Read, of course, far from my topic. But still, we can work together. How do you feel about trust management?!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:26 PM

Yeah� I read and I understand that I do not understand anything what it is about:D

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:26 PM

Very amusing thoughts, well told, everything is in its place:DD

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:26 PM

I would add something else, of course, but in fact almost everything is mentioned!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:29 PM

Current blog, fresh information, I read it from time to time!!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:31 PM

It's straight to the point! You could not tell in other words! :D

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:32 PM

As usual, the webmaster posted correctly..!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:32 PM

Post brought me to think, went to mull over!!...

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:35 PM

Thanks for all the answers:) In fact, learned a lot of new information. Dut I just didn`t figure out what is what till the end!...

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:39 PM

Yeah, now it's clear !... And firstly I did not understand very much where there was the link with the title itself !!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:42 PM

However, the author created a cool thing..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:44 PM

Scribbler, give me a student's record-book!))))

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:48 PM

Fresh thoughts, fresh view on the subject..!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:52 PM

The text is promising, will place the site to my favorites..!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:55 PM

I almost accidentally visited to this site, but stayed here for a long time. Stayed because everything was very interesting. Surely will share with all my friends!...

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 12:59 PM

Thank you, a very interesting note!!...

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 1:05 PM

The material is on the five plus. But there is a minus! My internet speed 56kb/sek. The page was loading for about 40 seconds!...

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 1:06 PM

Not bad post, leave it at my bookmarks!...

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 1:07 PM

I almost accidentally visited to this site, but stayed here for a long time. Stayed because everything was very interesting. Surely will share with all my friends!...

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 1:35 PM

Edidn`t think about that. I'll tell my mother, she won`t believe it..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 1:36 PM

52. "The road will be overcome by that person, who goes." I wish you never stopped and be creative - forever..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 1:41 PM

However, the author created a cool thing..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 1:41 PM

Is anybody strong in radio here? We need a colleague who would tell us briefly about the transistor T2. I hope there are radio amateurs here. If it`s not on the subject at all, then I`m sorry. I have to write  because I have no choice. PS: if the spelling is not right then also I'm sorry, I'm just 13 years old!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 1:45 PM

Left on my site a link to this post. I think many people will be interested in it..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 1:49 PM

I almost accidentally visited to this site, but stayed here for a long time. Stayed because everything was very interesting. Surely will share with all my friends!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 1:51 PM

Yeah, it is clear now !... From the very beginning I did not understand where was the connection with the title !!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 1:53 PM

Honestly, not bad news!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 1:54 PM

Can be also this issue because the truth can be achieved only in a dispute :DD

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 1:58 PM

Cool:) I would say say it exploded my brain..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 2:00 PM

I am amazed  with the abundance of interesting articles on your site! The author - good luck and wish you the new interesting posts..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 2:01 PM

Honestly, not bad news!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 2:02 PM

Informative, but not convincing. Something is missing but what I can not understand. But I will say frankly: bright and benevolent thoughts!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 2:15 PM

Yeah, it is clear now !... Just can not figure out how often do you update your blog?!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 2:18 PM

It`s really useful! Looking through the Internet you can mostly observe watered down information, something like bla bla bla, but not here to my deep surprise. It makes me happy..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 2:20 PM

52. "The road will be overcome by that person, who goes." I wish you never stopped and be creative - forever..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 2:28 PM

Strange but true. Your resource is expensive. At least it could be sold for good money on its auction!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 2:29 PM

Develop the topic further! It is interesting to know more details..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 2:33 PM

Thanks for the news! Just was thinking about it! By the way Happy New Year to all of you:DD

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 2:34 PM

Totally agree with you, about a week ago wrote about the same in my blog..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 2:38 PM

A unique note..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 2:41 PM

As usual, the webmaster posted correctly..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 2:43 PM

Author, keep doing  in the same way..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 2:46 PM

As I have expected, the writer blurted out..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 2:47 PM

Edidn`t think about that. I'll tell my mother, she won`t believe it..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 2:50 PM

Thanks for all the answers:) In fact, learned a lot of new information. Dut I just didn`t figure out what is what till the end!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 2:53 PM

Can be also this issue because the truth can be achieved only in a dispute :DD

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 2:54 PM

Internet is written with the capital letter in a sentence, by the way. And hundredths are written not with a point but with a comma. This is according to the standard. And actually everything is very good..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 2:54 PM

Hi! Everyone who reads this blog - Happy Reconciliation and Accord..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 2:57 PM

Thanks, useful material I added your blog to my bookmarks!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 3:07 PM

Last a few years has been to Ibiza, so met a person there whose style of presentation is very similar to yours. But, unfortunately, that person is too far from the Internet!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 3:10 PM

Are you interested in webmaster`s income?!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 3:12 PM

Interesting, but still I would like to know more about it. Liked the article:DD

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 3:22 PM

Hi! Everyone who reads this blog - Happy Reconciliation and Accord..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 3:23 PM

Gripping! I would like to listen to the experts` views on the subject!!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 3:28 PM

Author, Shoot yourself a knee..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 3:32 PM

Left on my site a link to this post. I think many people will be interested in it..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 3:36 PM

I subscribed to RSS, but for some reason, the messages are written in the form of some hieroglyph (How  can it be corrected?!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 3:37 PM

The Author is crazy..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 3:40 PM

Thank you very much! I took it for myself too. Will be useful!!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 3:46 PM

I almost accidentally visited to this site, but stayed here for a long time. Stayed because everything was very interesting. Surely will share with all my friends!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 3:48 PM

Can be also this issue because the truth can be achieved only in a dispute :DD

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 4:03 PM

Thanks, useful material I added your blog to my bookmarks!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 4:20 PM

Internet is written with the capital letter in a sentence, by the way. And hundredths are written not with a point but with a comma. This is according to the standard. And actually everything is very good..!!

by ako dko

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 4:23 PM

I do`t see a feedback or the other coordinates from the blog administration!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 4:29 PM

Thanks for the news! Just was thinking about it! By the way Happy New Year to all of you:DD

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 4:36 PM

However, the author created a cool thing..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 4:55 PM

Last a few years has been to Ibiza, so met a person there whose style of presentation is very similar to yours. But, unfortunately, that person is too far from the Internet!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 4:59 PM

Every time I come back here again and don`t get disappointed..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 5:47 PM

Totally agree with you, about a week ago wrote about the same in my blog..!!

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 6:16 PM

Thank you, a very interesting note!!....

# re: Implementing an analogic clock in WPF@ Friday, January 20, 2012 6:56 PM

Author, Shoot yourself a knee..!!

# re: Implementing an analogic clock in WPF@ Saturday, January 21, 2012 2:21 PM

That's a great article!

# re: Implementing an analogic clock in WPF@ Sunday, January 22, 2012 9:22 AM

Interesting. We are waiting for new messages on the same topic!!....

# re: Implementing an analogic clock in WPF@ Sunday, January 22, 2012 9:27 AM

I was looking for the report  in Yandex and suddenly came across this page. I found a little information on my topic of my report. I would like more, and thanks for that..!!

# re: Implementing an analogic clock in WPF@ Sunday, January 22, 2012 9:31 AM

Cool:) I would say say it exploded my brain..!!

# re: Implementing an analogic clock in WPF@ Sunday, January 22, 2012 12:58 PM

Can be also this issue because the truth can be achieved only in a dispute :DD

# re: Implementing an analogic clock in WPF@ Sunday, January 22, 2012 1:14 PM

The material is on the five plus. But there is a minus! My internet speed 56kb/sek. The page was loading for about 40 seconds!....

# re: Implementing an analogic clock in WPF@ Sunday, January 22, 2012 1:44 PM

Scribbler, give me a student's record-book!))))

# re: Implementing an analogic clock in WPF@ Sunday, January 22, 2012 5:18 PM

I almost accidentally visited to this site, but stayed here for a long time. Stayed because everything was very interesting. Surely will share with all my friends!....

# re: Implementing an analogic clock in WPF@ Sunday, January 22, 2012 5:35 PM

Comrade kill yourself..

# re: Implementing an analogic clock in WPF@ Sunday, January 22, 2012 7:28 PM

Thanks for the article! I hope the author does not mind if I use it for my course work!....

# re: Implementing an analogic clock in WPF@ Monday, January 23, 2012 5:58 AM

Yeah !... life is like riding a bicycle. You will not fall unless you stop pedaling!!....

# re: Implementing an analogic clock in WPF@ Monday, January 23, 2012 7:21 AM

Pleased to read intelligent thoughts in Russian. I`ve been living in England for already 5 years!....

# re: Implementing an analogic clock in WPF@ Monday, January 23, 2012 9:06 AM

Are you interested in webmaster`s income?!....

# re: Implementing an analogic clock in WPF@ Monday, January 23, 2012 10:49 AM

Thanks a lot! An extremely interesting comment!!....

# re: Implementing an analogic clock in WPF@ Monday, January 23, 2012 11:27 AM

Hi! Interestingly, when there are trendy posts from you?

# re: Implementing an analogic clock in WPF@ Tuesday, January 24, 2012 1:06 PM

Author, Shoot yourself a knee..!!

# re: Implementing an analogic clock in WPF@ Tuesday, January 24, 2012 3:11 PM

Hi, stunner how others wish react when they the hang of this!? :)

# re: Implementing an analogic clock in WPF@ Tuesday, January 24, 2012 3:31 PM

I do`t regret that spent a few of minutes for reading. Write more often,  surely'll come to read something new!....

# re: Implementing an analogic clock in WPF@ Tuesday, January 24, 2012 3:31 PM

Hi, stunner how others will reciprocate when they the hang of this!? :)

# re: Implementing an analogic clock in WPF@ Tuesday, January 24, 2012 4:02 PM

Hi, spectacle how others choice behave when they the hang of this!? :)

# re: Implementing an analogic clock in WPF@ Tuesday, January 24, 2012 4:37 PM

Hi, stunner how others choice get even when they make out this!? :)

# re: Implementing an analogic clock in WPF@ Friday, January 27, 2012 5:31 AM

Calculated field, a note more again! You direct with it perfectly :)

# re: Implementing an analogic clock in WPF@ Saturday, January 28, 2012 1:23 PM

Informative, but not convincing. Something is missing but what I can not understand. But I will say frankly: bright and benevolent thoughts!....

# re: Implementing an analogic clock in WPF@ Saturday, January 28, 2012 1:35 PM

I am glad that your blog is constantly evolving. Such posts only gain in popularity!....

# re: Implementing an analogic clock in WPF@ Saturday, January 28, 2012 2:15 PM

I do`t see a feedback or the other coordinates from the blog administration!....

# re: Implementing an analogic clock in WPF@ Saturday, January 28, 2012 9:01 PM

Pleased to read intelligent thoughts in Russian. I`ve been living in England for already 5 years!....

# re: Implementing an analogic clock in WPF@ Sunday, January 29, 2012 12:58 AM

Not bad post, leave it at my bookmarks!....

# re: Implementing an analogic clock in WPF@ Sunday, January 29, 2012 1:41 AM

I was looking for the report  in Yandex and suddenly came across this page. I found a little information on my topic of my report. I would like more, and thanks for that..!!

# re: Implementing an analogic clock in WPF@ Sunday, January 29, 2012 2:43 PM

Yeah, now it's clear !... And firstly I did not understand very much where there was the link with the title itself !!....

# re: Implementing an analogic clock in WPF@ Monday, January 30, 2012 3:27 AM

Excellent! Got a real pleasure..!!

# re: Implementing an analogic clock in WPF@ Monday, January 30, 2012 9:15 AM

It`s really useful! Looking through the Internet you can mostly observe watered down information, something like bla bla bla, but not here to my deep surprise. It makes me happy..!!

# re: Implementing an analogic clock in WPF@ Tuesday, January 31, 2012 7:49 PM

I decided to help and sent a post to the social  bookmarks. I hope to raise it in popularity!!....

# re: Implementing an analogic clock in WPF@ Friday, February 17, 2012 11:00 PM

vkskjwho

by bpmhqun

# re: Implementing an analogic clock in WPF@ Saturday, February 25, 2012 9:26 AM

Greece on the brim of neglect! Europe can not stand the pressure!

Leave a Comment

(required) 
(required) 
(optional)
(required) 
Page view counter