The period of time between two events or during which an event, program or a function continues

learn more… | top users | synonyms

-1
votes
2answers
64 views

Measuring code execution time [closed]

I want to know how much time takes a procedure/function/order to finish, to testing purposses. This is what I did but my method is wrong 'cause if the difference of seconds is 0 can't return the ...
0
votes
1answer
13 views

How to find a lifespan of a name in MySQL?

I have a sql table containing a series of ids and dates that that id is registered in the system. One id can be registered several time. The table is like below : ID Date 3 ...
0
votes
0answers
41 views

Google Earth Plugin changing time slider with 1 day interval as a “tick” for pressing next button (like the Historical Images time slider)

I want to create a time slider with 1 day interval as a "tick" for pressing next button. Currently, I set each TimeSpans: <TimeSpan> <begin>2013-04-23T12:00:00Z</begin> ...
5
votes
2answers
75 views

Get breaks from a list of times

I have a list of work items. Each work item has a start and an end time. So, basically it looks like this: List<Work> works = new List<Work>(); works.Add(new Work( new DateTime(2013, ...
-4
votes
3answers
62 views

How do I convert a TimeSpan value to a double ? c#

How do I convert a TimeSpan value to a double in c# ? I mean I have this -08:15:00 and I want a double -08.15
1
vote
1answer
42 views

How do I count all placemarks visible in the plugin at a given time?

I have created a time-aware animation involving thousands of placemarks representing population estimates at http://www.catalinagis.org/foxrecovery I want to know how to count the sum of the total ...
1
vote
4answers
51 views

Console.Clear() after a timeout

I'm developing a game in C# console for homework. I made a kind of introduction to the beginning of the game in ASCII art. What I want is to show this piece of code for 5 seconds and then go to the ...
0
votes
1answer
42 views

I would like to know how to check the elapsed time with tcp client server using serialization in C#

I need to know how to check properly the elapsed time of sending messages between two clients and 1 server. I tried to put in my object that I transfer the the exact time in milliseconds with the ...
2
votes
2answers
96 views

Format A TimeSpan With Years

I have a class with 2 date properties: FirstDay and LastDay. LastDay is nullable. I would like to generate a string in the format of "x year(s) y day(s)". If the total years are less than 1, I ...
-3
votes
3answers
79 views

Converting a string into TimeSpan

I have been playing around with the Google Distance Matrix API, so far I've been able to get duration strings in the following format string a = "1 days 5 hours"; string b = "18 hours 10 ...
0
votes
1answer
72 views

VB.NET Stopwatch/TimeSpan

I'm trying to create a stopwatch that will allow a numbericupdown to adjust the time as needed. Right now if I change the numbericupdown to "2" while the time is going it will double entire value ...
1
vote
2answers
42 views

Visual Basic Noob having touble with TimeSpan

I am new to programming. I have been doing it for about 3 months. In VB.net I have been learning through Murach's Visual Basic 2010. When learning how to deal with time and strings I came across a ...
0
votes
1answer
55 views

How do I calculate the next run time for my event provider?

I am trying to calculate a start time for an event provider. I have 3 variables: DateTime eventStartTime DateTime currentTime TimeSpan timeBetweenEvents eventStartTime is the desired start time ...
0
votes
0answers
33 views

Datatable Select for Timespan Value

I tried to compare a SQL Server based Datatable with a time(7) Column, with a timespan Value: ds.exdatable.Select("TimeColumn ='" & extimespanvalue.ToString & "'") But this is not ...
0
votes
5answers
100 views

Get date string from count of days since Epoch C# [duplicate]

I have an integer 15791 which represents count of days since epoch and equals 27.03.2013, how can do this convert in C#? public void method1() { ... int days_since_epoch = 15791; // how convert ...
-1
votes
1answer
48 views

TimeSpan will not parse some strings

I'm not sure what's going on here, but it will accept some timespans, but not others. Can someone show me a way to check for a vaild time span in this format 99:59:59. //50:30:00 is bad //50:20:00 is ...
0
votes
2answers
115 views

Show Remaining time TimeSpan

I'm getting problems trying to show the remainig time of a operation The problem is only with the remaining timer, I get a negative values... This is a example of a operation of 10000 ms (10 secs): ...
0
votes
2answers
35 views

Manually Time Span

Given two inputs in date format that represents the start and the beggining of an event: E.g.: 23:59 and 23:10 How to manually calculate the time span, i mean the duration of this event? You could ...
-2
votes
4answers
98 views

Calculating time difference and keep on adding the difference to a label

I am working on a program that calculates the difference between two given times. The difference between two times is calculated with button1 event handler and is displayed in label as shown in the ...
0
votes
2answers
146 views

Calculating time difference using textbox as value input

I have a text box and the user enters 16.30 how would I take that value and compute it as 16hrs and 30mins in order to get the correct time difference
0
votes
2answers
175 views

Calculate time difference using TimeSpan

I am trying to calculate the time difference of two given times slots but the answers does not seem to be correct what am I doing wrong? My code: For some reason the value given amFinish is changed ...
-1
votes
3answers
198 views

TimeSpan.ToString() return string like (d:hh:mm:ss)

TimeSpan Ts = new TimeSpan(5, 4, 3, 2); return Ts.ToString("?"); What expression should I replace with a question mark to get this format: 5d:4h:3m:2s ?
0
votes
0answers
138 views

saving a VB timespan value in SQL database

What data type can I store a VB timespan that is greater than 24 hours? The following will not save as a SQL timespan value. Dim span As TimeSpan = New TimeSpan(1, 2, 0, 30, 0) Output 1.02:00:30 ...
1
vote
5answers
83 views

Calculating with TimeSpan and DateTime

Depending on the current time I need to calculate if a shop is actual open or not. Up to now the opening times are persisted as TimeSpan: public TimeSpan OpeningTime { get; set; } public TimeSpan ...
6
votes
1answer
145 views

Why does timespan totalmilliseconds have the same digits in the integer and decimal parts?

When calculating the millisecond difference between two DateTime objects I always seem to get a number returned where the decimal part of the number is the same as the integer component of the number. ...
0
votes
2answers
47 views

Get dayspan according to dates, not duration?

I am trying to get the number of days between two datetimes, but not according to the exact timespan, rather according to the "day date" difference between date a and date b. No hours taken in ...
0
votes
1answer
121 views

How subtract 2 DateTimes to get DateTime result?

I use jquery Count up timer and it works in 1 line: $(document).ready(function () { $('#count_up').countUp({ 'lang': 'en', 'format': 'day', 'sinceDate': '22/07/2008-00::00' }); }); So, this shows ...
0
votes
1answer
67 views

Correct logic but incorrect code for calculating dates [duplicate]

I'm writing a program to calculate timespans and cant seem to get the math correct. What I'm basically trying to do is calculate if a particular date range is between an arrival date and an end date. ...
0
votes
2answers
81 views

RE return time span as a double in if statement

Re my question about time span before. What I am trying to do. I am trying to auto update my text box then time elapses. And with code below it works just fine: public void AutoSaveTimer() { ...
0
votes
1answer
114 views

logical method to get the total time of night shift differential in vb.net

need help... i have scenario.. note: i want a logical method to solve and get the time differential of night schedule. for attendance monitoring. first, the night differential schedule (10:00:00PM ...
1
vote
2answers
121 views

Convert irregular strings to TimeSpan in C#

I have several strings in the format below: "1:15" ":45" "1:30:45" I need them converted to a TimeSpan, but when I TimeSpan.Parse some of them (the first one, for example) it returns it as 1 ...
2
votes
3answers
97 views

TimeSpan String Formatting

I have a Timespan that I need to output in a particular format as shown below :- TimeSpan TimeDifference = DateTime.Now - RandomDate; I'm formatting the TimeSpan like this :- string result = ...
1
vote
1answer
112 views

C# - group list by TimeSpan starting from specific start point

I want to group my list by time step (hour, day, week etc.) and count sum for each group but starting from specific time. Now I've got input list: TIME VALUE 11:30 2 11:50 2 12:00 6 12:30 ...
1
vote
0answers
159 views

DataView RowFilter with TimeSpan DataType

i try to use the DataView RowFilter for a column with DataType "TimeSpan" as following: dv.RowFilter = ("Convert([time],System.String) LIKE '17:12:00'") I've found that the search Parameter "%17% ...
2
votes
3answers
235 views

Random DateTime between range - not unified output

I implemented the below RandomDate, but I always keep getting values closed to "From" date, i probably miss something here.... public static DateTime GetRandomDate(DateTime from, DateTime to) { ...
1
vote
3answers
84 views

Format the TimeSpan string

I have a small C# program that has a calendar and 7 labels. When I select a date the labels display the days and dates of that week. The labels are populated using the TimeSpan string what I want to ...
0
votes
2answers
94 views

TimeSpan and DispatchTimer

I'm using a class to modify a DateTime and using a TimeSpan to display X hours, Y minutes, Z seconds to a WPF label every second with a DispatchTimer. The code itself gives the proper timespan, ...
3
votes
2answers
135 views

Reformat Timespan in C#

I have several strings that look like such: where S represents seconds and M represents minutes "MM Minutes and XX Seconds" "MM Minutes" "SS Seconds" ":SS" How would I convert that to one of the ...
2
votes
3answers
108 views

Formatting a TimeSpan to look like a time zone offset

How can I format a TimeSpan object to look like a time zone offset, like this: +0700 or -0600 I'm using GetUtcOffset to get an offset, and its working, but its returning a TimeSpan object.
0
votes
0answers
140 views

MVC3 datatype Time and on model Timespan

I am having a difficult time trying to save a time value in the database, it is my first time trying. I essentially have a textbox where you can schedule a party and you can put time values like 4:30 ...
0
votes
3answers
145 views

Serializing Timespan in Dictionary<string, object> with Json.NET

I have a property that is actually a Dictionary. And I keep many types in this dictionary like TimeSpans, DateTimes, etc. But serializing and deserializing TimeSpans are wrong and it deserializes as ...
0
votes
3answers
889 views

Work with a time span in Javascript

Using Date.js already, but can also use another library if necessary. Not sure what is the best way to work with time deltas. Specifically, I want to display the time that has elapsed between now and ...
1
vote
2answers
532 views

Calculate the number of Calendar Months between two dates

I am developing a interest calculator in C#. I need to know the number of days between 2 dates So, I am calculating something like this : DateTime dt1 = ...
0
votes
1answer
120 views

display a timespan in excel

I have a timespan stored as a varchar in sql in the format of totalhours-totalminutes-totalseconds. Now I have to export that information into excel. The problem I'm having is that I can not for the ...
1
vote
2answers
209 views

Calculating total night time from timespan

Suppose night time is set from 20.30h till 6.15h(AM). These 2 parameters are user-scoped variables. Suppose you have an arrival date and a departure date which can span from a few minutes to more than ...
1
vote
2answers
76 views

Loop through time period to get weeks

If I have a list of appointments and like to get those in a weeks instead in a loop eg. public class appointments { public string Appointment { get; set; } public DateTime Start { get; set; ...
2
votes
3answers
507 views

vb.Net timespan calculation

I can calculate the timespan in vb.net using the given code Dim dtStartDate As Date = "17/12/2032" Dim iNumberOfDays As Integer Dim tsTimeSpan As TimeSpan tsTimeSpan = ...
2
votes
1answer
356 views

Why is System.TimeSpan not XML serializable?

When I try to store a TimeSpan value into ApplicationData Settings I get an error because TimeSpan cannot be serialized. This SO question shows how to handle it: .NET How to serialize a TimeSpan to ...
3
votes
2answers
118 views

TimeSpan.ParseExact() returns false for apparently valid format

Why does this code return false? This question/answer strongly implies that it should return true. TimeSpan.TryParseExact("04:00:01", "hh:mm:ss", CultureInfo.CurrentCulture, out x); Using ...
0
votes
4answers
598 views

How to convert a double value to a DateTime in c#?

I have the value 40880.051388 and am storing it as a double, if I open Excel and paste in a cell and apply the following custom format "m/d/yyyy h:mm" to that cell, I get "12/3/2011 1:14" How can I ...

1 2 3 4 5 8