Domanda

I want to calculate the differences between two dates, one picked form dateTimePicker1 and the other one 20 February of 2014 and store it in a string to added to my array and be able to display it in another form

THIS is my code:

    TimeSpan getDateDifference(DateTime date1, DateTime date2)
    {
        TimeSpan ts = date1 - date2;
        int differenceInDays = ts.Days;
        string differenceAsString = differenceInDays.ToString();
        return ts;

    }


    public class Patient
    {
        public string patientidString;
        public string firstNameString;
        public string lastNameString;
        public string dateString;
        public string differenceAsString;


        public Patient()
        {
            patientidString = "";
            firstNameString = "";
            lastNameString = "";
            dateString = "";
        }

    }


    //Array
    Patient[] patientInfo = new Patient[10];




    private void button1_Click(object sender, EventArgs e)
    {
        TimeSpan difference = getDateDifference(new DateTime(2014, 2, 20), dateTimePicker1.Value);
        if (textBox1.Text.Length == 0 || textBox2.Text.Length == 0 || textBox3.Text.Length == 0)
        {
            MessageBox.Show(" Patient id, first name and last name cannot be empty");
        }

        else
        try
        {
            foreach (Patient patientinfoIndex in patientInfo)

            patientInfo[itemCountInteger].patientidString = textBox1.Text;
            patientInfo[itemCountInteger].firstNameString = textBox2.Text;
            patientInfo[itemCountInteger].lastNameString = textBox3.Text;
            patientInfo[itemCountInteger].dateString = dateTimePicker1.Text;

            string names = patientInfo[itemCountInteger].patientidString + "  " + patientInfo[itemCountInteger].firstNameString + " " + patientInfo[itemCountInteger].lastNameString;
            listBox1.Items.Add(names);
            itemCountInteger++;
            listBox1.SelectedItem = names;
        }
        catch
        {
            MessageBox.Show("Contacts are limited to 20. Please delete some contacts prior to adding more.");
        }


    }


    //Search Button search a patients name and display his surname in the label if patient is found  display his surname
    private void button2_Click(object sender, EventArgs e)
    {

        int intTest = 0;

        for (int x = 0; x < patientInfo.Length; x++)
        {
            if (textBox4.Text == patientInfo[x].patientidString)
            {
                label6.Text = (patientInfo[x].firstNameString + "  " + patientInfo[x].lastNameString);
                PatientForm patientform = new PatientForm();
                patientform.Show();
                patientform.label6.Text = (patientInfo[x].patientidString);
                patientform.label7.Text = (patientInfo[x].firstNameString);
                patientform.label8.Text =(patientInfo[x].lastNameString);
                patientform.dateTimePicker1.Text = (patientInfo[x].dateString);

patientform.label9.Text = (patientInfo[x].differenceAsString);

                intTest = 1;
                break;
            }

        }

        if (intTest == 0)
        {
            label6.Text = ("not found");
        }
    }
È stato utile?

Soluzione

DateTime febDate = new DateTime(2014, 2, 20);
DateTime pickerDate = myDateTimePicker.Value;

TimeSpan tspan = febDate - pickerDate;

int differenceInDays = tspan.Days;

string differenceAsString = differenceInDays.ToString();

If differenceInDays < 0 then multiply it by -1.

Note: In this case it's very easy to get the difference in hours, minutes or seconds as well.

Here's an example of the above code in it's own method:

TimeSpan getDateDifference(DateTime date1, DateTime date2)
{
    TimeSpan ts = date1 - date2;

    return ts;
}

And when you want to trigger this method:

TimeSpan difference = getDateDifference(new DateTime(2014, 2, 20), dateTimePicker.Value);

//Now you can do what you want with the TimeSpan.

int differenceInDays = difference.Days;
int differenceInHours = difference.Hours; 

Console.WriteLine(differenceInDays.ToString());

Altri suggerimenti

DateTime a = new DateTime.Parse(string);
Console.WriteLine(datePicker.Value.Subtract(a).TotalMinutes);

You can subtract any two dates and it will work.

DateTime date1 = new DateTime(2014,02,20);
DateTime date2 = dateTimePicker1.Value as DateTime;

TimeSpan difference = date1 - date2;  //dunno what difference you need so you can swap these
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top