Search found 36 matches: ttray

Return to advanced search

Re: Error at STRUCTURE/ENDSTRUCTURE!

JC wrote:Ok, but... and the error?


Hi JC,

IMO you are mixing things, If you need FWH C language structures support commmands, you need "Struct.CH". Please see how use it in fwh\source\TTRAY.PRG

Regards,

Toninho.
by toninhofwi
Sat Jan 17, 2009 11:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error at STRUCTURE/ENDSTRUCTURE!
Replies: 12
Views: 1411

... error while executing your solution. But the Lib is getting generated C Compile error Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland ttray.c: Error E2451 ttray.prg 174: Undefined symbol 'NIF_INFO' in function HB_FUN_GETNOTIFYICONDATA Error E2451 ttray.prg 175: Undefined symbol 'dwInfoFlags' ...
by anserkk
Fri Oct 17, 2008 5:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create FiveH.Lib and FiveHx.Lib from C:\FWH\Source\Classes
Replies: 18
Views: 6678

Hi. I found the same problem and I went back to TTray class in an old .PRG. Couldn´t remember how do I got it... Mauricio Faria ************************************************** /* TTrayIcon CLASS Allows tray icon for any windows, including NT, ...
by concentra
Tue Sep 30, 2008 4:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TTRAY
Replies: 6
Views: 1334

TTRAY

After the upgrade from version 2.7 to 8.08 to tray no longer appears in the Windows taskbar.
by Alexandre Oliveira
Mon Sep 29, 2008 6:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TTRAY
Replies: 6
Views: 1334

The modified Class TTray source code.

Please use it and then test TestTray.prg again :-)
by Antonio Linares
Fri Aug 29, 2008 7:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help With TRAYICON
Replies: 33
Views: 6103

new

... Application" ACTION oApp:end() ENDMENU ACTIVATE POPUP oMenu AT nRow, nCol OF oTray:oWnd RETURN NIL and no show error my ttray.prg #INCLUDE "Fivewin.CH" #INCLUDE "Struct.CH" #define NIM_ADD 0 #define NIM_MODIFY 1 #define NIM_DELETE 2 #define ...
by lailton.webmaster
Thu Aug 28, 2008 11:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help With TRAYICON
Replies: 33
Views: 6103

My TTray.prg

#INCLUDE "Fivewin.CH" #INCLUDE "Struct.CH" #define NIM_ADD 0 #define NIM_MODIFY 1 #define NIM_DELETE 2 #define NIF_MESSAGE 1 #define NIF_ICON 2 #define NIF_TIP 4 #define WM_LBUTTONDBLCLK 515 // 0x203 CLASS TTrayIcon DATA oTray DATA oWnd DATA oIcon DATA cCaption DATA bLCl...
by lailton.webmaster
Thu Aug 28, 2008 10:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help With TRAYICON
Replies: 33
Views: 6103

error compiller class ttray fivewin

... -%1.OBJ %bcc%\bin\tlib %fwh%\lib\fivehx.lib +%1.OBJ IF EXIST %1.c ( DEL %1.c ) Erro ao compiler class ttray C:\FWH\source\classes>set xhb=c:\xharbour C:\FWH\source\classes>set bcc=c:\bcc55 C:\FWH\source\classes>set fwh=c:\fwh ...
by lailton.webmaster
Thu Aug 28, 2008 10:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help With TRAYICON
Replies: 33
Views: 6103

Re: tray

I need recomple my libs of fivewin ? or i can input it direct in my prg Lailton, tu precisa fazer a alteração no ttray.prg e somente executar a remoção/inclusão do .obj na fivehx.lib Caso tu não saiba como, aqui tá um código para .bat que faz isso set XHB=H:\xharbour set BCC=H:\BCC55 ...
by JC
Thu Aug 28, 2008 8:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help With TRAYICON
Replies: 33
Views: 6103

Lailton, You have to do these changes in Class TTray (fwh\sources\ttray.prg): // c := oTray:cBuffer c = GetNotifyIconData( ::oWnd:hWnd, 1, WM_TASKBAR, oIcon:hIcon, "text of the tooltip", "The Title" ...
by Antonio Linares
Thu Aug 28, 2008 3:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help With TRAYICON
Replies: 33
Views: 6103

... Another application, a big one, goes to the tray correctly ! Inspecting that application I noticed that I use an older, modifyed version, of TTRAY.PRG. Seems that the new TTRAY.PRG that came with the latest version do not function properly and I used that PRG to generate the FiveHMX.lib . ...
by concentra
Wed Aug 27, 2008 12:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Small TTray enhancement
Replies: 8
Views: 1634

... 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 you using a revised version, or a version later than 8.05? Also, you should never call the New() method of any object more than once. ...
by James Bott
Wed Aug 20, 2008 5:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange ttray error
Replies: 3
Views: 515

Davide,

Sometimes these strange ones are timing related. You might try changing the TTray code to add a sysrefresh() like this:

DEFINE WINDOW ::oWnd STYLE NOR( WS_POPUP, WS_DISABLED ) FROM 0,0 TO 0,0 OF oWnd
ACTIVATE WINDOW ::oWnd
sysrefresh()
::oWnd:Hide()

James
by James Bott
Tue Aug 19, 2008 11:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange ttray error
Replies: 3
Views: 515

Strange ttray error

Hello all, from time to time I receive a strange error log on class ttray. DEFINE WINDOW ::oWnd STYLE NOR( WS_POPUP, WS_DISABLED ) FROM 0,0 TO 0,0 OF oWnd ACTIVATE WINDOW ::oWnd ON INIT ::oWnd:Hide() The second line ...
by Davide
Tue Aug 19, 2008 11:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange ttray error
Replies: 3
Views: 515

TrayIcon con Balloon Tip

Saludos Cordiales Colegas!!!! Tengo un conflicto usando la clase TTray ya que quiero poder enviarle un aviso de notificacion tipo Balloon Tip pero no he podido hacer que funcione. En este link (como en muchos otros de la misma forma) explica como poder enviar ...
by danielr cyberia®
Wed Jul 02, 2008 5:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TrayIcon con Balloon Tip
Replies: 0
Views: 476
PreviousNext

Return to advanced search