Results 1 to 2 of 2

Thread: Takeing a program out of the taskbar?

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Aug 2000
    Location
    Texas
    Posts
    313

    Question

    Can I take a program out of the taskbar? Like say I am running microsoft word or outlook, and I dont want the program to show up in my task bar, is their a way I can take it out of the taskbar?

  2. #2
    Guest
    Code:
    Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
    
    Public Declare Function ShowWindow Lib "user32" Alias "ShowWindow" (ByVal hwnd As Long, ByVal nCmdShow As Long) As Long
    
    Function Hidewin(wintitlesearch as string)
    dim xs as string
    xs = Findwindow(0, wintitlesearch)
    hidewin = ShowWindow(xs, 0)
    End Function

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width