Search found 13 matches: omsgitem

Return to advanced search

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 RESOURCE 'AA_ICO' ...
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: 1038

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 línea ...
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: 1038

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

... mueve el cuadro de diálogo para alinear su parte inferior con la parte superior del "msgitem". Uso: ACTIVATE DIALOG oDlg ON INIT (..... oMsgItem:Anchor( oDlg ) ) * XBROWSE - Mejora en el método oCol( u ) Hasta ahora, el parámetro puede ser (1) orden de creación, (2) cabecera o ( 3 ) ...
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: 1960

New FTDN April/Abril 2021 (FWH 21.04)

... used in ON INIT clause of a dialog, moves the dialog to align its bottom with the top of the msgitem. Usage: ACTIVATE DIALOG oDlg ON INIT (..... oMsgItem:Anchor( oDlg ) ) * XBROWSE - Method oCol( u ) enhanced. Till now, the parameter can be either (1) creation order, (2) header or ( 3 ) group ...
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: 1960

Re: StartThread NO es estable usando FiveWin

Hola Albeiro

prueba colocar una static en la funcion extaerreport..

Function ExtraerReporteZ( oMsgItem )
static lentre := .f.
Local oQry

if !lentre
lentre := .t.
bla
bla
lentre := .f.
endif
return..
by Patricio Avalos Aguirre
Mon Oct 08, 2018 1:25 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: StartThread NO es estable usando FiveWin
Replies: 24
Views: 3842

Re: Juan Planelles Lazaga

... aItems, aFiles, .t., 1, nColor ),; oGet:SetFocus(), oGet:Refresh() } endif SET MESSAGE OF oWnd TO "" KEYBOARD NOINSET DEFINE MSGITEM oMsgItem PROMPT "" SIZE 120 OF oWnd:oMsgBar //205 300 @ iif( lCinta, 140, 29 ), iif( lHelp, 210, 50 ) FORMAT GET oGet VAR cText SIZE 300,200 ...
by Juan Planelles
Tue Dec 29, 2009 10:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Juan Planelles Lazaga
Replies: 9
Views: 6739

Re: Juan Planelles Lazaga

... "ribbon.ch" #include "xbrowse.ch" #define FW_NORMAL 400 #define FW_BOLD 700 //Static oWnd, oGet, oMenu, oFont, nItem, aFiles, oMsgItem, cFileDisc := "", lFile := .f., lHelp := .t. //Static cText, cFile, nVez, cTit, lIt, nX, lChange := .f., cTextFormat := "" ...
by Juan Planelles
Tue Dec 29, 2009 10:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Juan Planelles Lazaga
Replies: 9
Views: 6739

Para Antonio Linares, salida abrupta ...

... == Asc( "A" ) .OR. nK == Asc( "a" ) ) .AND. GetKeyState( VK_CONTROL ), ; ( IF(lAuto[VAL(nCaja)],lAuto[VAL(nCaja)]:=.F.,lAuto[VAL(nCaja)]:=.T.),; oMsgItem[4]:SetText("Venta Aut.: "+IF(lAuto[VAL(nCaja)],"S","N")),; oMsgItem[4]:Refresh(), SndPlaySound("Click.Wav")), ), ; if( ( nK == Asc( "T" ) .OR. ...
by Francisco Horta
Sat Feb 02, 2008 10:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Para Antonio Linares, salida abrupta ...
Replies: 6
Views: 1849

Nop wrote:Enrico, thanks, in format use i use:

oFGet:bLocate := {| nRow, nCol | oMsgItem:SetText( "Lin: " + Str( nRow, 4 ) + " " + "Col: " + Str( nCol, 4 ) ) }

this is can adapted to memo get? thanks


What is locate event?

EMG
by Enrico Maria Giordano
Fri Jan 12, 2007 3:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: show line number in memo edit
Replies: 8
Views: 1669

Enrico, thanks, in format use i use:

oFGet:bLocate := {| nRow, nCol | oMsgItem:SetText( "Lin: " + Str( nRow, 4 ) + " " + "Col: " + Str( nCol, 4 ) ) }

this is can adapted to memo get? thanks
by Nop
Fri Jan 12, 2007 3:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: show line number in memo edit
Replies: 8
Views: 1669

... DEFINE DIALOG oDlg RESOURCE "PV2100" COLOR nRGB(0,64,128),nRGB(0,64,128) ACTIVATE DIALOG oDlg CENTERED ; ON INIT ( Inicia(), Msg_Barra(oDlg,oMsg,oMsgItem,oFnt) ) ; VALID ( Checa(@oBTmp,@lSalir),IF(lSalir .OR. lCorteCaja,.T.,lSalir) ) la funcion Inicia()=inicializacion de variables y funciones ...
by Francisco Horta
Tue Nov 14, 2006 2:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: bloqueo de sistema ...
Replies: 7
Views: 2186

Forse è questo che ti serve:



DEFINE MSGITEM oMsgItem;
OF MainWnd:oMsgBar;
PROMPT "Prompt";
BITMAP "BITMAP";
TOOLTIP "Tooltip";
ACTION msginfo("Msg Item");
SIZE 24

Buon lavoro
by pymsoft
Tue Jul 18, 2006 3:26 pm
 
Forum: All products support
Topic: status bar
Replies: 6
Views: 1801

DEFINE MSGITEM [ <oMsgItem> ] ; [ OF <oMsgBar> ] ; [ PROMPT <cMsg> ] ; [ SIZE <nSize> ] ; [ FONT <oFont> ] ; [ COLOR | COLORS <nClrFore>;[, <nClrBack>] ] ; [ ACTION <uAction> ]; [ BITMAP, ...
by James Bott
Fri Jul 14, 2006 1:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: STATUS bar
Replies: 7
Views: 2213

Return to advanced search