Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Visual Basic > VB.NET 1.0 > Pro VB.NET 2002/2003
|
Pro VB.NET 2002/2003 For advanced Visual Basic coders working .NET version 2002/2003. Beginning-level questions will be redirected to other forums, including Beginning VB.NET.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Pro VB.NET 2002/2003 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, 10:35 AM
Registered User
 
Join Date: Mar 2004
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Default Tray icon contextmenu function 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 you example on pages 420, 421 & 422 of Beginning VB.Net 2nd Edition.


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
system tray icon spoboyle Apache Tomcat 1 June 9th, 2004 10:29 AM
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
Contextmenu for a tray icon problem? koolvbnet1 VB.NET 0 March 8th, 2004 05:36 PM
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.