吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1048|回复: 3
收起左侧

[其他原创] wordvba:写入密度

[复制链接]
zjg121 发表于 2024-5-19 17:07
在word文件中写入带格式的密度表达式。


[Visual Basic] 纯文本查看 复制代码
Sub 宏1()
'
' 宏1 宏
'
'
    rho ("水")
    rho ("酒精")
    rho ("煤油")
    rho ("铜")
    rho ("铁")
    rho ("钢")
    rho ("铝")
    rho ("石")
    rho ("水银")
    
End Sub

Function rho(substance As String)
'
' 密度
'
'
    
    Selection.InsertSymbol Font:="+西文正文", CharacterNumber:=961, Unicode:=True
    Selection.Text = substance
    Selection.Font.Subscript = wdToggle
    Selection.MoveRight Unit:=wdCharacter, Count:=1
    Selection.Font.Subscript = wdToggle
    Selection.TypeText Text:="="
    If substance = "水" Then
        zhi = "1.0"
    ElseIf substance = "酒精" Or substance = "煤油" Then
        zhi = "0.8"
    ElseIf substance = "水银" Then
        zhi = "13.6"
    ElseIf substance = "铜" Then
        zhi = "8.9"
    ElseIf substance = "铁" Or substance = "钢" Then
        zhi = "7.9"
    ElseIf substance = "铝" Or substance = "石" Then
        zhi = "2.7"
    End If
    
    Selection.TypeText Text:=zhi
    Selection.TypeText Text:=ChrW(&HD7) & "103"
    Selection.MoveLeft Unit:=wdCharacter, Count:=1, Extend:=wdExtend
    Selection.Font.Superscript = wdToggle
    Selection.MoveRight Unit:=wdCharacter, Count:=1
    Selection.Font.Superscript = wdToggle
    Selection.TypeText Text:="kg/m3"
    Selection.MoveLeft Unit:=wdCharacter, Count:=1, Extend:=wdExtend
    Selection.Font.Superscript = wdToggle
    Selection.MoveRight Unit:=wdCharacter, Count:=1
    Selection.Font.Superscript = wdToggle
    Selection.TypeText Text:=" "
    Selection.TypeText Text:=vbCrLf
End Function



免费评分

参与人数 1吾爱币 +3 热心值 +1 收起 理由
苏紫方璇 + 3 + 1 欢迎分析讨论交流,吾爱破解论坛有你更精彩!

查看全部评分

本帖被以下淘专辑推荐:

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

hrwcn 发表于 2024-5-25 15:28
很好,谢谢分享!
lizhibobo521 发表于 2024-6-19 20:42
终于找到大哥了   大哥VX多少  我需要您的帮助
1e3e 发表于 2024-6-20 09:19
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-24 15:44

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

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