This topic has been archived. It cannot be replied.
-
工作学习 / 专业技术讨论 / 请教: 我有个程序是在excel里面的,要求打开一个excel file, copy其中一部分,再paste到一新excel file里, save as ... close问题是每回做到close的时候都会有一msg 出来,说 "there is a large amount of information on the Clipboard....." 我要怎样才能让这该4的msg不出现呢? 谢谢
-zxcvb(朝天椒);
2005-7-26
{149}
(#2418602@0)
-
最笨的方法, 清楚Clipboard的内容
-ningxin0809(雁影行洲);
2005-7-26
(#2418610@0)
-
我是要对上百个文件做同样的操作,如今每个文件close的时候都出来这东西,问我是不是要save, 我只好手动click on "NO",几百次啊~~~~
-zxcvb(朝天椒);
2005-7-26
(#2418651@0)
-
可怜哦 :) 我不知道EXCEL编程有没有去掉这个ALERT的选项, 不过我说的苯办法就是在你PASTE完了之后, 随便再拷贝一个小字段给CLIPBOARD, 系统应该就不会提示了
-ningxin0809(雁影行洲);
2005-7-26
(#2418662@0)
-
太感谢了!!!!!!
-zxcvb(朝天椒);
2005-7-26
(#2418666@0)
-
不客气, 谁让我太聪明了呢:)
-ningxin0809(雁影行洲);
2005-7-26
(#2418669@0)
-
虽然有点儿自恋,还真服你,这法不错
-markriver(markriver);
2005-7-26
(#2418764@0)
-
这叫以子之矛, 攻子之盾, 大贤:P
-ningxin0809(雁影行洲);
2005-7-26
(#2418771@0)
-
。in VBA code page, add this line
application.CutCopyMode=False
-23456789(大白呼);
2005-7-26
{64}
(#2418990@0)
-
谢谢
-zxcvb(朝天椒);
2005-7-26
(#2419009@0)
-
Application.DisplayAlert = false
-super_eleman(Super Eleman);
2005-7-26
(#2419058@0)