CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4

Thread: Taskbar

  1. #1
    Join Date
    Jun 1999
    Posts
    12

    Taskbar

    How can I see the icon of an application in Task bar, when the application is minimized?

    Thank you.


  2. #2
    Join Date
    Apr 2000
    Posts
    737

    Re: Taskbar

    if you mean put your application as an icon to taskbar, refer http://vblib.virtualave.net, there is a class vbTaskBar in the ActiveX DLL which might help.

    HTH


  3. #3
    Join Date
    May 2000
    Location
    New York, NY, USA
    Posts
    2,878

    Re: Taskbar

    If Me.WindowState = vbMinimized Then
    Me.Icon = picture1.Picture

    Iouri Boutchkine
    [email protected]
    Iouri Boutchkine
    [email protected]

  4. #4
    Join Date
    Jul 2000
    Location
    Milano, Italy
    Posts
    7,726

    Re: Taskbar

    (addin to Iouri answer)... and set ShowInTaskbar property of your forms to = true


    Special thanks to Lothar "the Great" Haensler, Tom Archer, Chris Eastwood, Bruno Paris and all the other wonderful people who made and make Codeguru a great place. Come back soon, you Gurus.
    ...at present time, using mainly Net 4.0, Vs 2010



    Special thanks to Lothar "the Great" Haensler, Chris Eastwood , dr_Michael, ClearCode, Iouri and
    all the other wonderful people who made and make Codeguru a great place.
    Come back soon, you Gurus.

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

Featured