51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 2255|回复: 1
打印 上一主题 下一主题

[求助] 请问为什么找不到ppt文本输入框的text属性?

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2007-10-30 13:52:43 | 只看该作者 回帖奖励 |正序浏览 |阅读模式
如题,写了段代码,目的是新建一个ppt文档添加内容后保存到指定位置:
Function CreatePowerPoint(sFilePath,sFileContent) 'As PowerPoint Application
   Dim PowerPointApp,PowerPointPresentation,PowerPointSlide
   Set PowerPointApp = CreateObject("PowerPoint.Application") 'Create a new PowerPoint Object
   PowerPointApp.Visible = True  'Make it visible
   Set PowerPointPresentation =  PowerPointApp.Presentations.Add'Add the property of PowerPoint
            PowerPointPresentation.SaveAs(sFilePath)
   Set PowerPointSlide =PowerPointPresentation.Slides.Add(1,PowerPointPresentation.Slides.Count+1) '.Slides.Add(CurrentSlideNumber,TotalSlideNumber)
            PowerPointPresentation.Slides(1).Shapes.Item(1).TextFrame.TextRange.Select
   Set PowerPointPresentation.Slides(1).Shapes.Item(1).TextFrame.TextRange.text = sFileContent
   Set PowerPoint = Nothing
   Set PowerPointPresentation = Nothing
   Set PowerPointSlide = Nothing
End Function

Call CreatePowerPoint("c:\ppt.ppt","H")
可问题是运行到这句:Set PowerPointPresentation.Slides(1).Shapes.Item(1).TextFrame.TextRange.text = sFileContent
总说找不到TextFrame.TextRange.text对象
搞不懂是为什么了
知道的麻烦指点下,先谢谢了
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

该用户从未签到

2#
 楼主| 发表于 2007-10-30 14:37:38 | 只看该作者
顶上去
大家帮忙想想办法,我也自己再看看
回复 支持 反对

使用道具 举报

本版积分规则

关闭

站长推荐上一条 /1 下一条

小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

GMT+8, 2024-11-8 11:45 , Processed in 0.067949 second(s), 26 queries .

Powered by Discuz! X3.2

© 2001-2024 Comsenz Inc.

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