在VB60中指定位置插入文字.docx

上传人:b****5 文档编号:2936938 上传时间:2022-11-16 格式:DOCX 页数:8 大小:16.68KB
下载 相关 举报
在VB60中指定位置插入文字.docx_第1页
第1页 / 共8页
在VB60中指定位置插入文字.docx_第2页
第2页 / 共8页
在VB60中指定位置插入文字.docx_第3页
第3页 / 共8页
在VB60中指定位置插入文字.docx_第4页
第4页 / 共8页
在VB60中指定位置插入文字.docx_第5页
第5页 / 共8页
点击查看更多>>
下载资源
资源描述

在VB60中指定位置插入文字.docx

《在VB60中指定位置插入文字.docx》由会员分享,可在线阅读,更多相关《在VB60中指定位置插入文字.docx(8页珍藏版)》请在冰豆网上搜索。

在VB60中指定位置插入文字.docx

在VB60中指定位置插入文字

在VB6.0中,操作word,使用它强大的查找、替换、删除、复制、翦切功能。

还可以把特定字符替换成图片。

有了它你就可以使用数据库中的内容或图片文件替换word文件中的特定字符。

只要把下列内容复制到写字板中,另存为SetWord.cls文件,然后在把它添加到工程中,就可以使用了。

VERSION1.0CLASS

BEGIN

MultiUse=-1'True

Persistable=0'NotPersistable

DataBindingBehavior=0'vbNone

DataSourceBehavior=0'vbNone

MTSTransactionMode=0'NotAnMTSObject

END

AttributeVB_Name="SetWord"

AttributeVB_GlobalNameSpace=False

AttributeVB_Creatable=True

AttributeVB_PredeclaredId=False

AttributeVB_Exposed=False

PrivatemywdappAsWord.Application

PrivatemyselAsObject

'属性值的模块变量

PrivateC_TemplateDocAsString

PrivateC_newDocAsString

PrivateC_PicFileAsString

PrivateC_ErrMsgAsInteger

PublicEventHaveError()

AttributeHaveError.VB_Description="出错时激发此事件.出错代码为ErrMsg属性"

'***************************************************************

'ErrMsg代码:

1-word没有安装2-缺少参数3-没权限写文件

'4-文件不存在

'

'***************************************************************

PublicFunctionReplacePic(FindStrAsString,OptionalTimeAsInteger=0)AsInteger

AttributeReplacePic.VB_Description="查找FindStr,并替换为PicFile所指向的图片文件,替换次数由time参数确定,为0时,替换所有"

'********************************************************************************

'从Word.Range对象mysel中查找所有FindStr,并替换为PicFile图像

'替换次数由time参数确定,为0时,替换所有

'********************************************************************************

IfLen(C_PicFile)=0Then

C_ErrMsg=2

ExitFunction

EndIf

DimiAsInteger

DimfindtxtAsBoolean

mysel.Find.ClearFormatting

mysel.Find.Replacement.ClearFormatting

Withmysel.Find

.Text=FindStr

.Replacement.Text=""

.Forward=True

.Wrap=wdFindContinue

.Format=False

.MatchCase=False

.MatchWholeWord=False

.MatchByte=True

.MatchWildcards=False

.MatchSoundsLike=False

.MatchAllWordForms=False

EndWith

mysel.HomeKeyUnit:

=wdStory

findtxt=mysel.Find.Execute(Replace:

=True)

IfNotfindtxtThen

ReplacePic=0

ExitFunction

EndIf

i=1

DoWhilefindtxt

mysel.InlineShapes.AddPictureFileName:

=C_PicFile

Ifi=TimeThenExitDo

i=i+1

mysel.HomeKeyUnit:

=wdStory

findtxt=mysel.Find.Execute(Replace:

=True)

Loop

ReplacePic=i

EndFunction

PublicFunctionFindThis(FindStrAsString)AsBoolean

AttributeFindThis.VB_Description="查找FindStr,如果模板中有FindStr则返回True"

IfLen(FindStr)=0Then

C_ErrMsg=2

ExitFunction

EndIf

mysel.Find.ClearFormatting

mysel.Find.Replacement.ClearFormatting

Withmysel.Find

.Text=FindStr

.Replacement.Text=""

.Forward=True

.Wrap=wdFindContinue

.Format=False

.MatchCase=False

.MatchWholeWord=False

.MatchByte=True

.MatchWildcards=False

.MatchSoundsLike=False

.MatchAllWordForms=False

EndWith

mysel.HomeKeyUnit:

=wdStory

FindThis=mysel.Find.Execute

EndFunction

PublicFunctionReplaceChar(FindStrAsString,RepStrAsString,OptionalTimeAsInteger=0)AsInteger

AttributeReplaceChar.VB_Description="查找FindStr,并替换为RepStr,替换次数由time参数确定,为0时,替换所有"

'********************************************************************************

'从Word.Range对象mysel中查找FindStr,并替换为RepStr

'替换次数由time参数确定,为0时,替换所有

'********************************************************************************

DimfindtxtAsBoolean

IfLen(FindStr)=0Then

C_ErrMsg=2

RaiseEventHaveError

ExitFunction

EndIf

mysel.Find.ClearFormatting

mysel.Find.Replacement.ClearFormatting

Withmysel.Find

.Text=FindStr

.Replacement.Text=RepStr

.Forward=True

.Wrap=wdFindContinue

.Format=False

.MatchCase=False

.MatchWholeWord=False

.MatchByte=True

.MatchWildcards=False

.MatchSoundsLike=False

.MatchAllWordForms=False

EndWith

IfTime>0Then

Fori=1ToTime

mysel.HomeKeyUnit:

=wdStory

findtxt=mysel.Find.Execute(Replace:

=wdReplaceOne)

IfNotfindtxtThenExitFor

Next

Ifi=1AndNotfindtxtThen

ReplaceChar=0

Else

ReplaceChar=i

EndIf

Else

mysel.Find.ExecuteReplace:

=wdReplaceAll

EndIf

EndFunction

PublicFunctionGetPic(PicData()AsByte,FileNameAsString)AsBoolean

AttributeGetPic.VB_Description="把图像数据PicData,存为PicFile指定的文件"

'********************************************************************************

'把图像数据PicData,存为PicFile指定的文件

'********************************************************************************

OnErrorResumeNext

IfLen(FileName)=0Then

C_ErrMsg=2

RaiseEventHaveError

ExitFunction

EndIf

OpenFileNameForBinaryAs#1

IfErr.Number<>0Then

C_ErrMsg=3

ExitFunction

EndIf

'二进制文件用Get,Put存放,读取数据

Put#1,,PicData

Close#1

C_PicFile=FileName

GetPic=True

EndFunction

PublicSubDeleteToEnd()

AttributeDeleteToEnd.VB_Description="删除从当前位置到结尾的所有内容"

mysel.EndKeyUnit:

=wdStory,Extend:

=wdExtend

mysel.DeleteUnit:

=wdCharacter,Count:

=1

EndSub

PublicSubMoveEnd()

AttributeMoveEnd.VB_Description="光标移动到文档结尾"

'光标移动到文档结尾

mysel.EndKeyUnit:

=wdStory

EndSub

PublicSubGotoLine

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 表格模板 > 合同协议

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1