18 Mart 2015 Çarşamba

C# KAÇ GÜN YAŞADIĞIMIZI BULAN PROGRAM



KOD KISMI:


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 kaç_gün_yaşadığımızı_bulan_program
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            DateTime x, y;

            x = Convert.ToDateTime(textBox1.Text);
            y = Convert.ToDateTime(textBox2.Text);

           

            label1.Text = (x-y).ToString();
           
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }
    }

}




YAPIM --> FURKAN ÇEBİ

Hiç yorum yok: