会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
沭水之虾
一个人的奋斗,孤独的前行者!
博客园
园子
首页
新随笔
联系
管理
订阅
2024年1月8日
word 删除答案解析
摘要: 答案 [A-D]*^13解析*^13 使用替换功能,删除答案和解析两段
阅读全文
posted @ 2024-01-08 16:50 沭水之虾
阅读(44)
评论(0)
推荐(0)
编辑
word 替换 试题出处 替换括号
摘要: \([0-9]{4}·*\) \(:代表"(" [0-9]{4}:代表四位年份 ·:代表点号 \):代表")" 点选下方通配符
阅读全文
posted @ 2024-01-08 15:43 沭水之虾
阅读(11)
评论(0)
推荐(0)
编辑
2023年8月4日
python中文字体和负号显示问题修正
摘要: from pylab import mpl# 设置显示中文字体mpl.rcParams["font.sans-serif"] = ["SimHei"]#不显示fu负号问题plt.rcParams['axes.unicode_minus']=False以下内容chatgpt提供通过将plt.rcPar
阅读全文
posted @ 2023-08-04 23:49 沭水之虾
阅读(37)
评论(0)
推荐(0)
编辑
2023年7月9日
WORD VBA 删除分节符和分页符1
摘要: Sub 删除分节符和分页符1() ActiveDocument.Content.Find.Execute FindText:="^b", ReplaceWith:="", Replace:=wdReplaceAll '删除分节符 ActiveDocument.Content.Find.Execute
阅读全文
posted @ 2023-07-09 09:24 沭水之虾
阅读(563)
评论(0)
推荐(0)
编辑
2023年6月21日
按键精灵自动学习
摘要: ' 以下是按键精灵录制的内容 Rem kaishi'MessageBox "开始"Delay 1000FindPic 0,0,1780,300,"Attachment:\还剩余.bmp",0.9,intX,intYIf intX > 0 And intY > 0 Then 'MessageBox "
阅读全文
posted @ 2023-06-21 09:33 沭水之虾
阅读(35)
评论(0)
推荐(0)
编辑
2023年1月31日
学科网格式修正 sections find
摘要: Sub 学科网格式修正() '删除第二节内容 'MsgBox ActiveDocument.Sections.Count ActiveDocument.Sections(2).Range.Delete '删除节符号"^b",用替换功能实现 Set wd = ActiveDocument.Conten
阅读全文
posted @ 2023-01-31 23:28 沭水之虾
阅读(23)
评论(0)
推荐(0)
编辑
2023年1月27日
vba word另存为PDF
摘要: Sub 另存为PDF() s = ActiveDocument.Name i = InStrRev(s, ".") - 1 ActiveDocument.SaveAs2 filename:=ActiveDocument.Path & "\" & Left(s, i) & ".PDF", FileFo
阅读全文
posted @ 2023-01-27 22:12 沭水之虾
阅读(475)
评论(0)
推荐(0)
编辑
2022年12月14日
Sub 插入强化训练()
摘要: Sub 插入强化训练() ' ' 插入强化训练 宏 ' ' Selection.TypeText Text:="【】" Selection.MoveLeft unit:=wdCharacter, Count:=1 Selection.TypeText Text:="强化训练" '选择当前行 Sele
阅读全文
posted @ 2022-12-14 22:41 沭水之虾
阅读(44)
评论(0)
推荐(0)
编辑
2022年11月28日
WORD VBA 办公助手
摘要: Sub 设置页面() ' ' 设置页面和页码 宏 ' ' With Selection.PageSetup .LineNumbering.Active = False .Orientation = wdOrientPortrait .TopMargin = CentimetersToPoints(2
阅读全文
posted @ 2022-11-28 01:52 沭水之虾
阅读(133)
评论(0)
推荐(0)
编辑
WORD VBA 设置页面
摘要: Sub 设置页面() ' ' 设置页面和页码 宏 ' ' With Selection.PageSetup .LineNumbering.Active = False .Orientation = wdOrientPortrait .TopMargin = CentimetersToPoints(2
阅读全文
posted @ 2022-11-28 00:23 沭水之虾
阅读(204)
评论(0)
推荐(0)
编辑
下一页
公告