我可以使用VBA从Access 97向Microsoft Sam(Win XP)发送文本以“说出”模块中的代码吗? [英] Can I use VBA to send text to Microsoft Sam (Win XP) from Access 97 to 'speak' the code in modules?

查看:70
本文介绍了我可以使用VBA从Access 97向Microsoft Sam(Win XP)发送文本以“说出”模块中的代码吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我不时会发现自己正在交叉检查一段代码

对另一块代码。通常我做过修改的旧东西

不能工作。我不记得所有的变化是什么所以我

必须打印一个早期版本并将它与打印输出

的更新版本进行比较。我是阅读障碍者,如果有人读了一份副本,而我跟着另一份副本

,直到我们遇到差异,这是有帮助的。


我可以以某种方式呼吁微软Sam不要这样做而不需要另外一个人吗?我的控制面板中有该程序。我不知道如何打电话给它并提供文字。


你想分享的任何经验吗?

From time to time, I find myself cross checking one block of code
against another. Usually older stuff in which I''ve made modifications
that don''t work. I don''t remember what all the changes were so I
have to print an earlier version and compare it against a printout
of a more recent version. I am dyslexic and it is helpful to have
someone read one copy while I follow along on another copy
until we hit a discrepancy.

Could I somehow call on Microsoft Sam to do that w/o involving
another person? I have that program in my Control Panel. I don''t
know how to call it up and feed it text though.

Any exeriences you care to share?

推荐答案

我试着按照我在
http://msdn.microsoft.com/library/de...tml/sa03f1.asp

但我似乎无法让它工作。
I tried following what I found at
http://msdn.microsoft.com/library/de...tml/sa03f1.asp
but I just couldn''t seem to get it to work.


MLH写道:
从时间到时候,我发现自己正在交叉检查一个代码块而不是另一个。通常我做过修改的旧东西
不能工作。我不记得所有的变化是什么,所以我必须打印一个早期版本并将其与更新版本的打印输出进行比较。我是阅读障碍者,当我跟随另一个副本时,有人阅读一份副本是有帮助的
直到我们遇到差异。

我可以以某种方式呼吁微软Sam这样做不涉及另一个人吗?我的控制面板中有该程序。我不知道如何打电话给它并提供文字。

你喜欢分享的任何经验吗?
From time to time, I find myself cross checking one block of code
against another. Usually older stuff in which I''ve made modifications
that don''t work. I don''t remember what all the changes were so I
have to print an earlier version and compare it against a printout
of a more recent version. I am dyslexic and it is helpful to have
someone read one copy while I follow along on another copy
until we hit a discrepancy.

Could I somehow call on Microsoft Sam to do that w/o involving
another person? I have that program in my Control Panel. I don''t
know how to call it up and feed it text though.

Any exeriences you care to share?




我有一个来自NE.COM诺顿的旧DOS(1986)实用程序,多年来一直是我的天赐之物。我可以拉出2个文件然后按一个键

,这将是两个文件之间的第一个区别。我可以通过两个文件去查看
,看看这两个文件之间的所有差异。由于它是DOS,你不能将更改剪切/粘贴到NotePad这样的程序中。


无论如何,转到 http://www.tucows.com 。在搜索中,输入类似

文本比较的内容。你会在那里找到一些应该做你想做的程序。



I have an old DOS (1986) utility from Norton, NE.COM, that has been a
godsend for me over the years. I can pull up 2 files and press a key
and it will go to the first difference between the two files. I can go
thru both files and see all discrepencies between the two files. Since
it''s DOS, you can''t cut/paste the changes into a program like NotePad.

Anyway, go to http://www.tucows.com. In search, enter something like
Text Compare. You''ll find some programs there that should do what you want.


MLH写道:
我不时发现自己交叉检查一个代码块与另一个代码块。通常我做过修改的旧东西
不能工作。我不记得所有的变化是什么,所以我必须打印一个早期版本并将其与更新版本的打印输出进行比较。我是阅读障碍者,当我跟随另一个副本时,有人阅读一份副本是有帮助的
直到我们遇到差异。

我可以以某种方式呼吁微软Sam这样做不涉及另一个人吗?我的控制面板中有该程序。我不知道如何打电话给它并提供文字。

你喜欢分享的任何经验吗?
From time to time, I find myself cross checking one block of code
against another. Usually older stuff in which I''ve made modifications
that don''t work. I don''t remember what all the changes were so I
have to print an earlier version and compare it against a printout
of a more recent version. I am dyslexic and it is helpful to have
someone read one copy while I follow along on another copy
until we hit a discrepancy.

Could I somehow call on Microsoft Sam to do that w/o involving
another person? I have that program in my Control Panel. I don''t
know how to call it up and feed it text though.

Any exeriences you care to share?




有一些移植到Windows的unix软件:

http:/ /unxutils.sourceforge.net/

查看diff.exe程序是否满足您的需求。顺便说一句,在过去几周里,MS组中有一张

的海报,他们有一个问题

,diff.exe可以帮助解决这个问题。一个有进取心的顾问可以从这些知识中获益。


詹姆斯A.财富


有时我会保存一个整体将模块转换为emacs,运行强大的宏或

两个,然后将代码粘贴回Access。



There is some unix software ported to windows at:

http://unxutils.sourceforge.net/

See if the diff.exe program does what you need. BTW, there was a
poster in the MS groups within the last several weeks who had a problem
that diff.exe could help solve. An enterprising consultant could
benefit from such knowledge.

James A. Fortune

Sometimes I save a whole module into emacs, run a powerful macro or
two, then paste the code back into Access.


这篇关于我可以使用VBA从Access 97向Microsoft Sam(Win XP)发送文本以“说出”模块中的代码吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆