用户登录  |  用户注册
首 页商业源码原创产品编程论坛
当前位置:PB创新网文章中心编程技巧VisualBasic

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

减小字体 增大字体 作者:佚名  来源:本站整理  发布时间:2009-03-16 19:51:41

首先在一个模块中做如下声明:

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的用法。

Tags:

作者:佚名

文章评论评论内容只代表网友观点,与本站立场无关!

   评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
PB创新网ourmis.com】Copyright © 2000-2009 . All Rights Reserved .
页面执行时间:20,640.63000 毫秒
Email:ourmis@126.com QQ:2322888 蜀ICP备05006790号