|
TJ: I **ALWAYS** look at the help files, and I tried
the construction you suggest, but it did not work.
My title displays "Invalid Date Time" when I use what you
suggested.
With the help of some other code, I have solved my problem
in the following way but I wonder if there is not another. Why does your
suggestion not work?
Ken
BuyYear =
int(BuyDate/10000) + 1900;
BuyMonth = int(((BuyDate) - (BuyYear-1900)*10000)/100); BuyDay = BuyDate - (BuyYear-1900)*10000 - BuyMonth*100; BuyDateDisp = NumToStr(BuyMonth,1.0) + "/" + NumToStr(BuyDay,1.0) + "/" + NumToStr(BuyYear,1.0); ...." BuyDate = " + BuyDateDisp From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of Tomasz Janeczko Sent: Friday, October 06, 2006 3:48 PM To: [email protected] Subject: Re: [amibroker] Date Display in Title - Really Puzzling Ken,
Use formatDateTime instead of 1.0 in WriteVal.
Documented here: http://www.amibroker.com/f?writeval
BuyDate = " + WriteVal(BuyDate,formatDateTime)
Best regards, Tomasz Janeczko amibroker.com __._,_.___ Please note that this group is for discussion between users only. To get support from AmiBroker please send an e-mail directly to SUPPORT {at} amibroker.com For other support material please check also: http://www.amibroker.com/support.html
SPONSORED LINKS
Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required) Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe __,_._,___ |
- [amibroker] Date Display in Title - Really Puzzling Ken Close
- [amibroker] Re: Date Display in Title - Really Puzzli... Fred
- Re: [amibroker] Date Display in Title - Really Puzzli... wavemechanic
- Re: [amibroker] Date Display in Title - Really Puzzli... Tomasz Janeczko
- RE: [amibroker] Date Display in Title - Really Pu... Ken Close
