Click here to Skip to main content
15,885,921 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 70K   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;) using System.Globalization;) ) ) namespace mytray) {)     public partial class Form_TaskPrint : Form)     {)    

        public Form_TaskPrint())         {)             InitializeComponent();)         //    this.tasksTableAdapter.Fill(this.tasks_DataSet.Tasks);)            )         }



        private void linkLabel_undo_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)

        {

            Form_tip f_tip = new Form_tip();

            f_tip.tasksTableAdapter.FillByDate(f_tip.tasks_DataSet.Tasks);



            Form_print fp = new Form_print();

            fp.Init_Report_all(f_tip.tasks_DataSet,txt_date1.Text,txt_date2.Text, true);

            fp.ShowDialog();) 

        }) )     }) }

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