Hi all
Just writing a small system tray application but run into a problem - probably simply overlooking something.
The application has screen=off in config.fpw
Then the startup code has the following:
Code:
DO environsettings.prg
x = NEWOBJECT('systray', 'systray.vcx')
x.IconFile = "test1.ico"
x.TipText = "Taskbar Icon example"
x.MenuText = "Systray_shortcut.mpr"
x.MenuTextIsMPR = .T.
x.AddIconToSystray()
READ EVENTS
DO exitapp.prg
The problem is that the menu is available, but when I use other applications or do something else, the menu is no longer available.
Any ideas
Thanks
ITflash