Step 1
First Create New Project in Vs.Net and put 3 Label and 4 Button Give name and
one timer Control For time Display.

Step 2
Set form Bolder Fix and Tool window For look and Give Background Color
Transparency.
Step 3
Now Add Event All Control Like this to do and Set Timer Enable and Set Code in
Timer Tick Event.
private void timer1_Tick(object sender, EventArgs e)
{
this.label1 .Text = DateTime.Now.ToString("T");
this.label2.Text = DateTime.Now.ToString("D");
this.label3.Text = DateTime.Now.ToString("dd/MM/yyyy");
}
private void label2_Click(object sender, EventArgs e)
{
}
private void label1_Click(object sender, EventArgs e)
{
}
private void toolStripMenuItem1_Click(object sender, EventArgs e)
{
this.WindowState = FormWindowState.Minimized;
}
private void toolStripMenuItem2_Click(object sender, EventArgs e)
{
Application.Exit();
}
private void button1_Click(object sender, EventArgs e)
{
try
{
System.Diagnostics.Process.Start("winword");
}
catch (Exception Ex)
{

SubashPosted Sep 16, 2016, 2:13 AM
Nice
Arjun DhilodPosted Apr 23, 2013, 4:40 AM
hello all i want to create Gadgets just like (in window 7 and temperature gadget ) and want to display temp from excel. i the excel data come from in sensor when i was click on gadget than my window form page display if some one know pls let me know