Click here to Skip to main content
15,881,139 members
Articles / Web Development / ASP.NET

Persian Calendar with Tray Icon

Rate me:
Please Sign up or sign in to vote.
3.71/5 (16 votes)
12 Mar 2012CPOL2 min read 69.7K   2.4K   27  
A Persian calendar that shows a tray icon
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace mytray
{
    public partial class Form_tip : Form
    {
        public Form_tip()
        {
            InitializeComponent();
            this.tasksTableAdapter.Fill(this.tasks_DataSet.Tasks);
        }

        private void Form_tip_Load(object sender, EventArgs e)
        {
            // TODO: This line of code loads data into the 'tasks_DataSet.Tasks' table. You can move, or remove it, as needed.
          //  this.tasksTableAdapter.Fill(this.tasks_DataSet.Tasks);

        }

        private void Form_tip_VisibleChanged(object sender, EventArgs e)
        {
            this.Visible = false;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Engineer neyshabur azad univeristy
Iran (Islamic Republic of) Iran (Islamic Republic of)
I had worked as programmer,project manager,web developer for more than 3 years, and have worked on programming personaly for more than 10 years.
I have worked in university as a teacher for 8 years.
my favorite langueges are : VC++,C#,ASP.NET,PHP

Comments and Discussions