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.   CapS=Caption;
  14. }
  15. //---------------------------------------------------------------------------
  16. void __fastcall TForm1::Timer1Timer(TObject *Sender)
  17. {
  18.   unsigned char cc;
  19.   int ll,ii;
  20.   ii=Caption.Length();
  21.   ll=CapS.Length();
  22.   if(ii>=ll)
  23.   {
  24.     Caption="";
  25.     ii=0;
  26.   }
  27.   cc=CapS.c_str()[ii-1];
  28.   if(cc>0xa0)Caption=CapS.SubString(1,ii+2);
  29.   else Caption=CapS.SubString(1,ii+1);
  30. }
  31. //---------------------------------------------------------------------------