?? main.cpp
字號(hào):
#include <vcl\vcl.h>
#pragma hdrstop
#include "Main.h"
#pragma resource "*.dfm"
TForm1 *Form1;
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
void __fastcall TForm1::bbFieldsClick(TObject *Sender)
{
int i;
ListBox1->Clear();
for (i = 0; i < tblCustomer->FieldCount; i++)
ListBox1->Items->Add(tblCustomer->Fields->Fields[i]->FieldName);
}
void __fastcall TForm1::bbCurRecordClick(TObject *Sender)
{
int i;
ListBox2->Clear();
for (i = 0; i < tblCustomer->FieldCount; i++)
ListBox2->Items->Add(tblCustomer->Fields->Fields[i]->AsString);
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -