Search found 18 matches: otray

Return to advanced search

FiveWin 17.07 menu problems

... FUNCTION TaskMenu( nRow, nCol ) DEFINE FONT oFontMenu NAME "Verdana" SIZE 0, -14 BOLD MENU oTrayMenu POPUP FONT oFontMenu 2013 ; NOBORDER ; // UPPERMNU ; LOGOMENU "acessosoftv.png" ; COLORSEPARATOR CLR_RED ; COLORMENU CLR_WHITE, ...
by shark
Sat Oct 14, 2017 4:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveWin 17.07 menu problems
Replies: 5
Views: 1165

Re: Meter in tray messages. Is it possible?

Yes, that is excactly how I built the oTray, using testtray.prg from samples.
by ariston.ap
Sun Apr 03, 2016 3:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Meter in tray messages. Is it possible?
Replies: 10
Views: 1582

Re: Meter in tray messages. Is it possible?

I am trying to build your example but I can find how you build oTray

Please provide a complete example to test it here, thanks
by Antonio Linares
Sun Apr 03, 2016 8:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Meter in tray messages. Is it possible?
Replies: 10
Views: 1582

Cambiar tipo de letra en Menu

... "Estado" action oMenu MENUITEM "Salir" action CloseTask() oMenu:l2007:=.t. endmenu activate popup oMenu at nRow, nCol of oTray:oWnd Un Saludo.-
by softruz
Wed Jan 27, 2010 7:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambiar tipo de letra en Menu
Replies: 2
Views: 724

Sr. Antonio, resolvido desta maneira: static function MenuTray(nRow, nCol, oTray) local oMenu MENU oMenu POPUP MENUITEM "Configurar" ACTION configurar() MENUITEM "Fechar" ACTION Fecha() ENDMENU ACTIVATE POPUP oMenu AT nRow, nCol OF oTray:oWnd msgwait("Aguarde...",,.02) ...
by MGA
Mon Oct 06, 2008 2:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWH802\SAMPLES\TESTTRAY.PRG
Replies: 9
Views: 1763

... tray icon for any windows, including NT, 2000 and XP. This class extracts a 32bit handle icon from a file( .EXE , .ICO, .DLL, etc... ) DATAS: oTray : Object Tray oWnd : Window that the tray icon is linked cIcon : Specified path + file to get the icon nIcon : Icon number from file(use 0 for ...
by concentra
Tue Sep 30, 2008 4:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TTRAY
Replies: 6
Views: 1334

PLeaseee

Help me.... What i need to do now ??? Antonio onde yo tengo que usar los codigos abaixo c := oTray:cBuffer c = GetNotifyIconData( ::oWnd:hWnd, 1, WM_TASKBAR, oIcon:hIcon, "text of the tooltip", "The Title" ) ::lSuccess = Shell_NotifyIcon( If( lAdd, NIM_ADD, NIM_MODIFY ...
by lailton.webmaster
Fri Aug 29, 2008 2:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help With TRAYICON
Replies: 33
Views: 6085

... Now you should be able to properly compile the C source code. Also, place this line here: c := oTray:cBuffer c = GetNotifyIconData( ::oWnd:hWnd, 1, WM_TASKBAR, oIcon:hIcon, "text of the tooltip", "The Title" ) ::lSuccess = Shell_NotifyIcon( If( ...
by Antonio Linares
Thu Aug 28, 2008 11:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help With TRAYICON
Replies: 33
Views: 6085

Antônio, the lines 287 and 288 are: oTray:Refresh() IF !oTray:lSuccess The program is a small application that reads a file that contains HP´s PCL laser printer control codes and "translate" into a Windows printing so I can print to any printer. ...
by concentra
Tue Aug 26, 2008 8:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Small TTray enhancement
Replies: 8
Views: 1612

Davide, >In effect this happens when oTray:lSuccess=.f. and I repaint the tray icon with a New(). Perhaps I just need to delay the new tray creation in these rare cases. Well, I'm confused. I don't see a lSuccess var in the TTray class. Are ...
by James Bott
Wed Aug 20, 2008 5:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange ttray error
Replies: 3
Views: 514

James,

> Sometimes these strange ones are timing related.

thank you. You gave me a good idea.

In effect this happens when oTray:lSuccess=.f. and I repaint the tray icon with a New(). Perhaps I just need to delay the new tray creation in these rare cases.

Thank you,
Davide
by Davide
Tue Aug 19, 2008 11:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange ttray error
Replies: 3
Views: 514

... de botones. * Mejora: En la clase TTrayIcon nuevo DATA lSuccess para comprobar si el icono aparece en la barra de sistema. Esto permite hacer oTray:SetIcon() cada cierto tiempo. Si oTray:lSuccess es .F., entonces podemos hacer oTray:End() y oTray:New() para que reaparezca el icono en la barra ...
by Antonio Linares
Tue Jul 22, 2008 10:25 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2008 (8.06)
Replies: 1
Views: 2996

New FTDN June/Junio 2008 (8.06)

... when placed on button bars. * Enhancement: CLASS TTrayIcon new DATA lSuccess to check if the tray icon was properly set. This allows to perform an oTray:SetIcon() from time to time. If oTray:lSuccess is .F., then I can oTray:End() and oTray:New() again to have the icon reappearing. Thanks to Davide! ...
by Antonio Linares
Fri Jun 27, 2008 11:33 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2008 (8.06)
Replies: 1
Views: 2996

Small TTray enhancement

... click it to access the program's menu (for example) So, I made the small changes below in TTray.prg: 14. CLASS TTrayIcon 15. 16. DATA oTray 17. DATA oWnd 18. DATA oIcon 19. DATA cCaption DATA lSuccess // <-- 20. 21. DATA bLClicked .... 124. ...
by Davide
Sat May 24, 2008 1:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Small TTray enhancement
Replies: 8
Views: 1612

... oCursor HAND DEFINE DIALOG oAppW RESOURCE "ABACKUP2" ICON oIcon TITLE "SVBACKUP V1-0" ... ... ... ... ACTIVATE DIALOG oAppW CENTER ; // ON INIT (oTray := TTrayIcon():New(oAppW,oIcon,"SVBACKUP",{||oAppW:Show()},{|nRow,nCol|MenuTray(nRow,nCol,oTray)}), ; oTimBa:=ATimer(oAppW, oTimBa, eConec) ) ...
by Willi Quintana
Thu Apr 24, 2008 3:34 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Aplicacion como Servicio
Replies: 5
Views: 1385
Next

Return to advanced search