这个很费时间的,给你一段代码参考吧:
call Plugin.Office.OpenXls("d:\001.xls")
For i= 1 to 10
text = Plugin.Office.ReadXls(1, i, 1)
Call Plugin.File.WriteFileEx("d:001.txt","text")
Next
Call Plugin.Office.CloseXls()
按键精灵是一款模拟鼠标键盘动作的软件。通过制作脚本,可以让按键精灵代替双手,自动执行一系列鼠标键盘动作。
按键精灵简单易用,不需要任何编程知识就可以作出功能强大的脚本。只要在电脑前用双手可以完成的动作,按键精灵都可以替代完成。
//给你一段参考
//下面是打开001.xls文档读取第一列的前十行数据存到text变量
//然后写入到001.txt文件里
call Plugin.Office.OpenXls("d:\001.xls")
For i= 1 to 10
text = Plugin.Office.ReadXls(1, i, 1)
Call Plugin.File.WriteFileEx("d:001.txt","text")
Next
Call Plugin.Office.CloseXls()
这个 时间需要很久///