How to Segregate Days and Time Using C#

How to Segregate Days and Time Using C#

Segregating days and time using C# may sound complicated to do but, In this tutorial, I will teach you the simplest way on how to segregate the days and time using C#. With this method, the combined days and time  for instance 4.08:36:05, this will be segregated into days, hours, minutes and seconds. Wherein you can easily identify each number in different fields.

SegregateDaysAndTimeFig.3

 

Here’s the step by step guide of this project

 

Step 1. Open the Microsoft Visual Studio , create a new Windows Form Application and do the Form just like this.
SegregateDaysAndTimeFig.1
Step 2. Go to the Solution Explorer, hit the “View Code”  to display the code editor.

SegregateDaysAndTimeFig.2

Step 3. Create a method to segregate the days and time.

 private void Segregate(TimeSpan TS)
 {
 // 'IN USING THE PROPERTIES OF THE TIMESPAN, IT WILL SEPERATE THE DAYS AND TIME
 //' IT DEMONSTRATES THE TimeSpan.Days, TimeSpan.Hours, 
 //' TimeSpan.Minutes, TimeSpan.Seconds
 try {
 txtDays.Text = TS .Days .ToString();
 txtHours.Text = TS.Hours.ToString();
 txtMinutes.Text = TS.Minutes.ToString();
 txtSeconds.Text = TS.Seconds.ToString();
 } catch (Exception ex){
 MessageBox.Show(ex.Message);
 }
 }

 

Step 4.Go back to the design view, double-click the Form and set the constant value of the days and time in the TextBox.

 private void Form1_Load(object sender, EventArgs e)
 {
 txtDaysAndTime.Text = "6.11:55:02";
 }

 

Step 5. Go back to the design views again, double click the <strong>“Start Segregate”</strong> Button and call a method that you have created in the <code>Click</code> event handler of the Button.

private void btnSegregate_Click(object sender, EventArgs e)
 {
 try{
 TimeSpan TSpan ;
 //'CONVERTS THE STRING VALUE INTO TIMESPAN
 TSpan = TimeSpan.Parse(txtDaysAndTime.Text);
 // 'SET THE VALUE OF THE TIMESPAN 
 //'TO THE PARAMETER OF THE SUB PROCEDURE THAT YOU HAVE CREATED.
 Segregate(TSpan);
 }catch (Exception ex){
 MessageBox.Show(ex.Message);
 }
 }

 

Output:

SegregateDaysAndTimeFig.3

 

For all students who need a programmer for your thesis system or anyone who needs a sourcecode in any programming languages. You can contact me @ :
Email – [email protected]
Mobile No. – 09305235027 – TNT

ABOUT PROJECTPROJECT DETAILS
Project Name : How to Segregate Days and Time Using C#
Project Platform :C#
Programming Language Used:C# Programming Language
Developer Name :itsourcecode.com
IDE Tool (Recommended):Visual Studio 2019
Project Type :Desktop Application
Database:None
Upload Date and Time:July 25, 2016 – 8:13 am

Leave a Comment