http://www.vbforums.com/showthread.p...em-tray-popup)
Now I want what I've asked for in the thread title. The event would be for example the time changing to "12:00"
Thanks a lot
http://www.vbforums.com/showthread.p...em-tray-popup)
Now I want what I've asked for in the thread title. The event would be for example the time changing to "12:00"
Thanks a lot
Another website after some Googling (http://www.xtremevbtalk.com/showthread.php?t=93500) told me that I can use a popupmenu?? I'm not sure how I go about that but I gave this a shot and it didn't work:
I'm aware if that code *did* work, it'll be visible forever (as opposed to a set time of let's say 5 seconds), but I was going to deal with that when I got the first bit working.Code:Sub PopupMenuVisible() If Time >= "12:00" Then PopupMenu.Visible = True If Time >= "12:00" Then PopupMenu.Caption = "It's the Afternoon!" End Sub
Thanks again,
Max
anyone?
A PopupMenu is basically a right-click menu (like you get if you right-click on a web page, etc).
The description of what you want is far from clear, but I don't think you want a PopupMenu. What I think you want is a window that "appears" (perhaps slide in to view) and stays there for a while... which you can do by creating (and moving) a Form.
(2007, 2008, 2009, 2010, 2011, 2012) . . . . . . . . Hitchhiker's Guide to Getting Help at VBForums
Classic VB FAQs (updated Oct 2010) ...Database Development FAQs/Tutorials (updated May 2011)
(includes fixing common VB errors) .......... (includes fixing common DB related errors, and [Classic VB] ADO tutorial /further steps, and [VB.Net] ADO.Net Tutorial).
Tutorial: How to automate Excel from VB6 (or VB5/VBA) .. SQL 'Select' statement formatter/checker .. Convert colour number to colour name .. FlexGrid: fill from recordset .. FlexGrid: AutoSize columns .. DB Reserved Words checker
Connection strings .. MDAC/Jet/ACE downloads .. SQL Server downloads .. MZTools (free upgrade for the VB6/VBA Editor)
Create a form and move it to the bottm corner when its 12 and make it visible for acouple seconds then back to invisible?
Sorry. What I'm asking for is a Tool tip box (?) but Max's suggestion seems a simple solution.