Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Visual Basic > VB.NET 1.0 > VB.NET 2002/2003 Basics
|
VB.NET 2002/2003 Basics For coders who are new to Visual Basic, working in .NET versions 2002 or 2003 (1.0 and 1.1).
Welcome to the p2p.wrox.com Forums.

You are currently viewing the VB.NET 2002/2003 Basics 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, 12:46 AM
Registered User
 
Join Date: Mar 2004
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Default Tray Icon Contextmenu 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 or me.windowstate.normal

       ' but these codes 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
Contextmenu for a tray icon problem? koolvbnet1 VB.NET 0 March 8th, 2004 05:36 PM
Tray icon contextmenu function problem? koolvbnet1 Pro VB.NET 2002/2003 0 March 8th, 2004 10:35 AM





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