?? unit6.cpp
字號:
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "Unit6.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm6 *Form6;
extern int iReturnValue;
extern int ilineB;
extern float flineA;
//---------------------------------------------------------------------------
__fastcall TForm6::TForm6(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm6::TrackBar1Change(TObject *Sender)
{
Label6->Caption=IntToStr(TrackBar1->Position);
}
//---------------------------------------------------------------------------
void __fastcall TForm6::FormShow(TObject *Sender)
{
iReturnValue=0;
}
//---------------------------------------------------------------------------
void __fastcall TForm6::BitBtn1Click(TObject *Sender)
{
flineA=StrToFloat(Edit1->Text);
ilineB=StrToInt(Label6->Caption);
if(flineA<=0||flineA>10)
{
MessageBox(NULL,"您設(shè)的a值不正確","error",MB_OK);
return;
}
iReturnValue=1;
this->Close();
}
//---------------------------------------------------------------------------
void __fastcall TForm6::BitBtn2Click(TObject *Sender)
{
this->Close();
}
//---------------------------------------------------------------------------
void __fastcall TForm6::UpDown1Changing(TObject *Sender, bool &AllowChange)
{
Edit1->Text=FloatToStr(1+UpDown1->Position/10.0 );
}
//---------------------------------------------------------------------------
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -