module kısmına aşağıdaki kodu yazınız.
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
Form_Load() ‘a aşağıdaki kodu yazınız:
Dim rc As Long
Dim OwnerhWnd As Long
'make the form invisible
Me.Visible = False
'now remove it from the Task Manager List
OwnerhWnd = GetWindow(Me.hWnd, GW_OWNER)
rc = ShowWindow(OwnerhWnd, SW_HIDE)