Tagged Questions
3
votes
1answer
113 views
Delphi XE2 FormatDateTime passing -693594
We have a bit of an issue here. We have upgraded from Delphi 2006 to Delphi XE2 and are in the process of converting our code.
The problem is, we use the value -693594 through our application and ...
3
votes
1answer
155 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
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
215 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 ...
0
votes
1answer
194 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;
...
-1
votes
2answers
131 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 ...