Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
MemoControl.cpp
Package: c++builder6编程实例.ZIP [view]
Upload User: lulishicai
Upload Date: 2010-03-01
Package Size: 13202k
Code Size: 2k
Category:
Delphi-C++Builder
Development Platform:
C++ Builder
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- #include "MemoControl.h"
- //---------------------------------------------------------------------------
- #pragma package(smart_init)
- #pragma resource "*.dfm"
- TForm1 *Form1;
- //---------------------------------------------------------------------------
- __fastcall TForm1::TForm1(TComponent* Owner)
- : TForm(Owner)
- {
- }
- //---------------------------------------------------------------------------
- void __fastcall TForm1::FormCreate(TObject *Sender)
- {
- Form1->Memo1->Clear();
- //清空文本框
- Form1->OpenDialog1->Title="请选择一个文本文件:";
- //设置对话框标题
- Form1->OpenDialog1->Filter="All Files(*.*)|*.*|Text Files(*.txt)|*.txt";
- //设置文件过滤条件
- Form1->OpenDialog1->DefaultExt=String("TXT");
- //设置缺省扩展名
- Form1->SaveDialog1->Title="请选择一个文本文件:";
- //设置对话框标题
- Form1->SaveDialog1->Filter="All Files(*.*)|*.*|Text Files(*.txt)|*.txt";
- //设置文件过滤条件
- Form1->SaveDialog1->DefaultExt=String("TXT");
- //设置缺省扩展名
- Form1->Button2->Enabled=false;
- //设置按钮有效状态
- Form1->FontDialog1->Font=Form1->Memo1->Font;
- Form1->ColorDialog1->Color=Form1->Memo1->Color;
- //对话框的初始化
- }
- //---------------------------------------------------------------------------
- void __fastcall TForm1::Button1Click(TObject *Sender)
- {
- if (Form1->OpenDialog1->Execute())
- //打开一个对话框
- {
- Form1->Memo1->Lines->LoadFromFile(Form1->OpenDialog1->FileName);
- //打开一个文件
- Form1->Button2->Enabled=true;
- //设置按钮有效状态
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TForm1::Button2Click(TObject *Sender)
- {
- if (Form1->SaveDialog1->Execute())
- //显示一个对话框
- {
- Form1->Memo1->Lines->SaveToFile(Form1->SaveDialog1->FileName);
- //保存文件
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TForm1::Button3Click(TObject *Sender)
- {
- if (Form1->FontDialog1->Execute())
- //打开一个对话框
- {
- Form1->Memo1->Font=Form1->FontDialog1->Font;
- //设置控件中文本显示字体
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TForm1::Button4Click(TObject *Sender)
- {
- if (Form1->ColorDialog1->Execute())
- //打开一个对话框
- {
- Form1->Memo1->Color=Form1->ColorDialog1->Color;
- //设置控件背景色
- }
- }
- //---------------------------------------------------------------------------