Tagged Questions
The formatdatetime tag has no wiki summary.
3
votes
1answer
123 views
How to use FormatDateTime to return a default date concatenated with current year?
I'm using Delphi 2007.
I need write a FormatDateTime function that always return 01/01/ to a TDateEdit box (DevExpress component) as EditValue.
I've already tried...
tcxDateEdit1.EditValue := ...
3
votes
2answers
4k views
How to format date in JSTL
I have a loop that goes through all the news items we have on our site. One of the fields is date ${newsitem.value['Date']}, given in millliseconds. I'd like to display this date in month/day/year ...
3
votes
8answers
2k views
Delphi Win API CreateTimerQueueTimer threads and thread safe FormatDateTime crashes
This is a bit of a long question, but here we go. There is a version of FormatDateTime that is said to be thread safe in that you use
GetLocaleFormatSettings(3081, FormatSettings);
to get a value ...
2
votes
1answer
203 views
delphi how to convert twitter timestamp to TDatetime
In continue to this question:
How to Convert Twitter Timestamp to DateTime?
what is the code to convert twitter date time stamp to TDateTime?
edit:
StrDateTime(const string;TFormatSettings);
could ...
2
votes
3answers
963 views
PHP Zend date format
I want to input a timestamp in below format to the database.
yyyy-mm-dd hh:mm:ss
How can I get in above format?
When I use
$date = new Zend_Date();
it returns month dd, yyyy hh:mm:ss PM
I ...
1
vote
1answer
2k views
CRM 2011: Set datetime field from string with javascript
I'm trying to create a new record where one of the fields is a DataTime field.
I always get the "The date-time format for Thu Sep 01 19:25:20 2011 is invalid, or value is outside the supported ...
0
votes
1answer
172 views
Delphi FormatDateTime exception
For each line of a CSV file, my application needs to call a method which reads in each variables and writes some of them to a table using a GetDataItem method. e.g.
Var
Item: String;
Tmp: String;
...
0
votes
1answer
343 views
VBA Issues converting string to date using format() or CDate()
If this has been asked before, please point me in the right direction. I can't seem to find anything useful with my google-ing skills.
I have the following code, which reads in a string like this; ...
0
votes
2answers
92 views
Using JSTL's formatDate function with a date represented in milliseconds
Normally I use the following to display a Date object in a JSP page:
<fmt:formatDate value="${blogEntry.created}"/>
Works great if blogEntry.created is a java.util.Date object. But what's ...
0
votes
1answer
197 views
SQL query that displays “time ago dates” like “one week ago”, “two weeks ago”, “one month ago”, “one year ago”, etc
I need a query that displays dates in the following format:
Dates that fall in the past 7 days -> “one week ago”
Dates that fall in the past 7 to 14 days -> “two week ago”
Etc…
Dates that fall in ...
0
votes
2answers
255 views
XSLT2 format-dateTime - AM/PM without dots/periods
This is a question for XSLT 2 format-dateTime function.
Please can anyone tell me how to make A.M./P.M. display with not dots/periods (AM/PM)?
<xsl:variable name="ampm" ...
0
votes
1answer
312 views
xslt umbraco.library:FormatDateTime and the use of / (slash)
This may not be a real XSLT question but more of an Umbraco question.
This function as written will output another format as expexted:
<xsl:value-of select="umbraco.library:FormatDateTime(data ...
0
votes
1answer
294 views
Specifying zero padding with format-dateTime
I have the following in xslt
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" ...
-1
votes
2answers
120 views
How can I put an ordinal suffix on the end of a date?
I'm using Delphi BDS2006 how can I format the date (01/10/2011) to look something like
1st Oct 2011
I tried using the
ShowMessage(FormatDateTime('ddd mmm yyyy', now));
the message I get is Sat Oct ...