How to Compute Sum of Date and Number of Days in C#

Last week, I have discussed a program for computing the difference between two dates. See here: How to Compute Date Difference in C#. Now, i will teach you how to create a program for finding a sum of a date and the number of days to be added using C#. So, now let's start this tutorial! 1. Let's start with creating a Windows Form Application in C# for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application and name your project as DateSum. 2. Next, add one DateTimePicker named DateTimePicker1 in the ToolBox. Add also one TextBox named TextBox1 for the inputting of the number of days to add. Then add a button named Button1 labeled as "Compute Date Sum". You must design your interface like this: design 3. In your Form_Load, make the DateTimePicker value into the current date.
  1. private void Form1_Load(object sender, EventArgs e)
  2. {
  3. DateTimePicker1.Value = DateTime.Today;
  4. }
4. In your Button1, put this code below.
  1. public void Button1_Click(System.Object sender, System.EventArgs e)
  2. {
  3. // initialize variable i as integer
  4. int i = default(int);
  5. // initialize variable dt as DateTime
  6. DateTime dt = default(DateTime);
  7. // the dt variable will hold the current date value of DateTimePicker1
  8. dt = DateTimePicker1.Value;
  9. // convert the string value of textbox1 to integer that will hold into variable i
  10. i = Convert.ToInt16(TextBox1.Text);
  11. // display the sum using the DateAdd method with DateInterval, inputted number of days in i variable, and dt variable for current date
  12. MessageBox.Show("The date sum is:" + " " + DateAndTime.DateAdd(DateInterval.Day, i, dt));
  13. }
Output: output For more inquiries and need programmer for your thesis systems in any kind of programming languages, just contact my number below. Best Regards, Engr. Lyndon Bermoy IT Instructor/System Developer/Android Developer/Freelance Programmer If you have some queries, feel free to contact the number or e-mail below. Mobile: 09488225971 Landline: 826-9296 E-mail:[email protected] Add and Follow me on Facebook: https://www.facebook.com/donzzsky Visit and like my page on Facebook at: https://www.facebook.com/BermzISware

Add new comment