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
TxtRtf.cpp
Package: c++builder6编程实例.ZIP [view]
Upload User: lulishicai
Upload Date: 2010-03-01
Package Size: 13202k
Code Size: 3k
Category:
Delphi-C++Builder
Development Platform:
C++ Builder
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- #include "TxtRtf.h"
- //---------------------------------------------------------------------------
- #pragma package(smart_init)
- #pragma resource "*.dfm"
- TForm1 *Form1;
- //---------------------------------------------------------------------------
- __fastcall TForm1::TForm1(TComponent* Owner)
- : TForm(Owner)
- {
- }
- //---------------------------------------------------------------------------
- void __fastcall TForm1::FormCreate(TObject *Sender)
- {
- Form1->OpenDialog1->Title="请选择一个文本文件:";
- //设置对话框标题
- Form1->OpenDialog1->InitialDir="c:\pwin98";
- //设置缺省路径
- Form1->OpenDialog1->Filter="纯文本文件(*.txt)|*.txt|RTF文本文件(*.rtf)|*.rtf";
- //设置对话框过滤器
- }
- //---------------------------------------------------------------------------
- void __fastcall TForm1::Button1Click(TObject *Sender)
- {
- if (Form1->OpenDialog1->Execute())
- //显示对话框
- {
- Form1->RichEdit1->Lines->LoadFromFile(Form1->OpenDialog1->FileName);
- //打开文本文件
- if (UpperCase(ExtractFileExt(Form1->OpenDialog1->FileName))==".TXT")
- //如果文件扩展名是TXT
- {
- Form1->Button2->Caption="转换为RTF文件";
- //设置按钮状态
- Form1->SaveDialog1->Filter="RTF文本文件(*.rtf)|*.rtf";
- //设置对话框过滤器
- Form1->SaveDialog1->DefaultExt="rtf";
- //设置缺省扩展名
- Form1->SaveDialog1->Title="请输入一个RTF文件名:";
- //设置对话框标题
- }
- else if (UpperCase(ExtractFileExt(Form1->OpenDialog1->FileName))==".RTF")
- //如果文件扩展名是RTF
- {
- Form1->Button2->Caption="转换为TXT文件";
- //设置按钮状态
- Form1->SaveDialog1->Filter="纯文本文件(*.txt)|*.txt";
- //设置对话框过滤器
- Form1->SaveDialog1->DefaultExt="txt";
- //设置缺省扩展名
- Form1->SaveDialog1->Title="请输入一个TXT文件名:";
- //设置对话框标题
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TForm1::Button2Click(TObject *Sender)
- {
- if (Form1->SaveDialog1->Execute())
- //显示对话框
- {
- Form1->RichEdit1->Lines->SaveToFile(Form1->SaveDialog1->FileName);
- //存储文件
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TForm1::FormClose(TObject *Sender, TCloseAction &Action)
- {
- if (Form1->RichEdit1->Modified)
- //判断文件是否被改变
- {
- if (MessageDlg("文件已经被修改过,存储修改后的结果吗?", mtConfirmation, TMsgDlgButtons() << mbYes << mbNo, 0) == mrYes)
- //提示用户是否保存修改结果
- {
- if (Form1->SaveDialog1->Execute())
- //显示对话框
- {
- Form1->RichEdit1->Lines->SaveToFile(Form1->SaveDialog1->FileName);
- //存储文件
- }
- }
- }
- }
- //---------------------------------------------------------------------------