| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 93 人关注过本帖
标题:请教VFP中调用Windows API函数BlockInput来禁用鼠标和键盘输入问题
只看楼主 加入收藏
girlsfriend
Rank: 1
等 级:新手上路
帖 子:18
专家分:0
注 册:2022-2-25
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:2 
请教VFP中调用Windows API函数BlockInput来禁用鼠标和键盘输入问题
网上查到资料
* 调用Windows API函数BlockInput来禁用鼠标和键盘输入
* 需要先使用Declare关键字声明函数原型
Declare Integer BlockInput In win32api
Declare Integer EnableInput In win32api

* 禁用输入
BlockInput(1)
 
* 在此处编写需要在禁用输入的情况下运行的代码
? ' 示例代码,打印一条消息
? ' 你的程序代码应该放在这里
 
* 重新启用输入
EnableInput(1)

实际测试发现禁用只能是BlockInput()括弧内不能加参数,实现禁用键盘鼠标,否则就报错
但是解除禁用,发现“Declare Integer EnableInput In win32api”这句直接报错“在DLL中找不到入口点Enablelnput。”无法实现解除键盘鼠标禁用

Vfp9.0+Windows10环境
麻烦高手指点下,谢谢!如有其他办法实现,烦请给下示例代码,谢谢!
搜索更多相关主题的帖子: 函数 键盘 输入 禁用 鼠标 
5 天前 12:12
吹水佬
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
等 级:版主
威 望:451
帖 子:10609
专家分:43210
注 册:2014-5-20
收藏
得分:20 
Declare Integer BlockInput In win32api Integer
BlockInput(1)
or
BlockInput(0)
5 天前 14:06
girlsfriend
Rank: 1
等 级:新手上路
帖 子:18
专家分:0
注 册:2022-2-25
收藏
得分:0 
感谢版主,解决了!
Declare Integer BlockInput In win32api Integer   网上资料少了“Integer”这个参数
5 天前 14:34
快速回复:请教VFP中调用Windows API函数BlockInput来禁用鼠标和键盘输入问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.018730 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved