Unit1.cpp
上传用户:lhxd_sz
上传日期:2014-10-02
资源大小:38814k
文件大小:1k
源码类别:

VC书籍

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. #include "Unit1.h"
  5. //---------------------------------------------------------------------------
  6. #pragma package(smart_init)
  7. #pragma resource "*.dfm"
  8. TForm1 *Form1;
  9. //---------------------------------------------------------------------------
  10. __fastcall TForm1::TForm1(TComponent* Owner)
  11.         : TForm(Owner)
  12. {
  13. }
  14. //---------------------------------------------------------------------------
  15. void __fastcall TForm1::Button1Click(TObject *Sender)
  16. {
  17.   AnsiString ass;
  18.   TDate date;
  19.   Word yy,mm,dd;
  20.   int ff,nn;
  21.   if(!FileExists("text.txt"))return;
  22.   ff=FileOpen("text.txt",fmOpenRead);
  23.   nn=FileGetDate(ff);
  24.   FileClose(ff);
  25.   date=FileDateToDateTime(nn);
  26.   DecodeDate(date,yy,mm,dd);
  27.   ass=IntToStr(yy)+"年"+IntToStr(mm)+"月"+IntToStr(dd)+"日";
  28.   ShowMessage(ass);
  29. }
  30. //---------------------------------------------------------------------------
  31.