大雀软件园

首页 软件下载 安卓市场 苹果市场 电脑游戏 安卓游戏 文章资讯 驱动下载
技术开发 网页设计 图形图象 数据库 网络媒体 网络安全 站长CLUB 操作系统 媒体动画 安卓相关
当前位置: 首页 -> 技术开发 -> 程序开发 -> 让你的程序不在任务栏中显示

让你的程序不在任务栏中显示

时间: 2021-07-31 作者:daque

开始在一个模块中做如次证明: public const sw_hide = 0 public const gw_owner = 4 declare function getwindow lib "user32" alias "getwindow" (byval hwnd as _ long, byval wcmd as long) as long declare function showwindow lib "user32" alias "showwindow" (byval hwnd _ as long, byval ncmdshow as long) as long 将底下的代码增添到窗体的load事变中: dim rc as long dim ownerhwnd as long '让窗体不看来 me.visible = false '从工作处置器列表中移除 ownerhwnd = getwindow(me.hwnd, gw_owner) rc = showwindow(ownerhwnd, sw_hide) 请看正文中所用到的两个api因变量getwindow和showwindow的用法。 

热门阅览

最新排行

Copyright © 2019-2021 大雀软件园(www.daque.cn) All Rights Reserved.