ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[原创] 方便培训学生做试题Word模板

[复制链接]

TA的精华主题

TA的得分主题

发表于 2014-5-20 13:45 | 显示全部楼层
太强了!要好好学习

TA的精华主题

TA的得分主题

发表于 2014-6-13 20:05 | 显示全部楼层
本帖最后由 megawatt 于 2014-6-13 20:09 编辑
cyq.0123 发表于 2014-5-20 06:47
方便培训学生做试题Word模板的工程密码197698cmw怎么不正确,能否告知?我十分想要
我的名字是雷锋:
  1. Sub CommandButton1_Click()
  2.     Dim SP As Shape
  3.     For Each SP In ActiveDocument.Shapes
  4.         If SP.Type = msoTextBox Then
  5.             SP.Delete
  6.         End If
  7.     Next
  8. End Sub

  9. Private Sub CommandButton2_Click()

  10.    ActiveDocument.Shapes.AddTextbox(msoTextOrientationHorizontal, 63#, _
  11.         87.6, 486#, 335).Select
  12.     Selection.ShapeRange.TextFrame.TextRange.Select
  13.     Selection.Collapse
  14.     Selection.ShapeRange.Select
  15.     Selection.ShapeRange.Fill.Visible = msoTrue
  16.     Selection.ShapeRange.Fill.Solid
  17.     Selection.ShapeRange.Fill.ForeColor.RGB = RGB(255, 255, 255)
  18.     Selection.ShapeRange.Fill.Transparency = 0#
  19.     Selection.ShapeRange.Line.Weight = 6#
  20.     Selection.ShapeRange.Line.DashStyle = msoLineSolid
  21.     Selection.ShapeRange.Line.Style = msoLineSingle
  22.     Selection.ShapeRange.Line.Transparency = 0#
  23.     Selection.ShapeRange.Line.Visible = msoTrue
  24.     Selection.ShapeRange.Line.ForeColor.RGB = RGB(0, 0, 255)
  25.     Selection.ShapeRange.Line.BackColor.RGB = RGB(255, 255, 255)
  26.     Selection.ShapeRange.LockAspectRatio = msoFalse
  27.     Selection.ShapeRange.Height = 335
  28.     Selection.ShapeRange.Width = 486.15
  29.     Selection.ShapeRange.Left = 62.9
  30.     Selection.ShapeRange.Top = 87.55
  31.     Selection.ShapeRange.TextFrame.MarginLeft = 7.09
  32.     Selection.ShapeRange.TextFrame.MarginRight = 7.09
  33.     Selection.ShapeRange.TextFrame.MarginTop = 3.69
  34.     Selection.ShapeRange.TextFrame.MarginBottom = 3.69
  35.     Selection.ShapeRange.RelativeHorizontalPosition = _
  36.         wdRelativeHorizontalPositionColumn
  37.     Selection.ShapeRange.RelativeVerticalPosition = _
  38.         wdRelativeVerticalPositionParagraph
  39.     Selection.ShapeRange.Left = CentimetersToPoints(-0.95)
  40.     Selection.ShapeRange.Top = CentimetersToPoints(0.55)
  41.     Selection.ShapeRange.LockAnchor = False
  42.     Selection.ShapeRange.LayoutInCell = True
  43.     Selection.ShapeRange.WrapFormat.AllowOverlap = True
  44.     Selection.ShapeRange.WrapFormat.Side = wdWrapBoth
  45.     Selection.ShapeRange.WrapFormat.DistanceTop = CentimetersToPoints(0)
  46.     Selection.ShapeRange.WrapFormat.DistanceBottom = CentimetersToPoints(0)
  47.     Selection.ShapeRange.WrapFormat.DistanceLeft = CentimetersToPoints(0.32)
  48.     Selection.ShapeRange.WrapFormat.DistanceRight = CentimetersToPoints(0.32)
  49.     Selection.ShapeRange.WrapFormat.Type = 3
  50.     Selection.ShapeRange.ZOrder 4
  51.     Selection.ShapeRange.TextFrame.AutoSize = False
  52.     Selection.ShapeRange.TextFrame.WordWrap = True
  53.     Selection.TypeText Text:="按题目要求完成:"
  54.     Selection.TypeParagraph
  55.     Selection.TypeText Text:="1. 字体设置:第一行标题为隶书;第二行为仿宋;正文(备注正文是指李白这一首诗)为华文行楷;最后一段解析一词为华文新魏,其余为楷体。"
  56.     Selection.TypeParagraph
  57.     Selection.TypeText Text:="2.设置字号:第一行标题为二号;正文为四号"
  58.     Selection.TypeParagraph
  59.     Selection.TypeText Text:="3.设置字形:“解析”一词加双下划线。给“李白”两字加着重号"
  60.     Selection.TypeParagraph
  61.     Selection.TypeText Text:="4. 设置对齐方式:第一行和第二行为居中对齐"
  62.     Selection.TypeParagraph
  63.     Selection.TypeText Text:="5. 设置段落缩进:正文左缩进2个字符;最后一段首行缩进2个字符。"
  64.     Selection.TypeParagraph
  65.     Selection.TypeText Text:="6.设置行(段落):第一行标题段前段后各为1行;第二行段后为0.5.行;最后一段段前为1行."
  66.     Selection.WholeStory
  67.     Selection.Font.Bold = wdToggle
  68.     Selection.Font.Size = 14
  69.     Selection.Font.Color = wdColorRed
  70.     Selection.ShapeRange.TextFrame.TextRange.Select
  71.     Selection.Collapse
  72.     Selection.ShapeRange.Select
  73. End Sub
复制代码

TA的精华主题

TA的得分主题

发表于 2014-6-17 06:26 | 显示全部楼层
cyq.0123 发表于 2014-5-20 06:47
方便培训学生做试题Word模板的工程密码197698cmw怎么不正确,能否告知?我十分想要我的名字是雷锋:
非常感谢

TA的精华主题

TA的得分主题

发表于 2014-6-18 06:09 | 显示全部楼层
再次表示谢意!这是我市毕业生上机考试word的试题

1、操作题-背影.rar

12.46 KB, 下载次数: 46

TA的精华主题

TA的得分主题

发表于 2014-10-28 11:08 | 显示全部楼层
佛山小老鼠 发表于 2011-6-12 10:03
回复大理版主:呵呵,有一个是以前收藏的,一个前辈写的,很经典

太强了,good

TA的精华主题

TA的得分主题

发表于 2014-10-29 10:38 | 显示全部楼层
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2025-1-16 18:43 , Processed in 0.022743 second(s), 9 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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