On the Task bar

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • J Bunton

    #1

    On the Task bar

    I have written a programme in VB (a 5 year old version)

    Problem: The 'Main Form' doesn't announce itself on the Task bar (Win 2000)
    Though subsequently opened Forms do!

    Any offers please

    --
    Jim Bunton
    jBunton@Blueyon der.co.uk
    13 Westbourne Road
    Trowbridge
    Wilts. BA14 0AJ
    Tel: 01225 765 541
    Mobile: 07919 283 968



  • Randy Birch

    #2
    Re: On the Task bar

    1) showintaskbar is false (if VB5 forms have this property)

    2) form is shown modally

    3) form has inappropriate border style.

    --

    Randy Birch
    MVP Visual Basic

    Please respond only to the newsgroups so all can benefit.


    "J Bunton" <jBunton@BlueYo nder.co.uk> wrote in message
    news:TqSpb.6$Dr 5.0@news-binary.blueyond er.co.uk...
    : I have written a programme in VB (a 5 year old version)
    :
    : Problem: The 'Main Form' doesn't announce itself on the Task bar (Win
    2000)
    : Though subsequently opened Forms do!
    :
    : Any offers please
    :
    : --
    : Jim Bunton
    : jBunton@Blueyon der.co.uk
    : 13 Westbourne Road
    : Trowbridge
    : Wilts. BA14 0AJ
    : Tel: 01225 765 541
    : Mobile: 07919 283 968
    :
    :
    :


    Comment

    • J Bunton

      #3
      Re: On the Task bar

      Thanks Randy - there is indeed a form property "ShowInTask Bar"

      How could I have missed it??!

      Thanks again

      Jim Bunton

      "Randy Birch" <rgb_removethis @mvps.org> wrote in message
      news:FOWpb.2026 7$152.5230@news 01.bloor.is.net .cable.rogers.c om...[color=blue]
      > 1) showintaskbar is false (if VB5 forms have this property)
      >
      > 2) form is shown modally
      >
      > 3) form has inappropriate border style.
      >
      > --
      >
      > Randy Birch
      > MVP Visual Basic
      > http://www.mvps.org/vbnet/
      > Please respond only to the newsgroups so all can benefit.
      >
      >
      > "J Bunton" <jBunton@BlueYo nder.co.uk> wrote in message
      > news:TqSpb.6$Dr 5.0@news-binary.blueyond er.co.uk...
      > : I have written a programme in VB (a 5 year old version)
      > :
      > : Problem: The 'Main Form' doesn't announce itself on the Task bar (Win
      > 2000)
      > : Though subsequently opened Forms do!
      > :
      > : Any offers please
      > :
      > : --
      > : Jim Bunton
      > : jBunton@Blueyon der.co.uk
      > : 13 Westbourne Road
      > : Trowbridge
      > : Wilts. BA14 0AJ
      > : Tel: 01225 765 541
      > : Mobile: 07919 283 968
      > :
      > :
      > :
      >
      >[/color]


      Comment

      • J French

        #4
        Re: On the Task bar

        On Tue, 04 Nov 2003 23:41:25 GMT, "Randy Birch"
        <rgb_removethis @mvps.org> wrote:
        [color=blue]
        >1) showintaskbar is false (if VB5 forms have this property)[/color]

        They do
        [color=blue]
        >
        >2) form is shown modally
        >
        >3) form has inappropriate border style.
        >
        >--
        >
        >Randy Birch
        >MVP Visual Basic
        >http://www.mvps.org/vbnet/
        >Please respond only to the newsgroups so all can benefit.
        >
        >
        >"J Bunton" <jBunton@BlueYo nder.co.uk> wrote in message
        >news:TqSpb.6$D r5.0@news-binary.blueyond er.co.uk...
        >: I have written a programme in VB (a 5 year old version)
        >:
        >: Problem: The 'Main Form' doesn't announce itself on the Task bar (Win
        >2000)
        >: Though subsequently opened Forms do!
        >:
        >: Any offers please
        >:
        >: --
        >: Jim Bunton
        >: jBunton@Blueyon der.co.uk
        >: 13 Westbourne Road
        >: Trowbridge
        >: Wilts. BA14 0AJ
        >: Tel: 01225 765 541
        >: Mobile: 07919 283 968
        >:
        >:
        >:
        >
        >[/color]

        Comment

        Working...