禁止拷屏的问题(100分)

  • 主题发起人 主题发起人 深之蓝
  • 开始时间 开始时间

深之蓝

Unregistered / Unconfirmed
GUEST, unregistred user!
各位大虾,请详细说明DELPHI如何:禁止拷屏?还有就是:在IE中如何禁止鼠标右键?
 
[HKEY_CURRENT_USER/Software/Policies/Microsoft/Internet Explorer/Restrictions]
NoBrowserContextMenu =1/0 //禁止/允许IE的右键菜单功能
 
to dx2527,能给出Delphi实现的代码吗?给分
另:如果用TWebBrower也能这样做吗?
 
uses registry;
begin
with tregistry.create do
Begin
try
RootKey:=HKEY_CURRENT_USER;
if openkey('Software/Policies/Microsoft/Internet '+'Explorer/Restrictions',true) then
writeinteger('NoBrowserContextMenu',1{=1/0 //禁止/允许IE的右键菜单功能 }
finally
closekey;
free;
end;
End;
end;

禁止拷贝屏幕!除非拦截API涵数bitblt或streachbitblt!


 
禁止拷贝屏幕是hook getdc,如果参数为0则返回false!
 
多谢啦,分已经发给各位,有多有少。
 
后退
顶部