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

VC书籍

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. #include "Unit2.h"
  5. //---------------------------------------------------------------------------
  6. #pragma package(smart_init)
  7. #pragma resource "*.dfm"
  8. TFrmBar *FrmBar;
  9. //---------------------------------------------------------------------------
  10. __fastcall TFrmBar::TFrmBar(TComponent* Owner)
  11.         : TForm(Owner)
  12. {
  13. }
  14. //---------------------------------------------------------------------------
  15. void __fastcall TFrmBar::FormKeyPress(TObject *Sender, char &Key)
  16. {
  17.   if(Key==27)Close();
  18. }
  19. //---------------------------------------------------------------------------
  20. void __fastcall TFrmBar::PBarOpen(int nn)
  21. {
  22.   ProgressBar1->Max=nn;
  23.   ProgressBar1->Position=0;
  24.   ProgressBar1->Visible=True;
  25.   Show();
  26. }
  27. //---------------------------------------------------------------------------
  28. void __fastcall TFrmBar::PBarGo(void)
  29. {
  30.   ProgressBar1->StepIt();
  31. }
  32. //---------------------------------------------------------------------------
  33. void __fastcall TFrmBar::PBarClose(void)
  34. {
  35.   ProgressBar1->Visible=False;
  36.   Close();
  37. }
  38. //---------------------------------------------------------------------------