大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
你可以先手动生成一个空白的doc后缀的文档,这个兼容性好。
十载的河间网站建设经验,针对设计、前端、开发、售后、文案、推广等六对一服务,响应快,48小时及时工作处理。成都全网营销推广的优势是能够根据用户设备显示端的尺寸不同,自动调整河间建站的显示方式,使网站能够适用不同显示终端,在浏览器中调整网站的宽度,无论在任何一种浏览器上浏览网站,都能展现优雅布局与设计,从而大程度地提升浏览体验。成都创新互联从事“河间网站设计”,“河间网站推广”以来,每个客户项目都认真落实执行。
然后在vb里面打开这个模板文件,编辑以后另存为一个你自定义的文件。
打开文件方式创建word对象:
dim wrdApp
dim wrdDoc
set wrdApp = CreateObject("word.application")
wrdApp.visible = true
set wrdDoc = wrdApp.documnets.open(yourFilepath)
'以下是我编辑word的示范代码:
Selection.TypeParagraph
Selection.ParagraphFormat.Alignment = wdAlignParagraphCenter
'Selection.Font.Bold = wdToggle
Selection.Font.Size = 24
Selection.TypeText Text:=kj
Selection.Font.Size = 36
Selection.TypeText Text:=a(0) vbCrLf
Selection.Font.Size = 18
Selection.TypeText Text:="——" a(1) vbCrLf vbCrLf
'Selection.MoveLeft Unit:=wdCharacter, Count:=2
'Selection.TypeText Text:=" "
'Selection.MoveRight Unit:=wdCharacter, Count:=1
'Selection.MoveRight Unit:=wdCharacter, Count:=1
Selection.TypeParagraph
Selection.ParagraphFormat.Alignment = wdAlignParagraphJustify
Selection.ParagraphFormat.SpaceBefore = 10 '段前
Selection.ParagraphFormat.SpaceAfter = 20 '段后
Selection.ParagraphFormat.LineSpacingRule = wdLineSpaceExactly '固定值
Selection.ParagraphFormat.LineSpacing = 36 '18磅
Selection.ParagraphFormat.FirstLineIndent = Word.MillimetersToPoints(18) '首行缩进0.75厘米
'Selection.Font.Name = "宋体"
Selection.Font.Size = 24
Dim duan, mylen
mylen = Len(Text1.Text)
duan = Int(mylen \ 3000)
For i = 0 To duan - 1
Selection.TypeText Text:=Mid(mytext, 3000 * i + 1, 3000)
Next
Selection.TypeText Text:=Mid(mytext, 3000 * duan + 1, mylen - (3000 * duan))
Selection.TypeParagraph
Selection.ParagraphFormat.Alignment = wdAlignParagraphCenter
Selection.Font.Size = 24
'Selection.Font.Bold = wdToggle
Selection.TypeText Text:=hx
'以下是我销毁对象的代码
Private Sub myQuit(myobject As Object)
If TypeName(myobject) "Nothing" Then
Set myboject = Nothing
End If
End Sub
'销毁word对象
Call myQuit(wrdDoc)
定义一个OleDbCommand,把OleDbCommandBuilder的insertCommand给他,在语句后面加个断点就能看到
在循环体内加入DoEvents语句就OK。
但你的循环体没有设定条件,也很有问题,会一直循环不能跳出。