VFP 怎样修改警告信息 此控件只读
展开全部
将VFP的警告信息(输入数据出错)改为自己的提示信息:
编写自己的错误处理程序
例:
on error do progs\ERR_file with error()
ERR_file :
if error()=1705 or error()=1569
if messagebox("数据库或数据表正在被其他用户使用,请稍后再运行!",5+64,'信息')=4
retry
else
... &&自己的一些错误处理
cancel
endif
else
...
endif
更改消息框:
使用messagebox(),具体用法看书
编写自己的错误处理程序
例:
on error do progs\ERR_file with error()
ERR_file :
if error()=1705 or error()=1569
if messagebox("数据库或数据表正在被其他用户使用,请稍后再运行!",5+64,'信息')=4
retry
else
... &&自己的一些错误处理
cancel
endif
else
...
endif
更改消息框:
使用messagebox(),具体用法看书
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询