ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

msoFileDialogOpen , msoFileDialogFolderPicker

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-8-18 08:30 | 显示全部楼层 |阅读模式

  1. '''
  2. Sub SelectFolderMapToRng()
  3.    Dim Rng As Range, Kk
  4.        Set Rng = Selection
  5.    Dim Fso As FileSystemObject, oFile As File
  6.        Set Fso = New FileSystemObject
  7.    Dim oFolder As Folder
  8.    Dim Ff As FileDialog
  9.    Set Ff = Application.FileDialog(msoFileDialogFolderPicker)
  10.    With Ff
  11.       .Title = ""
  12.       .AllowMultiSelect = True
  13.       .InitialFileName = "F:"
  14.       .Show
  15.       Set oFolder = Fso.GetFolder(.SelectedItems(1))
  16.       
  17.    End With
  18.    Kk = 1
  19.    For Each oFile In oFolder.Files
  20.         Rng(Kk, 1) = oFile.Name
  21.         Rng(Kk, 2) = oFile.Path
  22.         Kk = Kk + 1
  23.    Next oFile
  24.    
  25.    
  26. End Sub
复制代码






  1. Sub SelectMapFileToRng()
  2.    Dim Rng As Range, Kk
  3.        Set Rng = Selection
  4.    Dim Fso As FileSystemObject
  5.        Set Fso = New FileSystemObject
  6.    Dim oFolder As Folder
  7.    Dim oFile As File, oFiles As Files
  8.    Dim Ff As FileDialog
  9.    Set Ff = Application.FileDialog(msoFileDialogOpen)
  10.    
  11.    With Ff
  12.       .Title = ""
  13.       .AllowMultiSelect = True
  14.       '.InitialFileName = "F:\JPGMP4Office\Other\2024年\2024年08月\2024年08月18日"
  15.       .Show
  16.       Stop
  17.       'Set oFiles = Fso.GetFolder(.SelectedItems(1))
  18.       For ii = 1 To .SelectedItems.Count
  19.           Set oFile = Fso.GetFile(.SelectedItems(ii))
  20.           Debug.Print oFile.Name, oFile.Path
  21.           Debug.Print Rng(ii, 1).Address
  22.           Rng(ii, 1) = oFile.Path
  23.       Next ii
  24.       
  25.    End With

  26.    
  27.    
  28. End Sub

复制代码


TA的精华主题

TA的得分主题

 楼主| 发表于 2024-8-24 07:15 | 显示全部楼层
  1. Sub ll()
  2.    Dim ShpRng As ShapeRange
  3.        Set ShpRng = Application.ActiveWindow.Selection.ShapeRange
  4.        With ShpRng
  5.            Debug.Print .AutoShapeType
  6.        End With
  7. End Sub
复制代码

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-8-24 08:15 | 显示全部楼层
TextEffectFormat.Alignment 属性

返回或设置指定艺术字的对齐方式。可读/写 MsoTextEffectAlignment 类型。语法
表达式.Alignment
表达式   一个代表 TextEffectFormat 对象的变量。
说明

MsoTextEffectAlignment 可以是下列 MsoTextEffectAlignment 常量之一。
msoTextEffectAlignmentCentered
msoTextEffectAlignmentLeft
msoTextEffectAlignmentMixed
msoTextEffectAlignmentRight
msoTextEffectAlignmentStretchJustify
msoTextEffectAlignmentWordJustify
msoTextEffectAlignmentLetterJustify


示例
本示例在当前演示文稿的第一张幻灯片中添加艺术字对象并将它右对齐。
Visual Basic for Applications
Set mySh = Application.ActivePresentation.Slides(1).ShapesSet myTE = mySh.AddTextEffect(PresetTextEffect:=msoTextEffect1, _    Text:="Test Text", FontName:="Palatino", FontSize:=54, _    FontBold:=True, FontItalic:=False, Left:=100, Top:=50)myTE.TextEffect.Alignment = msoTextEffectAlignmentRight


TextFrame.Orientation 属性

返回或设置文本方向。可读/写 MsoTextOrientation 类型。语法
表达式.Orientation
表达式   一个代表 TextFrame 对象的变量。
返回值
MsoTextOrientation
说明

由于所选择或安装的语言支持(例如美国英语)不同,有些常量可能不可用。
MsoTextOrientation 可以是下列 MsoTextOrientation 常量之一。
msoTextOrientationDownward
msoTextOrientationHorizontal
msoTextOrientationHorizontalRotatedFarEast
msoTextOrientationMixed
msoTextOrientationUpward
msoTextOrientationVertical
msoTextOrientationVerticalFarEast


示例

以下示例会在 myDocument 上将第三个形状中的文本设为水平方向。
Visual Basic for Applications
Set myDocument = ActivePresentation.Slides(1)myDocument.Shapes(3).TextFrame _    .Orientation = msoTextOrientationHorizontal



  1. Sub ll()
  2.    Dim ShpRng As ShapeRange
  3.        Set ShpRng = Application.ActiveWindow.Selection.ShapeRange
  4.        Dim Shps As Shapes
  5.            Set Shps = ShpRng.Parent.Shapes

  6.            
  7.        With ShpRng
  8.            .AutoShapeType = msoShapeLeftArrowCallout
  9.            .Fill.BackColor.RGB = RGB(125, 255, 255)
  10.            .Fill.ForeColor.SchemeColor = ppForeground
  11.            .TextFrame.Orientation = msoTextOrientationVertical
  12.            Debug.Print .AutoShapeType,
  13.            Debug.Print .Rotation, .ShapeStyle, .TextEffect.Alignment
  14.            
  15.        End With
  16. End Sub
复制代码


TA的精华主题

TA的得分主题

 楼主| 发表于 2024-8-25 09:57 | 显示全部楼层
  1. Function msoShapeArr(Shp As Shape)
  2.    Dim Arr(0 To 138)
  3.           Arr(0) = Array(msoShape16pointStar, "msoShape16pointStar", "十六角星")
  4.           Arr(1) = Array(msoShape24pointStar, "msoShape24pointStar", "二十四角星")
  5.           Arr(2) = Array(msoShape32pointStar, "msoShape32pointStar", "三十二角星")
  6.           Arr(3) = Array(msoShape4pointStar, "msoShape4pointStar", "四角星")
  7.           Arr(4) = Array(msoShape5pointStar, "msoShape5pointStar", "五角星")
  8.           Arr(5) = Array(msoShape8pointStar, "msoShape8pointStar", "八角星")
  9.           Arr(6) = Array(msoShapeActionButtonBackorPrevious, "msoShapeActionButtonBackorPrevious", "“后退”或“上一个”按钮支持鼠标单击和鼠标移过操作")
  10.           Arr(7) = Array(msoShapeActionButtonBeginning, "msoShapeActionButtonBeginning", "“开始”按钮支持鼠标单击和鼠标移过操作")
  11.           Arr(8) = Array(msoShapeActionButtonCustom, "msoShapeActionButtonCustom", "不带默认图片或文本的按钮支持鼠标单击和鼠标移过操作")
  12.           Arr(9) = Array(msoShapeActionButtonDocument, "msoShapeActionButtonDocument", "“文档”按钮支持鼠标单击和鼠标移过操作")
  13.           Arr(10) = Array(msoShapeActionButtonEnd, "msoShapeActionButtonEnd", "“结束”按钮支持鼠标单击和鼠标移过操作")
  14.           Arr(11) = Array(msoShapeActionButtonForwardorNext, "msoShapeActionButtonForwardorNext", "“前进”或“下一个”按钮支持鼠标单击和鼠标移过操作")
  15.           Arr(12) = Array(msoShapeActionButtonHelp, "msoShapeActionButtonHelp", "帮助按钮支持鼠标单击和鼠标移过操作")

  16. End Function



  17. Sub ll()
  18.     Dim Pres As Presentation
  19.         
  20.     Dim Sld As Slide, Slds As Slides
  21.         Set Slds = Application.ActivePresentation.Slides
  22.     Dim Shp As Shape, Shps As Shapes
  23.         Set Sld = Slds(4)
  24.         Set Shps = Sld.Shapes
  25.         For Each Shp In Shps
  26.              If Shp.Type = msoTextBox Then
  27.                  msoShapeArr Shp
  28.                  With Shp
  29.                       Debug.Print .AutoShapeType, .TextFrame.Orientation, .Name, .Left, .Top, .Width, .Top
  30.                      
  31.                  End With
  32.              End If
  33.         Next Shp
  34. End Sub
复制代码

aa.zip

46.14 KB, 下载次数: 0

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

本版积分规则

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

GMT+8, 2024-12-25 16:22 , Processed in 0.039025 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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