ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 194|回复: 4

如何用vba代码在word文档中输入以下附件中的所有内容

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-10-7 15:37 | 显示全部楼层 |阅读模式
本帖最后由 zzpsx 于 2024-10-7 16:33 编辑

如何用vba代码在word文档中输入以下附件中的所有内容
九年级首字母填空100题打印稿答题卡.zip (9.16 KB, 下载次数: 5)

image.png

我把附件上传到kimi和讯飞星火上,让他们根据附件写代码,试验了一下,不行。

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-10-8 11:11 | 显示全部楼层
我只能写到这一步
Sub 答题卡()
'
' 答题卡 宏
'
'
    Selection.TypeText text:= _
        "班级__________学号__________姓名__________得分__________"
    Selection.ParagraphFormat.Alignment = wdAlignParagraphCenter
    Selection.TypeParagraph
    Selection.TypeParagraph
    Selection.TypeText text:="答题卡"
    Selection.TypeParagraph
    Selection.TypeParagraph
    Selection.ParagraphFormat.Alignment = wdAlignParagraphLeft
    ActiveDocument.Tables.Add Range:=Selection.Range, NumRows:=25, NumColumns _
        :=8, DefaultTableBehavior:=wdWord9TableBehavior, AutoFitBehavior:= _
        wdAutoFitFixed
    With Selection.Tables(1)
        If .Style <> "网格型" Then
            .Style = "网格型"
        End If
        .ApplyStyleHeadingRows = True
        .ApplyStyleLastRow = False
        .ApplyStyleFirstColumn = True
        .ApplyStyleLastColumn = False
        .ApplyStyleRowBands = True
        .ApplyStyleColumnBands = False
    End With
End Sub


TA的精华主题

TA的得分主题

 楼主| 发表于 2024-10-8 13:17 | 显示全部楼层
本帖最后由 zzpsx 于 2024-10-8 15:41 编辑


Sub FillTableWithNumbersAndHeader()
    ' 在当前光标位置添加一行文字作为表头
    Selection.TypeText text:="班级__________学号__________姓名__________得分__________" & vbCrLf这些文字如何居中
    Selection.TypeText text:="" & vbCrLf
    Selection.TypeText text:="答题卡" & vbCrLf
    Selection.TypeText text:="" & vbCrLf
    ' 创建一个新的表格
    Dim tbl As table
    Dim i As Integer
   
    ' 在当前光标位置添加一个8列25行的表格
    Set tbl = ActiveDocument.Tables.Add(Range:=Selection.Range, NumRows:=25, NumColumns:=8)
   
    ' 设置表格边框为黑色
    With tbl.Borders
        .OutsideColor = wdColorBlack
        .InsideColor = wdColorBlack
        .OutsideLineStyle = wdLineStyleSingle
        .InsideLineStyle = wdLineStyleSingle
    End With

    ' 第一列填入1-25
    For i = 1 To 25
        tbl.cell(i, 1).Range.text = CStr(i)
    Next i
   
    ' 第三列填入26-50
    For i = 1 To 25
        tbl.cell(i, 3).Range.text = CStr(i + 25)
    Next i
   
    ' 第五列填入51-75
    For i = 1 To 25
        tbl.cell(i, 5).Range.text = CStr(i + 50)
    Next i
   
    ' 第七列填入76-100
    For i = 1 To 25
        tbl.cell(i, 7).Range.text = CStr(i + 75)
    Next i
End Sub


TA的精华主题

TA的得分主题

发表于 2024-10-8 14:31 | 显示全部楼层
本帖最后由 q8254733 于 2024-10-8 16:42 编辑

九年级首字母填空100题打印稿答题卡.zip (29.64 KB, 下载次数: 2)


  1. Sub InsertTableAndFillSequence()
  2.     Dim doc As Document
  3.     Dim tbl As Table
  4.     Dim i As Integer, j As Integer
  5.     Dim seq As Integer
  6.    
  7.     Selection.TypeText Text:="学号_______姓名__________得分__________"
  8.     Selection.HomeKey Unit:=wdLine
  9.     Selection.EndKey Unit:=wdLine, Extend:=wdExtend
  10.     Selection.ParagraphFormat.Alignment = wdAlignParagraphCenter
  11.     Selection.Font.Name = "Microsoft YaHei Light"
  12.     Selection.Font.Size = 13
  13.     Selection.MoveRight Unit:=wdCharacter, Count:=1
  14.     Selection.TypeParagraph

  15.     Selection.TypeText Text:="答题卡"
  16.     Selection.HomeKey Unit:=wdLine
  17.     Selection.EndKey Unit:=wdLine, Extend:=wdExtend
  18.     Selection.ParagraphFormat.Alignment = wdAlignParagraphCenter
  19.     Selection.Font.Name = "Microsoft YaHei Light"
  20.     Selection.Font.Size = 12
  21.     Selection.MoveRight Unit:=wdCharacter, Count:=1
  22.     Selection.TypeParagraph
  23.         
  24.     seq = 1
  25.     Set doc = ActiveDocument
  26.     Set tbl = doc.Tables.Add(Range:=Selection.Range, NumRows:=25, NumColumns:=8)
  27.     tbl.Select
  28.     Selection.Font.Size = 9
  29.     For a = 1 To 4
  30.         For i = 1 To 25
  31.             tbl.Cell(i, a * 2 - 1).Range.Text = seq & "."
  32.             seq = seq + 1
  33.         Next i
  34.     Next a
  35.     Selection.Tables(1).Style = "网格型"
  36.    
  37. End Sub
复制代码


评分

1

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-10-8 15:37 | 显示全部楼层
写到这一步了
Sub FillTableWithNumbersAndHeader()
    ' 在当前光标位置添加一行文字作为表头
    Selection.TypeText text:="班级__________学号__________姓名__________得分__________" & vbCrLf
    Selection.TypeText text:="答题卡" & vbCrLf
    ' 创建一个新的表格
    Dim tbl As table
    Dim i As Integer
   
    ' 在当前光标位置添加一个8列25行的表格
    Set tbl = ActiveDocument.Tables.Add(Range:=Selection.Range, NumRows:=25, NumColumns:=8)
   
    ' 设置表格边框为黑色
    With tbl.Borders
        .OutsideColor = wdColorBlack
        .InsideColor = wdColorBlack
        .OutsideLineStyle = wdLineStyleSingle
        .InsideLineStyle = wdLineStyleSingle
    End With

    ' 第一列填入1-25
    For i = 1 To 25
        tbl.cell(i, 1).Range.text = CStr(i)
    Next i
   
    ' 第三列填入26-50
    For i = 1 To 25
        tbl.cell(i, 3).Range.text = CStr(i + 25)
    Next i
   
    ' 第五列填入51-75
    For i = 1 To 25
        tbl.cell(i, 5).Range.text = CStr(i + 50)
    Next i
   
    ' 第七列填入76-100
    For i = 1 To 25
        tbl.cell(i, 7).Range.text = CStr(i + 75)
    Next i
End Sub

您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-19 07:31 , Processed in 0.033866 second(s), 11 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表