0
votes
2answers
49 views
Get DateTime Obj from “mm/yyyy” format Date string
Hi,
I have a date string in format "08/1999" I want to get the first date of the corresponding month. eg : in this case 08/01/1999.
It is simple for en-Us culture. I break the s …
0
votes
2answers
8 views
Linq-to-Entities: Format Date in select query expression
I am trying to get a formatted date string directly from a LINQ-to-Entities query expression.
nonBusinessDays = (from ac in db.AdminCalendar
where ac.DateTimeVa …
1
vote
0answers
8 views
Converting a 64-bit long UTC timestamp into Actionscript Date
I'm using a Java 64-bit long representation of UTC time System.currentTimeInMillis() and sending that to an Actionscript client as a String, and I want to convert to an Actionscrip …
0
votes
4answers
64 views
How to catch onmouseleave event for TDateTimePicker component in Delphi 7
I need to detect OnMouseLeave event for TDateTimePicker component, but it doesn't contain such event in events list. Is there a way to detect it manually?
0
votes
2answers
30 views
C# Define begin of day of a date in another timezone
Hi,
I want to define the begin of a day in another timezone with .NET/C#.
Example:
My current timezone = GMT+1
so DateTime.Today returns 19/11/2009 23:00 UTC
but actually …
0
votes
6answers
50 views
How to calculate difference in hours (decimal) between two dates in SQL Server?
I have to calculate the difference in hours (decimal type) between two dates in SQL Server 2008.
I couldn't find any useful technique to convert datetime to decimal with 'CONVERT' …
2
votes
4answers
20 views
break apart formatted date into individual month/day/year hour/minute/second in php
I have a date in the following format
November 18, 2009, 3:00PM
How can i break that up so that i can store each value as its own variable?
such as...
$month //November
$day / …
3
votes
7answers
1k views
String.Format (format,date) is ignoring format
Not sure what's going on here.
I have a DateTime object, and when I try:
String.Format( "{0:dd/MM/yyyy}", _date)
the value returned is:
"24-05-1967"
What I want is
"24/05/1 …
0
votes
3answers
62 views
Converting string containing localtime into UTC in C
I have a string containing a local date/time and I need to convert it to a time_t value (in UTC) - I've been trying this:
char* date = "2009/09/01/00";
struct tm cal = {0, 0, 0, 0 …
0
votes
3answers
40 views
method to display float in datetime format
I need a method in c# that makes me a string that look like a datetime out of a double/float.
for example
1.5 -> 01:30
2.8 -> 02:48
25.5 -> 25:30 (note: don't display as day, di …
0
votes
2answers
28 views
How can I have a function perform after a Datetime in my DB is met?
I'm creating an auction site where users can bid on items. I want to create a script that sends an email to the winner of an auction item once the datetime in the end_auction colum …
0
votes
3answers
63 views
Unix timestamp to .net DateTime
I must be doing an obvious mistake but I can't figure it out.
I am importing a date stored in a mysql database (it is stored by the ExpressionEngine CMS). It is a unix timestamp, …
2
votes
3answers
38 views
MYSQL DATE function running insanely slow in LEFT JOIN
When adding the line:
LEFT JOIN core_records_sales as sales ON DATE(appointments.date) = DATE(sales.date_sold)
To my query, it boosts the time for the script to run from about 8 …
1
vote
3answers
61 views
Java Date, render with specific daylight mode
I have a Java Date that is from this summer during daylight savings time. For example:
Jun 01, 2009 06:00 AM PDT
My question is, how do I display this date as my local time z …
0
votes
1answer
20 views
Mysql compaire two dates from datetime?
I was try to measure what is faster and what should be the best way to compare two dates, from datetime record in MySql db. There are several approaches how to grab a date from dat …
