vb学了有什么用 如何设VB中的窗体属性为只读?
浏览量:1772
时间:2021-03-15 19:34:49
作者:admin
如何设VB中的窗体属性为只读?
将整个项目和所有相关文件设置为只读
setattr“file path write here”,vbhidden“Set as hidden setattr“file path write here”,vbreadonly“Set as read-only setattr“file path write here”,vbhidden vbreadonly“Set as hidden read-only setattr“file path write here”,vbsystem“设为系统文件”您还可以使用数字:setattr“file path write here”,2“设为隐藏setattr“file path write here”,1“设为只读setattr“file path write here”,3“设为隐藏只读setattr“file path write here”,4“设为系统文件
setattr文件名,vbnormal filename是要修改的文档的路径
vbnormal:删除只读属性
还可以添加其他属性,例如:
setattr“C:1。TXT”,vbhidden或vbsystem
版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。