vb设置全屏与设置退出--快捷键

admin6年前IT技术2230

退出VB   unload me

VB全屏:Form1.Left = 0
Form1.Top = 0
Form1.Width = Screen.Width
Form1.Height = Screen.Height
WebBrowser1.Left = 0
WebBrowser1.Top = 0
WebBrowser1.Width = Screen.Width
WebBrowser1.Height = Screen.Height
Form1.WindowState = vbMaximized

设置嵌入式IE:WebBrowser1.Navigate ("http://www.000.com/000.html")

相关文章

为CMD设置代理

set http_proxy=http://127.0.0.1:10809set https_proxy=http://127.0.0.1:10809永久设置方案先设置好IE代理,cmd执行如下命令:...

mount:is write-protected, mounting read-only解决方案

window10升级之后就遇到mount: **** is write-protected, mounting read-onlymount: cannot mount *** read-only尝试...

docker的感悟

1.容器是类实例化的对象,镜像是静态的类2.查看正在运行的容器docker ps ,查看所有容器包含停止与暂停的docker ps;3.拉去官方镜像:docker pull 镜像名称4.docker...

解决Win+x打开终端提示无法找到wt.exe,无法打开windows终端

C:\Windows\System32\WindowsPowerShell\v1.0查看一下powershell是否可以打开,如果可以打开则说明系统的powershell终端还在,引用的读取路径被篡改...

KindEditor得不到textarea值的解决方法

  下面以 KindEditor 4.x 版本为例说明,先贴上正确的代码:         &nb...

发表评论    

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。