C
ciliwin
Unregistered / Unconfirmed
GUEST, unregistred user!
在这上面看了很多的有关word和OleContainer的问题,本人要实现客户端读取服务端上的word文档,本人想通过OleContainer调用word,同时对word进行控制,如:屏蔽掉编辑保存复制打印功能,也就是说只供人查看用其它功能全部闭掉,尤其是快捷方式的处理特令人讨厌(Ctr+s等,怎么把他们也给屏蔽掉呢)。
if OpenDialog1.Execute then
begin
wordOleContainer.CreateObjectFromFile(OpenDialog1.FileName ,false);
wordOleContainer.DoVerb(ovShow);
//屏蔽掉鼠标右键
wordOleContainer.AutoActivate := aaManual;
wordOleContainer.AutoVerbMenu := False;
end
if OpenDialog1.Execute then
begin
wordOleContainer.CreateObjectFromFile(OpenDialog1.FileName ,false);
wordOleContainer.DoVerb(ovShow);
//屏蔽掉鼠标右键
wordOleContainer.AutoActivate := aaManual;
wordOleContainer.AutoVerbMenu := False;
end