התקשמתי הרבה מעבר לזה ב CSHARP אבל תמיד רציתי לעשות שעון 
שיהיה .בכל מקרה הבעיה שלא ראיתי את הטיימר את המספרים בתוך תיבת הסטקסט זה בגלל שבטיימר לא ב propeties אלא ב events הייתי צריך להכניס שם timer1_Tick .
טעות שלי סליחה על כל הבלאגן .
בכל מקרה עכשיו עובד .
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
int a = 0;
int b = 0;
int c = 0;
public Form1()
{
InitializeComponent();
}
private void timer1_Tick(object sender, EventArgs e)
{
String str = string.Format("Hours {0} Minutes {1} Seconds {2}", a, b, c);
this.textBox1.Text = str;
c = c + 1;
if (c == 60)
{
c = 0;
b = b + 1;
}
if (b == 60)
{
a = a + 1;
}
}
}
}
אני מניח שיש עוד דרכים ליצור שעון פשוט כזה .