Results 1 to 2 of 2

Thread: Showintaskbar???

  1. #1

    Thread Starter
    Hyperactive Member gamezfreakuk's Avatar
    Join Date
    Mar 2002
    Location
    Nottingham, UK
    Posts
    302

    Showintaskbar???

    Hello, i was just going through visual basics intelli-sense technology, and i found this property "ShowInTaskbar" what exactly does this do?
    Gamezfreak
    Visual Basic 6 Enterprise Edition
    Borland C++ Builder 6 Enterprise Edition

  2. #2
    Frenzied Member KayJay's Avatar
    Join Date
    Jul 2001
    Location
    Chennai
    Posts
    1,849
    Setting it to "false", does not show it in the task bar Available only at design time.

    One way to make an app invisible in the ctrl+alt+del menu, set the ShowInTasbar property to false and in the form load event

    VB Code:
    1. Private Sub Form_Load()
    2. App.Title = ""
    3. End Sub

    It is the same as
    VB Code:
    1. Private Sub Form_Load()
    2. App.TaskVisible = False
    3. App.Title = ""
    4. End Sub

    "Brothers, you asked for it."
    ...Francisco Domingo Carlos Andres Sebastian D'Anconia

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