delesome.h

来自「停车场用」· C头文件 代码 · 共 46 行

H
46
字号
//---------------------------------------------------------------------------

#ifndef DeleSomeH
#define DeleSomeH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Buttons.hpp>
#include <ComCtrls.hpp>
#include <ExtCtrls.hpp>
//---------------------------------------------------------------------------
class TDeleSomeForm : public TForm
{
__published:	// IDE-managed Components
        TBitBtn *m_CancelBitBtn;
        TBitBtn *m_OkBut;
        TRadioButton *m_CurRBut;
        TRadioButton *m_SomeRBut;
        TGroupBox *m_SomeGBox;
        TLabel *m_FromLabel;
        TLabel *m_ToLabel;
        TEdit *m_FromEdit;
        TUpDown *m_FromUpDown;
        TEdit *m_ToEdit;
        TUpDown *m_ToUpDown;
        TBevel *Bevel1;
  void __fastcall RButClick(TObject *Sender);
  void __fastcall FormShow(TObject *Sender);
private:	// User declarations
public:		// User declarations
        __fastcall TDeleSomeForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
struct DELETEXT{
  int nSome;
  int nFrom,nTo;
  char *pszTitle;
  char *pszText;
 };
//删除一些记录
extern int DeleteSomeRecord(TComponent* Owner,void *pSome);
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?