Thoughts from Dan Miser RSS 2.0
 Tuesday, January 10, 2006
When importing data into Excel, the data that you set will be treated as a Text cell by default. Dates in Excel are equivalent to Delphi TDateTime in that they are a julian date and time is stored as a fraction and share the same numeric equivalents after 3/1/1900 (integer value of 61). This makes life very simple when writing date values to your worksheet since you just need to write the TDateTime value to Excel and if you format the cell as a date, you get the date/time in the worksheet.


procedure TForm1.Button1Click(Sender: TObject);
var
  Excel, Workbook, Worksheet: OleVariant;
begin
  Excel := CreateOLEObject('Excel.Application');
  try
    WorkBook := Excel.WorkBooks.Open('c:\temp\ws.xls');
    WorkSheet := WorkBook.Worksheets.Item['Sheet1'];
    WorkSheet.Range['A1', 'A1'].Value := Now;
  finally
    Excel.Quit;
    Worksheet := Unassigned;
    Workbook := Unassigned;
    Excel := Unassigned;
  end;
end;
Tuesday, January 10, 2006 9:24:00 AM (Central Standard Time, UTC-06:00)  #    Comments [0] -
Delphi
Tracked by:
http://9nw-information.info/11898771/index.html [Pingback]
http://9nq-information.info/97969352/index.html [Pingback]
http://9nk-information.info/16688657/index.html [Pingback]
http://9nn-information.info/65423024/index.html [Pingback]
http://9ns-information.info/83083792/index.html [Pingback]
http://9nl-information.info/35721720/index.html [Pingback]
http://9nd-information.info/91989070/index.html [Pingback]
http://9nx-information.info/49312853/1-5a-venturer-mobile-theater.html [Pingback]
http://9ne-information.info/24190164/index.html [Pingback]
http://9ns-information.info/85092507/fun-sports-for-summer-that-get-you-into-sha... [Pingback]
http://9ns-information.info/86378177/index.html [Pingback]
http://9on-information.info/60831805/performance-indicators-in-the-health-servic... [Pingback]
http://9od-information.info/41516385/cry-me-a-river-opera-song.html [Pingback]
http://9qf-information.info/87438849/toshiba-p30-129.html [Pingback]
http://9oc-information.info/05677019/mystra-tv.html [Pingback]
http://9on-information.info/42918035/motorcycle-helmet.html [Pingback]
http://9op-information.info/81160807/davenport-west-high-home-page.html [Pingback]
http://9ou-information.info/05109153/shuriken-school.html [Pingback]
http://9oe-information.info/75342720/index.html [Pingback]
http://9qj-information.info/18455866/flash-8-mouse-trailer.html [Pingback]
http://9qt-information.info/36984001/index.html [Pingback]
http://9sk-information.info/28870586/index.html [Pingback]
http://9sa-information.info/24186709/index.html [Pingback]
http://9sq-information.info/59891643/index.html [Pingback]
http://9sk-information.info/80909631/index.html [Pingback]
http://9ra-information.info/54586894/waterford-connecticut-real-estate.html [Pingback]
http://9uafi-le-informazioni.info/87455475/immagini-i-tre-moschettieri.html [Pingback]
http://9uafi-le-informazioni.info/67262660/abito-sposa-colore-rosa.html [Pingback]
http://9uafh-le-informazioni.info/73541544/index.html [Pingback]
http://9uaeq-le-informazioni.info/33612429/tomb-raider-ritorno-boaz.html [Pingback]
http://9uaes-le-informazioni.info/90996524/noel-gallagher-concert-milan-blue-not... [Pingback]
http://9uaep-le-informazioni.info/30476427/index.html [Pingback]
http://9uafn-le-informazioni.info/75388714/dj-della.html [Pingback]
http://9uahn-le-informazioni.info/55691138/index.html [Pingback]
http://9uahp-le-informazioni.info/15887545/passiv-auf-deutsch.html [Pingback]
http://9uaha-le-informazioni.info/11835364/index.html [Pingback]
http://9uagc-le-informazioni.info/75702449/voli-milano-lanzarote.html [Pingback]
http://9uagq-le-informazioni.info/96161028/index.html [Pingback]
http://9uahc-le-informazioni.info/62303950/index.html [Pingback]
http://9uahj-le-informazioni.info/90273584/index.html [Pingback]
http://9uahl-le-informazioni.info/02844720/cinema-big.html [Pingback]
http://9uagc-le-informazioni.info/40243153/index.html [Pingback]
Comments are closed.
Navigation
Archive
<July 2008>
SunMonTueWedThuFriSat
293012345
6789101112
13141516171819
20212223242526
272829303112
3456789
About the author/Disclaimer

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

© Copyright 2008
Dan Miser
Sign In
Statistics
Total Posts: 306
This Year: 21
This Month: 0
This Week: 0
Comments: 603
All Content © 2008, Dan Miser
DasBlog theme 'Business' created by Christoph De Baene (delarou)