Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Visual Basic > VB 6 Visual Basic 6 > VB.NET
|
VB.NET General VB.NET discussions for issues that don't fall into other VB.NET forums.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the VB.NET section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old March 8th, 2004, 05:36 PM
Registered User
 
Join Date: Mar 2004
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Default Contextmenu for a tray icon problem?

Hello,


Problem: I want to set the contextmenu for a tray icon of a form so that when you click a menu selection, such as "Click to see form", the form appears, when the selection "Click to minimize form" the form disappears and "Exit", the program closes. I have loaded the form so that it does not appear but the tray icon in seen below. Also, I have the exit part working but again can not effect the appear part and the disappear part ( see below ).




I am trying to create a contextmenu for a tray icon using your example on pages 420, 421 & 422 of Beginning VB.Net 2nd Edition. I want to be able to make the tray icon form appear when I right click the contextmenu of the tray icon and select "Click to normal size" and make the form disappear when I select "Click to minimize".


Public Class ExitMenuItem
    Inherits MenuItem

    ' Constructor...
    Public Sub New()
        Text = "Exit"
    End Sub

    ' OnClick...
    Protected Overrides Sub OnClick(ByVal e As System.EventArgs)


               ' Application.Exit()

      'I want to put some code here to make the form appear, such as
       ' me.visible = true

       ' but this code does not work
    End Sub

Protected Overrides Sub OnLoad(ByVal e As System.EventArgs)


        ' then, add an exit option...
        menu.MenuItems.Add(New ExitMenuItem())

        ' finally, tell the tray icon to use this menu...
        icnNotify.ContextMenu = menu


    End Sub

I would appreciate some help with this problem.

Thanks,

Bruce








Similar Threads
Thread Thread Starter Forum Replies Last Post
icon on system tray aehb Visual C++ 2 May 28th, 2006 01:46 PM
Who can help me set up a contextmenu for tray icon koolvbnet1 Pro VB.NET 2002/2003 1 May 26th, 2004 02:20 AM
Contextmenu for a tray icon problem? koolvbnet1 VB How-To 0 March 17th, 2004 12:27 PM
Tray icon contextmenu function problem? koolvbnet1 Pro VB.NET 2002/2003 0 March 8th, 2004 10:35 AM
Tray Icon Contextmenu Problem! koolvbnet1 VB.NET 2002/2003 Basics 0 March 8th, 2004 12:46 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.