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.   Str="0123456789rABCDEFGr9876543210";
  14.   StrL=Str.Length();
  15.   Po=0;
  16. }
  17. //---------------------------------------------------------------------------
  18. void __fastcall TForm1::Timer1Timer(TObject *Sender)
  19. {
  20.   unsigned char cc;
  21.   cc=Str.c_str()[Po];
  22.   PostMessage(Memo1->Handle,WM_KEYDOWN,cc,0);
  23.   Po++;
  24.   if(Po>=StrL)
  25.     Timer1->Enabled=False;
  26. }
  27. //---------------------------------------------------------------------------
  28. void __fastcall TForm1::Button1Click(TObject *Sender)
  29. {
  30.   Timer1->Enabled=True;
  31. }
  32. //---------------------------------------------------------------------------