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

    How to let form out

    I've put my program on the syetem tay.Now I want to show it when mouse double
    click on the icon.
    I've write the following code.

    Private Sub Form_DblClick()
    App.TaskVisible = True
    Me.Show
    End Sub

    But it doesn't work like me want to see.
    Help me please.


  2. #2
    Join Date
    May 1999
    Location
    Omika, Japan
    Posts
    729

    Re: How to let form out

    May be you should try Me.WindowState = VbMAximised or VBNormal .
    App.TaskVisible is meant to make it appear in the task list or not.


    RK

  3. #3
    Guest

    Re: How to let form out

    Thank you,Ravi.
    I have try it.But it doesn't work,too.
    I have make the application on the system tray and no windows for it and have
    none on task bar.
    Now me want to show it out.
    With my poor English,the explain can't so clear to let you understand.
    But please help me.
    Thanks.



  4. #4
    Join Date
    Dec 1999
    Location
    Dallas, Texas, USA
    Posts
    59

    Re: How to let form out

    http://www.sourcesite.simplenet.com/visualbasic/ You will find the code there under SystemTray Demo..

    --
    Chizl
    [email protected]
    http://www.chizl.com/

  5. #5
    Guest

    Re: How to let form out

    Thank you very much.


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