Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: How to minimize my program into right-bottom's notification area  (Read 3946 times)

0 Members and 1 Guest are viewing this topic.

Stan Huang

    Topic Starter


    Beginner

    • Experience: Experienced
    • OS: Windows 7
    I wrote a program which can launch other application programs. I hope my program can minimize into right-bottom's notification area after an application is launched automatically. How can I do? Any API I can call?

    BC_Programmer


      Mastermind
    • Typing is no substitute for thinking.
    • Thanked: 1140
      • Yes
      • Yes
      • BC-Programming.com
    • Certifications: List
    • Computer: Specs
    • Experience: Beginner
    • OS: Windows 11
    Re: How to minimize my program into right-bottom's notification area
    « Reply #1 on: January 10, 2014, 10:38:01 AM »
    I was trying to dereference Null Pointers before it was cool.

    Stan Huang

      Topic Starter


      Beginner

      • Experience: Experienced
      • OS: Windows 7
      Re: How to minimize my program into right-bottom's notification area
      « Reply #2 on: January 12, 2014, 09:13:22 PM »
      Thanks. But the codes are all C++. My program is in C#. They can't be applied to my program.

      BC_Programmer


        Mastermind
      • Typing is no substitute for thinking.
      • Thanked: 1140
        • Yes
        • Yes
        • BC-Programming.com
      • Certifications: List
      • Computer: Specs
      • Experience: Beginner
      • OS: Windows 11
      Re: How to minimize my program into right-bottom's notification area
      « Reply #3 on: January 12, 2014, 09:51:09 PM »
      Thanks. But the codes are all C++. My program is in C#. They can't be applied to my program.

      The Windows API is C. You can use P/Invoke.

      If you are using Windows Forms you can simply use the Windows Forms NotifyIcon control.
      I was trying to dereference Null Pointers before it was cool.