首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ Builder >

新手

2012-03-16 
新手求助~这是bcb自带的例子,能不能给我标一下注释,解释一下~~//---------------------------------------

新手求助~
这是bcb自带的例子,能不能给我标一下注释,解释一下~~
//---------------------------------------
//             Example   Program:     Briefcase
//             File:     BriefCaseMain.cpp
//             Description:     Implementation   file   for   the   Briefcase   example
//             Copyright   (c)   1987,   1999-2002   Borland   International   Inc.   All   Rights   Reserved.
//---------------------------------------

#include   <vcl.h>
#pragma   hdrstop

#include   "BriefCaseMain.h "
//---------------------------------------
#pragma   package(smart_init)
#pragma   resource   "*.dfm "

TfrmMain   *frmMain;

//---------------------------------------
__fastcall   TfrmMain::TfrmMain(TComponent*   Owner)
                :   TForm(Owner)
{
                BaseFileName   =   "EMPLOYEE.ADTG ";
}
//---------------------------------------
void   __fastcall   TfrmMain::LoadData()
{
                DataFileName   =   ExtractFilePath(ParamStr(0))+   BaseFileName;
                //   If   a   persisted   datafile   exists,   assume   we   exited   in   a   disconnected
                //   (offline)   state   and   load   the   data   from   the   file.
                if   (FileExists(DataFileName))
                {
                                adodsEmployees-> LoadFromFile(DataFileName);
                }
                else
                {
                                //   Otherwise   establish   the   connection   and   get   data   from   the   database
                                ckbxConnectionInd-> Checked   =   true;
                                adodsEmployees-> Open();
                }
}
//---------------------------------------
void   __fastcall   TfrmMain::UpdateData()
{
                //   Connect   to   the   database   and   send   the   pending   updates   }
                ckbxConnectionInd-> Checked   =   true;
                adodsEmployees-> UpdateBatch(arAll);


                DeleteFile(DataFileName);
}
//---------------------------------------
void   __fastcall   TfrmMain::SaveData()
{
                adodsEmployees-> SaveToFile(DataFileName,   pfADTG);
}
//---------------------------------------
void   __fastcall   TfrmMain::ckbxConnectionIndClick(TObject   *Sender)
{
                if(ckbxConnectionInd-> Checked)
                {
                                //   Toggle   the   connections   state
                                adocnctnConnection-> Open( " ",   " ");
                                adodsEmployees-> Connection   =   adocnctnConnection;
                                adodsEmployees-> Open();
                }
                else
                {
                                //   Note   here   you   must   clear   the   connection   property   of   the
                                //   dataset   before   closing   the   connection.     Otherwise   the   dataset
                                //   will   close   with   the   connection.
                                adodsEmployees-> Connection   =   NULL;
                                adocnctnConnection-> Close();
                }
}
//---------------------------------------

void   __fastcall   TfrmMain::btnUpdateButtonClick(TObject   *Sender)
{
                UpdateData();
}
//---------------------------------------
void   __fastcall   TfrmMain::btnRefreshButtonClick(TObject   *Sender)
{
                //   Close   and   reopen   the   dataset   to   refresh   the   data.     Note   that   in   this   demo
                //   there   is   no   checking   for   pending   updates   so   they   are   lost   if   you   click
                //   the   refresh   data   button   before   clicking   the   Update   database   button.


                ckbxConnectionInd-> Checked   =   true;
                adodsEmployees-> Close();
                adodsEmployees-> CommandType   =   cmdTable;
                adodsEmployees-> CommandText   =   "Employee ";
                adodsEmployees-> Open();
}
//---------------------------------------
void   __fastcall   TfrmMain::btnSaveButtonClick(TObject   *Sender)
{
                SaveData();
}
//---------------------------------------
void   __fastcall   TfrmMain::FormCloseQuery(TObject   *Sender,   bool   &CanClose)
{
                if(adodsEmployees-> Active)
                {
                                try
                                {
                                //   When   closing,   update   the   database   if   connected   or   save   it   to   disk   if   not
                                                if   (adocnctnConnection-> Connected)
                                                                UpdateData();
                                                else
                                                                SaveData();
                                }
                                catch(Exception   &E)
                                {
                                                CanClose   =   MessageDlg( "Data   not   saved/updated,   exit   anyway? ",   mtConfirmation,
                                                                TMsgDlgButtons()   < <mbYes   < <mbNo   < <mbCancel,   0)==   mrYes;
                                }


                }
}
//---------------------------------------
void   __fastcall   TfrmMain::FormCreate(TObject   *Sender)
{
                adocnctnConnection-> ConnectionString   =   "FILE   NAME= "   +   DataLinkDir()   +   "\\BCDEMOS.UDL ";
                LoadData();
}
//---------------------------------------



[解决办法]
还不如说让别人给你翻译一下~~~~~
[解决办法]
自己装一个翻译软件,慢慢看吧~
[解决办法]
实在是不知道如何着手……完全是翻译嘛!
找本简单的BCB的书看看吧,会有所帮助的
[解决办法]
装个金山词霸吧

热点排行