Results 1 to 4 of 4

Thread: VB5.0 (SP3), Show programs in taskbar

  1. #1

    Thread Starter
    New Member
    Join Date
    May 2000
    Location
    Shropshire, England
    Posts
    14

    Question

    Developed individual exes and i am using a toolbar seperate program to run these seperate programs from the app directory, but if i minimize these programs they do not appear on the taskbar, they appear just above the taskbar minimized, this is very annoying and would appreciate any help if possible.


    Thanking you in advance
    Were all drowning!

  2. #2
    _______ HeSaidJoe's Avatar
    Join Date
    Jun 1999
    Location
    Canada
    Posts
    3,946

    ...

    In the form property, set:

    ShowInTaskbar = True
    "A myth is not the succession of individual images,
    but an integerated meaningful entity,
    reflecting a distinct aspect of the real world."

    ___ Adolf Jensen

  3. #3

    Thread Starter
    New Member
    Join Date
    May 2000
    Location
    Shropshire, England
    Posts
    14

    Unhappy

    Done that, but it still does not appear there
    Were all drowning!

  4. #4
    transcendental analytic kedaman's Avatar
    Join Date
    Mar 2000
    Location
    0x002F2EA8
    Posts
    7,221
    you said it appear a little box above the taskbar? Well you could make invisble, actually that's what it does when you try to minimize it because you can't restore it other ways.
    Code:
    Windowstate=vbminimized
    visible=false
    and to restore it
    Code:
    visible=true
    Windowstate=vbnormal
    Use
    writing software in C++ is like driving rivets into steel beam with a toothpick.
    writing haskell makes your life easier:
    reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
    To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.

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