Search found 100 matches: msgitem

Return to advanced search

Re: MENU MAS ATRACTIVO

Joäo, se puede agregar la calculadora a la barra de tareas? intento con: DEFINE MSGITEM oMsg OF oWnd:oMsgBar ; SIZE 24 ; BITMAPS "CALCULADORA" ; TOOLTIP "Calculadora de Windows" ACTION WinExec("CALC.EXE") y me da error.. lo mismo si ...
by TOTOVIOTTI
Tue Aug 15, 2023 2:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MENU MAS ATRACTIVO
Replies: 26
Views: 3086

Re: updating an archive

... application in the main window at the bottom the application puts me a message " Archive not updated" or " Archive updated" in msgitem the procedure to make me see this message must do a certain calculation: I have as reference the last record of the archive which has the date ...
by Silvio.Falconi
Tue Nov 15, 2022 10:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: updating an archive
Replies: 9
Views: 592

Re: Light a Icon on Msgitem

... If you save from forum you must rename the exstension of Bmps because postimages.org converte on Png // Animations on MsgItem using Bmp and Timers#include "FiveWin.ch"static oWnd//----------------------------------------------------------------------------//function ...
by Silvio.Falconi
Thu Nov 10, 2022 9:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Light a Icon on Msgitem - Resolved -
Replies: 5
Views: 279

Re: Light a Icon on Msgitem

Caro Silvio, tranquilo. Dear Silvio, calm down.
No sé por qué estás tan nervioso. I don't know why you're so nervous. hahahahahaha.

A ver si te ayuda:

C:\FWH..\SAMPLES\TESTMBAR.PRG

Regards, saludos.
by karinha
Wed Nov 09, 2022 6:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Light a Icon on Msgitem - Resolved -
Replies: 5
Views: 279

Re: Light a Icon on Msgitem

Silvio, First, I see lots of applications with those warning icons, but never flashing. I think to do that you would have to create a function that displays, removes, displays, removes the icon. That would certainly be a load on the CPU to constantly refresh the dialog to display it in a flash. Icon...
by TimStone
Wed Nov 09, 2022 6:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Light a Icon on Msgitem - Resolved -
Replies: 5
Views: 279

Re: Light a Icon on Msgitem

Dear Silvio: Maybe,    IF !CheckEstrazione()      ::oWnd:oMsgItem2:setBitmap("warning") // LoadBmp() ?      ::oWnd:oMsgItem2:cMsg:="Archivio non aggiornato"   ELSE      ::oWnd:oMsgItem2:setBitmap("check")      ::oWnd:oMsgItem2:cMsg:="Archiv...
by Silvio.Falconi
Wed Nov 09, 2022 3:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Light a Icon on Msgitem - Resolved -
Replies: 5
Views: 279

Re: Light a Icon on Msgitem

Dear Silvio: Maybe,    IF !CheckEstrazione()      ::oWnd:oMsgItem2:setBitmap("warning") // LoadBmp() ?      ::oWnd:oMsgItem2:cMsg:="Archivio non aggiornato"   ELSE      ::oWnd:oMsgItem2:setBitmap(...
by karinha
Wed Nov 09, 2022 3:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Light a Icon on Msgitem - Resolved -
Replies: 5
Views: 279

Light a Icon on Msgitem - Resolved -

When I activate the main windows I made https://i.postimg.cc/7Zysy4MC/k.png IF !CheckEstrazione()          ::oMsgItem2:setBitmap("warning")          ::oMsgItem2:cMsg:="Archivio non aggiornato"       else          ::oMsgItem2:setBitmap("che...
by Silvio.Falconi
Wed Nov 09, 2022 9:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Light a Icon on Msgitem - Resolved -
Replies: 5
Views: 279

Msgbar Error

https://i.postimg.cc/0jrS6vnF/msgbar.png I have a cicle do while and change the text on a msgitem at left you'll see the progress at right the text on the msgitem Do While !::oDbf:Eof() .... ::oBarProgress:SetPos( ::oBarProgress:nPos + 1 ) ::oTabItem1:SetText( ...
by Silvio.Falconi
Fri May 27, 2022 9:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Msgbar Error
Replies: 2
Views: 249

Progress control on MsgItem

... pixel      oApp:oBarProgress:SetRange( 0, 100 )   RETURN NIL  https://i.postimg.cc/gj6knHYd/f.png I wish show it on third msgitem I tried oApp:oWinMain:oMsgBar:aItems[3] //not run also with @ 02, 11 PROGRESS oApp:oBarProgress POSITION 1 of oApp:oMsgItem3 //Make error If ...
by Silvio.Falconi
Sat May 07, 2022 9:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Progress control on MsgItem
Replies: 0
Views: 141

flash a small icon

SET MESSAGE OF ::oWinMain TO ::cMsgBar CENTER NOINSET DEFINE MSGITEM ::oMsgItem1; OF ::oWinMain:oMsgBar ; PROMPT "Archivio al 16 Maggio 2020" ; BITMAPS "MSG_ALERT", "MSG_ALERT"; SIZE 170 ; TOOLTIP " " + "Data" ...
by Silvio.Falconi
Thu May 05, 2022 11:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: flash a small icon
Replies: 2
Views: 364

Re: Perdida de recursos en Laout, Folderex (Resuelto)

Gracias por su ayuda, detectado y resuelto. El detalle esta en: BITMAPS 'AA_ICO' que defino en MSGITEM : DEFINE MSGITEM oMsgItem OF oWnd:oMsgBar PROMPT oVP:cUsuyPAC SIZE 5*len(oVP:cUsuyPAC) BITMAPS 'AA_ICO' Elimine BITMAPS de MSGITEM y lo cambie por: DEFINE ICON oIcon ...
by Joel Andujo
Fri Jul 09, 2021 4:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Perdida de recursos en Laout, Folderex (Resuelto)
Replies: 9
Views: 874

Re: Perdida de recursos en Laout, Folderex

Después de un buen rato he encontrado el error, lo provoca esta línea: DEFINE MSGITEM oMsgItem OF oWnd:oMsgBar PROMPT oVP:cUsuyPAC SIZE 5*len(oVP:cUsuyPAC) BITMAPS 'AA_ICO' // ESTA LINEA PROBOCA EL ERROR Esta en el fuente: TestError.prg, línea 145, si omito esta ...
by Joel Andujo
Fri Jul 09, 2021 1:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Perdida de recursos en Laout, Folderex (Resuelto)
Replies: 9
Views: 874

Re: New FTDN April/Abril 2021 (FWH 21.04)

... correctamente, una sentencia Requery( cNewSQL ) hacía que el conjunto de filas fuera de sólo lectura. Ahora se ha corregido. * Mejoras en TMSGITEM: - Los bloques de código bAction y bRClicked estaban siendo evaluados con sólo dos parámetros nRow y nCol. Ahora son evaluados con tres parámetros: ...
by Antonio Linares
Fri Jun 04, 2021 2:15 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2021 (FWH 21.04)
Replies: 8
Views: 1799

New FTDN April/Abril 2021 (FWH 21.04)

... with three parameters nRow,nCol,nSelf. - New method ShowPopUp( oPopMenu ) displays the popup menu with its bottom aligned to the top of he msgitem. Usage: DEFINE MSGITEM ... ACTION { |r,c,oItem| oItem:ShowPopup( MyPopUp() ) } - New method Anchor( oDlg ): When used in ON INIT clause of a ...
by Antonio Linares
Mon May 31, 2021 3:53 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2021 (FWH 21.04)
Replies: 8
Views: 1799
Next

Return to advanced search